As an event planner, I want to know the locations of past public events so that I can run my own public events - sport/promotion/music/filming/photo shoot/memorial/public holiday with ease.
As an event planner, I want to know about available parking areas near the events so that my guests can park their cars with ease.
As an event planner, I want to know closest banner spots near my events so that I can promote my events successfully
At the end of this use case you will:
- Learn to work with categorical locations and geolocations using geopy
- Learn to plot multiple geolocations on a map using folium
- Learn preprocessing steps such as binary encoding, handling datetime objects, creating new features, fixing skewness, standardising and scaling of data
- Learn to built a Feed Forward Neural Network(FFNN) using optimal grid search hyperparameters
- Learn to use train and test embeddings extracted from second last layer of FFNN
- Learn to find nearest neighbours using KNeighborsRegressor and NearestNeighbors
The two of the eight priorities of the Economic Development Strategy 2031 of the city of Melbourne is to create a business friendly city and to develop a digitally connected city. Supporting businesses like event planning will help to drive the economy recovery and also help to map and connect public events, parkings and promotions through out the city of Melboune.
Datasets used:
This dataset mainly contains the category, start date, end date and categorical location of different events that get permits throughout the city of Melbourne. This dataset is used to identify the locations where each category of events take place. This dataset is imported from Melbourne Open Data website, using API V2.1.
This dataset mainly contains the zone number, status and geolocation of parking spots throughout the city of Melbourne. This dataset is used to find the nearest parking spots around any given event. This dataset is imported from Melbourne Open Data website, using API V2.1
This dataset mainly contains the type, geolocation and booking group of five types of banners throughout the city of Melbourne which are 2.0, 4.0, 5.0, 6.0, 7.0 and 8.0. This dataset is used to find the nearest location of banners given any event location for promotional activities. This dataset is imported from Melbourne Open Data website, using API V2.1
pip install scikeras
Requirement already satisfied: scikeras in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (0.12.0) Requirement already satisfied: packaging>=0.21 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from scikeras) (23.1) Requirement already satisfied: scikit-learn>=1.0.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from scikeras) (1.3.0) Requirement already satisfied: numpy>=1.17.3 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from scikit-learn>=1.0.0->scikeras) (1.24.3) Requirement already satisfied: scipy>=1.5.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from scikit-learn>=1.0.0->scikeras) (1.10.1) Requirement already satisfied: joblib>=1.1.1 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from scikit-learn>=1.0.0->scikeras) (1.2.0) Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from scikit-learn>=1.0.0->scikeras) (2.2.0) Note: you may need to restart the kernel to use updated packages.
pip install geopy
Requirement already satisfied: geopy in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (2.4.1) Requirement already satisfied: geographiclib<3,>=1.52 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from geopy) (2.0) Note: you may need to restart the kernel to use updated packages.
pip install folium
Requirement already satisfied: folium in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (0.14.0) Requirement already satisfied: branca>=0.6.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from folium) (0.6.0) Requirement already satisfied: jinja2>=2.9 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from folium) (3.1.2) Requirement already satisfied: numpy in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from folium) (1.24.3) Requirement already satisfied: requests in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from folium) (2.31.0) Requirement already satisfied: MarkupSafe>=2.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from jinja2>=2.9->folium) (2.1.1) Requirement already satisfied: charset-normalizer<4,>=2 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from requests->folium) (2.0.4) Requirement already satisfied: idna<4,>=2.5 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from requests->folium) (3.4) Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from requests->folium) (1.26.18) Requirement already satisfied: certifi>=2017.4.17 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from requests->folium) (2023.11.17) Note: you may need to restart the kernel to use updated packages.
pip install category_encoders
Requirement already satisfied: category_encoders in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (2.6.3) Requirement already satisfied: numpy>=1.14.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from category_encoders) (1.24.3) Requirement already satisfied: scikit-learn>=0.20.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from category_encoders) (1.3.0) Requirement already satisfied: scipy>=1.0.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from category_encoders) (1.10.1) Requirement already satisfied: statsmodels>=0.9.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from category_encoders) (0.14.1) Requirement already satisfied: pandas>=1.0.5 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from category_encoders) (2.0.3) Requirement already satisfied: patsy>=0.5.1 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from category_encoders) (0.5.6) Requirement already satisfied: importlib-resources in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from category_encoders) (6.1.0) Requirement already satisfied: python-dateutil>=2.8.2 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from pandas>=1.0.5->category_encoders) (2.8.2) Requirement already satisfied: pytz>=2020.1 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from pandas>=1.0.5->category_encoders) (2023.3.post1) Requirement already satisfied: tzdata>=2022.1 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from pandas>=1.0.5->category_encoders) (2023.3) Requirement already satisfied: six in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from patsy>=0.5.1->category_encoders) (1.16.0) Requirement already satisfied: joblib>=1.1.1 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from scikit-learn>=0.20.0->category_encoders) (1.2.0) Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from scikit-learn>=0.20.0->category_encoders) (2.2.0) Requirement already satisfied: packaging>=21.3 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from statsmodels>=0.9.0->category_encoders) (23.1) Requirement already satisfied: zipp>=3.1.0 in /opt/anaconda3/envs/MelbourneCityOpenData/lib/python3.8/site-packages (from importlib-resources->category_encoders) (3.11.0) Note: you may need to restart the kernel to use updated packages.
#importing dependencies
import requests
import pandas as pd
import numpy as np
from datetime import datetime
from io import StringIO
import geopy
from geopy.geocoders import Nominatim
import folium
from ipywidgets import interact, widgets
from IPython.display import display
import seaborn as sns
import matplotlib.pyplot as plt
from sklearn.model_selection import train_test_split
from category_encoders.binary import BinaryEncoder
from sklearn.metrics import mean_squared_error
from sklearn.metrics import mean_absolute_error
from sklearn.preprocessing import PowerTransformer
from sklearn.preprocessing import StandardScaler
from sklearn.preprocessing import MinMaxScaler
from sklearn.neighbors import NearestNeighbors
from sklearn.neighbors import KNeighborsRegressor
from scikeras.wrappers import KerasRegressor
from tensorflow.keras.models import Model
from tensorflow.keras.layers import Input, Dense
from keras.layers import LeakyReLU
from keras.optimizers import Adadelta
from tensorflow.keras.layers import BatchNormalization
from keras import backend as K
from keras.callbacks import EarlyStopping
from sklearn.model_selection import GridSearchCV
from tensorflow.keras.applications import ResNet50
from tensorflow.keras.regularizers import l1
base_url='https://data.melbourne.vic.gov.au/api/explore/v2.1/catalog/datasets/'
dataset_id='bookable-banner-poles'
url=f'{base_url}{dataset_id}/exports/csv'
params={'select':'*','limit':-1,'lang':'en','timezone':'UTC'}
response=requests.get(url,params=params)
if response.status_code==200:
url_content=response.content.decode('utf-8')
banner_df=pd.read_csv(StringIO(url_content),delimiter=';')
print(banner_df.head(10))
else:
print(f'Request failed with status code {response.status_code}')
asset_number asset_description \
0 1110368 Standard Banner Pole - Lansdowne St: Wellingto...
1 1110057 Banner Pole - Super Banner Pole
2 1110093 Banner Pole - Super Banner Pole
3 1110096 Banner Pole - Super Banner Pole
4 1110108 Banner Pole - Super Banner Pole
5 1350904 Banner Pole - Super Banner Pole
6 1110027 Banner Pole - Super Banner Pole
7 1110286 Super Banner Pole - Bourke St: Exhibition St -...
8 1110544 Standard Banner Pole - Lonsdale St: Elizabeth ...
9 1110418 Standard Banner Pole - Errol St: Victoria St -...
banner_pole_type book_group model_descr_lupvalue \
0 6.0 62.0 Banner Pole - Standard Banner
1 2.0 79.0 Banner Pole - Super Banner Pole
2 2.0 59.0 Banner Pole - Super Banner Pole
3 2.0 59.0 Banner Pole - Super Banner Pole
4 2.0 59.0 Banner Pole - Super Banner Pole
5 2.0 111.0 Banner Pole - Super Banner Pole
6 2.0 65.0 Banner Pole - Super Banner Pole
7 2.0 7.0 Banner Pole - Super Banner Pole
8 6.0 63.0 Banner Pole - Standard Banner
9 6.0 48.0 Banner Pole - Standard Banner
model_no_lupvalue lat lon \
0 310101-004 -37.814268 144.977428
1 310101-001 -37.809428 144.966548
2 310101-001 -37.800985 144.957241
3 310101-001 -37.800974 144.957269
4 310101-001 -37.801019 144.957138
5 310101-001 -37.811090 144.938797
6 310101-001 -37.796888 144.967318
7 310101-001 -37.812253 144.969676
8 310101-004 -37.811733 144.963782
9 310101-004 -37.804195 144.949553
location
0 -37.81426836404757, 144.97742756833915
1 -37.80942811378078, 144.96654780374206
2 -37.80098530840636, 144.9572409533404
3 -37.80097426523944, 144.95726931044308
4 -37.801019397609785, 144.95713847866782
5 -37.81109014644689, 144.93879733817968
6 -37.796888190703314, 144.96731840263752
7 -37.81225329974921, 144.96967584898502
8 -37.81173328694106, 144.96378177631556
9 -37.80419487324772, 144.94955270978292
base_url='https://data.melbourne.vic.gov.au/api/explore/v2.1/catalog/datasets/'
dataset_id='on-street-parking-bay-sensors'
url=f'{base_url}{dataset_id}/exports/csv'
params={'select':'*','limit':-1,'lang':'en','timezone':'UTC'}
response=requests.get(url,params=params)
if response.status_code==200:
url_content=response.content.decode('utf-8')
parking_df=pd.read_csv(StringIO(url_content),delimiter=';')
print(parking_df.head(10))
else:
print(f'Request failed with status code {response.status_code}')
lastupdated status_timestamp zone_number \ 0 2023-12-14T04:45:34+00:00 2023-12-14T03:41:25+00:00 7695.0 1 2023-12-14T04:45:34+00:00 2023-12-13T06:21:58+00:00 7939.0 2 2023-12-14T23:45:34+00:00 2023-12-14T23:35:02+00:00 NaN 3 2023-12-14T23:45:34+00:00 2023-12-14T22:39:46+00:00 NaN 4 2023-12-18T04:45:34+00:00 2023-12-17T23:47:54+00:00 7310.0 5 2023-12-18T04:45:34+00:00 2023-11-02T00:47:52+00:00 7050.0 6 2023-12-18T04:45:34+00:00 2023-12-18T04:03:50+00:00 7310.0 7 2023-12-18T04:45:34+00:00 2023-12-18T03:40:13+00:00 7310.0 8 2023-11-15T04:44:42+00:00 2023-11-15T01:35:58+00:00 7363.0 9 2023-11-15T04:44:42+00:00 2023-11-07T20:41:02+00:00 NaN status_description kerbsideid location 0 Unoccupied 22959 -37.81844776554182, 144.95938672872117 1 Unoccupied 10136 -37.8099909364941, 144.95263753679632 2 Unoccupied 6527 -37.81060096851364, 144.95642622505966 3 Unoccupied 6526 -37.810581463657826, 144.95649292476088 4 Unoccupied 6497 -37.81044576734748, 144.95648958199024 5 Present 8958 -37.80588632122739, 144.95989190405095 6 Unoccupied 25139 -37.810361269606986, 144.95724275778542 7 Present 6520 -37.81030372866985, 144.95744087370286 8 Present 61840 -37.81456548009633, 144.96998804813268 9 Unoccupied 23748 -37.8107644042888, 144.97004851293588
base_url='https://data.melbourne.vic.gov.au/api/explore/v2.1/catalog/datasets/'
dataset_id='event-permits-2014-2018-including-film-shoots-photo-shoots-weddings-christmas-pa'
url=f'{base_url}{dataset_id}/exports/csv'
params={'select':'*','limit':-1,'lang':'en','timezone':'UTC'}
response=requests.get(url,params=params)
if response.status_code==200:
url_content=response.content.decode('utf-8')
events_df=pd.read_csv(StringIO(url_content),delimiter=';')
print(events_df.head(10))
else:
print(f'Request failed with status code {response.status_code}')
title event_start event_end category_1 \
0 Holding The Man 2014-10-07 2014-10-07 Filming - Movie
1 A Journey With Anthony 2015-03-07 2015-03-15 Filming - Movie
2 Ali's Wedding 2015-12-03 2015-12-03 Filming - Movie
3 Dogfight 2016-08-26 2016-08-27 Filming - Movie
4 Old Timer 2016-04-20 2016-04-20 Filming - Movie
5 Spirit Of The Game 2015-08-19 2015-08-20 Filming - Movie
6 Dogfight 2016-09-17 2016-09-17 Filming - Movie
7 Surya TVC 2014-04-26 2014-04-27 Filming - Other
8 Threethousand 2014-05-06 2014-05-06 Filming - Other
9 Loving Melbourne 2014-06-21 2014-06-21 Filming - Other
category_2 location
0 NaN Fawkner Park
1 NaN Other Park Locations, Inner Suburb Locations
2 NaN Inner Suburb Locations
3 NaN Flagstaff Gardens, Collins Street, Flinders La...
4 Filming - Student Fawkner Park
5 Filming - Unit Base Royal Park
6 Filming - Unit Base Flagstaff Gardens, Little Bourke Street
7 NaN Collins Street
8 NaN Coverlid Place
9 NaN Promotional Sites
EVENTS¶
I carried out various data cleaning methods:
- Handled Null values
- Created single location names
- Converted location names to latitudes and longitudes using geopy
- Displayed event locations on map using folium
- Cleaned category column
- Converted event_start and event_end features to datetime objects, created a new feature column called 'duration' and converted event_start and event_end features to ordinal values
- Encoded the categorical event categories using Binary Encoding
- Corrected the skewness of data using Yeo Johnson power transformation
- Standardized the data to follow a Normal distribution
- Scaled the data using MinMax scaling
I built a Feed Forward Neural Network model to capture data patterns during training:
I extracted the train and test embeddings from the second last layer of FFNN to be fed into the KNeighbors Regressor for better neighbor grouping. I trained the KNeighbors Regressor on train embeddings and obtaining 5 nearest neighbors for test embeddings, getting 5 closest locations given any test data instance.
events_df.head()
| title | event_start | event_end | category_1 | category_2 | location | |
|---|---|---|---|---|---|---|
| 0 | Holding The Man | 2014-10-07 | 2014-10-07 | Filming - Movie | NaN | Fawkner Park |
| 1 | A Journey With Anthony | 2015-03-07 | 2015-03-15 | Filming - Movie | NaN | Other Park Locations, Inner Suburb Locations |
| 2 | Ali's Wedding | 2015-12-03 | 2015-12-03 | Filming - Movie | NaN | Inner Suburb Locations |
| 3 | Dogfight | 2016-08-26 | 2016-08-27 | Filming - Movie | NaN | Flagstaff Gardens, Collins Street, Flinders La... |
| 4 | Old Timer | 2016-04-20 | 2016-04-20 | Filming - Movie | Filming - Student | Fawkner Park |
events_df.shape
(2827, 6)
events_df.nunique()
title 1877 event_start 1155 event_end 1150 category_1 34 category_2 11 location 619 dtype: int64
events_df[['category_1']].value_counts()
category_1 Wedding 615 Public Event - Non-ticketed 446 Promotion 430 Filming - TV Series 200 Public Event - Run Walk 165 Filming - TVC 158 Public Event - Ticketed 111 Public Event - Low Impact Activity 92 Filming - Photo shoot 90 Private Event 87 Filming - Unit Base 58 Filming - Student 57 Public Event - Non Ticketed 56 Public Event - Music Event 41 Filming - Other 40 Public Event - Media/Launch Event 36 Public Event - Run/Walk 33 Public Event - Memorial 25 Filming - Movie 21 Public Event - Cycling Event 19 Public Event - Parade 16 Pubilc Event - Non-ticketed 9 Public Event - Music 6 Public Event - Cycling 3 Public Event - Media Launch 2 Public Event - Outside Broadcast 2 Filming - TV Series, Filming - Unit 2 Public Event - Low Impact Activity, 1 Public Event - Media Launch Event 1 Public Event 1 Private Event - 1 Filming -- Other 1 Filming - TVC, Recreation and Sport 1 Filming - TV Series Filming - TV Series 1 Name: count, dtype: int64
events_df.isna().sum() #category_2 has highest null values
title 0 event_start 0 event_end 4 category_1 0 category_2 2751 location 5 dtype: int64
events_df[events_df['category_2'].notnull()][['category_1','category_2']].value_counts()
#Not much difference found between category_1 and category_2 values
category_1 category_2
Private Event Christmas Party 46
Filming - TV Series Filming - Unit 7
Public Event - Non-ticketed Public 7
Filming - Movie Filming - Unit Base 4
Filming - Photo shoot Filming - Other 2
Filming - TVC Filming - Photo shoot 2
Filming - Movie Filming - Student 1
Filming - Photo shoot Public Event 1
Filming - TVC Filming - Other 1
Filming - TV Series 1
Filming - Unit Base 1
Private Event - Christmas Party 1
Public Event - Low Impact Activity Filming 1
Public Event - Non-ticketed Recrea 1
Name: count, dtype: int64
events_df.drop(['title','category_2'],axis=1,inplace=True) #dropped category_2
events_df.head()
| event_start | event_end | category_1 | location | |
|---|---|---|---|---|
| 0 | 2014-10-07 | 2014-10-07 | Filming - Movie | Fawkner Park |
| 1 | 2015-03-07 | 2015-03-15 | Filming - Movie | Other Park Locations, Inner Suburb Locations |
| 2 | 2015-12-03 | 2015-12-03 | Filming - Movie | Inner Suburb Locations |
| 3 | 2016-08-26 | 2016-08-27 | Filming - Movie | Flagstaff Gardens, Collins Street, Flinders La... |
| 4 | 2016-04-20 | 2016-04-20 | Filming - Movie | Fawkner Park |
events_df.isna().sum()
event_start 0 event_end 4 category_1 0 location 5 dtype: int64
events_df[events_df['event_end'].isna()]
| event_start | event_end | category_1 | location | |
|---|---|---|---|---|
| 10 | 2014-12-08 | NaN | Filming - Other | Russell Street |
| 106 | 2016-02-25 | NaN | Filming - TV Series Filming - TV Series | Alexandra Gardens, Kings Domain, All Other Spa... |
| 418 | 2015-04-26 | NaN | Public Event - Non-ticketed | City Square |
| 1559 | 2017-04-02 | NaN | Public Event - Ticketed | Kings Domain |
events_df.dropna(axis=0,inplace=True) #drop rows which have null values
events_df.isna().sum()
event_start 0 event_end 0 category_1 0 location 0 dtype: int64
events_df.shape
(2818, 4)
category=events_df['category_1'].unique()
category_dict={}
for i in category:
val=events_df.loc[events_df['category_1']==i,['location','event_start','event_end']]
category_dict[i]=val
event_cat=[]
event_loc=[]
start_date=[]
end_date=[]
for i,j in category_dict.items():
row=0
for x in j['location']:
if ", " in x:
loc_lst=x.split(", ")
for y in loc_lst:
event_cat.append(i)
start_date.append(j.iloc[row,1])
end_date.append(j.iloc[row,2])
event_loc.append(f"{y}, Melbourne, Australia")
elif " - " in x:
loc_lst=x.split(" - ")
for y in loc_lst:
event_cat.append(i)
start_date.append(j.iloc[row,1])
end_date.append(j.iloc[row,2])
event_loc.append(f"{y}, Melbourne, Australia")
else:
event_cat.append(i)
start_date.append(j.iloc[row,1])
end_date.append(j.iloc[row,2])
event_loc.append(f"{x}, Melbourne, Australia")
row+=1
events_loc_df=pd.DataFrame({'Events': event_cat, 'Location': event_loc,'Start_date':start_date,'End_date':end_date})
events_loc_df.head(10)
| Events | Location | Start_date | End_date | |
|---|---|---|---|---|
| 0 | Filming - Movie | Fawkner Park, Melbourne, Australia | 2014-10-07 | 2014-10-07 |
| 1 | Filming - Movie | Other Park Locations, Melbourne, Australia | 2015-03-07 | 2015-03-15 |
| 2 | Filming - Movie | Inner Suburb Locations, Melbourne, Australia | 2015-03-07 | 2015-03-15 |
| 3 | Filming - Movie | Inner Suburb Locations, Melbourne, Australia | 2015-12-03 | 2015-12-03 |
| 4 | Filming - Movie | Flagstaff Gardens, Melbourne, Australia | 2016-08-26 | 2016-08-27 |
| 5 | Filming - Movie | Collins Street, Melbourne, Australia | 2016-08-26 | 2016-08-27 |
| 6 | Filming - Movie | Flinders Lane, Melbourne, Australia | 2016-08-26 | 2016-08-27 |
| 7 | Filming - Movie | Little Collins Street, Melbourne, Australia | 2016-08-26 | 2016-08-27 |
| 8 | Filming - Movie | Market Street, Melbourne, Australia | 2016-08-26 | 2016-08-27 |
| 9 | Filming - Movie | Queen Street, Melbourne, Australia | 2016-08-26 | 2016-08-27 |
events_loc_df.shape
(5132, 4)
# @retrying.retry(wait_fixed=2000, stop_max_attempt_number=5)
def coordinates(location):
loc = geolocator.geocode(location)
if loc:
return loc.latitude, loc.longitude
else:
raise Exception("Geocoding failed")
lat=[]
lon=[]
lookup_loc=[]
lookup_lat=[]
lookup_lon=[]
geolocator = Nominatim(user_agent="my_geocoder",timeout=5)
for i in events_loc_df['Location']:
if i not in lookup_loc:
try:
l1,l2=coordinates(i)
if l2:
lat.append(l1)
lon.append(l2)
lookup_loc.append(i)
lookup_lat.append(l1)
lookup_lon.append(l2)
except Exception as e:
lat.append(i)
lon.append(i)
lookup_loc.append(i)
lookup_lat.append(i)
lookup_lon.append(i)
else:
ind=lookup_loc.index(i)
lat.append(lookup_lat[ind])
lon.append(lookup_lon[ind])
len(lat),len(lon),len(event_cat)
(5132, 5132, 5132)
New Dataframe with Category, Start_date, End_date, Latitude, Longitude and Location
events_lat_lon = pd.DataFrame({'Category': event_cat,'Start_date':start_date,'End_date':end_date, 'Latitude': lat,'Longitude':lon,'Location':event_loc})
events_lat_lon.head()
| Category | Start_date | End_date | Latitude | Longitude | Location | |
|---|---|---|---|---|---|---|
| 0 | Filming - Movie | 2014-10-07 | 2014-10-07 | -37.841461 | 144.981868 | Fawkner Park, Melbourne, Australia |
| 1 | Filming - Movie | 2015-03-07 | 2015-03-15 | Other Park Locations, Melbourne, Australia | Other Park Locations, Melbourne, Australia | Other Park Locations, Melbourne, Australia |
| 2 | Filming - Movie | 2015-03-07 | 2015-03-15 | Inner Suburb Locations, Melbourne, Australia | Inner Suburb Locations, Melbourne, Australia | Inner Suburb Locations, Melbourne, Australia |
| 3 | Filming - Movie | 2015-12-03 | 2015-12-03 | Inner Suburb Locations, Melbourne, Australia | Inner Suburb Locations, Melbourne, Australia | Inner Suburb Locations, Melbourne, Australia |
| 4 | Filming - Movie | 2016-08-26 | 2016-08-27 | -37.810879 | 144.954607 | Flagstaff Gardens, Melbourne, Australia |
Checking latitude,longitude values which could not be converted to coordinates
events_lat_lon.loc[events_lat_lon['Latitude'].apply(lambda x: isinstance(x, str)),'Latitude'].value_counts()
Latitude Inner Suburb Locations, Melbourne, Australia 273 Other Park Locations, Melbourne, Australia 140 Promotional Sites, Melbourne, Australia 140 Southbank Spillway, Melbourne, Australia 123 Roads / Public Access Spaces, Melbourne, Australia 88 All Other Spaces, Melbourne, Australia 83 Bourke St Mall - next to Tourism booth, Melbourne, Australia 75 next to Tourism booth, Melbourne, Australia 57 Southbank Spillway , Melbourne, Australia 53 AG - Riverslide Skate Park, Melbourne, Australia 38 Argyle Square Stage Only, Melbourne, Australia 21 Meyers Place (Green Laneway), Melbourne, Australia 13 Other Laneways/Places/Alleys, Melbourne, Australia 12 BM Birrarung Marr, Melbourne, Australia 9 NMCC Soccer, Melbourne, Australia 8 Shrine Reserve, Melbourne, Australia 8 Street Locations, Melbourne, Australia 8 Southern Cross Pedestrian Bridge, Melbourne, Australia 7 Chinatown Plaza - see notes., Melbourne, Australia 6 HP - Cricket Nets, Melbourne, Australia 6 Northbank Promenade, Melbourne, Australia 5 HP - Running Track, Melbourne, Australia 5 Privately Managed Event Spaces, Melbourne, Australia 4 Bourke Street Mall - outfront of Adidas , Melbourne, Australia 4 Katherine Place (Green Laneway), Melbourne, Australia 4 FP - Cordner_T1_T2_T3_F2_Ct3, Melbourne, Australia 4 FP - Cricket Nets, Melbourne, Australia 3 PP - Lawn 2 South _ Ct3 _ Cs2 _ Soc 4_5_6, Melbourne, Australia 3 Drewery Lane - Do Not Book, Melbourne, Australia 3 EP - Lawn 2, Melbourne, Australia 3 BM - Fed Sq + Princes Walk, Melbourne, Australia 3 Chinatown Plaza, Melbourne, Australia 3 Guildford Lane (Green Laneway(, Melbourne, Australia 3 RP - Lawn 6_Brens Cricket Nets, Melbourne, Australia 3 Sniders Lane - Do Not Book, Melbourne, Australia 2 outfront of Adidas, Melbourne, Australia 2 Bourke Street Mall - outfront of Adidas, Melbourne, Australia 2 BM - Fed Sq + Princes Walk - FYI ONLY DO NOT BOOK, Melbourne, Australia 2 RP - Walmsley House, Melbourne, Australia 2 see notes., Melbourne, Australia 2 FP - Northern Pavilion East, Melbourne, Australia 2 BridgesFlinders Lane, Melbourne, Australia 1 Drewery Alley - sensitive area many residents, Melbourne, Australia 1 Drewery Place - Do Not book, Melbourne, Australia 1 Eastwood and Rankins Road Reserve, Melbourne, Australia 1 Do Not Book, Melbourne, Australia 1 Drewery Alley Drewery Lane, Melbourne, Australia 1 Straughton Lane, Melbourne, Australia 1 BM Swanston Street, Melbourne, Australia 1 RP - Poplar Cricket Nets (1), Melbourne, Australia 1 Name: count, dtype: int64
Manually converting few selected longitude, latitude coordinates(Assumed all inner suburbs as Carlton)
events_lat_lon.loc[events_lat_lon['Latitude']=='Bourke St Mall - next to Tourism booth, Melbourne, Australia','Latitude']=-37.811425719556375
events_lat_lon.loc[events_lat_lon['Longitude']=='Bourke St Mall - next to Tourism booth, Melbourne, Australia','Longitude']=144.9642798285428
events_lat_lon.loc[events_lat_lon['Latitude']=='AG - Riverslide Skate Park, Melbourne, Australia','Latitude']=-37.81740602754738
events_lat_lon.loc[events_lat_lon['Longitude']=='AG - Riverslide Skate Park, Melbourne, Australia','Longitude']=144.9729885581025
events_lat_lon.loc[events_lat_lon['Latitude']=='Argyle Square Stage Only, Melbourne, Australia','Latitude']=-37.79994933523437
events_lat_lon.loc[events_lat_lon['Longitude']=='Argyle Square Stage Only, Melbourne, Australia','Longitude']=144.9668979307423
events_lat_lon.loc[events_lat_lon['Latitude']=='Meyers Place (Green Laneway), Melbourne, Australia','Latitude']=-37.809521131914906
events_lat_lon.loc[events_lat_lon['Longitude']=='Meyers Place (Green Laneway), Melbourne, Australia','Longitude']=144.97168456715806
events_lat_lon.loc[events_lat_lon['Latitude']=='BM Birrarung Marr, Melbourne, Australia','Latitude']=-37.819058
events_lat_lon.loc[events_lat_lon['Longitude']=='BM Birrarung Marr, Melbourne, Australia','Longitude']=144.974327
events_lat_lon.loc[events_lat_lon['Latitude']=='NMCC Soccer, Melbourne, Australia','Latitude']=-37.79280741138573
events_lat_lon.loc[events_lat_lon['Longitude']=='NMCC Soccer, Melbourne, Australia','Longitude']=144.93997444199712
events_lat_lon.loc[events_lat_lon['Latitude']=='Southern Cross Pedestrian Bridge, Melbourne, Australia','Latitude']=-37.815430188169096
events_lat_lon.loc[events_lat_lon['Longitude']=='Southern Cross Pedestrian Bridge, Melbourne, Australia','Longitude']=144.95278728089147
events_lat_lon.loc[events_lat_lon['Latitude']=='Chinatown Plaza, Melbourne, Australia','Latitude']=-37.81055582784353
events_lat_lon.loc[events_lat_lon['Longitude']=='Chinatown Plaza, Melbourne, Australia','Longitude']=144.96919346931784
events_lat_lon.loc[events_lat_lon['Latitude']=='Chinatown Plaza - see notes., Melbourne, Australia','Latitude']=-37.81055582784353
events_lat_lon.loc[events_lat_lon['Longitude']=='Chinatown Plaza - see notes., Melbourne, Australia','Longitude']=144.96919346931784
events_lat_lon.loc[events_lat_lon['Latitude']=='Northbank Promenade, Melbourne, Australia','Latitude']=-37.81883297899373
events_lat_lon.loc[events_lat_lon['Longitude']=='Northbank Promenade, Melbourne, Australia','Longitude']=144.93761358465892
events_lat_lon.loc[events_lat_lon['Latitude']=='Katherine Place (Green Laneway), Melbourne, Australia','Latitude']=-37.81333297388235
events_lat_lon.loc[events_lat_lon['Longitude']=='Katherine Place (Green Laneway), Melbourne, Australia','Longitude']=144.95689812465994
events_lat_lon.loc[events_lat_lon['Latitude']=='Bourke Street Mall - outfront of Adidas , Melbourne, Australia','Latitude']=-37.810705051858356
events_lat_lon.loc[events_lat_lon['Longitude']=='Bourke Street Mall - outfront of Adidas , Melbourne, Australia','Longitude']=144.96585977852442
events_lat_lon.loc[events_lat_lon['Latitude']=='Guildford Lane (Green Laneway(, Melbourne, Australia','Latitude']=-37.80945842151978
events_lat_lon.loc[events_lat_lon['Longitude']=='Guildford Lane (Green Laneway(, Melbourne, Australia','Longitude']=144.95981316261063
events_lat_lon.loc[events_lat_lon['Latitude']=='Straughton Lane, Melbourne, Australia','Latitude']=-37.81535364281512
events_lat_lon.loc[events_lat_lon['Longitude']=='Straughton Lane, Melbourne, Australia','Longitude']=144.96409712401254
events_lat_lon.loc[events_lat_lon['Latitude']=='Drewery Alley Drewery Lane, Melbourne, Australia','Latitude']=-37.808345973082375
events_lat_lon.loc[events_lat_lon['Longitude']=='Drewery Alley Drewery Lane, Melbourne, Australia','Longitude']=144.96437611033417
events_lat_lon.loc[events_lat_lon['Latitude']=='Drewery Alley - sensitive area many residents, Melbourne, Australia','Latitude']=-37.808345973082375
events_lat_lon.loc[events_lat_lon['Longitude']=='Drewery Alley - sensitive area many residents, Melbourne, Australia','Longitude']=144.96437611033417
events_lat_lon.loc[events_lat_lon['Latitude']=='Inner Suburb Locations, Melbourne, Australia','Latitude']=-37.798004076503936
events_lat_lon.loc[events_lat_lon['Longitude']=='Inner Suburb Locations, Melbourne, Australia','Longitude']=144.96662295572335
events_lat_lon.loc[events_lat_lon['Latitude'].apply(lambda x: isinstance(x, str)),'Latitude'].value_counts()
Latitude Other Park Locations, Melbourne, Australia 140 Promotional Sites, Melbourne, Australia 140 Southbank Spillway, Melbourne, Australia 123 Roads / Public Access Spaces, Melbourne, Australia 88 All Other Spaces, Melbourne, Australia 83 next to Tourism booth, Melbourne, Australia 57 Southbank Spillway , Melbourne, Australia 53 Other Laneways/Places/Alleys, Melbourne, Australia 12 Shrine Reserve, Melbourne, Australia 8 Street Locations, Melbourne, Australia 8 HP - Cricket Nets, Melbourne, Australia 6 HP - Running Track, Melbourne, Australia 5 Privately Managed Event Spaces, Melbourne, Australia 4 FP - Cordner_T1_T2_T3_F2_Ct3, Melbourne, Australia 4 FP - Cricket Nets, Melbourne, Australia 3 BM - Fed Sq + Princes Walk, Melbourne, Australia 3 RP - Lawn 6_Brens Cricket Nets, Melbourne, Australia 3 Drewery Lane - Do Not Book, Melbourne, Australia 3 PP - Lawn 2 South _ Ct3 _ Cs2 _ Soc 4_5_6, Melbourne, Australia 3 EP - Lawn 2, Melbourne, Australia 3 Sniders Lane - Do Not Book, Melbourne, Australia 2 outfront of Adidas, Melbourne, Australia 2 Bourke Street Mall - outfront of Adidas, Melbourne, Australia 2 BM - Fed Sq + Princes Walk - FYI ONLY DO NOT BOOK, Melbourne, Australia 2 RP - Walmsley House, Melbourne, Australia 2 see notes., Melbourne, Australia 2 FP - Northern Pavilion East, Melbourne, Australia 2 BridgesFlinders Lane, Melbourne, Australia 1 Drewery Place - Do Not book, Melbourne, Australia 1 Eastwood and Rankins Road Reserve, Melbourne, Australia 1 Do Not Book, Melbourne, Australia 1 BM Swanston Street, Melbourne, Australia 1 RP - Poplar Cricket Nets (1), Melbourne, Australia 1 Name: count, dtype: int64
New Dataframe without any unresolved coordinates
events_lat_lon=events_lat_lon[events_lat_lon['Latitude'].apply(lambda x: not isinstance(x, str))]
events_lat_lon.head()
| Category | Start_date | End_date | Latitude | Longitude | Location | |
|---|---|---|---|---|---|---|
| 0 | Filming - Movie | 2014-10-07 | 2014-10-07 | -37.841461 | 144.981868 | Fawkner Park, Melbourne, Australia |
| 2 | Filming - Movie | 2015-03-07 | 2015-03-15 | -37.798004 | 144.966623 | Inner Suburb Locations, Melbourne, Australia |
| 3 | Filming - Movie | 2015-12-03 | 2015-12-03 | -37.798004 | 144.966623 | Inner Suburb Locations, Melbourne, Australia |
| 4 | Filming - Movie | 2016-08-26 | 2016-08-27 | -37.810879 | 144.954607 | Flagstaff Gardens, Melbourne, Australia |
| 5 | Filming - Movie | 2016-08-26 | 2016-08-27 | -37.814022 | 144.971368 | Collins Street, Melbourne, Australia |
events_lat_lon.shape
(4363, 6)
e = folium.Map(location=[events_lat_lon['Latitude'].mean(), events_lat_lon['Longitude'].mean()], zoom_start=10)
# Add markers for each location
for index, row in events_lat_lon.iterrows():
folium.Marker([row['Latitude'], row['Longitude']], popup=row['Location'],icon=folium.Icon("blue"),icon_size=(3, 3)).add_to(e)
legend_html = """
<div style="position: fixed;
bottom: 50px; left: 50px; width: 150px; height:50px;
border:2px solid grey; z-index:9999; font-size:14px;
background-color:white; opacity: 0.8;">
<p style="text-align:center; margin: 0;"><strong>Legend</strong></p>
<p style="margin: 0;">Event Location: <span style="color:lightblue">●</span></p>
</div>
"""
# Add legend HTML to the map
e.get_root().html.add_child(folium.Element(legend_html))
title_html = """
<h3 style="text-align: center; margin: 10px 0;">Event Locations</h3>
"""
e.get_root().html.add_child(folium.Element(title_html))
display(e)
events_lat_lon['Category'].value_counts()
Category Public Event - Non-ticketed 815 Wedding 612 Promotion 552 Public Event - Run Walk 427 Filming - TVC 334 Filming - TV Series 271 Public Event - Ticketed 219 Filming - Photo shoot 138 Public Event - Low Impact Activity 117 Public Event - Run/Walk 111 Public Event - Parade 109 Public Event - Non Ticketed 101 Public Event - Memorial 87 Private Event 80 Public Event - Cycling Event 68 Filming - Student 66 Public Event - Media/Launch Event 47 Filming - Other 44 Public Event - Music Event 43 Filming - Unit Base 39 Filming - Movie 27 Pubilc Event - Non-ticketed 24 Public Event - Music 9 Public Event - Media Launch 6 Public Event - Cycling 5 Public Event - Outside Broadcast 4 Public Event 2 Filming - TV Series, Filming - Unit 2 Public Event - Low Impact Activity, 1 Public Event - Media Launch Event 1 Private Event - 1 Filming - TVC, Recreation and Sport 1 Name: count, dtype: int64
events_lat_lon.loc[events_lat_lon['Category']=='Public Event - Non-ticketed','Category']='Public Event - Non Ticketed'
events_lat_lon.loc[events_lat_lon['Category']=='Pubilc Event - Non-ticketed','Category']='Public Event - Non Ticketed'
events_lat_lon.loc[events_lat_lon['Category']=='Public Event - Music Event','Category']='Public Event - Music'
events_lat_lon.loc[events_lat_lon['Category']=='Public Event - Media/Launch Event','Category']='Public Event - Media Launch'
events_lat_lon.loc[events_lat_lon['Category']=='Public Event - Run Walk','Category']='Public Event - Run/Walk'
events_lat_lon.loc[events_lat_lon['Category']=='Public Event - Cycling Event','Category']='Public Event - Cycling'
events_lat_lon.loc[events_lat_lon['Category']=='Filming - TV Series Filming - TV Series','Category']='Filming - TV Series'
events_lat_lon.loc[events_lat_lon['Category']=='Filming - TV Series, Filming - Unit','Category']='Filming - TV Series'
events_lat_lon.loc[events_lat_lon['Category']=='Public Event - Low Impact Activity,','Category']='Public Event - Low Impact Activity'
events_lat_lon.loc[events_lat_lon['Category']=='Public Event - Media Launch Event','Category']='Public Event - Media Launch'
events_lat_lon=events_lat_lon[events_lat_lon['Category'] != 'Private Event']
#Christmas party was private
events_lat_lon=events_lat_lon[events_lat_lon['Category'] != 'Private Event -']
events_lat_lon['Category'].value_counts()
Category Public Event - Non Ticketed 940 Wedding 612 Promotion 552 Public Event - Run/Walk 538 Filming - TVC 334 Filming - TV Series 273 Public Event - Ticketed 219 Filming - Photo shoot 138 Public Event - Low Impact Activity 118 Public Event - Parade 109 Public Event - Memorial 87 Public Event - Cycling 73 Filming - Student 66 Public Event - Media Launch 54 Public Event - Music 52 Filming - Other 44 Filming - Unit Base 39 Filming - Movie 27 Public Event - Outside Broadcast 4 Public Event 2 Filming - TVC, Recreation and Sport 1 Name: count, dtype: int64
events_lat_lon['Start_date']=events_lat_lon['Start_date'].apply(lambda x: datetime.strptime(x, "%Y-%m-%d"))
events_lat_lon['End_date']=events_lat_lon['End_date'].apply(lambda x: datetime.strptime(x, "%Y-%m-%d"))
duration=events_lat_lon['End_date']-events_lat_lon['Start_date']
events_lat_lon['Duration']=duration.dt.days
events_lat_lon['Start_ordinal'] = events_lat_lon['Start_date'].apply(lambda x: x.toordinal())
events_lat_lon['End_ordinal'] = events_lat_lon['End_date'].apply(lambda x: x.toordinal())
events_lat_lon.head()
| Category | Start_date | End_date | Latitude | Longitude | Location | Duration | Start_ordinal | End_ordinal | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | Filming - Movie | 2014-10-07 | 2014-10-07 | -37.841461 | 144.981868 | Fawkner Park, Melbourne, Australia | 0 | 735513 | 735513 |
| 2 | Filming - Movie | 2015-03-07 | 2015-03-15 | -37.798004 | 144.966623 | Inner Suburb Locations, Melbourne, Australia | 8 | 735664 | 735672 |
| 3 | Filming - Movie | 2015-12-03 | 2015-12-03 | -37.798004 | 144.966623 | Inner Suburb Locations, Melbourne, Australia | 0 | 735935 | 735935 |
| 4 | Filming - Movie | 2016-08-26 | 2016-08-27 | -37.810879 | 144.954607 | Flagstaff Gardens, Melbourne, Australia | 1 | 736202 | 736203 |
| 5 | Filming - Movie | 2016-08-26 | 2016-08-27 | -37.814022 | 144.971368 | Collins Street, Melbourne, Australia | 1 | 736202 | 736203 |
events_lat_lon.drop_duplicates(keep='first', inplace=True)
events_lat_lon.duplicated().sum()
0
top_locations={}
fig, axes = plt.subplots(nrows=7, ncols=3, figsize=(12, 50))
# Flatten the axes array to iterate over all subplots
axes = axes.flatten()
location_counts = events_lat_lon.groupby(['Category', 'Location']).size().reset_index(name='Frequency')
#top 8 locations for each event
Z=location_counts.groupby('Category')
num=0
for i in Z:
cat=i[0]
df=pd.DataFrame(i[1])
df=df.sort_values(by='Frequency', ascending=False)
top_x=df['Location'][:8].values
top_y=df['Frequency'][:8].values
top_locations[cat]=top_x
ax = axes[num]
ax.bar(top_x, top_y, label=cat)
ax.set_title(f'Plot for {cat}')
ax.set_xlabel('Location')
ax.set_ylabel('Frequency')
ax.set_xticks(top_x)
ax.set_xticklabels(top_x,rotation=90)
num+=1
plt.tight_layout()
plt.show()
events_copy=events_lat_lon.copy()
events_copy=events_copy[['Category','Start_ordinal','End_ordinal','Duration','Location','Latitude','Longitude']]
events_copy.reset_index(drop=True,inplace=True)
events_copy['Category'].nunique()
21
cat=events_copy['Category']
binary_encoder = BinaryEncoder(cols=['Category'])
# Fit and transform the DataFrame
binary_encoder.fit(events_copy)
events_copy=binary_encoder.transform(events_copy)
events_copy['Category']=cat
events_copy
| Category_0 | Category_1 | Category_2 | Category_3 | Category_4 | Start_ordinal | End_ordinal | Duration | Location | Latitude | Longitude | Category | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 0 | 0 | 0 | 1 | 735513 | 735513 | 0 | Fawkner Park, Melbourne, Australia | -37.841461 | 144.981868 | Filming - Movie |
| 1 | 0 | 0 | 0 | 0 | 1 | 735664 | 735672 | 8 | Inner Suburb Locations, Melbourne, Australia | -37.798004 | 144.966623 | Filming - Movie |
| 2 | 0 | 0 | 0 | 0 | 1 | 735935 | 735935 | 0 | Inner Suburb Locations, Melbourne, Australia | -37.798004 | 144.966623 | Filming - Movie |
| 3 | 0 | 0 | 0 | 0 | 1 | 736202 | 736203 | 1 | Flagstaff Gardens, Melbourne, Australia | -37.810879 | 144.954607 | Filming - Movie |
| 4 | 0 | 0 | 0 | 0 | 1 | 736202 | 736203 | 1 | Collins Street, Melbourne, Australia | -37.814022 | 144.971368 | Filming - Movie |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 4247 | 0 | 1 | 0 | 1 | 0 | 736600 | 736612 | 12 | Alexandra Gardens, Melbourne, Australia | -37.821242 | 144.973663 | Public Event - Cycling |
| 4248 | 0 | 1 | 0 | 1 | 0 | 736600 | 736612 | 12 | AG - Riverslide Skate Park, Melbourne, Australia | -37.817406 | 144.972989 | Public Event - Cycling |
| 4249 | 0 | 1 | 0 | 1 | 0 | 736600 | 736612 | 12 | St Kilda Road, Melbourne, Australia | -37.856587 | 144.983192 | Public Event - Cycling |
| 4250 | 0 | 1 | 0 | 1 | 0 | 736600 | 736612 | 12 | Queensbridge Square, Melbourne, Australia | -37.821212 | 144.961919 | Public Event - Cycling |
| 4251 | 0 | 1 | 0 | 1 | 0 | 736619 | 736620 | 1 | Harbour Esplanade, Melbourne, Australia | -37.815133 | 144.944919 | Public Event - Cycling |
4252 rows × 12 columns
Plotting histograms of each numeric feature to visualise the distribution and check for skewness
cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration','Latitude','Longitude']
fig,axes=plt.subplots(nrows=5,ncols=2,figsize=(30, 50))
num=0
for column in cols:
ax=axes.flatten()[num] # Adjust figure size as needed
ax.hist(events_copy[column], bins=20)
ax.set_title(f'Histogram of {column}')
ax.set_xlabel(column)
ax.set_ylabel('Frequency')
ax.grid(True)
num+=1
plt.tight_layout()
plt.show()
Plotting the heatmap of all the numeric features to check for correlations
cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration','Latitude','Longitude']
events_corr = events_copy[cols].corr()
# Plotting correlation heatmap
plt.figure(figsize=(10, 8))
sns.heatmap(events_corr, annot=True, cmap='coolwarm', fmt=".2f")
plt.tight_layout()
plt.show()
cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration','Latitude','Longitude']
skewness=events_copy[cols].skew()
# Print the skewness of each feature
print("Skewness of Features:")
print(skewness)
Skewness of Features: Category_0 0.653386 Category_1 0.244603 Category_2 0.273549 Category_3 -0.403194 Category_4 -1.331694 Start_ordinal 0.014341 End_ordinal 0.012988 Duration 10.50623 Latitude -3.516628 Longitude 4.425376 dtype: object
It can be seen that Duration is heavily positively skewed. Category_0 and Category_4 also have some skewness but they are binary features so any modification is not required.
Yeo Johnson power transformation is applied since it works for both positive and negative data and is more robust
cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration']
pt = PowerTransformer(method='yeo-johnson')
yeojohnson_val_X = pt.fit_transform(events_copy[cols])
events_copy[cols]=yeojohnson_val_X
cols=['Latitude','Longitude']
pt = PowerTransformer(method='yeo-johnson')
yeojohnson_val_Y = pt.fit_transform(events_copy[cols])
events_copy[['Latitude Transformed','Longitude Transformed']]=yeojohnson_val_Y
events_copy
| Category_0 | Category_1 | Category_2 | Category_3 | Category_4 | Start_ordinal | End_ordinal | Duration | Location | Latitude | Longitude | Category | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | -5.606626e-14 | -1.043977 | -0.826528 | Fawkner Park, Melbourne, Australia | -37.841461 | 144.981868 | Filming - Movie | 0.0 | -1.609823e-15 |
| 1 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | -3.719247e-14 | -0.677474 | 1.487449 | Inner Suburb Locations, Melbourne, Australia | -37.798004 | 144.966623 | Filming - Movie | 0.0 | -3.108624e-15 |
| 2 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | -3.219647e-15 | -0.071633 | -0.826528 | Inner Suburb Locations, Melbourne, Australia | -37.798004 | 144.966623 | Filming - Movie | 0.0 | -3.108624e-15 |
| 3 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | 3.019807e-14 | 0.545218 | 0.406659 | Flagstaff Gardens, Melbourne, Australia | -37.810879 | 144.954607 | Filming - Movie | 0.0 | -4.302114e-15 |
| 4 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | 3.019807e-14 | 0.545218 | 0.406659 | Collins Street, Melbourne, Australia | -37.814022 | 144.971368 | Filming - Movie | 0.0 | -2.636780e-15 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 4247 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 7.993606e-14 | 1.485619 | 1.596276 | Alexandra Gardens, Melbourne, Australia | -37.821242 | 144.973663 | Public Event - Cycling | 0.0 | -2.414735e-15 |
| 4248 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 7.993606e-14 | 1.485619 | 1.596276 | AG - Riverslide Skate Park, Melbourne, Australia | -37.817406 | 144.972989 | Public Event - Cycling | 0.0 | -2.498002e-15 |
| 4249 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 7.993606e-14 | 1.485619 | 1.596276 | St Kilda Road, Melbourne, Australia | -37.856587 | 144.983192 | Public Event - Cycling | 0.0 | -1.471046e-15 |
| 4250 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 7.993606e-14 | 1.485619 | 1.596276 | Queensbridge Square, Melbourne, Australia | -37.821212 | 144.961919 | Public Event - Cycling | 0.0 | -3.580469e-15 |
| 4251 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 8.237855e-14 | 1.504004 | 0.406659 | Harbour Esplanade, Melbourne, Australia | -37.815133 | 144.944919 | Public Event - Cycling | 0.0 | -5.245804e-15 |
4252 rows × 14 columns
cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration','Latitude Transformed','Longitude Transformed']
skewness = events_copy[cols].skew()
# Print the skewness of each variable
print("Skewness of Variables:")
print(skewness)
Skewness of Variables: Category_0 0.653386 Category_1 0.244603 Category_2 0.273549 Category_3 -0.403194 Category_4 -1.331694 Start_ordinal 0.000000 End_ordinal 0.011373 Duration 0.580368 Latitude Transformed 0.000000 Longitude Transformed 0.000000 dtype: float64
cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration','Latitude Transformed','Longitude Transformed']
standard_scaler = StandardScaler()
standard_scaler.fit(events_copy[cols])
scaled=standard_scaler.transform(events_copy[cols])
events_copy[cols]=scaled
events_copy
| Category_0 | Category_1 | Category_2 | Category_3 | Category_4 | Start_ordinal | End_ordinal | Duration | Location | Latitude | Longitude | Category | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | -1.033074 | -1.043981 | -0.826528 | Fawkner Park, Melbourne, Australia | -37.841461 | 144.981868 | Filming - Movie | -0.055714 | -0.129330 |
| 1 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | -0.685719 | -0.677478 | 1.487449 | Inner Suburb Locations, Melbourne, Australia | -37.798004 | 144.966623 | Filming - Movie | -0.055714 | -0.248887 |
| 2 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | -0.060480 | -0.071637 | -0.826528 | Inner Suburb Locations, Melbourne, Australia | -37.798004 | 144.966623 | Filming - Movie | -0.055714 | -0.248887 |
| 3 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | 0.554543 | 0.545214 | 0.406659 | Flagstaff Gardens, Melbourne, Australia | -37.810879 | 144.954607 | Filming - Movie | -0.055714 | -0.344089 |
| 4 | -0.725398 | -0.885188 | -0.872578 | -1.221630 | 0.535654 | 0.554543 | 0.545214 | 0.406659 | Collins Street, Melbourne, Australia | -37.814022 | 144.971368 | Filming - Movie | -0.055714 | -0.211248 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 4247 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 1.469926 | 1.485615 | 1.596276 | Alexandra Gardens, Melbourne, Australia | -37.821242 | 144.973663 | Public Event - Cycling | -0.055714 | -0.193536 |
| 4248 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 1.469926 | 1.485615 | 1.596276 | AG - Riverslide Skate Park, Melbourne, Australia | -37.817406 | 144.972989 | Public Event - Cycling | -0.055714 | -0.200178 |
| 4249 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 1.469926 | 1.485615 | 1.596276 | St Kilda Road, Melbourne, Australia | -37.856587 | 144.983192 | Public Event - Cycling | -0.055714 | -0.118260 |
| 4250 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 1.469926 | 1.485615 | 1.596276 | Queensbridge Square, Melbourne, Australia | -37.821212 | 144.961919 | Public Event - Cycling | -0.055714 | -0.286525 |
| 4251 | -0.725398 | 1.129704 | -0.872578 | 0.818578 | -1.866878 | 1.514877 | 1.504000 | 0.406659 | Harbour Esplanade, Melbourne, Australia | -37.815133 | 144.944919 | Public Event - Cycling | -0.055714 | -0.419365 |
4252 rows × 14 columns
Normalized the train and test datasets using MinMax Scaling
cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration','Latitude Transformed','Longitude Transformed']
minmax_scaler = MinMaxScaler()
minmax_scaler.fit(events_copy[cols])
scaled = minmax_scaler.transform(events_copy[cols])
events_copy[cols]=scaled
events_copy
| Category_0 | Category_1 | Category_2 | Category_3 | Category_4 | Start_ordinal | End_ordinal | Duration | Location | Latitude | Longitude | Category | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.189707 | 0.184036 | 0.000000 | Fawkner Park, Melbourne, Australia | -37.841461 | 144.981868 | Filming - Movie | 0.666667 | 0.385328 |
| 1 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.291442 | 0.289602 | 0.859095 | Inner Suburb Locations, Melbourne, Australia | -37.798004 | 144.966623 | Filming - Movie | 0.666667 | 0.371808 |
| 2 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.474566 | 0.464107 | 0.000000 | Inner Suburb Locations, Melbourne, Australia | -37.798004 | 144.966623 | Filming - Movie | 0.666667 | 0.371808 |
| 3 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.654698 | 0.641782 | 0.457838 | Flagstaff Gardens, Melbourne, Australia | -37.810879 | 144.954607 | Filming - Movie | 0.666667 | 0.361042 |
| 4 | 0.0 | 0.0 | 0.0 | 0.0 | 1.0 | 0.654698 | 0.641782 | 0.457838 | Collins Street, Melbourne, Australia | -37.814022 | 144.971368 | Filming - Movie | 0.666667 | 0.376064 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 4247 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.922801 | 0.912652 | 0.899499 | Alexandra Gardens, Melbourne, Australia | -37.821242 | 144.973663 | Public Event - Cycling | 0.666667 | 0.378067 |
| 4248 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.922801 | 0.912652 | 0.899499 | AG - Riverslide Skate Park, Melbourne, Australia | -37.817406 | 144.972989 | Public Event - Cycling | 0.666667 | 0.377316 |
| 4249 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.922801 | 0.912652 | 0.899499 | St Kilda Road, Melbourne, Australia | -37.856587 | 144.983192 | Public Event - Cycling | 0.666667 | 0.386580 |
| 4250 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.922801 | 0.912652 | 0.899499 | Queensbridge Square, Melbourne, Australia | -37.821212 | 144.961919 | Public Event - Cycling | 0.666667 | 0.367551 |
| 4251 | 0.0 | 1.0 | 0.0 | 1.0 | 0.0 | 0.935966 | 0.917948 | 0.457838 | Harbour Esplanade, Melbourne, Australia | -37.815133 | 144.944919 | Public Event - Cycling | 0.666667 | 0.352529 |
4252 rows × 14 columns
Plotting histograms of each numeric feature to visualise the distribution
cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration','Latitude Transformed','Longitude Transformed']
fig,axes=plt.subplots(nrows=5,ncols=2,figsize=(30, 50))
num=0
for column in cols:
ax=axes.flatten()[num] # Adjust figure size as needed
ax.hist(events_copy[column], bins=20)
ax.set_title(f'Histogram of {column}')
ax.set_xlabel(column)
ax.set_ylabel('Frequency')
ax.grid(True)
num+=1
plt.tight_layout() # Adjust subplot layout
plt.show()
X_cols=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration','Location','Category']
Y_cols=['Latitude','Longitude','Latitude Transformed','Longitude Transformed']
X_train,X_test,Y_train,Y_test=train_test_split(events_copy[X_cols],events_copy[Y_cols],test_size=0.2,random_state=100)
X_train.reset_index(drop=True,inplace=True)
Y_train.reset_index(drop=True,inplace=True)
X_test.reset_index(drop=True,inplace=True)
Y_test.reset_index(drop=True,inplace=True)
X_train.shape
(3401, 10)
Y_train
| Latitude | Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|
| 0 | -37.856587 | 144.983192 | 0.666667 | 0.386580 |
| 1 | -37.783751 | 144.961831 | 0.750000 | 0.367551 |
| 2 | -37.806248 | 144.971232 | 0.666667 | 0.375814 |
| 3 | -38.122157 | 145.305169 | 0.333333 | 0.672258 |
| 4 | -37.806248 | 144.971232 | 0.666667 | 0.375814 |
| ... | ... | ... | ... | ... |
| 3396 | -37.821242 | 144.973663 | 0.666667 | 0.378067 |
| 3397 | -37.825916 | 144.974386 | 0.666667 | 0.378818 |
| 3398 | -37.798004 | 144.966623 | 0.666667 | 0.371808 |
| 3399 | -37.810879 | 144.954607 | 0.666667 | 0.361042 |
| 3400 | -37.812684 | 144.980505 | 0.666667 | 0.384326 |
3401 rows × 4 columns
Defining Pearson Correlation and Euclidean distance to be used as metrics during training
def pearson_correlation(y_true, y_pred):
mean_true = K.mean(y_true)
mean_pred = K.mean(y_pred)
# Calculating covariance and standard deviations
cov = K.sum((y_true - mean_true) * (y_pred - mean_pred))
std_true = K.sqrt(K.sum((y_true - mean_true)**2))
std_pred = K.sqrt(K.sum((y_pred - mean_pred)**2))
# Calculating correlation coefficient
correlation = cov / (std_true*std_pred)
return correlation
def euclidean_distance(y_true, y_pred):
# Splitting the true and predicted values into latitude and longitude components
lat_true, lon_true = y_true[:, 0], y_true[:, 1]
lat_pred, lon_pred = y_pred[:, 0], y_pred[:, 1]
# Calculating the squared differences for latitude and longitude
squared_diff_lat = K.square(lat_pred - lat_true)
squared_diff_lon = K.square(lon_pred - lon_true)
# Summing the squared differences and taking the square root to compute Euclidean distance
euclidean_dist = K.sqrt(squared_diff_lat + squared_diff_lon)
return euclidean_dist
cols_X=['Category_0','Category_1','Category_2','Category_3','Category_4','Start_ordinal','End_ordinal','Duration']
cols_Y=['Latitude Transformed','Longitude Transformed']
Grid search with cv=3 is used to find best batch size and epoch number
The input layer is followed by 2 dense layers with 64 units, then Batch Normalization is applied, then 2 dense layers with 32 units and lastly 2 more layers with 16 units followed by the output layer. LeakyReLU is used with alpha=0.1 throughout as the activation function and Adadelta optimizer is used since it is has adaptive learning rate. Accuracy, Mean average error, Pearson's correlation and Eulidean distance are used as metrics
def create_model():
inputs = Input(shape=(8,))
x = Dense(64,LeakyReLU(alpha=0.1))(inputs)
x = Dense(64,LeakyReLU(alpha=0.1))(x)
x=BatchNormalization()(x)
x = Dense(32,LeakyReLU(alpha=0.1))(x)
x = Dense(32,LeakyReLU(alpha=0.1))(x)
x = Dense(16,LeakyReLU(alpha=0.1))(x)
x = Dense(16,LeakyReLU(alpha=0.1))(x)
output = Dense(2)(x)
model = Model(inputs=inputs, outputs=output)
model.compile(optimizer=Adadelta(), loss='mae', metrics=['accuracy','mae',pearson_correlation,euclidean_distance])#,distance_correlation
return model
model = KerasRegressor(model=create_model)#layers=1
param_grid = {
'batch_size': [10,15,30,40,50,60],
'epochs': [100,150,200,250,300,350],
}
grid = GridSearchCV(estimator=model, param_grid=param_grid, cv=3)
grid_result = grid.fit(X_train[cols_X], Y_train[cols_Y],verbose=1)
print("Best: %f using %s" % (grid_result.best_score_, grid_result.best_params_))
Epoch 1/100
227/227 [==============================] - 1s 890us/step - loss: 0.5851 - accuracy: 0.2867 - mae: 0.5851 - pearson_correlation: -0.4700 - euclidean_distance: 0.9331
Epoch 2/100
227/227 [==============================] - 0s 867us/step - loss: 0.5780 - accuracy: 0.2726 - mae: 0.5780 - pearson_correlation: -0.4762 - euclidean_distance: 0.9231
Epoch 3/100
227/227 [==============================] - 0s 889us/step - loss: 0.5698 - accuracy: 0.2753 - mae: 0.5698 - pearson_correlation: -0.4799 - euclidean_distance: 0.9120
Epoch 4/100
227/227 [==============================] - 0s 866us/step - loss: 0.5634 - accuracy: 0.2678 - mae: 0.5634 - pearson_correlation: -0.4733 - euclidean_distance: 0.9025
Epoch 5/100
227/227 [==============================] - 0s 847us/step - loss: 0.5552 - accuracy: 0.2744 - mae: 0.5552 - pearson_correlation: -0.4570 - euclidean_distance: 0.8899
Epoch 6/100
227/227 [==============================] - 0s 863us/step - loss: 0.5490 - accuracy: 0.2770 - mae: 0.5490 - pearson_correlation: -0.4592 - euclidean_distance: 0.8800
Epoch 7/100
227/227 [==============================] - 0s 848us/step - loss: 0.5421 - accuracy: 0.2726 - mae: 0.5421 - pearson_correlation: -0.4558 - euclidean_distance: 0.8698
Epoch 8/100
227/227 [==============================] - 0s 840us/step - loss: 0.5353 - accuracy: 0.2823 - mae: 0.5353 - pearson_correlation: -0.4395 - euclidean_distance: 0.8574
Epoch 9/100
227/227 [==============================] - 0s 824us/step - loss: 0.5287 - accuracy: 0.2858 - mae: 0.5287 - pearson_correlation: -0.4443 - euclidean_distance: 0.8477
Epoch 10/100
227/227 [==============================] - 0s 817us/step - loss: 0.5210 - accuracy: 0.2907 - mae: 0.5210 - pearson_correlation: -0.4456 - euclidean_distance: 0.8373
Epoch 11/100
227/227 [==============================] - 0s 816us/step - loss: 0.5141 - accuracy: 0.2964 - mae: 0.5141 - pearson_correlation: -0.4214 - euclidean_distance: 0.8254
Epoch 12/100
227/227 [==============================] - 0s 836us/step - loss: 0.5079 - accuracy: 0.2854 - mae: 0.5079 - pearson_correlation: -0.4188 - euclidean_distance: 0.8161
Epoch 13/100
227/227 [==============================] - 0s 862us/step - loss: 0.5004 - accuracy: 0.2973 - mae: 0.5004 - pearson_correlation: -0.4032 - euclidean_distance: 0.8041
Epoch 14/100
227/227 [==============================] - 0s 869us/step - loss: 0.4948 - accuracy: 0.3101 - mae: 0.4948 - pearson_correlation: -0.3886 - euclidean_distance: 0.7948
Epoch 15/100
227/227 [==============================] - 0s 852us/step - loss: 0.4863 - accuracy: 0.3189 - mae: 0.4863 - pearson_correlation: -0.3702 - euclidean_distance: 0.7815
Epoch 16/100
227/227 [==============================] - 0s 870us/step - loss: 0.4799 - accuracy: 0.3127 - mae: 0.4799 - pearson_correlation: -0.3641 - euclidean_distance: 0.7716
Epoch 17/100
227/227 [==============================] - 0s 897us/step - loss: 0.4703 - accuracy: 0.3277 - mae: 0.4703 - pearson_correlation: -0.3500 - euclidean_distance: 0.7569
Epoch 18/100
227/227 [==============================] - 0s 932us/step - loss: 0.4644 - accuracy: 0.3277 - mae: 0.4644 - pearson_correlation: -0.3360 - euclidean_distance: 0.7477
Epoch 19/100
227/227 [==============================] - 0s 840us/step - loss: 0.4563 - accuracy: 0.3388 - mae: 0.4563 - pearson_correlation: -0.3283 - euclidean_distance: 0.7345
Epoch 20/100
227/227 [==============================] - 0s 805us/step - loss: 0.4484 - accuracy: 0.3524 - mae: 0.4484 - pearson_correlation: -0.2989 - euclidean_distance: 0.7212
Epoch 21/100
227/227 [==============================] - 0s 817us/step - loss: 0.4415 - accuracy: 0.3657 - mae: 0.4415 - pearson_correlation: -0.2765 - euclidean_distance: 0.7094
Epoch 22/100
227/227 [==============================] - 0s 811us/step - loss: 0.4325 - accuracy: 0.3767 - mae: 0.4325 - pearson_correlation: -0.2539 - euclidean_distance: 0.6951
Epoch 23/100
227/227 [==============================] - 0s 895us/step - loss: 0.4237 - accuracy: 0.3996 - mae: 0.4237 - pearson_correlation: -0.2235 - euclidean_distance: 0.6804
Epoch 24/100
227/227 [==============================] - 0s 819us/step - loss: 0.4141 - accuracy: 0.4151 - mae: 0.4141 - pearson_correlation: -0.2014 - euclidean_distance: 0.6662
Epoch 25/100
227/227 [==============================] - 0s 812us/step - loss: 0.4053 - accuracy: 0.4393 - mae: 0.4053 - pearson_correlation: -0.1762 - euclidean_distance: 0.6512
Epoch 26/100
227/227 [==============================] - 0s 821us/step - loss: 0.3975 - accuracy: 0.4685 - mae: 0.3975 - pearson_correlation: -0.1424 - euclidean_distance: 0.6367
Epoch 27/100
227/227 [==============================] - 0s 811us/step - loss: 0.3869 - accuracy: 0.5042 - mae: 0.3869 - pearson_correlation: -0.1120 - euclidean_distance: 0.6204
Epoch 28/100
227/227 [==============================] - 0s 834us/step - loss: 0.3770 - accuracy: 0.5249 - mae: 0.3770 - pearson_correlation: -0.0768 - euclidean_distance: 0.6036
Epoch 29/100
227/227 [==============================] - 0s 810us/step - loss: 0.3676 - accuracy: 0.5421 - mae: 0.3676 - pearson_correlation: -0.0448 - euclidean_distance: 0.5878
Epoch 30/100
227/227 [==============================] - 0s 815us/step - loss: 0.3579 - accuracy: 0.5523 - mae: 0.3579 - pearson_correlation: -0.0294 - euclidean_distance: 0.5729
Epoch 31/100
227/227 [==============================] - 0s 825us/step - loss: 0.3474 - accuracy: 0.5880 - mae: 0.3474 - pearson_correlation: 0.0233 - euclidean_distance: 0.5548
Epoch 32/100
227/227 [==============================] - 0s 824us/step - loss: 0.3365 - accuracy: 0.5906 - mae: 0.3365 - pearson_correlation: 0.0468 - euclidean_distance: 0.5380
Epoch 33/100
227/227 [==============================] - 0s 811us/step - loss: 0.3271 - accuracy: 0.6220 - mae: 0.3271 - pearson_correlation: 0.0922 - euclidean_distance: 0.5204
Epoch 34/100
227/227 [==============================] - 0s 831us/step - loss: 0.3165 - accuracy: 0.6326 - mae: 0.3165 - pearson_correlation: 0.1162 - euclidean_distance: 0.5035
Epoch 35/100
227/227 [==============================] - 0s 811us/step - loss: 0.3054 - accuracy: 0.6414 - mae: 0.3054 - pearson_correlation: 0.1577 - euclidean_distance: 0.4855
Epoch 36/100
227/227 [==============================] - 0s 810us/step - loss: 0.2982 - accuracy: 0.6564 - mae: 0.2982 - pearson_correlation: 0.1835 - euclidean_distance: 0.4730
Epoch 37/100
227/227 [==============================] - 0s 811us/step - loss: 0.2919 - accuracy: 0.6643 - mae: 0.2919 - pearson_correlation: 0.1971 - euclidean_distance: 0.4627
Epoch 38/100
227/227 [==============================] - 0s 808us/step - loss: 0.2820 - accuracy: 0.6780 - mae: 0.2820 - pearson_correlation: 0.2229 - euclidean_distance: 0.4481
Epoch 39/100
227/227 [==============================] - 0s 808us/step - loss: 0.2753 - accuracy: 0.6811 - mae: 0.2753 - pearson_correlation: 0.2491 - euclidean_distance: 0.4373
Epoch 40/100
227/227 [==============================] - 0s 843us/step - loss: 0.2657 - accuracy: 0.6912 - mae: 0.2657 - pearson_correlation: 0.2695 - euclidean_distance: 0.4218
Epoch 41/100
227/227 [==============================] - 0s 862us/step - loss: 0.2645 - accuracy: 0.7031 - mae: 0.2645 - pearson_correlation: 0.2819 - euclidean_distance: 0.4187
Epoch 42/100
227/227 [==============================] - 0s 813us/step - loss: 0.2534 - accuracy: 0.7120 - mae: 0.2534 - pearson_correlation: 0.3075 - euclidean_distance: 0.4028
Epoch 43/100
227/227 [==============================] - 0s 812us/step - loss: 0.2472 - accuracy: 0.7062 - mae: 0.2472 - pearson_correlation: 0.3182 - euclidean_distance: 0.3943
Epoch 44/100
227/227 [==============================] - 0s 803us/step - loss: 0.2414 - accuracy: 0.7190 - mae: 0.2414 - pearson_correlation: 0.3327 - euclidean_distance: 0.3840
Epoch 45/100
227/227 [==============================] - 0s 807us/step - loss: 0.2366 - accuracy: 0.7208 - mae: 0.2366 - pearson_correlation: 0.3461 - euclidean_distance: 0.3767
Epoch 46/100
227/227 [==============================] - 0s 803us/step - loss: 0.2308 - accuracy: 0.7358 - mae: 0.2308 - pearson_correlation: 0.3557 - euclidean_distance: 0.3682
Epoch 47/100
227/227 [==============================] - 0s 804us/step - loss: 0.2255 - accuracy: 0.7455 - mae: 0.2255 - pearson_correlation: 0.3751 - euclidean_distance: 0.3595
Epoch 48/100
227/227 [==============================] - 0s 793us/step - loss: 0.2186 - accuracy: 0.7499 - mae: 0.2186 - pearson_correlation: 0.3921 - euclidean_distance: 0.3487
Epoch 49/100
227/227 [==============================] - 0s 794us/step - loss: 0.2162 - accuracy: 0.7419 - mae: 0.2162 - pearson_correlation: 0.3859 - euclidean_distance: 0.3459
Epoch 50/100
227/227 [==============================] - 0s 799us/step - loss: 0.2096 - accuracy: 0.7605 - mae: 0.2096 - pearson_correlation: 0.4165 - euclidean_distance: 0.3341
Epoch 51/100
227/227 [==============================] - 0s 800us/step - loss: 0.2089 - accuracy: 0.7565 - mae: 0.2089 - pearson_correlation: 0.4159 - euclidean_distance: 0.3339
Epoch 52/100
227/227 [==============================] - 0s 797us/step - loss: 0.2016 - accuracy: 0.7561 - mae: 0.2016 - pearson_correlation: 0.4243 - euclidean_distance: 0.3242
Epoch 53/100
227/227 [==============================] - 0s 801us/step - loss: 0.1990 - accuracy: 0.7750 - mae: 0.1990 - pearson_correlation: 0.4469 - euclidean_distance: 0.3182
Epoch 54/100
227/227 [==============================] - 0s 800us/step - loss: 0.1960 - accuracy: 0.7706 - mae: 0.1960 - pearson_correlation: 0.4437 - euclidean_distance: 0.3147
Epoch 55/100
227/227 [==============================] - 0s 797us/step - loss: 0.1916 - accuracy: 0.7746 - mae: 0.1916 - pearson_correlation: 0.4524 - euclidean_distance: 0.3069
Epoch 56/100
227/227 [==============================] - 0s 802us/step - loss: 0.1868 - accuracy: 0.7724 - mae: 0.1868 - pearson_correlation: 0.4623 - euclidean_distance: 0.2999
Epoch 57/100
227/227 [==============================] - 0s 795us/step - loss: 0.1854 - accuracy: 0.7764 - mae: 0.1854 - pearson_correlation: 0.4639 - euclidean_distance: 0.2979
Epoch 58/100
227/227 [==============================] - 0s 804us/step - loss: 0.1793 - accuracy: 0.7869 - mae: 0.1793 - pearson_correlation: 0.4899 - euclidean_distance: 0.2884
Epoch 59/100
227/227 [==============================] - 0s 803us/step - loss: 0.1766 - accuracy: 0.7905 - mae: 0.1766 - pearson_correlation: 0.4854 - euclidean_distance: 0.2843
Epoch 60/100
227/227 [==============================] - 0s 798us/step - loss: 0.1760 - accuracy: 0.7997 - mae: 0.1760 - pearson_correlation: 0.4996 - euclidean_distance: 0.2822
Epoch 61/100
227/227 [==============================] - 0s 806us/step - loss: 0.1731 - accuracy: 0.8072 - mae: 0.1731 - pearson_correlation: 0.5035 - euclidean_distance: 0.2782
Epoch 62/100
227/227 [==============================] - 0s 791us/step - loss: 0.1694 - accuracy: 0.8147 - mae: 0.1694 - pearson_correlation: 0.5171 - euclidean_distance: 0.2737
Epoch 63/100
227/227 [==============================] - 0s 803us/step - loss: 0.1678 - accuracy: 0.8165 - mae: 0.1678 - pearson_correlation: 0.5204 - euclidean_distance: 0.2696
Epoch 64/100
227/227 [==============================] - 0s 787us/step - loss: 0.1642 - accuracy: 0.8152 - mae: 0.1642 - pearson_correlation: 0.5295 - euclidean_distance: 0.2645
Epoch 65/100
227/227 [==============================] - 0s 807us/step - loss: 0.1639 - accuracy: 0.8125 - mae: 0.1639 - pearson_correlation: 0.5293 - euclidean_distance: 0.2638
Epoch 66/100
227/227 [==============================] - 0s 795us/step - loss: 0.1621 - accuracy: 0.8275 - mae: 0.1621 - pearson_correlation: 0.5336 - euclidean_distance: 0.2616
Epoch 67/100
227/227 [==============================] - 0s 799us/step - loss: 0.1579 - accuracy: 0.8315 - mae: 0.1579 - pearson_correlation: 0.5510 - euclidean_distance: 0.2549
Epoch 68/100
227/227 [==============================] - 0s 800us/step - loss: 0.1553 - accuracy: 0.8363 - mae: 0.1553 - pearson_correlation: 0.5641 - euclidean_distance: 0.2501
Epoch 69/100
227/227 [==============================] - 0s 807us/step - loss: 0.1540 - accuracy: 0.8399 - mae: 0.1540 - pearson_correlation: 0.5605 - euclidean_distance: 0.2479
Epoch 70/100
227/227 [==============================] - 0s 790us/step - loss: 0.1548 - accuracy: 0.8368 - mae: 0.1548 - pearson_correlation: 0.5546 - euclidean_distance: 0.2496
Epoch 71/100
227/227 [==============================] - 0s 793us/step - loss: 0.1525 - accuracy: 0.8412 - mae: 0.1525 - pearson_correlation: 0.5729 - euclidean_distance: 0.2456
Epoch 72/100
227/227 [==============================] - 0s 819us/step - loss: 0.1488 - accuracy: 0.8531 - mae: 0.1488 - pearson_correlation: 0.5801 - euclidean_distance: 0.2402
Epoch 73/100
227/227 [==============================] - 0s 791us/step - loss: 0.1453 - accuracy: 0.8580 - mae: 0.1453 - pearson_correlation: 0.5933 - euclidean_distance: 0.2341
Epoch 74/100
227/227 [==============================] - 0s 803us/step - loss: 0.1444 - accuracy: 0.8597 - mae: 0.1444 - pearson_correlation: 0.5980 - euclidean_distance: 0.2322
Epoch 75/100
227/227 [==============================] - 0s 798us/step - loss: 0.1441 - accuracy: 0.8606 - mae: 0.1441 - pearson_correlation: 0.5926 - euclidean_distance: 0.2327
Epoch 76/100
227/227 [==============================] - 0s 797us/step - loss: 0.1424 - accuracy: 0.8681 - mae: 0.1424 - pearson_correlation: 0.5977 - euclidean_distance: 0.2294
Epoch 77/100
227/227 [==============================] - 0s 800us/step - loss: 0.1397 - accuracy: 0.8791 - mae: 0.1397 - pearson_correlation: 0.6183 - euclidean_distance: 0.2250
Epoch 78/100
227/227 [==============================] - 0s 793us/step - loss: 0.1398 - accuracy: 0.8725 - mae: 0.1398 - pearson_correlation: 0.6091 - euclidean_distance: 0.2256
Epoch 79/100
227/227 [==============================] - 0s 799us/step - loss: 0.1393 - accuracy: 0.8800 - mae: 0.1393 - pearson_correlation: 0.6136 - euclidean_distance: 0.2247
Epoch 80/100
227/227 [==============================] - 0s 797us/step - loss: 0.1358 - accuracy: 0.8800 - mae: 0.1358 - pearson_correlation: 0.6288 - euclidean_distance: 0.2184
Epoch 81/100
227/227 [==============================] - 0s 798us/step - loss: 0.1326 - accuracy: 0.8919 - mae: 0.1326 - pearson_correlation: 0.6346 - euclidean_distance: 0.2136
Epoch 82/100
227/227 [==============================] - 0s 796us/step - loss: 0.1350 - accuracy: 0.8933 - mae: 0.1350 - pearson_correlation: 0.6345 - euclidean_distance: 0.2166
Epoch 83/100
227/227 [==============================] - 0s 801us/step - loss: 0.1332 - accuracy: 0.8928 - mae: 0.1332 - pearson_correlation: 0.6363 - euclidean_distance: 0.2144
Epoch 84/100
227/227 [==============================] - 0s 796us/step - loss: 0.1311 - accuracy: 0.8990 - mae: 0.1311 - pearson_correlation: 0.6414 - euclidean_distance: 0.2113
Epoch 85/100
227/227 [==============================] - 0s 880us/step - loss: 0.1312 - accuracy: 0.9052 - mae: 0.1312 - pearson_correlation: 0.6474 - euclidean_distance: 0.2105
Epoch 86/100
227/227 [==============================] - 0s 843us/step - loss: 0.1267 - accuracy: 0.9056 - mae: 0.1267 - pearson_correlation: 0.6613 - euclidean_distance: 0.2033
Epoch 87/100
227/227 [==============================] - 0s 817us/step - loss: 0.1269 - accuracy: 0.9082 - mae: 0.1269 - pearson_correlation: 0.6538 - euclidean_distance: 0.2045
Epoch 88/100
227/227 [==============================] - 0s 800us/step - loss: 0.1297 - accuracy: 0.9113 - mae: 0.1297 - pearson_correlation: 0.6513 - euclidean_distance: 0.2083
Epoch 89/100
227/227 [==============================] - 0s 805us/step - loss: 0.1243 - accuracy: 0.9210 - mae: 0.1243 - pearson_correlation: 0.6642 - euclidean_distance: 0.1996
Epoch 90/100
227/227 [==============================] - 0s 801us/step - loss: 0.1276 - accuracy: 0.9118 - mae: 0.1276 - pearson_correlation: 0.6658 - euclidean_distance: 0.2051
Epoch 91/100
227/227 [==============================] - 0s 804us/step - loss: 0.1245 - accuracy: 0.9175 - mae: 0.1245 - pearson_correlation: 0.6661 - euclidean_distance: 0.1995
Epoch 92/100
227/227 [==============================] - 0s 791us/step - loss: 0.1244 - accuracy: 0.9131 - mae: 0.1244 - pearson_correlation: 0.6680 - euclidean_distance: 0.1992
Epoch 93/100
227/227 [==============================] - 0s 799us/step - loss: 0.1264 - accuracy: 0.9210 - mae: 0.1264 - pearson_correlation: 0.6672 - euclidean_distance: 0.2026
Epoch 94/100
227/227 [==============================] - 0s 789us/step - loss: 0.1220 - accuracy: 0.9224 - mae: 0.1220 - pearson_correlation: 0.6765 - euclidean_distance: 0.1961
Epoch 95/100
227/227 [==============================] - 0s 789us/step - loss: 0.1214 - accuracy: 0.9259 - mae: 0.1214 - pearson_correlation: 0.6838 - euclidean_distance: 0.1945
Epoch 96/100
227/227 [==============================] - 0s 789us/step - loss: 0.1195 - accuracy: 0.9259 - mae: 0.1195 - pearson_correlation: 0.6882 - euclidean_distance: 0.1917
Epoch 97/100
227/227 [==============================] - 0s 788us/step - loss: 0.1176 - accuracy: 0.9290 - mae: 0.1176 - pearson_correlation: 0.6877 - euclidean_distance: 0.1895
Epoch 98/100
227/227 [==============================] - 0s 789us/step - loss: 0.1187 - accuracy: 0.9277 - mae: 0.1187 - pearson_correlation: 0.6861 - euclidean_distance: 0.1901
Epoch 99/100
227/227 [==============================] - 0s 794us/step - loss: 0.1197 - accuracy: 0.9356 - mae: 0.1197 - pearson_correlation: 0.6885 - euclidean_distance: 0.1916
Epoch 100/100
227/227 [==============================] - 0s 794us/step - loss: 0.1171 - accuracy: 0.9343 - mae: 0.1171 - pearson_correlation: 0.6929 - euclidean_distance: 0.1880
114/114 [==============================] - 0s 457us/step
Epoch 1/100
227/227 [==============================] - 1s 848us/step - loss: 0.7720 - accuracy: 0.0662 - mae: 0.7720 - pearson_correlation: -0.4339 - euclidean_distance: 1.2146
Epoch 2/100
227/227 [==============================] - 0s 944us/step - loss: 0.7499 - accuracy: 0.0750 - mae: 0.7499 - pearson_correlation: -0.4370 - euclidean_distance: 1.1831
Epoch 3/100
227/227 [==============================] - 0s 878us/step - loss: 0.7285 - accuracy: 0.0679 - mae: 0.7285 - pearson_correlation: -0.4339 - euclidean_distance: 1.1522
Epoch 4/100
227/227 [==============================] - 0s 1ms/step - loss: 0.7053 - accuracy: 0.0834 - mae: 0.7053 - pearson_correlation: -0.4334 - euclidean_distance: 1.1185
Epoch 5/100
227/227 [==============================] - 0s 812us/step - loss: 0.6840 - accuracy: 0.0913 - mae: 0.6840 - pearson_correlation: -0.4213 - euclidean_distance: 1.0875
Epoch 6/100
227/227 [==============================] - 0s 809us/step - loss: 0.6651 - accuracy: 0.0953 - mae: 0.6651 - pearson_correlation: -0.4217 - euclidean_distance: 1.0593
Epoch 7/100
227/227 [==============================] - 0s 798us/step - loss: 0.6405 - accuracy: 0.1041 - mae: 0.6405 - pearson_correlation: -0.4156 - euclidean_distance: 1.0248
Epoch 8/100
227/227 [==============================] - 0s 817us/step - loss: 0.6213 - accuracy: 0.1182 - mae: 0.6213 - pearson_correlation: -0.4095 - euclidean_distance: 0.9966
Epoch 9/100
227/227 [==============================] - 0s 796us/step - loss: 0.5969 - accuracy: 0.1319 - mae: 0.5969 - pearson_correlation: -0.4095 - euclidean_distance: 0.9616
Epoch 10/100
227/227 [==============================] - 0s 829us/step - loss: 0.5745 - accuracy: 0.1332 - mae: 0.5745 - pearson_correlation: -0.4016 - euclidean_distance: 0.9286
Epoch 11/100
227/227 [==============================] - 0s 787us/step - loss: 0.5512 - accuracy: 0.1447 - mae: 0.5512 - pearson_correlation: -0.3944 - euclidean_distance: 0.8939
Epoch 12/100
227/227 [==============================] - 0s 808us/step - loss: 0.5296 - accuracy: 0.1575 - mae: 0.5296 - pearson_correlation: -0.3886 - euclidean_distance: 0.8622
Epoch 13/100
227/227 [==============================] - 0s 799us/step - loss: 0.5045 - accuracy: 0.1906 - mae: 0.5045 - pearson_correlation: -0.3795 - euclidean_distance: 0.8242
Epoch 14/100
227/227 [==============================] - 0s 786us/step - loss: 0.4828 - accuracy: 0.2003 - mae: 0.4828 - pearson_correlation: -0.3685 - euclidean_distance: 0.7921
Epoch 15/100
227/227 [==============================] - 0s 796us/step - loss: 0.4643 - accuracy: 0.2042 - mae: 0.4643 - pearson_correlation: -0.3581 - euclidean_distance: 0.7641
Epoch 16/100
227/227 [==============================] - 0s 790us/step - loss: 0.4416 - accuracy: 0.2338 - mae: 0.4416 - pearson_correlation: -0.3340 - euclidean_distance: 0.7287
Epoch 17/100
227/227 [==============================] - 0s 798us/step - loss: 0.4238 - accuracy: 0.2422 - mae: 0.4238 - pearson_correlation: -0.3267 - euclidean_distance: 0.7033
Epoch 18/100
227/227 [==============================] - 0s 780us/step - loss: 0.4021 - accuracy: 0.2655 - mae: 0.4021 - pearson_correlation: -0.3055 - euclidean_distance: 0.6688
Epoch 19/100
227/227 [==============================] - 0s 781us/step - loss: 0.3849 - accuracy: 0.2885 - mae: 0.3849 - pearson_correlation: -0.2706 - euclidean_distance: 0.6403
Epoch 20/100
227/227 [==============================] - 0s 787us/step - loss: 0.3674 - accuracy: 0.2916 - mae: 0.3674 - pearson_correlation: -0.2615 - euclidean_distance: 0.6135
Epoch 21/100
227/227 [==============================] - 0s 785us/step - loss: 0.3509 - accuracy: 0.3202 - mae: 0.3509 - pearson_correlation: -0.2272 - euclidean_distance: 0.5851
Epoch 22/100
227/227 [==============================] - 0s 812us/step - loss: 0.3378 - accuracy: 0.3260 - mae: 0.3378 - pearson_correlation: -0.2021 - euclidean_distance: 0.5641
Epoch 23/100
227/227 [==============================] - 0s 798us/step - loss: 0.3263 - accuracy: 0.3476 - mae: 0.3263 - pearson_correlation: -0.1787 - euclidean_distance: 0.5421
Epoch 24/100
227/227 [==============================] - 0s 785us/step - loss: 0.3121 - accuracy: 0.3749 - mae: 0.3121 - pearson_correlation: -0.1515 - euclidean_distance: 0.5196
Epoch 25/100
227/227 [==============================] - 0s 802us/step - loss: 0.3029 - accuracy: 0.3851 - mae: 0.3029 - pearson_correlation: -0.1255 - euclidean_distance: 0.5032
Epoch 26/100
227/227 [==============================] - 0s 820us/step - loss: 0.2884 - accuracy: 0.4169 - mae: 0.2884 - pearson_correlation: -0.0793 - euclidean_distance: 0.4773
Epoch 27/100
227/227 [==============================] - 0s 803us/step - loss: 0.2786 - accuracy: 0.4266 - mae: 0.2786 - pearson_correlation: -0.0550 - euclidean_distance: 0.4616
Epoch 28/100
227/227 [==============================] - 0s 829us/step - loss: 0.2709 - accuracy: 0.4614 - mae: 0.2709 - pearson_correlation: -0.0139 - euclidean_distance: 0.4472
Epoch 29/100
227/227 [==============================] - 0s 879us/step - loss: 0.2582 - accuracy: 0.4901 - mae: 0.2582 - pearson_correlation: 0.0208 - euclidean_distance: 0.4263
Epoch 30/100
227/227 [==============================] - 0s 860us/step - loss: 0.2508 - accuracy: 0.5315 - mae: 0.2508 - pearson_correlation: 0.0509 - euclidean_distance: 0.4124
Epoch 31/100
227/227 [==============================] - 0s 864us/step - loss: 0.2424 - accuracy: 0.5540 - mae: 0.2424 - pearson_correlation: 0.0841 - euclidean_distance: 0.3979
Epoch 32/100
227/227 [==============================] - 0s 1ms/step - loss: 0.2292 - accuracy: 0.5955 - mae: 0.2292 - pearson_correlation: 0.1279 - euclidean_distance: 0.3764
Epoch 33/100
227/227 [==============================] - 0s 1ms/step - loss: 0.2229 - accuracy: 0.6277 - mae: 0.2229 - pearson_correlation: 0.1626 - euclidean_distance: 0.3655
Epoch 34/100
227/227 [==============================] - 0s 962us/step - loss: 0.2177 - accuracy: 0.6431 - mae: 0.2177 - pearson_correlation: 0.1814 - euclidean_distance: 0.3564
Epoch 35/100
227/227 [==============================] - 0s 948us/step - loss: 0.2117 - accuracy: 0.6824 - mae: 0.2117 - pearson_correlation: 0.2116 - euclidean_distance: 0.3459
Epoch 36/100
227/227 [==============================] - 0s 836us/step - loss: 0.2076 - accuracy: 0.7093 - mae: 0.2076 - pearson_correlation: 0.2366 - euclidean_distance: 0.3391
Epoch 37/100
227/227 [==============================] - 0s 817us/step - loss: 0.1986 - accuracy: 0.7331 - mae: 0.1986 - pearson_correlation: 0.2713 - euclidean_distance: 0.3238
Epoch 38/100
227/227 [==============================] - 0s 855us/step - loss: 0.1920 - accuracy: 0.7733 - mae: 0.1920 - pearson_correlation: 0.2986 - euclidean_distance: 0.3134
Epoch 39/100
227/227 [==============================] - 0s 934us/step - loss: 0.1897 - accuracy: 0.7861 - mae: 0.1897 - pearson_correlation: 0.3124 - euclidean_distance: 0.3089
Epoch 40/100
227/227 [==============================] - 0s 783us/step - loss: 0.1865 - accuracy: 0.8152 - mae: 0.1865 - pearson_correlation: 0.3379 - euclidean_distance: 0.3032
Epoch 41/100
227/227 [==============================] - 0s 785us/step - loss: 0.1801 - accuracy: 0.8288 - mae: 0.1801 - pearson_correlation: 0.3669 - euclidean_distance: 0.2920
Epoch 42/100
227/227 [==============================] - 0s 779us/step - loss: 0.1767 - accuracy: 0.8522 - mae: 0.1767 - pearson_correlation: 0.3754 - euclidean_distance: 0.2867
Epoch 43/100
227/227 [==============================] - 0s 780us/step - loss: 0.1714 - accuracy: 0.8681 - mae: 0.1714 - pearson_correlation: 0.4027 - euclidean_distance: 0.2776
Epoch 44/100
227/227 [==============================] - 0s 780us/step - loss: 0.1735 - accuracy: 0.8730 - mae: 0.1735 - pearson_correlation: 0.4087 - euclidean_distance: 0.2805
Epoch 45/100
227/227 [==============================] - 0s 804us/step - loss: 0.1688 - accuracy: 0.8893 - mae: 0.1688 - pearson_correlation: 0.4237 - euclidean_distance: 0.2731
Epoch 46/100
227/227 [==============================] - 0s 980us/step - loss: 0.1643 - accuracy: 0.9030 - mae: 0.1643 - pearson_correlation: 0.4411 - euclidean_distance: 0.2655
Epoch 47/100
227/227 [==============================] - 0s 820us/step - loss: 0.1628 - accuracy: 0.8994 - mae: 0.1628 - pearson_correlation: 0.4556 - euclidean_distance: 0.2631
Epoch 48/100
227/227 [==============================] - 0s 778us/step - loss: 0.1571 - accuracy: 0.9131 - mae: 0.1571 - pearson_correlation: 0.4791 - euclidean_distance: 0.2525
Epoch 49/100
227/227 [==============================] - 0s 780us/step - loss: 0.1564 - accuracy: 0.9180 - mae: 0.1564 - pearson_correlation: 0.4856 - euclidean_distance: 0.2512
Epoch 50/100
227/227 [==============================] - 0s 776us/step - loss: 0.1584 - accuracy: 0.9193 - mae: 0.1584 - pearson_correlation: 0.4813 - euclidean_distance: 0.2541
Epoch 51/100
227/227 [==============================] - 0s 782us/step - loss: 0.1529 - accuracy: 0.9215 - mae: 0.1529 - pearson_correlation: 0.5063 - euclidean_distance: 0.2453
Epoch 52/100
227/227 [==============================] - 0s 776us/step - loss: 0.1496 - accuracy: 0.9281 - mae: 0.1496 - pearson_correlation: 0.5216 - euclidean_distance: 0.2400
Epoch 53/100
227/227 [==============================] - 0s 780us/step - loss: 0.1480 - accuracy: 0.9312 - mae: 0.1480 - pearson_correlation: 0.5284 - euclidean_distance: 0.2377
Epoch 54/100
227/227 [==============================] - 0s 788us/step - loss: 0.1491 - accuracy: 0.9360 - mae: 0.1491 - pearson_correlation: 0.5306 - euclidean_distance: 0.2388
Epoch 55/100
227/227 [==============================] - 0s 779us/step - loss: 0.1472 - accuracy: 0.9378 - mae: 0.1472 - pearson_correlation: 0.5453 - euclidean_distance: 0.2345
Epoch 56/100
227/227 [==============================] - 0s 778us/step - loss: 0.1430 - accuracy: 0.9369 - mae: 0.1430 - pearson_correlation: 0.5603 - euclidean_distance: 0.2282
Epoch 57/100
227/227 [==============================] - 0s 780us/step - loss: 0.1393 - accuracy: 0.9387 - mae: 0.1393 - pearson_correlation: 0.5761 - euclidean_distance: 0.2225
Epoch 58/100
227/227 [==============================] - 0s 781us/step - loss: 0.1439 - accuracy: 0.9365 - mae: 0.1439 - pearson_correlation: 0.5590 - euclidean_distance: 0.2292
Epoch 59/100
227/227 [==============================] - 0s 780us/step - loss: 0.1390 - accuracy: 0.9444 - mae: 0.1390 - pearson_correlation: 0.5834 - euclidean_distance: 0.2220
Epoch 60/100
227/227 [==============================] - 0s 777us/step - loss: 0.1373 - accuracy: 0.9484 - mae: 0.1373 - pearson_correlation: 0.5830 - euclidean_distance: 0.2197
Epoch 61/100
227/227 [==============================] - 0s 792us/step - loss: 0.1333 - accuracy: 0.9479 - mae: 0.1333 - pearson_correlation: 0.5998 - euclidean_distance: 0.2128
Epoch 62/100
227/227 [==============================] - 0s 782us/step - loss: 0.1383 - accuracy: 0.9440 - mae: 0.1383 - pearson_correlation: 0.5890 - euclidean_distance: 0.2203
Epoch 63/100
227/227 [==============================] - 0s 783us/step - loss: 0.1348 - accuracy: 0.9444 - mae: 0.1348 - pearson_correlation: 0.5986 - euclidean_distance: 0.2149
Epoch 64/100
227/227 [==============================] - 0s 782us/step - loss: 0.1329 - accuracy: 0.9493 - mae: 0.1329 - pearson_correlation: 0.6109 - euclidean_distance: 0.2117
Epoch 65/100
227/227 [==============================] - 0s 780us/step - loss: 0.1322 - accuracy: 0.9479 - mae: 0.1322 - pearson_correlation: 0.6171 - euclidean_distance: 0.2105
Epoch 66/100
227/227 [==============================] - 0s 778us/step - loss: 0.1267 - accuracy: 0.9493 - mae: 0.1267 - pearson_correlation: 0.6292 - euclidean_distance: 0.2019
Epoch 67/100
227/227 [==============================] - 0s 780us/step - loss: 0.1291 - accuracy: 0.9488 - mae: 0.1291 - pearson_correlation: 0.6261 - euclidean_distance: 0.2052
Epoch 68/100
227/227 [==============================] - 0s 778us/step - loss: 0.1294 - accuracy: 0.9519 - mae: 0.1294 - pearson_correlation: 0.6257 - euclidean_distance: 0.2059
Epoch 69/100
227/227 [==============================] - 0s 885us/step - loss: 0.1272 - accuracy: 0.9515 - mae: 0.1272 - pearson_correlation: 0.6344 - euclidean_distance: 0.2029
Epoch 70/100
227/227 [==============================] - 0s 842us/step - loss: 0.1262 - accuracy: 0.9515 - mae: 0.1262 - pearson_correlation: 0.6357 - euclidean_distance: 0.2006
Epoch 71/100
227/227 [==============================] - 0s 802us/step - loss: 0.1305 - accuracy: 0.9515 - mae: 0.1305 - pearson_correlation: 0.6317 - euclidean_distance: 0.2069
Epoch 72/100
227/227 [==============================] - 0s 804us/step - loss: 0.1256 - accuracy: 0.9519 - mae: 0.1256 - pearson_correlation: 0.6488 - euclidean_distance: 0.1989
Epoch 73/100
227/227 [==============================] - 0s 843us/step - loss: 0.1218 - accuracy: 0.9519 - mae: 0.1218 - pearson_correlation: 0.6595 - euclidean_distance: 0.1939
Epoch 74/100
227/227 [==============================] - 0s 783us/step - loss: 0.1217 - accuracy: 0.9524 - mae: 0.1217 - pearson_correlation: 0.6567 - euclidean_distance: 0.1929
Epoch 75/100
227/227 [==============================] - 0s 803us/step - loss: 0.1232 - accuracy: 0.9537 - mae: 0.1232 - pearson_correlation: 0.6547 - euclidean_distance: 0.1957
Epoch 76/100
227/227 [==============================] - 0s 863us/step - loss: 0.1217 - accuracy: 0.9532 - mae: 0.1217 - pearson_correlation: 0.6613 - euclidean_distance: 0.1929
Epoch 77/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1231 - accuracy: 0.9524 - mae: 0.1231 - pearson_correlation: 0.6534 - euclidean_distance: 0.1954
Epoch 78/100
227/227 [==============================] - 0s 828us/step - loss: 0.1193 - accuracy: 0.9532 - mae: 0.1193 - pearson_correlation: 0.6667 - euclidean_distance: 0.1901
Epoch 79/100
227/227 [==============================] - 0s 907us/step - loss: 0.1174 - accuracy: 0.9541 - mae: 0.1174 - pearson_correlation: 0.6770 - euclidean_distance: 0.1863
Epoch 80/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1176 - accuracy: 0.9537 - mae: 0.1176 - pearson_correlation: 0.6790 - euclidean_distance: 0.1870
Epoch 81/100
227/227 [==============================] - 0s 811us/step - loss: 0.1236 - accuracy: 0.9532 - mae: 0.1236 - pearson_correlation: 0.6644 - euclidean_distance: 0.1956
Epoch 82/100
227/227 [==============================] - 0s 851us/step - loss: 0.1197 - accuracy: 0.9532 - mae: 0.1197 - pearson_correlation: 0.6750 - euclidean_distance: 0.1899
Epoch 83/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1187 - accuracy: 0.9541 - mae: 0.1187 - pearson_correlation: 0.6706 - euclidean_distance: 0.1892
Epoch 84/100
227/227 [==============================] - 0s 780us/step - loss: 0.1169 - accuracy: 0.9541 - mae: 0.1169 - pearson_correlation: 0.6850 - euclidean_distance: 0.1854
Epoch 85/100
227/227 [==============================] - 0s 780us/step - loss: 0.1151 - accuracy: 0.9546 - mae: 0.1151 - pearson_correlation: 0.6951 - euclidean_distance: 0.1824
Epoch 86/100
227/227 [==============================] - 0s 774us/step - loss: 0.1169 - accuracy: 0.9532 - mae: 0.1169 - pearson_correlation: 0.6818 - euclidean_distance: 0.1859
Epoch 87/100
227/227 [==============================] - 0s 781us/step - loss: 0.1125 - accuracy: 0.9550 - mae: 0.1125 - pearson_correlation: 0.6903 - euclidean_distance: 0.1794
Epoch 88/100
227/227 [==============================] - 0s 776us/step - loss: 0.1137 - accuracy: 0.9546 - mae: 0.1137 - pearson_correlation: 0.6931 - euclidean_distance: 0.1808
Epoch 89/100
227/227 [==============================] - 0s 772us/step - loss: 0.1140 - accuracy: 0.9550 - mae: 0.1140 - pearson_correlation: 0.6977 - euclidean_distance: 0.1810
Epoch 90/100
227/227 [==============================] - 0s 785us/step - loss: 0.1120 - accuracy: 0.9550 - mae: 0.1120 - pearson_correlation: 0.6991 - euclidean_distance: 0.1775
Epoch 91/100
227/227 [==============================] - 0s 783us/step - loss: 0.1115 - accuracy: 0.9541 - mae: 0.1115 - pearson_correlation: 0.7001 - euclidean_distance: 0.1772
Epoch 92/100
227/227 [==============================] - 0s 784us/step - loss: 0.1180 - accuracy: 0.9546 - mae: 0.1180 - pearson_correlation: 0.6881 - euclidean_distance: 0.1861
Epoch 93/100
227/227 [==============================] - 0s 790us/step - loss: 0.1156 - accuracy: 0.9550 - mae: 0.1156 - pearson_correlation: 0.6912 - euclidean_distance: 0.1831
Epoch 94/100
227/227 [==============================] - 0s 781us/step - loss: 0.1150 - accuracy: 0.9550 - mae: 0.1150 - pearson_correlation: 0.6960 - euclidean_distance: 0.1827
Epoch 95/100
227/227 [==============================] - 0s 782us/step - loss: 0.1109 - accuracy: 0.9546 - mae: 0.1109 - pearson_correlation: 0.7101 - euclidean_distance: 0.1760
Epoch 96/100
227/227 [==============================] - 0s 786us/step - loss: 0.1129 - accuracy: 0.9554 - mae: 0.1129 - pearson_correlation: 0.7074 - euclidean_distance: 0.1790
Epoch 97/100
227/227 [==============================] - 0s 781us/step - loss: 0.1112 - accuracy: 0.9541 - mae: 0.1112 - pearson_correlation: 0.7041 - euclidean_distance: 0.1762
Epoch 98/100
227/227 [==============================] - 0s 780us/step - loss: 0.1091 - accuracy: 0.9546 - mae: 0.1091 - pearson_correlation: 0.7104 - euclidean_distance: 0.1734
Epoch 99/100
227/227 [==============================] - 0s 779us/step - loss: 0.1084 - accuracy: 0.9546 - mae: 0.1084 - pearson_correlation: 0.7108 - euclidean_distance: 0.1723
Epoch 100/100
227/227 [==============================] - 0s 778us/step - loss: 0.1087 - accuracy: 0.9546 - mae: 0.1087 - pearson_correlation: 0.7107 - euclidean_distance: 0.1728
114/114 [==============================] - 0s 459us/step
Epoch 1/100
227/227 [==============================] - 1s 817us/step - loss: 0.2756 - accuracy: 0.5489 - mae: 0.2756 - pearson_correlation: 0.0133 - euclidean_distance: 0.4339
Epoch 2/100
227/227 [==============================] - 0s 791us/step - loss: 0.2654 - accuracy: 0.5785 - mae: 0.2654 - pearson_correlation: 0.0499 - euclidean_distance: 0.4169
Epoch 3/100
227/227 [==============================] - 0s 800us/step - loss: 0.2590 - accuracy: 0.5873 - mae: 0.2590 - pearson_correlation: 0.0565 - euclidean_distance: 0.4078
Epoch 4/100
227/227 [==============================] - 0s 789us/step - loss: 0.2528 - accuracy: 0.6243 - mae: 0.2528 - pearson_correlation: 0.0969 - euclidean_distance: 0.3978
Epoch 5/100
227/227 [==============================] - 0s 787us/step - loss: 0.2437 - accuracy: 0.6464 - mae: 0.2437 - pearson_correlation: 0.1156 - euclidean_distance: 0.3855
Epoch 6/100
227/227 [==============================] - 0s 789us/step - loss: 0.2370 - accuracy: 0.6605 - mae: 0.2370 - pearson_correlation: 0.1403 - euclidean_distance: 0.3744
Epoch 7/100
227/227 [==============================] - 0s 789us/step - loss: 0.2308 - accuracy: 0.6653 - mae: 0.2308 - pearson_correlation: 0.1455 - euclidean_distance: 0.3665
Epoch 8/100
227/227 [==============================] - 0s 785us/step - loss: 0.2251 - accuracy: 0.7015 - mae: 0.2251 - pearson_correlation: 0.1888 - euclidean_distance: 0.3561
Epoch 9/100
227/227 [==============================] - 0s 789us/step - loss: 0.2163 - accuracy: 0.7196 - mae: 0.2163 - pearson_correlation: 0.2115 - euclidean_distance: 0.3439
Epoch 10/100
227/227 [==============================] - 0s 786us/step - loss: 0.2105 - accuracy: 0.7407 - mae: 0.2105 - pearson_correlation: 0.2397 - euclidean_distance: 0.3365
Epoch 11/100
227/227 [==============================] - 0s 786us/step - loss: 0.2067 - accuracy: 0.7500 - mae: 0.2067 - pearson_correlation: 0.2437 - euclidean_distance: 0.3304
Epoch 12/100
227/227 [==============================] - 0s 789us/step - loss: 0.1989 - accuracy: 0.7804 - mae: 0.1989 - pearson_correlation: 0.2750 - euclidean_distance: 0.3179
Epoch 13/100
227/227 [==============================] - 0s 787us/step - loss: 0.1949 - accuracy: 0.7985 - mae: 0.1949 - pearson_correlation: 0.3038 - euclidean_distance: 0.3116
Epoch 14/100
227/227 [==============================] - 0s 786us/step - loss: 0.1924 - accuracy: 0.8258 - mae: 0.1924 - pearson_correlation: 0.3234 - euclidean_distance: 0.3083
Epoch 15/100
227/227 [==============================] - 0s 789us/step - loss: 0.1881 - accuracy: 0.8272 - mae: 0.1881 - pearson_correlation: 0.3307 - euclidean_distance: 0.3009
Epoch 16/100
227/227 [==============================] - 0s 790us/step - loss: 0.1813 - accuracy: 0.8457 - mae: 0.1813 - pearson_correlation: 0.3610 - euclidean_distance: 0.2912
Epoch 17/100
227/227 [==============================] - 0s 787us/step - loss: 0.1788 - accuracy: 0.8607 - mae: 0.1788 - pearson_correlation: 0.3736 - euclidean_distance: 0.2864
Epoch 18/100
227/227 [==============================] - 0s 786us/step - loss: 0.1752 - accuracy: 0.8677 - mae: 0.1752 - pearson_correlation: 0.3980 - euclidean_distance: 0.2808
Epoch 19/100
227/227 [==============================] - 0s 788us/step - loss: 0.1714 - accuracy: 0.8893 - mae: 0.1714 - pearson_correlation: 0.4221 - euclidean_distance: 0.2745
Epoch 20/100
227/227 [==============================] - 0s 785us/step - loss: 0.1655 - accuracy: 0.8893 - mae: 0.1655 - pearson_correlation: 0.4343 - euclidean_distance: 0.2649
Epoch 21/100
227/227 [==============================] - 0s 785us/step - loss: 0.1654 - accuracy: 0.9052 - mae: 0.1654 - pearson_correlation: 0.4434 - euclidean_distance: 0.2654
Epoch 22/100
227/227 [==============================] - 0s 786us/step - loss: 0.1621 - accuracy: 0.9123 - mae: 0.1621 - pearson_correlation: 0.4634 - euclidean_distance: 0.2589
Epoch 23/100
227/227 [==============================] - 0s 785us/step - loss: 0.1592 - accuracy: 0.9153 - mae: 0.1592 - pearson_correlation: 0.4711 - euclidean_distance: 0.2549
Epoch 24/100
227/227 [==============================] - 0s 808us/step - loss: 0.1582 - accuracy: 0.9224 - mae: 0.1582 - pearson_correlation: 0.4935 - euclidean_distance: 0.2534
Epoch 25/100
227/227 [==============================] - 0s 932us/step - loss: 0.1582 - accuracy: 0.9277 - mae: 0.1582 - pearson_correlation: 0.4899 - euclidean_distance: 0.2531
Epoch 26/100
227/227 [==============================] - 0s 884us/step - loss: 0.1542 - accuracy: 0.9242 - mae: 0.1542 - pearson_correlation: 0.5007 - euclidean_distance: 0.2475
Epoch 27/100
227/227 [==============================] - 0s 843us/step - loss: 0.1536 - accuracy: 0.9286 - mae: 0.1536 - pearson_correlation: 0.5150 - euclidean_distance: 0.2452
Epoch 28/100
227/227 [==============================] - 0s 935us/step - loss: 0.1520 - accuracy: 0.9264 - mae: 0.1520 - pearson_correlation: 0.5288 - euclidean_distance: 0.2429
Epoch 29/100
227/227 [==============================] - 0s 810us/step - loss: 0.1487 - accuracy: 0.9343 - mae: 0.1487 - pearson_correlation: 0.5328 - euclidean_distance: 0.2371
Epoch 30/100
227/227 [==============================] - 0s 785us/step - loss: 0.1477 - accuracy: 0.9383 - mae: 0.1477 - pearson_correlation: 0.5428 - euclidean_distance: 0.2354
Epoch 31/100
227/227 [==============================] - 0s 782us/step - loss: 0.1435 - accuracy: 0.9392 - mae: 0.1435 - pearson_correlation: 0.5638 - euclidean_distance: 0.2291
Epoch 32/100
227/227 [==============================] - 0s 868us/step - loss: 0.1424 - accuracy: 0.9409 - mae: 0.1424 - pearson_correlation: 0.5740 - euclidean_distance: 0.2266
Epoch 33/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1444 - accuracy: 0.9427 - mae: 0.1444 - pearson_correlation: 0.5661 - euclidean_distance: 0.2303
Epoch 34/100
227/227 [==============================] - 0s 914us/step - loss: 0.1429 - accuracy: 0.9440 - mae: 0.1429 - pearson_correlation: 0.5752 - euclidean_distance: 0.2273
Epoch 35/100
227/227 [==============================] - 0s 879us/step - loss: 0.1400 - accuracy: 0.9427 - mae: 0.1400 - pearson_correlation: 0.5913 - euclidean_distance: 0.2223
Epoch 36/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1393 - accuracy: 0.9480 - mae: 0.1393 - pearson_correlation: 0.5927 - euclidean_distance: 0.2214
Epoch 37/100
227/227 [==============================] - 0s 818us/step - loss: 0.1372 - accuracy: 0.9471 - mae: 0.1372 - pearson_correlation: 0.6007 - euclidean_distance: 0.2181
Epoch 38/100
227/227 [==============================] - 0s 819us/step - loss: 0.1378 - accuracy: 0.9497 - mae: 0.1378 - pearson_correlation: 0.5991 - euclidean_distance: 0.2199
Epoch 39/100
227/227 [==============================] - 0s 804us/step - loss: 0.1358 - accuracy: 0.9489 - mae: 0.1358 - pearson_correlation: 0.6071 - euclidean_distance: 0.2156
Epoch 40/100
227/227 [==============================] - 0s 803us/step - loss: 0.1345 - accuracy: 0.9436 - mae: 0.1345 - pearson_correlation: 0.6146 - euclidean_distance: 0.2140
Epoch 41/100
227/227 [==============================] - 0s 791us/step - loss: 0.1352 - accuracy: 0.9497 - mae: 0.1352 - pearson_correlation: 0.6105 - euclidean_distance: 0.2143
Epoch 42/100
227/227 [==============================] - 0s 827us/step - loss: 0.1333 - accuracy: 0.9475 - mae: 0.1333 - pearson_correlation: 0.6232 - euclidean_distance: 0.2120
Epoch 43/100
227/227 [==============================] - 0s 870us/step - loss: 0.1339 - accuracy: 0.9497 - mae: 0.1339 - pearson_correlation: 0.6225 - euclidean_distance: 0.2118
Epoch 44/100
227/227 [==============================] - 0s 800us/step - loss: 0.1314 - accuracy: 0.9537 - mae: 0.1314 - pearson_correlation: 0.6286 - euclidean_distance: 0.2091
Epoch 45/100
227/227 [==============================] - 0s 796us/step - loss: 0.1313 - accuracy: 0.9541 - mae: 0.1313 - pearson_correlation: 0.6320 - euclidean_distance: 0.2080
Epoch 46/100
227/227 [==============================] - 0s 788us/step - loss: 0.1308 - accuracy: 0.9497 - mae: 0.1308 - pearson_correlation: 0.6324 - euclidean_distance: 0.2079
Epoch 47/100
227/227 [==============================] - 0s 784us/step - loss: 0.1274 - accuracy: 0.9519 - mae: 0.1274 - pearson_correlation: 0.6472 - euclidean_distance: 0.2026
Epoch 48/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1311 - accuracy: 0.9528 - mae: 0.1311 - pearson_correlation: 0.6303 - euclidean_distance: 0.2082
Epoch 49/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1285 - accuracy: 0.9519 - mae: 0.1285 - pearson_correlation: 0.6388 - euclidean_distance: 0.2041
Epoch 50/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1295 - accuracy: 0.9511 - mae: 0.1295 - pearson_correlation: 0.6433 - euclidean_distance: 0.2052
Epoch 51/100
227/227 [==============================] - 0s 838us/step - loss: 0.1276 - accuracy: 0.9537 - mae: 0.1276 - pearson_correlation: 0.6479 - euclidean_distance: 0.2031
Epoch 52/100
227/227 [==============================] - 0s 803us/step - loss: 0.1237 - accuracy: 0.9533 - mae: 0.1237 - pearson_correlation: 0.6674 - euclidean_distance: 0.1964
Epoch 53/100
227/227 [==============================] - 0s 808us/step - loss: 0.1275 - accuracy: 0.9515 - mae: 0.1275 - pearson_correlation: 0.6519 - euclidean_distance: 0.2022
Epoch 54/100
227/227 [==============================] - 0s 856us/step - loss: 0.1274 - accuracy: 0.9533 - mae: 0.1274 - pearson_correlation: 0.6448 - euclidean_distance: 0.2023
Epoch 55/100
227/227 [==============================] - 0s 792us/step - loss: 0.1249 - accuracy: 0.9519 - mae: 0.1249 - pearson_correlation: 0.6555 - euclidean_distance: 0.1983
Epoch 56/100
227/227 [==============================] - 0s 823us/step - loss: 0.1254 - accuracy: 0.9524 - mae: 0.1254 - pearson_correlation: 0.6486 - euclidean_distance: 0.1997
Epoch 57/100
227/227 [==============================] - 0s 813us/step - loss: 0.1255 - accuracy: 0.9550 - mae: 0.1255 - pearson_correlation: 0.6616 - euclidean_distance: 0.1996
Epoch 58/100
227/227 [==============================] - 0s 832us/step - loss: 0.1241 - accuracy: 0.9528 - mae: 0.1241 - pearson_correlation: 0.6590 - euclidean_distance: 0.1969
Epoch 59/100
227/227 [==============================] - 0s 860us/step - loss: 0.1243 - accuracy: 0.9559 - mae: 0.1243 - pearson_correlation: 0.6650 - euclidean_distance: 0.1970
Epoch 60/100
227/227 [==============================] - 0s 790us/step - loss: 0.1225 - accuracy: 0.9550 - mae: 0.1225 - pearson_correlation: 0.6690 - euclidean_distance: 0.1948
Epoch 61/100
227/227 [==============================] - 0s 891us/step - loss: 0.1238 - accuracy: 0.9537 - mae: 0.1238 - pearson_correlation: 0.6693 - euclidean_distance: 0.1962
Epoch 62/100
227/227 [==============================] - 0s 900us/step - loss: 0.1256 - accuracy: 0.9541 - mae: 0.1256 - pearson_correlation: 0.6565 - euclidean_distance: 0.1997
Epoch 63/100
227/227 [==============================] - 0s 1ms/step - loss: 0.1227 - accuracy: 0.9555 - mae: 0.1227 - pearson_correlation: 0.6708 - euclidean_distance: 0.1943
Epoch 64/100
227/227 [==============================] - 0s 811us/step - loss: 0.1211 - accuracy: 0.9550 - mae: 0.1211 - pearson_correlation: 0.6739 - euclidean_distance: 0.1924
Epoch 65/100
227/227 [==============================] - 0s 801us/step - loss: 0.1224 - accuracy: 0.9541 - mae: 0.1224 - pearson_correlation: 0.6709 - euclidean_distance: 0.1935
Epoch 66/100
227/227 [==============================] - 0s 789us/step - loss: 0.1207 - accuracy: 0.9550 - mae: 0.1207 - pearson_correlation: 0.6798 - euclidean_distance: 0.1912
Epoch 67/100
227/227 [==============================] - 0s 791us/step - loss: 0.1187 - accuracy: 0.9555 - mae: 0.1187 - pearson_correlation: 0.6876 - euclidean_distance: 0.1885
Epoch 68/100
227/227 [==============================] - 0s 802us/step - loss: 0.1205 - accuracy: 0.9563 - mae: 0.1205 - pearson_correlation: 0.6773 - euclidean_distance: 0.1911
Epoch 69/100
227/227 [==============================] - 0s 790us/step - loss: 0.1173 - accuracy: 0.9555 - mae: 0.1173 - pearson_correlation: 0.6850 - euclidean_distance: 0.1866
Epoch 70/100
227/227 [==============================] - 0s 778us/step - loss: 0.1184 - accuracy: 0.9559 - mae: 0.1184 - pearson_correlation: 0.6813 - euclidean_distance: 0.1874
Epoch 71/100
227/227 [==============================] - 0s 798us/step - loss: 0.1163 - accuracy: 0.9550 - mae: 0.1163 - pearson_correlation: 0.6891 - euclidean_distance: 0.1845
Epoch 72/100
227/227 [==============================] - 0s 812us/step - loss: 0.1163 - accuracy: 0.9555 - mae: 0.1163 - pearson_correlation: 0.6911 - euclidean_distance: 0.1840
Epoch 73/100
227/227 [==============================] - 0s 800us/step - loss: 0.1163 - accuracy: 0.9550 - mae: 0.1163 - pearson_correlation: 0.6913 - euclidean_distance: 0.1845
Epoch 74/100
227/227 [==============================] - 0s 827us/step - loss: 0.1182 - accuracy: 0.9559 - mae: 0.1182 - pearson_correlation: 0.6829 - euclidean_distance: 0.1875
Epoch 75/100
227/227 [==============================] - 0s 799us/step - loss: 0.1171 - accuracy: 0.9546 - mae: 0.1171 - pearson_correlation: 0.6955 - euclidean_distance: 0.1852
Epoch 76/100
227/227 [==============================] - 0s 834us/step - loss: 0.1157 - accuracy: 0.9546 - mae: 0.1157 - pearson_correlation: 0.6955 - euclidean_distance: 0.1838
Epoch 77/100
227/227 [==============================] - 0s 799us/step - loss: 0.1172 - accuracy: 0.9555 - mae: 0.1172 - pearson_correlation: 0.6911 - euclidean_distance: 0.1855
Epoch 78/100
227/227 [==============================] - 0s 790us/step - loss: 0.1150 - accuracy: 0.9555 - mae: 0.1150 - pearson_correlation: 0.6979 - euclidean_distance: 0.1824
Epoch 79/100
227/227 [==============================] - 0s 791us/step - loss: 0.1153 - accuracy: 0.9541 - mae: 0.1153 - pearson_correlation: 0.6969 - euclidean_distance: 0.1832
Epoch 80/100
227/227 [==============================] - 0s 793us/step - loss: 0.1134 - accuracy: 0.9555 - mae: 0.1134 - pearson_correlation: 0.7049 - euclidean_distance: 0.1801
Epoch 81/100
227/227 [==============================] - 0s 805us/step - loss: 0.1144 - accuracy: 0.9550 - mae: 0.1144 - pearson_correlation: 0.7017 - euclidean_distance: 0.1811
Epoch 82/100
227/227 [==============================] - 0s 791us/step - loss: 0.1159 - accuracy: 0.9555 - mae: 0.1159 - pearson_correlation: 0.6964 - euclidean_distance: 0.1832
Epoch 83/100
227/227 [==============================] - 0s 790us/step - loss: 0.1115 - accuracy: 0.9550 - mae: 0.1115 - pearson_correlation: 0.7131 - euclidean_distance: 0.1768
Epoch 84/100
227/227 [==============================] - 0s 788us/step - loss: 0.1106 - accuracy: 0.9559 - mae: 0.1106 - pearson_correlation: 0.7131 - euclidean_distance: 0.1761
Epoch 85/100
227/227 [==============================] - 0s 792us/step - loss: 0.1125 - accuracy: 0.9546 - mae: 0.1125 - pearson_correlation: 0.7050 - euclidean_distance: 0.1788
Epoch 86/100
227/227 [==============================] - 0s 792us/step - loss: 0.1104 - accuracy: 0.9559 - mae: 0.1104 - pearson_correlation: 0.7045 - euclidean_distance: 0.1758
Epoch 87/100
227/227 [==============================] - 0s 794us/step - loss: 0.1128 - accuracy: 0.9546 - mae: 0.1128 - pearson_correlation: 0.7076 - euclidean_distance: 0.1785
Epoch 88/100
227/227 [==============================] - 0s 792us/step - loss: 0.1111 - accuracy: 0.9563 - mae: 0.1111 - pearson_correlation: 0.7058 - euclidean_distance: 0.1768
Epoch 89/100
227/227 [==============================] - 0s 788us/step - loss: 0.1122 - accuracy: 0.9559 - mae: 0.1122 - pearson_correlation: 0.7070 - euclidean_distance: 0.1777
Epoch 90/100
227/227 [==============================] - 0s 797us/step - loss: 0.1126 - accuracy: 0.9559 - mae: 0.1126 - pearson_correlation: 0.7053 - euclidean_distance: 0.1785
Epoch 91/100
227/227 [==============================] - 0s 797us/step - loss: 0.1107 - accuracy: 0.9555 - mae: 0.1107 - pearson_correlation: 0.7163 - euclidean_distance: 0.1753
Epoch 92/100
227/227 [==============================] - 0s 795us/step - loss: 0.1111 - accuracy: 0.9559 - mae: 0.1111 - pearson_correlation: 0.7112 - euclidean_distance: 0.1761
Epoch 93/100
227/227 [==============================] - 0s 795us/step - loss: 0.1112 - accuracy: 0.9555 - mae: 0.1112 - pearson_correlation: 0.7118 - euclidean_distance: 0.1758
Epoch 94/100
227/227 [==============================] - 0s 800us/step - loss: 0.1107 - accuracy: 0.9559 - mae: 0.1107 - pearson_correlation: 0.7152 - euclidean_distance: 0.1756
Epoch 95/100
227/227 [==============================] - 0s 789us/step - loss: 0.1107 - accuracy: 0.9559 - mae: 0.1107 - pearson_correlation: 0.7134 - euclidean_distance: 0.1755
Epoch 96/100
227/227 [==============================] - 0s 802us/step - loss: 0.1099 - accuracy: 0.9559 - mae: 0.1099 - pearson_correlation: 0.7053 - euclidean_distance: 0.1741
Epoch 97/100
227/227 [==============================] - 0s 795us/step - loss: 0.1098 - accuracy: 0.9559 - mae: 0.1098 - pearson_correlation: 0.7167 - euclidean_distance: 0.1748
Epoch 98/100
227/227 [==============================] - 0s 784us/step - loss: 0.1091 - accuracy: 0.9559 - mae: 0.1091 - pearson_correlation: 0.7220 - euclidean_distance: 0.1720
Epoch 99/100
227/227 [==============================] - 0s 798us/step - loss: 0.1106 - accuracy: 0.9555 - mae: 0.1106 - pearson_correlation: 0.7118 - euclidean_distance: 0.1757
Epoch 100/100
227/227 [==============================] - 0s 800us/step - loss: 0.1070 - accuracy: 0.9559 - mae: 0.1070 - pearson_correlation: 0.7268 - euclidean_distance: 0.1699
114/114 [==============================] - 0s 434us/step
Epoch 1/150
227/227 [==============================] - 1s 826us/step - loss: 0.6148 - accuracy: 0.9563 - mae: 0.6148 - pearson_correlation: 0.6933 - euclidean_distance: 0.9264
Epoch 2/150
227/227 [==============================] - 0s 797us/step - loss: 0.6005 - accuracy: 0.9563 - mae: 0.6005 - pearson_correlation: 0.6898 - euclidean_distance: 0.9048
Epoch 3/150
227/227 [==============================] - 0s 798us/step - loss: 0.5832 - accuracy: 0.9563 - mae: 0.5832 - pearson_correlation: 0.6887 - euclidean_distance: 0.8792
Epoch 4/150
227/227 [==============================] - 0s 799us/step - loss: 0.5712 - accuracy: 0.9563 - mae: 0.5712 - pearson_correlation: 0.6843 - euclidean_distance: 0.8609
Epoch 5/150
227/227 [==============================] - 0s 801us/step - loss: 0.5593 - accuracy: 0.9563 - mae: 0.5593 - pearson_correlation: 0.6744 - euclidean_distance: 0.8428
Epoch 6/150
227/227 [==============================] - 0s 815us/step - loss: 0.5446 - accuracy: 0.9563 - mae: 0.5446 - pearson_correlation: 0.6738 - euclidean_distance: 0.8212
Epoch 7/150
227/227 [==============================] - 0s 817us/step - loss: 0.5313 - accuracy: 0.9563 - mae: 0.5313 - pearson_correlation: 0.6756 - euclidean_distance: 0.8022
Epoch 8/150
227/227 [==============================] - 0s 830us/step - loss: 0.5194 - accuracy: 0.9563 - mae: 0.5194 - pearson_correlation: 0.6638 - euclidean_distance: 0.7829
Epoch 9/150
227/227 [==============================] - 0s 840us/step - loss: 0.5021 - accuracy: 0.9563 - mae: 0.5021 - pearson_correlation: 0.6660 - euclidean_distance: 0.7578
Epoch 10/150
227/227 [==============================] - 0s 793us/step - loss: 0.4885 - accuracy: 0.9563 - mae: 0.4885 - pearson_correlation: 0.6619 - euclidean_distance: 0.7385
Epoch 11/150
227/227 [==============================] - 0s 790us/step - loss: 0.4773 - accuracy: 0.9563 - mae: 0.4773 - pearson_correlation: 0.6543 - euclidean_distance: 0.7201
Epoch 12/150
227/227 [==============================] - 0s 794us/step - loss: 0.4628 - accuracy: 0.9563 - mae: 0.4628 - pearson_correlation: 0.6590 - euclidean_distance: 0.6994
Epoch 13/150
227/227 [==============================] - 0s 1ms/step - loss: 0.4488 - accuracy: 0.9563 - mae: 0.4488 - pearson_correlation: 0.6534 - euclidean_distance: 0.6786
Epoch 14/150
227/227 [==============================] - 0s 792us/step - loss: 0.4363 - accuracy: 0.9563 - mae: 0.4363 - pearson_correlation: 0.6492 - euclidean_distance: 0.6602
Epoch 15/150
227/227 [==============================] - 0s 788us/step - loss: 0.4264 - accuracy: 0.9563 - mae: 0.4264 - pearson_correlation: 0.6441 - euclidean_distance: 0.6449
Epoch 16/150
227/227 [==============================] - 0s 785us/step - loss: 0.4153 - accuracy: 0.9563 - mae: 0.4153 - pearson_correlation: 0.6359 - euclidean_distance: 0.6282
Epoch 17/150
227/227 [==============================] - 0s 790us/step - loss: 0.4029 - accuracy: 0.9563 - mae: 0.4029 - pearson_correlation: 0.6398 - euclidean_distance: 0.6107
Epoch 18/150
227/227 [==============================] - 0s 791us/step - loss: 0.3892 - accuracy: 0.9563 - mae: 0.3892 - pearson_correlation: 0.6353 - euclidean_distance: 0.5911
Epoch 19/150
227/227 [==============================] - 0s 793us/step - loss: 0.3816 - accuracy: 0.9563 - mae: 0.3816 - pearson_correlation: 0.6267 - euclidean_distance: 0.5795
Epoch 20/150
227/227 [==============================] - 0s 812us/step - loss: 0.3685 - accuracy: 0.9559 - mae: 0.3685 - pearson_correlation: 0.6334 - euclidean_distance: 0.5617
Epoch 21/150
227/227 [==============================] - 0s 791us/step - loss: 0.3581 - accuracy: 0.9563 - mae: 0.3581 - pearson_correlation: 0.6260 - euclidean_distance: 0.5453
Epoch 22/150
227/227 [==============================] - 0s 786us/step - loss: 0.3492 - accuracy: 0.9554 - mae: 0.3492 - pearson_correlation: 0.6222 - euclidean_distance: 0.5327
Epoch 23/150
227/227 [==============================] - 0s 789us/step - loss: 0.3388 - accuracy: 0.9550 - mae: 0.3388 - pearson_correlation: 0.6272 - euclidean_distance: 0.5172
Epoch 24/150
227/227 [==============================] - 0s 789us/step - loss: 0.3282 - accuracy: 0.9550 - mae: 0.3282 - pearson_correlation: 0.6149 - euclidean_distance: 0.5028
Epoch 25/150
227/227 [==============================] - 0s 785us/step - loss: 0.3213 - accuracy: 0.9568 - mae: 0.3213 - pearson_correlation: 0.6154 - euclidean_distance: 0.4920
Epoch 26/150
227/227 [==============================] - 0s 784us/step - loss: 0.3118 - accuracy: 0.9510 - mae: 0.3118 - pearson_correlation: 0.6079 - euclidean_distance: 0.4782
Epoch 27/150
227/227 [==============================] - 0s 785us/step - loss: 0.3012 - accuracy: 0.9524 - mae: 0.3012 - pearson_correlation: 0.6087 - euclidean_distance: 0.4616
Epoch 28/150
227/227 [==============================] - 0s 787us/step - loss: 0.2963 - accuracy: 0.9471 - mae: 0.2963 - pearson_correlation: 0.6069 - euclidean_distance: 0.4545
Epoch 29/150
227/227 [==============================] - 0s 789us/step - loss: 0.2871 - accuracy: 0.9440 - mae: 0.2871 - pearson_correlation: 0.6049 - euclidean_distance: 0.4427
Epoch 30/150
227/227 [==============================] - 0s 786us/step - loss: 0.2797 - accuracy: 0.9404 - mae: 0.2797 - pearson_correlation: 0.6071 - euclidean_distance: 0.4313
Epoch 31/150
227/227 [==============================] - 0s 796us/step - loss: 0.2750 - accuracy: 0.9422 - mae: 0.2750 - pearson_correlation: 0.5923 - euclidean_distance: 0.4242
Epoch 32/150
227/227 [==============================] - 0s 787us/step - loss: 0.2688 - accuracy: 0.9347 - mae: 0.2688 - pearson_correlation: 0.5984 - euclidean_distance: 0.4161
Epoch 33/150
227/227 [==============================] - 0s 782us/step - loss: 0.2610 - accuracy: 0.9321 - mae: 0.2610 - pearson_correlation: 0.5918 - euclidean_distance: 0.4047
Epoch 34/150
227/227 [==============================] - 0s 785us/step - loss: 0.2584 - accuracy: 0.9321 - mae: 0.2584 - pearson_correlation: 0.5880 - euclidean_distance: 0.3992
Epoch 35/150
227/227 [==============================] - 0s 784us/step - loss: 0.2504 - accuracy: 0.9255 - mae: 0.2504 - pearson_correlation: 0.5931 - euclidean_distance: 0.3874
Epoch 36/150
227/227 [==============================] - 0s 784us/step - loss: 0.2457 - accuracy: 0.9206 - mae: 0.2457 - pearson_correlation: 0.5877 - euclidean_distance: 0.3798
Epoch 37/150
227/227 [==============================] - 0s 788us/step - loss: 0.2412 - accuracy: 0.9193 - mae: 0.2412 - pearson_correlation: 0.5843 - euclidean_distance: 0.3733
Epoch 38/150
227/227 [==============================] - 0s 786us/step - loss: 0.2330 - accuracy: 0.9144 - mae: 0.2330 - pearson_correlation: 0.5905 - euclidean_distance: 0.3614
Epoch 39/150
227/227 [==============================] - 0s 782us/step - loss: 0.2326 - accuracy: 0.9127 - mae: 0.2326 - pearson_correlation: 0.5840 - euclidean_distance: 0.3607
Epoch 40/150
227/227 [==============================] - 0s 784us/step - loss: 0.2234 - accuracy: 0.9219 - mae: 0.2234 - pearson_correlation: 0.5911 - euclidean_distance: 0.3469
Epoch 41/150
227/227 [==============================] - 0s 794us/step - loss: 0.2241 - accuracy: 0.9118 - mae: 0.2241 - pearson_correlation: 0.5851 - euclidean_distance: 0.3481
Epoch 42/150
227/227 [==============================] - 0s 784us/step - loss: 0.2192 - accuracy: 0.9074 - mae: 0.2192 - pearson_correlation: 0.5814 - euclidean_distance: 0.3409
Epoch 43/150
227/227 [==============================] - 0s 802us/step - loss: 0.2164 - accuracy: 0.9047 - mae: 0.2164 - pearson_correlation: 0.5861 - euclidean_distance: 0.3368
Epoch 44/150
227/227 [==============================] - 0s 860us/step - loss: 0.2093 - accuracy: 0.8968 - mae: 0.2093 - pearson_correlation: 0.5857 - euclidean_distance: 0.3266
Epoch 45/150
227/227 [==============================] - 0s 878us/step - loss: 0.2048 - accuracy: 0.9003 - mae: 0.2048 - pearson_correlation: 0.5879 - euclidean_distance: 0.3202
Epoch 46/150
227/227 [==============================] - 0s 944us/step - loss: 0.2033 - accuracy: 0.9043 - mae: 0.2033 - pearson_correlation: 0.5940 - euclidean_distance: 0.3172
Epoch 47/150
227/227 [==============================] - 0s 801us/step - loss: 0.1996 - accuracy: 0.8915 - mae: 0.1996 - pearson_correlation: 0.5891 - euclidean_distance: 0.3114
Epoch 48/150
227/227 [==============================] - 0s 795us/step - loss: 0.2008 - accuracy: 0.8977 - mae: 0.2008 - pearson_correlation: 0.5842 - euclidean_distance: 0.3139
Epoch 49/150
227/227 [==============================] - 0s 822us/step - loss: 0.1959 - accuracy: 0.9074 - mae: 0.1959 - pearson_correlation: 0.5884 - euclidean_distance: 0.3062
Epoch 50/150
227/227 [==============================] - 0s 800us/step - loss: 0.1935 - accuracy: 0.9007 - mae: 0.1935 - pearson_correlation: 0.5791 - euclidean_distance: 0.3022
Epoch 51/150
227/227 [==============================] - 0s 800us/step - loss: 0.1919 - accuracy: 0.8985 - mae: 0.1919 - pearson_correlation: 0.5800 - euclidean_distance: 0.2998
Epoch 52/150
227/227 [==============================] - 0s 794us/step - loss: 0.1862 - accuracy: 0.9060 - mae: 0.1862 - pearson_correlation: 0.5947 - euclidean_distance: 0.2917
Epoch 53/150
227/227 [==============================] - 0s 793us/step - loss: 0.1860 - accuracy: 0.9021 - mae: 0.1860 - pearson_correlation: 0.5897 - euclidean_distance: 0.2914
Epoch 54/150
227/227 [==============================] - 0s 792us/step - loss: 0.1841 - accuracy: 0.9060 - mae: 0.1841 - pearson_correlation: 0.5917 - euclidean_distance: 0.2877
Epoch 55/150
227/227 [==============================] - 0s 801us/step - loss: 0.1802 - accuracy: 0.9047 - mae: 0.1802 - pearson_correlation: 0.5885 - euclidean_distance: 0.2824
Epoch 56/150
227/227 [==============================] - 0s 792us/step - loss: 0.1771 - accuracy: 0.9030 - mae: 0.1771 - pearson_correlation: 0.5904 - euclidean_distance: 0.2779
Epoch 57/150
227/227 [==============================] - 0s 793us/step - loss: 0.1787 - accuracy: 0.9122 - mae: 0.1787 - pearson_correlation: 0.5941 - euclidean_distance: 0.2800
Epoch 58/150
227/227 [==============================] - 0s 1ms/step - loss: 0.1732 - accuracy: 0.9153 - mae: 0.1732 - pearson_correlation: 0.6042 - euclidean_distance: 0.2713
Epoch 59/150
227/227 [==============================] - 0s 798us/step - loss: 0.1734 - accuracy: 0.9153 - mae: 0.1734 - pearson_correlation: 0.5965 - euclidean_distance: 0.2729
Epoch 60/150
227/227 [==============================] - 0s 799us/step - loss: 0.1672 - accuracy: 0.9096 - mae: 0.1672 - pearson_correlation: 0.6139 - euclidean_distance: 0.2629
Epoch 61/150
227/227 [==============================] - 0s 1ms/step - loss: 0.1667 - accuracy: 0.9109 - mae: 0.1667 - pearson_correlation: 0.6035 - euclidean_distance: 0.2627
Epoch 62/150
227/227 [==============================] - 0s 790us/step - loss: 0.1661 - accuracy: 0.9118 - mae: 0.1661 - pearson_correlation: 0.6038 - euclidean_distance: 0.2623
Epoch 63/150
227/227 [==============================] - 0s 792us/step - loss: 0.1634 - accuracy: 0.9175 - mae: 0.1634 - pearson_correlation: 0.6134 - euclidean_distance: 0.2576
Epoch 64/150
227/227 [==============================] - 0s 793us/step - loss: 0.1617 - accuracy: 0.9272 - mae: 0.1617 - pearson_correlation: 0.6125 - euclidean_distance: 0.2544
Epoch 65/150
227/227 [==============================] - 0s 788us/step - loss: 0.1578 - accuracy: 0.9250 - mae: 0.1578 - pearson_correlation: 0.6185 - euclidean_distance: 0.2489
Epoch 66/150
227/227 [==============================] - 0s 794us/step - loss: 0.1576 - accuracy: 0.9224 - mae: 0.1576 - pearson_correlation: 0.6157 - euclidean_distance: 0.2493
Epoch 67/150
227/227 [==============================] - 0s 790us/step - loss: 0.1536 - accuracy: 0.9241 - mae: 0.1536 - pearson_correlation: 0.6253 - euclidean_distance: 0.2428
Epoch 68/150
227/227 [==============================] - 0s 787us/step - loss: 0.1535 - accuracy: 0.9268 - mae: 0.1535 - pearson_correlation: 0.6239 - euclidean_distance: 0.2425
Epoch 69/150
227/227 [==============================] - 0s 791us/step - loss: 0.1519 - accuracy: 0.9268 - mae: 0.1519 - pearson_correlation: 0.6239 - euclidean_distance: 0.2405
Epoch 70/150
227/227 [==============================] - 0s 788us/step - loss: 0.1513 - accuracy: 0.9316 - mae: 0.1513 - pearson_correlation: 0.6268 - euclidean_distance: 0.2397
Epoch 71/150
227/227 [==============================] - 0s 792us/step - loss: 0.1524 - accuracy: 0.9312 - mae: 0.1524 - pearson_correlation: 0.6235 - euclidean_distance: 0.2410
Epoch 72/150
227/227 [==============================] - 0s 795us/step - loss: 0.1487 - accuracy: 0.9321 - mae: 0.1487 - pearson_correlation: 0.6330 - euclidean_distance: 0.2362
Epoch 73/150
227/227 [==============================] - 0s 791us/step - loss: 0.1464 - accuracy: 0.9404 - mae: 0.1464 - pearson_correlation: 0.6382 - euclidean_distance: 0.2316
Epoch 74/150
227/227 [==============================] - 0s 789us/step - loss: 0.1443 - accuracy: 0.9387 - mae: 0.1443 - pearson_correlation: 0.6431 - euclidean_distance: 0.2292
Epoch 75/150
227/227 [==============================] - 0s 791us/step - loss: 0.1409 - accuracy: 0.9365 - mae: 0.1409 - pearson_correlation: 0.6437 - euclidean_distance: 0.2242
Epoch 76/150
227/227 [==============================] - 0s 793us/step - loss: 0.1417 - accuracy: 0.9347 - mae: 0.1417 - pearson_correlation: 0.6498 - euclidean_distance: 0.2255
Epoch 77/150
227/227 [==============================] - 0s 786us/step - loss: 0.1385 - accuracy: 0.9369 - mae: 0.1385 - pearson_correlation: 0.6566 - euclidean_distance: 0.2206
Epoch 78/150
227/227 [==============================] - 0s 792us/step - loss: 0.1376 - accuracy: 0.9374 - mae: 0.1376 - pearson_correlation: 0.6567 - euclidean_distance: 0.2197
Epoch 79/150
227/227 [==============================] - 0s 789us/step - loss: 0.1372 - accuracy: 0.9418 - mae: 0.1372 - pearson_correlation: 0.6557 - euclidean_distance: 0.2183
Epoch 80/150
227/227 [==============================] - 0s 783us/step - loss: 0.1360 - accuracy: 0.9400 - mae: 0.1360 - pearson_correlation: 0.6544 - euclidean_distance: 0.2169
Epoch 81/150
227/227 [==============================] - 0s 787us/step - loss: 0.1357 - accuracy: 0.9444 - mae: 0.1357 - pearson_correlation: 0.6624 - euclidean_distance: 0.2154
Epoch 82/150
227/227 [==============================] - 0s 785us/step - loss: 0.1346 - accuracy: 0.9413 - mae: 0.1346 - pearson_correlation: 0.6631 - euclidean_distance: 0.2146
Epoch 83/150
227/227 [==============================] - 0s 781us/step - loss: 0.1343 - accuracy: 0.9462 - mae: 0.1343 - pearson_correlation: 0.6615 - euclidean_distance: 0.2148
Epoch 84/150
227/227 [==============================] - 0s 787us/step - loss: 0.1303 - accuracy: 0.9462 - mae: 0.1303 - pearson_correlation: 0.6678 - euclidean_distance: 0.2081
Epoch 85/150
227/227 [==============================] - 0s 802us/step - loss: 0.1283 - accuracy: 0.9444 - mae: 0.1283 - pearson_correlation: 0.6757 - euclidean_distance: 0.2051
Epoch 86/150
227/227 [==============================] - 0s 785us/step - loss: 0.1319 - accuracy: 0.9466 - mae: 0.1319 - pearson_correlation: 0.6651 - euclidean_distance: 0.2105
Epoch 87/150
227/227 [==============================] - 0s 795us/step - loss: 0.1274 - accuracy: 0.9435 - mae: 0.1274 - pearson_correlation: 0.6729 - euclidean_distance: 0.2044
Epoch 88/150
227/227 [==============================] - 0s 785us/step - loss: 0.1264 - accuracy: 0.9502 - mae: 0.1264 - pearson_correlation: 0.6801 - euclidean_distance: 0.2033
Epoch 89/150
227/227 [==============================] - 0s 791us/step - loss: 0.1276 - accuracy: 0.9484 - mae: 0.1276 - pearson_correlation: 0.6730 - euclidean_distance: 0.2041
Epoch 90/150
227/227 [==============================] - 0s 793us/step - loss: 0.1276 - accuracy: 0.9444 - mae: 0.1276 - pearson_correlation: 0.6734 - euclidean_distance: 0.2047
Epoch 91/150
227/227 [==============================] - 0s 793us/step - loss: 0.1269 - accuracy: 0.9431 - mae: 0.1269 - pearson_correlation: 0.6785 - euclidean_distance: 0.2033
Epoch 92/150
227/227 [==============================] - 0s 783us/step - loss: 0.1251 - accuracy: 0.9466 - mae: 0.1251 - pearson_correlation: 0.6804 - euclidean_distance: 0.2009
Epoch 93/150
227/227 [==============================] - 0s 785us/step - loss: 0.1226 - accuracy: 0.9466 - mae: 0.1226 - pearson_correlation: 0.6903 - euclidean_distance: 0.1959
Epoch 94/150
227/227 [==============================] - 0s 783us/step - loss: 0.1227 - accuracy: 0.9484 - mae: 0.1227 - pearson_correlation: 0.6885 - euclidean_distance: 0.1968
Epoch 95/150
227/227 [==============================] - 0s 794us/step - loss: 0.1224 - accuracy: 0.9497 - mae: 0.1224 - pearson_correlation: 0.6861 - euclidean_distance: 0.1966
Epoch 96/150
227/227 [==============================] - 0s 791us/step - loss: 0.1210 - accuracy: 0.9475 - mae: 0.1210 - pearson_correlation: 0.6890 - euclidean_distance: 0.1944
Epoch 97/150
227/227 [==============================] - 0s 790us/step - loss: 0.1206 - accuracy: 0.9502 - mae: 0.1206 - pearson_correlation: 0.6888 - euclidean_distance: 0.1941
Epoch 98/150
227/227 [==============================] - 0s 783us/step - loss: 0.1225 - accuracy: 0.9471 - mae: 0.1225 - pearson_correlation: 0.6865 - euclidean_distance: 0.1974
Epoch 99/150
227/227 [==============================] - 0s 785us/step - loss: 0.1168 - accuracy: 0.9528 - mae: 0.1168 - pearson_correlation: 0.7043 - euclidean_distance: 0.1875
Epoch 100/150
227/227 [==============================] - 0s 787us/step - loss: 0.1209 - accuracy: 0.9493 - mae: 0.1209 - pearson_correlation: 0.6896 - euclidean_distance: 0.1941
Epoch 101/150
227/227 [==============================] - 0s 785us/step - loss: 0.1188 - accuracy: 0.9493 - mae: 0.1188 - pearson_correlation: 0.6951 - euclidean_distance: 0.1910
Epoch 102/150
227/227 [==============================] - 0s 789us/step - loss: 0.1166 - accuracy: 0.9493 - mae: 0.1166 - pearson_correlation: 0.7004 - euclidean_distance: 0.1885
Epoch 103/150
227/227 [==============================] - 0s 792us/step - loss: 0.1165 - accuracy: 0.9475 - mae: 0.1165 - pearson_correlation: 0.6940 - euclidean_distance: 0.1879
Epoch 104/150
227/227 [==============================] - 0s 786us/step - loss: 0.1152 - accuracy: 0.9515 - mae: 0.1152 - pearson_correlation: 0.7061 - euclidean_distance: 0.1858
Epoch 105/150
227/227 [==============================] - 0s 785us/step - loss: 0.1166 - accuracy: 0.9484 - mae: 0.1166 - pearson_correlation: 0.7001 - euclidean_distance: 0.1880
Epoch 106/150
227/227 [==============================] - 0s 782us/step - loss: 0.1156 - accuracy: 0.9515 - mae: 0.1156 - pearson_correlation: 0.7023 - euclidean_distance: 0.1860
Epoch 107/150
227/227 [==============================] - 0s 790us/step - loss: 0.1166 - accuracy: 0.9506 - mae: 0.1166 - pearson_correlation: 0.6949 - euclidean_distance: 0.1880
Epoch 108/150
227/227 [==============================] - 0s 792us/step - loss: 0.1173 - accuracy: 0.9510 - mae: 0.1173 - pearson_correlation: 0.6871 - euclidean_distance: 0.1895
Epoch 109/150
227/227 [==============================] - 0s 782us/step - loss: 0.1151 - accuracy: 0.9519 - mae: 0.1151 - pearson_correlation: 0.7100 - euclidean_distance: 0.1853
Epoch 110/150
227/227 [==============================] - 0s 782us/step - loss: 0.1140 - accuracy: 0.9528 - mae: 0.1140 - pearson_correlation: 0.7022 - euclidean_distance: 0.1842
Epoch 111/150
227/227 [==============================] - 0s 783us/step - loss: 0.1156 - accuracy: 0.9515 - mae: 0.1156 - pearson_correlation: 0.6984 - euclidean_distance: 0.1860
Epoch 112/150
227/227 [==============================] - 0s 784us/step - loss: 0.1114 - accuracy: 0.9519 - mae: 0.1114 - pearson_correlation: 0.7147 - euclidean_distance: 0.1797
Epoch 113/150
227/227 [==============================] - 0s 782us/step - loss: 0.1131 - accuracy: 0.9479 - mae: 0.1131 - pearson_correlation: 0.7115 - euclidean_distance: 0.1834
Epoch 114/150
227/227 [==============================] - 0s 786us/step - loss: 0.1139 - accuracy: 0.9524 - mae: 0.1139 - pearson_correlation: 0.6993 - euclidean_distance: 0.1836
Epoch 115/150
227/227 [==============================] - 0s 784us/step - loss: 0.1115 - accuracy: 0.9532 - mae: 0.1115 - pearson_correlation: 0.7121 - euclidean_distance: 0.1799
Epoch 116/150
227/227 [==============================] - 0s 795us/step - loss: 0.1116 - accuracy: 0.9515 - mae: 0.1116 - pearson_correlation: 0.7070 - euclidean_distance: 0.1812
Epoch 117/150
227/227 [==============================] - 0s 791us/step - loss: 0.1120 - accuracy: 0.9515 - mae: 0.1120 - pearson_correlation: 0.7058 - euclidean_distance: 0.1814
Epoch 118/150
227/227 [==============================] - 0s 786us/step - loss: 0.1118 - accuracy: 0.9515 - mae: 0.1118 - pearson_correlation: 0.7099 - euclidean_distance: 0.1817
Epoch 119/150
227/227 [==============================] - 0s 784us/step - loss: 0.1103 - accuracy: 0.9519 - mae: 0.1103 - pearson_correlation: 0.7153 - euclidean_distance: 0.1783
Epoch 120/150
227/227 [==============================] - 0s 792us/step - loss: 0.1105 - accuracy: 0.9528 - mae: 0.1105 - pearson_correlation: 0.7098 - euclidean_distance: 0.1782
Epoch 121/150
227/227 [==============================] - 0s 789us/step - loss: 0.1106 - accuracy: 0.9524 - mae: 0.1106 - pearson_correlation: 0.7128 - euclidean_distance: 0.1788
Epoch 122/150
227/227 [==============================] - 0s 798us/step - loss: 0.1086 - accuracy: 0.9515 - mae: 0.1086 - pearson_correlation: 0.7169 - euclidean_distance: 0.1752
Epoch 123/150
227/227 [==============================] - 0s 790us/step - loss: 0.1098 - accuracy: 0.9515 - mae: 0.1098 - pearson_correlation: 0.7058 - euclidean_distance: 0.1778
Epoch 124/150
227/227 [==============================] - 0s 790us/step - loss: 0.1095 - accuracy: 0.9510 - mae: 0.1095 - pearson_correlation: 0.7108 - euclidean_distance: 0.1780
Epoch 125/150
227/227 [==============================] - 0s 787us/step - loss: 0.1089 - accuracy: 0.9510 - mae: 0.1089 - pearson_correlation: 0.7220 - euclidean_distance: 0.1754
Epoch 126/150
227/227 [==============================] - 0s 785us/step - loss: 0.1077 - accuracy: 0.9515 - mae: 0.1077 - pearson_correlation: 0.7213 - euclidean_distance: 0.1741
Epoch 127/150
227/227 [==============================] - 0s 786us/step - loss: 0.1062 - accuracy: 0.9528 - mae: 0.1062 - pearson_correlation: 0.7210 - euclidean_distance: 0.1724
Epoch 128/150
227/227 [==============================] - 0s 786us/step - loss: 0.1073 - accuracy: 0.9519 - mae: 0.1073 - pearson_correlation: 0.7214 - euclidean_distance: 0.1737
Epoch 129/150
227/227 [==============================] - 0s 775us/step - loss: 0.1074 - accuracy: 0.9515 - mae: 0.1074 - pearson_correlation: 0.7144 - euclidean_distance: 0.1745
Epoch 130/150
227/227 [==============================] - 0s 787us/step - loss: 0.1088 - accuracy: 0.9537 - mae: 0.1088 - pearson_correlation: 0.7178 - euclidean_distance: 0.1757
Epoch 131/150
227/227 [==============================] - 0s 854us/step - loss: 0.1068 - accuracy: 0.9537 - mae: 0.1068 - pearson_correlation: 0.7243 - euclidean_distance: 0.1729
Epoch 132/150
227/227 [==============================] - 0s 886us/step - loss: 0.1064 - accuracy: 0.9532 - mae: 0.1064 - pearson_correlation: 0.7230 - euclidean_distance: 0.1718
Epoch 133/150
227/227 [==============================] - 0s 893us/step - loss: 0.1061 - accuracy: 0.9528 - mae: 0.1061 - pearson_correlation: 0.7290 - euclidean_distance: 0.1720
Epoch 134/150
227/227 [==============================] - 0s 791us/step - loss: 0.1066 - accuracy: 0.9532 - mae: 0.1066 - pearson_correlation: 0.7167 - euclidean_distance: 0.1727
Epoch 135/150
227/227 [==============================] - 0s 791us/step - loss: 0.1058 - accuracy: 0.9528 - mae: 0.1058 - pearson_correlation: 0.7259 - euclidean_distance: 0.1710
Epoch 136/150
227/227 [==============================] - 0s 788us/step - loss: 0.1061 - accuracy: 0.9550 - mae: 0.1061 - pearson_correlation: 0.7215 - euclidean_distance: 0.1721
Epoch 137/150
227/227 [==============================] - 0s 788us/step - loss: 0.1061 - accuracy: 0.9528 - mae: 0.1061 - pearson_correlation: 0.7232 - euclidean_distance: 0.1714
Epoch 138/150
227/227 [==============================] - 0s 793us/step - loss: 0.1076 - accuracy: 0.9546 - mae: 0.1076 - pearson_correlation: 0.7182 - euclidean_distance: 0.1738
Epoch 139/150
227/227 [==============================] - 0s 791us/step - loss: 0.1052 - accuracy: 0.9528 - mae: 0.1052 - pearson_correlation: 0.7231 - euclidean_distance: 0.1699
Epoch 140/150
227/227 [==============================] - 0s 791us/step - loss: 0.1046 - accuracy: 0.9524 - mae: 0.1046 - pearson_correlation: 0.7281 - euclidean_distance: 0.1700
Epoch 141/150
227/227 [==============================] - 0s 799us/step - loss: 0.1045 - accuracy: 0.9528 - mae: 0.1045 - pearson_correlation: 0.7220 - euclidean_distance: 0.1697
Epoch 142/150
227/227 [==============================] - 0s 792us/step - loss: 0.1054 - accuracy: 0.9537 - mae: 0.1054 - pearson_correlation: 0.7224 - euclidean_distance: 0.1709
Epoch 143/150
227/227 [==============================] - 0s 795us/step - loss: 0.1020 - accuracy: 0.9537 - mae: 0.1020 - pearson_correlation: 0.7340 - euclidean_distance: 0.1657
Epoch 144/150
227/227 [==============================] - 0s 787us/step - loss: 0.1021 - accuracy: 0.9541 - mae: 0.1021 - pearson_correlation: 0.7314 - euclidean_distance: 0.1666
Epoch 145/150
227/227 [==============================] - 0s 815us/step - loss: 0.1017 - accuracy: 0.9550 - mae: 0.1017 - pearson_correlation: 0.7363 - euclidean_distance: 0.1650
Epoch 146/150
227/227 [==============================] - 0s 787us/step - loss: 0.1028 - accuracy: 0.9537 - mae: 0.1028 - pearson_correlation: 0.7333 - euclidean_distance: 0.1662
Epoch 147/150
227/227 [==============================] - 0s 791us/step - loss: 0.1011 - accuracy: 0.9541 - mae: 0.1011 - pearson_correlation: 0.7360 - euclidean_distance: 0.1639
Epoch 148/150
227/227 [==============================] - 0s 786us/step - loss: 0.1024 - accuracy: 0.9510 - mae: 0.1024 - pearson_correlation: 0.7262 - euclidean_distance: 0.1664
Epoch 149/150
227/227 [==============================] - 0s 788us/step - loss: 0.1029 - accuracy: 0.9537 - mae: 0.1029 - pearson_correlation: 0.7333 - euclidean_distance: 0.1669
Epoch 150/150
227/227 [==============================] - 0s 801us/step - loss: 0.1029 - accuracy: 0.9541 - mae: 0.1029 - pearson_correlation: 0.7273 - euclidean_distance: 0.1668
114/114 [==============================] - 0s 455us/step
Epoch 1/150
227/227 [==============================] - 1s 814us/step - loss: 0.4570 - accuracy: 0.9554 - mae: 0.4570 - pearson_correlation: 0.7744 - euclidean_distance: 0.7288
Epoch 2/150
227/227 [==============================] - 0s 798us/step - loss: 0.4520 - accuracy: 0.9554 - mae: 0.4520 - pearson_correlation: 0.7732 - euclidean_distance: 0.7191
Epoch 3/150
227/227 [==============================] - 0s 804us/step - loss: 0.4432 - accuracy: 0.9554 - mae: 0.4432 - pearson_correlation: 0.7704 - euclidean_distance: 0.7056
Epoch 4/150
227/227 [==============================] - 0s 796us/step - loss: 0.4406 - accuracy: 0.9554 - mae: 0.4406 - pearson_correlation: 0.7680 - euclidean_distance: 0.7004
Epoch 5/150
227/227 [==============================] - 0s 794us/step - loss: 0.4330 - accuracy: 0.9554 - mae: 0.4330 - pearson_correlation: 0.7689 - euclidean_distance: 0.6884
Epoch 6/150
227/227 [==============================] - 0s 791us/step - loss: 0.4256 - accuracy: 0.9554 - mae: 0.4256 - pearson_correlation: 0.7680 - euclidean_distance: 0.6772
Epoch 7/150
227/227 [==============================] - 0s 791us/step - loss: 0.4206 - accuracy: 0.9554 - mae: 0.4206 - pearson_correlation: 0.7667 - euclidean_distance: 0.6677
Epoch 8/150
227/227 [==============================] - 0s 792us/step - loss: 0.4134 - accuracy: 0.9554 - mae: 0.4134 - pearson_correlation: 0.7709 - euclidean_distance: 0.6549
Epoch 9/150
227/227 [==============================] - 0s 791us/step - loss: 0.4079 - accuracy: 0.9550 - mae: 0.4079 - pearson_correlation: 0.7704 - euclidean_distance: 0.6456
Epoch 10/150
227/227 [==============================] - 0s 792us/step - loss: 0.3999 - accuracy: 0.9554 - mae: 0.3999 - pearson_correlation: 0.7659 - euclidean_distance: 0.6341
Epoch 11/150
227/227 [==============================] - 0s 792us/step - loss: 0.3955 - accuracy: 0.9554 - mae: 0.3955 - pearson_correlation: 0.7614 - euclidean_distance: 0.6250
Epoch 12/150
227/227 [==============================] - 0s 798us/step - loss: 0.3879 - accuracy: 0.9554 - mae: 0.3879 - pearson_correlation: 0.7622 - euclidean_distance: 0.6131
Epoch 13/150
227/227 [==============================] - 0s 789us/step - loss: 0.3809 - accuracy: 0.9550 - mae: 0.3809 - pearson_correlation: 0.7582 - euclidean_distance: 0.6031
Epoch 14/150
227/227 [==============================] - 0s 800us/step - loss: 0.3757 - accuracy: 0.9550 - mae: 0.3757 - pearson_correlation: 0.7602 - euclidean_distance: 0.5931
Epoch 15/150
227/227 [==============================] - 0s 797us/step - loss: 0.3665 - accuracy: 0.9554 - mae: 0.3665 - pearson_correlation: 0.7614 - euclidean_distance: 0.5797
Epoch 16/150
227/227 [==============================] - 0s 787us/step - loss: 0.3631 - accuracy: 0.9554 - mae: 0.3631 - pearson_correlation: 0.7506 - euclidean_distance: 0.5715
Epoch 17/150
227/227 [==============================] - 0s 791us/step - loss: 0.3552 - accuracy: 0.9550 - mae: 0.3552 - pearson_correlation: 0.7498 - euclidean_distance: 0.5600
Epoch 18/150
227/227 [==============================] - 0s 788us/step - loss: 0.3493 - accuracy: 0.9550 - mae: 0.3493 - pearson_correlation: 0.7512 - euclidean_distance: 0.5486
Epoch 19/150
227/227 [==============================] - 0s 789us/step - loss: 0.3423 - accuracy: 0.9554 - mae: 0.3423 - pearson_correlation: 0.7481 - euclidean_distance: 0.5377
Epoch 20/150
227/227 [==============================] - 0s 790us/step - loss: 0.3361 - accuracy: 0.9550 - mae: 0.3361 - pearson_correlation: 0.7454 - euclidean_distance: 0.5280
Epoch 21/150
227/227 [==============================] - 0s 788us/step - loss: 0.3284 - accuracy: 0.9541 - mae: 0.3284 - pearson_correlation: 0.7401 - euclidean_distance: 0.5175
Epoch 22/150
227/227 [==============================] - 0s 789us/step - loss: 0.3233 - accuracy: 0.9541 - mae: 0.3233 - pearson_correlation: 0.7394 - euclidean_distance: 0.5080
Epoch 23/150
227/227 [==============================] - 0s 788us/step - loss: 0.3187 - accuracy: 0.9541 - mae: 0.3187 - pearson_correlation: 0.7333 - euclidean_distance: 0.4998
Epoch 24/150
227/227 [==============================] - 0s 792us/step - loss: 0.3132 - accuracy: 0.9537 - mae: 0.3132 - pearson_correlation: 0.7309 - euclidean_distance: 0.4914
Epoch 25/150
227/227 [==============================] - 0s 791us/step - loss: 0.3063 - accuracy: 0.9537 - mae: 0.3063 - pearson_correlation: 0.7275 - euclidean_distance: 0.4812
Epoch 26/150
227/227 [==============================] - 0s 791us/step - loss: 0.3011 - accuracy: 0.9528 - mae: 0.3011 - pearson_correlation: 0.7215 - euclidean_distance: 0.4722
Epoch 27/150
227/227 [==============================] - 0s 787us/step - loss: 0.2952 - accuracy: 0.9506 - mae: 0.2952 - pearson_correlation: 0.7200 - euclidean_distance: 0.4629
Epoch 28/150
227/227 [==============================] - 0s 787us/step - loss: 0.2943 - accuracy: 0.9515 - mae: 0.2943 - pearson_correlation: 0.7145 - euclidean_distance: 0.4594
Epoch 29/150
227/227 [==============================] - 0s 793us/step - loss: 0.2852 - accuracy: 0.9528 - mae: 0.2852 - pearson_correlation: 0.7083 - euclidean_distance: 0.4472
Epoch 30/150
227/227 [==============================] - 0s 795us/step - loss: 0.2789 - accuracy: 0.9515 - mae: 0.2789 - pearson_correlation: 0.7096 - euclidean_distance: 0.4378
Epoch 31/150
227/227 [==============================] - 0s 788us/step - loss: 0.2761 - accuracy: 0.9488 - mae: 0.2761 - pearson_correlation: 0.7079 - euclidean_distance: 0.4334
Epoch 32/150
227/227 [==============================] - 0s 787us/step - loss: 0.2722 - accuracy: 0.9502 - mae: 0.2722 - pearson_correlation: 0.7019 - euclidean_distance: 0.4269
Epoch 33/150
227/227 [==============================] - 0s 796us/step - loss: 0.2661 - accuracy: 0.9532 - mae: 0.2661 - pearson_correlation: 0.7011 - euclidean_distance: 0.4174
Epoch 34/150
227/227 [==============================] - 0s 789us/step - loss: 0.2658 - accuracy: 0.9524 - mae: 0.2658 - pearson_correlation: 0.6966 - euclidean_distance: 0.4151
Epoch 35/150
227/227 [==============================] - 0s 787us/step - loss: 0.2589 - accuracy: 0.9519 - mae: 0.2589 - pearson_correlation: 0.7025 - euclidean_distance: 0.4059
Epoch 36/150
227/227 [==============================] - 0s 786us/step - loss: 0.2556 - accuracy: 0.9488 - mae: 0.2556 - pearson_correlation: 0.6985 - euclidean_distance: 0.3994
Epoch 37/150
227/227 [==============================] - 0s 793us/step - loss: 0.2506 - accuracy: 0.9502 - mae: 0.2506 - pearson_correlation: 0.6980 - euclidean_distance: 0.3929
Epoch 38/150
227/227 [==============================] - 0s 787us/step - loss: 0.2464 - accuracy: 0.9502 - mae: 0.2464 - pearson_correlation: 0.7024 - euclidean_distance: 0.3856
Epoch 39/150
227/227 [==============================] - 0s 785us/step - loss: 0.2425 - accuracy: 0.9488 - mae: 0.2425 - pearson_correlation: 0.7035 - euclidean_distance: 0.3796
Epoch 40/150
227/227 [==============================] - 0s 788us/step - loss: 0.2383 - accuracy: 0.9488 - mae: 0.2383 - pearson_correlation: 0.6980 - euclidean_distance: 0.3737
Epoch 41/150
227/227 [==============================] - 0s 800us/step - loss: 0.2320 - accuracy: 0.9457 - mae: 0.2320 - pearson_correlation: 0.6988 - euclidean_distance: 0.3662
Epoch 42/150
227/227 [==============================] - 0s 795us/step - loss: 0.2351 - accuracy: 0.9449 - mae: 0.2351 - pearson_correlation: 0.6912 - euclidean_distance: 0.3671
Epoch 43/150
227/227 [==============================] - 0s 789us/step - loss: 0.2283 - accuracy: 0.9484 - mae: 0.2283 - pearson_correlation: 0.6964 - euclidean_distance: 0.3574
Epoch 44/150
227/227 [==============================] - 0s 791us/step - loss: 0.2272 - accuracy: 0.9510 - mae: 0.2272 - pearson_correlation: 0.6836 - euclidean_distance: 0.3542
Epoch 45/150
227/227 [==============================] - 0s 790us/step - loss: 0.2236 - accuracy: 0.9475 - mae: 0.2236 - pearson_correlation: 0.6877 - euclidean_distance: 0.3488
Epoch 46/150
227/227 [==============================] - 0s 787us/step - loss: 0.2171 - accuracy: 0.9488 - mae: 0.2171 - pearson_correlation: 0.6958 - euclidean_distance: 0.3396
Epoch 47/150
227/227 [==============================] - 0s 788us/step - loss: 0.2192 - accuracy: 0.9479 - mae: 0.2192 - pearson_correlation: 0.6860 - euclidean_distance: 0.3420
Epoch 48/150
227/227 [==============================] - 0s 788us/step - loss: 0.2157 - accuracy: 0.9493 - mae: 0.2157 - pearson_correlation: 0.6863 - euclidean_distance: 0.3364
Epoch 49/150
227/227 [==============================] - 0s 794us/step - loss: 0.2099 - accuracy: 0.9506 - mae: 0.2099 - pearson_correlation: 0.6878 - euclidean_distance: 0.3275
Epoch 50/150
227/227 [==============================] - 0s 785us/step - loss: 0.2095 - accuracy: 0.9479 - mae: 0.2095 - pearson_correlation: 0.6885 - euclidean_distance: 0.3253
Epoch 51/150
227/227 [==============================] - 0s 794us/step - loss: 0.2060 - accuracy: 0.9462 - mae: 0.2060 - pearson_correlation: 0.6815 - euclidean_distance: 0.3218
Epoch 52/150
227/227 [==============================] - 0s 786us/step - loss: 0.2082 - accuracy: 0.9435 - mae: 0.2082 - pearson_correlation: 0.6751 - euclidean_distance: 0.3242
Epoch 53/150
227/227 [==============================] - 0s 783us/step - loss: 0.1986 - accuracy: 0.9462 - mae: 0.1986 - pearson_correlation: 0.6845 - euclidean_distance: 0.3106
Epoch 54/150
227/227 [==============================] - 0s 789us/step - loss: 0.1982 - accuracy: 0.9479 - mae: 0.1982 - pearson_correlation: 0.6846 - euclidean_distance: 0.3087
Epoch 55/150
227/227 [==============================] - 0s 786us/step - loss: 0.1963 - accuracy: 0.9471 - mae: 0.1963 - pearson_correlation: 0.6780 - euclidean_distance: 0.3062
Epoch 56/150
227/227 [==============================] - 0s 784us/step - loss: 0.1922 - accuracy: 0.9510 - mae: 0.1922 - pearson_correlation: 0.6827 - euclidean_distance: 0.2993
Epoch 57/150
227/227 [==============================] - 0s 786us/step - loss: 0.1910 - accuracy: 0.9457 - mae: 0.1910 - pearson_correlation: 0.6809 - euclidean_distance: 0.2977
Epoch 58/150
227/227 [==============================] - 0s 788us/step - loss: 0.1907 - accuracy: 0.9484 - mae: 0.1907 - pearson_correlation: 0.6743 - euclidean_distance: 0.2965
Epoch 59/150
227/227 [==============================] - 0s 785us/step - loss: 0.1850 - accuracy: 0.9444 - mae: 0.1850 - pearson_correlation: 0.6821 - euclidean_distance: 0.2891
Epoch 60/150
227/227 [==============================] - 0s 795us/step - loss: 0.1791 - accuracy: 0.9466 - mae: 0.1791 - pearson_correlation: 0.6906 - euclidean_distance: 0.2808
Epoch 61/150
227/227 [==============================] - 0s 787us/step - loss: 0.1833 - accuracy: 0.9440 - mae: 0.1833 - pearson_correlation: 0.6745 - euclidean_distance: 0.2852
Epoch 62/150
227/227 [==============================] - 0s 791us/step - loss: 0.1783 - accuracy: 0.9475 - mae: 0.1783 - pearson_correlation: 0.6808 - euclidean_distance: 0.2790
Epoch 63/150
227/227 [==============================] - 0s 788us/step - loss: 0.1766 - accuracy: 0.9488 - mae: 0.1766 - pearson_correlation: 0.6751 - euclidean_distance: 0.2756
Epoch 64/150
227/227 [==============================] - 0s 791us/step - loss: 0.1724 - accuracy: 0.9479 - mae: 0.1724 - pearson_correlation: 0.6876 - euclidean_distance: 0.2700
Epoch 65/150
227/227 [==============================] - 0s 865us/step - loss: 0.1693 - accuracy: 0.9471 - mae: 0.1693 - pearson_correlation: 0.6842 - euclidean_distance: 0.2646
Epoch 66/150
227/227 [==============================] - 0s 881us/step - loss: 0.1699 - accuracy: 0.9457 - mae: 0.1699 - pearson_correlation: 0.6814 - euclidean_distance: 0.2656
Epoch 67/150
227/227 [==============================] - 0s 877us/step - loss: 0.1665 - accuracy: 0.9457 - mae: 0.1665 - pearson_correlation: 0.6797 - euclidean_distance: 0.2603
Epoch 68/150
227/227 [==============================] - 0s 789us/step - loss: 0.1661 - accuracy: 0.9479 - mae: 0.1661 - pearson_correlation: 0.6783 - euclidean_distance: 0.2605
Epoch 69/150
227/227 [==============================] - 0s 791us/step - loss: 0.1641 - accuracy: 0.9457 - mae: 0.1641 - pearson_correlation: 0.6769 - euclidean_distance: 0.2572
Epoch 70/150
227/227 [==============================] - 0s 788us/step - loss: 0.1590 - accuracy: 0.9497 - mae: 0.1590 - pearson_correlation: 0.6932 - euclidean_distance: 0.2493
Epoch 71/150
227/227 [==============================] - 0s 789us/step - loss: 0.1619 - accuracy: 0.9506 - mae: 0.1619 - pearson_correlation: 0.6865 - euclidean_distance: 0.2536
Epoch 72/150
227/227 [==============================] - 0s 789us/step - loss: 0.1576 - accuracy: 0.9471 - mae: 0.1576 - pearson_correlation: 0.6856 - euclidean_distance: 0.2474
Epoch 73/150
227/227 [==============================] - 0s 786us/step - loss: 0.1556 - accuracy: 0.9497 - mae: 0.1556 - pearson_correlation: 0.6865 - euclidean_distance: 0.2438
Epoch 74/150
227/227 [==============================] - 0s 785us/step - loss: 0.1529 - accuracy: 0.9471 - mae: 0.1529 - pearson_correlation: 0.6892 - euclidean_distance: 0.2405
Epoch 75/150
227/227 [==============================] - 0s 787us/step - loss: 0.1519 - accuracy: 0.9484 - mae: 0.1519 - pearson_correlation: 0.6920 - euclidean_distance: 0.2381
Epoch 76/150
227/227 [==============================] - 0s 793us/step - loss: 0.1523 - accuracy: 0.9466 - mae: 0.1523 - pearson_correlation: 0.6831 - euclidean_distance: 0.2397
Epoch 77/150
227/227 [==============================] - 0s 789us/step - loss: 0.1514 - accuracy: 0.9515 - mae: 0.1514 - pearson_correlation: 0.6891 - euclidean_distance: 0.2373
Epoch 78/150
227/227 [==============================] - 0s 786us/step - loss: 0.1474 - accuracy: 0.9502 - mae: 0.1474 - pearson_correlation: 0.6856 - euclidean_distance: 0.2313
Epoch 79/150
227/227 [==============================] - 0s 787us/step - loss: 0.1458 - accuracy: 0.9493 - mae: 0.1458 - pearson_correlation: 0.6900 - euclidean_distance: 0.2292
Epoch 80/150
227/227 [==============================] - 0s 792us/step - loss: 0.1463 - accuracy: 0.9475 - mae: 0.1463 - pearson_correlation: 0.6901 - euclidean_distance: 0.2295
Epoch 81/150
227/227 [==============================] - 0s 786us/step - loss: 0.1432 - accuracy: 0.9506 - mae: 0.1432 - pearson_correlation: 0.6934 - euclidean_distance: 0.2258
Epoch 82/150
227/227 [==============================] - 0s 791us/step - loss: 0.1437 - accuracy: 0.9502 - mae: 0.1437 - pearson_correlation: 0.6832 - euclidean_distance: 0.2263
Epoch 83/150
227/227 [==============================] - 0s 789us/step - loss: 0.1419 - accuracy: 0.9502 - mae: 0.1419 - pearson_correlation: 0.6864 - euclidean_distance: 0.2236
Epoch 84/150
227/227 [==============================] - 0s 790us/step - loss: 0.1406 - accuracy: 0.9515 - mae: 0.1406 - pearson_correlation: 0.6910 - euclidean_distance: 0.2224
Epoch 85/150
227/227 [==============================] - 0s 788us/step - loss: 0.1374 - accuracy: 0.9497 - mae: 0.1374 - pearson_correlation: 0.6994 - euclidean_distance: 0.2167
Epoch 86/150
227/227 [==============================] - 0s 788us/step - loss: 0.1407 - accuracy: 0.9502 - mae: 0.1407 - pearson_correlation: 0.6855 - euclidean_distance: 0.2223
Epoch 87/150
227/227 [==============================] - 0s 787us/step - loss: 0.1366 - accuracy: 0.9510 - mae: 0.1366 - pearson_correlation: 0.6881 - euclidean_distance: 0.2161
Epoch 88/150
227/227 [==============================] - 0s 791us/step - loss: 0.1353 - accuracy: 0.9497 - mae: 0.1353 - pearson_correlation: 0.6991 - euclidean_distance: 0.2132
Epoch 89/150
227/227 [==============================] - 0s 788us/step - loss: 0.1336 - accuracy: 0.9515 - mae: 0.1336 - pearson_correlation: 0.6882 - euclidean_distance: 0.2122
Epoch 90/150
227/227 [==============================] - 0s 789us/step - loss: 0.1318 - accuracy: 0.9502 - mae: 0.1318 - pearson_correlation: 0.6920 - euclidean_distance: 0.2089
Epoch 91/150
227/227 [==============================] - 0s 790us/step - loss: 0.1305 - accuracy: 0.9497 - mae: 0.1305 - pearson_correlation: 0.6878 - euclidean_distance: 0.2069
Epoch 92/150
227/227 [==============================] - 0s 785us/step - loss: 0.1270 - accuracy: 0.9515 - mae: 0.1270 - pearson_correlation: 0.7011 - euclidean_distance: 0.2019
Epoch 93/150
227/227 [==============================] - 0s 787us/step - loss: 0.1316 - accuracy: 0.9506 - mae: 0.1316 - pearson_correlation: 0.6928 - euclidean_distance: 0.2088
Epoch 94/150
227/227 [==============================] - 0s 787us/step - loss: 0.1304 - accuracy: 0.9510 - mae: 0.1304 - pearson_correlation: 0.6906 - euclidean_distance: 0.2066
Epoch 95/150
227/227 [==============================] - 0s 789us/step - loss: 0.1284 - accuracy: 0.9506 - mae: 0.1284 - pearson_correlation: 0.6966 - euclidean_distance: 0.2040
Epoch 96/150
227/227 [==============================] - 0s 788us/step - loss: 0.1258 - accuracy: 0.9524 - mae: 0.1258 - pearson_correlation: 0.7019 - euclidean_distance: 0.1990
Epoch 97/150
227/227 [==============================] - 0s 801us/step - loss: 0.1284 - accuracy: 0.9510 - mae: 0.1284 - pearson_correlation: 0.6965 - euclidean_distance: 0.2038
Epoch 98/150
227/227 [==============================] - 0s 793us/step - loss: 0.1259 - accuracy: 0.9502 - mae: 0.1259 - pearson_correlation: 0.6967 - euclidean_distance: 0.1998
Epoch 99/150
227/227 [==============================] - 0s 791us/step - loss: 0.1247 - accuracy: 0.9506 - mae: 0.1247 - pearson_correlation: 0.6992 - euclidean_distance: 0.1994
Epoch 100/150
227/227 [==============================] - 0s 789us/step - loss: 0.1241 - accuracy: 0.9528 - mae: 0.1241 - pearson_correlation: 0.7018 - euclidean_distance: 0.1976
Epoch 101/150
227/227 [==============================] - 0s 790us/step - loss: 0.1222 - accuracy: 0.9515 - mae: 0.1222 - pearson_correlation: 0.7025 - euclidean_distance: 0.1949
Epoch 102/150
227/227 [==============================] - 0s 788us/step - loss: 0.1216 - accuracy: 0.9506 - mae: 0.1216 - pearson_correlation: 0.7059 - euclidean_distance: 0.1946
Epoch 103/150
227/227 [==============================] - 0s 784us/step - loss: 0.1197 - accuracy: 0.9519 - mae: 0.1197 - pearson_correlation: 0.7061 - euclidean_distance: 0.1914
Epoch 104/150
227/227 [==============================] - 0s 791us/step - loss: 0.1196 - accuracy: 0.9519 - mae: 0.1196 - pearson_correlation: 0.7068 - euclidean_distance: 0.1909
Epoch 105/150
227/227 [==============================] - 0s 790us/step - loss: 0.1190 - accuracy: 0.9510 - mae: 0.1190 - pearson_correlation: 0.7082 - euclidean_distance: 0.1899
Epoch 106/150
227/227 [==============================] - 0s 785us/step - loss: 0.1205 - accuracy: 0.9528 - mae: 0.1205 - pearson_correlation: 0.7023 - euclidean_distance: 0.1928
Epoch 107/150
227/227 [==============================] - 0s 796us/step - loss: 0.1202 - accuracy: 0.9519 - mae: 0.1202 - pearson_correlation: 0.6964 - euclidean_distance: 0.1924
Epoch 108/150
227/227 [==============================] - 0s 790us/step - loss: 0.1173 - accuracy: 0.9524 - mae: 0.1173 - pearson_correlation: 0.7028 - euclidean_distance: 0.1883
Epoch 109/150
227/227 [==============================] - 0s 787us/step - loss: 0.1177 - accuracy: 0.9550 - mae: 0.1177 - pearson_correlation: 0.7049 - euclidean_distance: 0.1885
Epoch 110/150
227/227 [==============================] - 0s 787us/step - loss: 0.1192 - accuracy: 0.9528 - mae: 0.1192 - pearson_correlation: 0.6988 - euclidean_distance: 0.1900
Epoch 111/150
227/227 [==============================] - 0s 789us/step - loss: 0.1176 - accuracy: 0.9519 - mae: 0.1176 - pearson_correlation: 0.7021 - euclidean_distance: 0.1880
Epoch 112/150
227/227 [==============================] - 0s 793us/step - loss: 0.1178 - accuracy: 0.9537 - mae: 0.1178 - pearson_correlation: 0.6974 - euclidean_distance: 0.1891
Epoch 113/150
227/227 [==============================] - 0s 789us/step - loss: 0.1155 - accuracy: 0.9528 - mae: 0.1155 - pearson_correlation: 0.7083 - euclidean_distance: 0.1848
Epoch 114/150
227/227 [==============================] - 0s 786us/step - loss: 0.1162 - accuracy: 0.9528 - mae: 0.1162 - pearson_correlation: 0.7085 - euclidean_distance: 0.1862
Epoch 115/150
227/227 [==============================] - 0s 787us/step - loss: 0.1143 - accuracy: 0.9524 - mae: 0.1143 - pearson_correlation: 0.7041 - euclidean_distance: 0.1838
Epoch 116/150
227/227 [==============================] - 0s 788us/step - loss: 0.1165 - accuracy: 0.9528 - mae: 0.1165 - pearson_correlation: 0.7027 - euclidean_distance: 0.1868
Epoch 117/150
227/227 [==============================] - 0s 785us/step - loss: 0.1124 - accuracy: 0.9546 - mae: 0.1124 - pearson_correlation: 0.7135 - euclidean_distance: 0.1811
Epoch 118/150
227/227 [==============================] - 0s 786us/step - loss: 0.1136 - accuracy: 0.9541 - mae: 0.1136 - pearson_correlation: 0.7118 - euclidean_distance: 0.1826
Epoch 119/150
227/227 [==============================] - 0s 790us/step - loss: 0.1131 - accuracy: 0.9528 - mae: 0.1131 - pearson_correlation: 0.7069 - euclidean_distance: 0.1829
Epoch 120/150
227/227 [==============================] - 0s 788us/step - loss: 0.1123 - accuracy: 0.9546 - mae: 0.1123 - pearson_correlation: 0.7111 - euclidean_distance: 0.1804
Epoch 121/150
227/227 [==============================] - 0s 790us/step - loss: 0.1110 - accuracy: 0.9537 - mae: 0.1110 - pearson_correlation: 0.7147 - euclidean_distance: 0.1788
Epoch 122/150
227/227 [==============================] - 0s 787us/step - loss: 0.1137 - accuracy: 0.9532 - mae: 0.1137 - pearson_correlation: 0.7052 - euclidean_distance: 0.1832
Epoch 123/150
227/227 [==============================] - 0s 788us/step - loss: 0.1126 - accuracy: 0.9546 - mae: 0.1126 - pearson_correlation: 0.7109 - euclidean_distance: 0.1812
Epoch 124/150
227/227 [==============================] - 0s 785us/step - loss: 0.1089 - accuracy: 0.9532 - mae: 0.1089 - pearson_correlation: 0.7134 - euclidean_distance: 0.1754
Epoch 125/150
227/227 [==============================] - 0s 788us/step - loss: 0.1127 - accuracy: 0.9528 - mae: 0.1127 - pearson_correlation: 0.7094 - euclidean_distance: 0.1817
Epoch 126/150
227/227 [==============================] - 0s 785us/step - loss: 0.1111 - accuracy: 0.9537 - mae: 0.1111 - pearson_correlation: 0.7106 - euclidean_distance: 0.1794
Epoch 127/150
227/227 [==============================] - 0s 786us/step - loss: 0.1071 - accuracy: 0.9550 - mae: 0.1071 - pearson_correlation: 0.7199 - euclidean_distance: 0.1732
Epoch 128/150
227/227 [==============================] - 0s 790us/step - loss: 0.1104 - accuracy: 0.9541 - mae: 0.1104 - pearson_correlation: 0.7097 - euclidean_distance: 0.1787
Epoch 129/150
227/227 [==============================] - 0s 789us/step - loss: 0.1093 - accuracy: 0.9541 - mae: 0.1093 - pearson_correlation: 0.7146 - euclidean_distance: 0.1767
Epoch 130/150
227/227 [==============================] - 0s 786us/step - loss: 0.1071 - accuracy: 0.9532 - mae: 0.1071 - pearson_correlation: 0.7206 - euclidean_distance: 0.1734
Epoch 131/150
227/227 [==============================] - 0s 790us/step - loss: 0.1089 - accuracy: 0.9546 - mae: 0.1089 - pearson_correlation: 0.7155 - euclidean_distance: 0.1766
Epoch 132/150
227/227 [==============================] - 0s 789us/step - loss: 0.1082 - accuracy: 0.9537 - mae: 0.1082 - pearson_correlation: 0.7170 - euclidean_distance: 0.1742
Epoch 133/150
227/227 [==============================] - 0s 786us/step - loss: 0.1086 - accuracy: 0.9532 - mae: 0.1086 - pearson_correlation: 0.7162 - euclidean_distance: 0.1756
Epoch 134/150
227/227 [==============================] - 0s 788us/step - loss: 0.1069 - accuracy: 0.9541 - mae: 0.1069 - pearson_correlation: 0.7161 - euclidean_distance: 0.1733
Epoch 135/150
227/227 [==============================] - 0s 790us/step - loss: 0.1044 - accuracy: 0.9541 - mae: 0.1044 - pearson_correlation: 0.7237 - euclidean_distance: 0.1690
Epoch 136/150
227/227 [==============================] - 0s 787us/step - loss: 0.1080 - accuracy: 0.9519 - mae: 0.1080 - pearson_correlation: 0.7167 - euclidean_distance: 0.1745
Epoch 137/150
227/227 [==============================] - 0s 786us/step - loss: 0.1076 - accuracy: 0.9546 - mae: 0.1076 - pearson_correlation: 0.7224 - euclidean_distance: 0.1747
Epoch 138/150
227/227 [==============================] - 0s 788us/step - loss: 0.1039 - accuracy: 0.9532 - mae: 0.1039 - pearson_correlation: 0.7263 - euclidean_distance: 0.1682
Epoch 139/150
227/227 [==============================] - 0s 790us/step - loss: 0.1048 - accuracy: 0.9524 - mae: 0.1048 - pearson_correlation: 0.7259 - euclidean_distance: 0.1701
Epoch 140/150
227/227 [==============================] - 0s 779us/step - loss: 0.1096 - accuracy: 0.9532 - mae: 0.1096 - pearson_correlation: 0.7147 - euclidean_distance: 0.1769
Epoch 141/150
227/227 [==============================] - 0s 788us/step - loss: 0.1057 - accuracy: 0.9537 - mae: 0.1057 - pearson_correlation: 0.7205 - euclidean_distance: 0.1709
Epoch 142/150
227/227 [==============================] - 0s 786us/step - loss: 0.1044 - accuracy: 0.9546 - mae: 0.1044 - pearson_correlation: 0.7253 - euclidean_distance: 0.1694
Epoch 143/150
227/227 [==============================] - 0s 786us/step - loss: 0.1038 - accuracy: 0.9541 - mae: 0.1038 - pearson_correlation: 0.7187 - euclidean_distance: 0.1689
Epoch 144/150
227/227 [==============================] - 0s 783us/step - loss: 0.1054 - accuracy: 0.9554 - mae: 0.1054 - pearson_correlation: 0.7286 - euclidean_distance: 0.1708
Epoch 145/150
227/227 [==============================] - 0s 785us/step - loss: 0.1055 - accuracy: 0.9541 - mae: 0.1055 - pearson_correlation: 0.7229 - euclidean_distance: 0.1710
Epoch 146/150
227/227 [==============================] - 0s 790us/step - loss: 0.1054 - accuracy: 0.9550 - mae: 0.1054 - pearson_correlation: 0.7239 - euclidean_distance: 0.1710
Epoch 147/150
227/227 [==============================] - 0s 791us/step - loss: 0.1039 - accuracy: 0.9541 - mae: 0.1039 - pearson_correlation: 0.7238 - euclidean_distance: 0.1683
Epoch 148/150
227/227 [==============================] - 0s 788us/step - loss: 0.1052 - accuracy: 0.9541 - mae: 0.1052 - pearson_correlation: 0.7259 - euclidean_distance: 0.1704
Epoch 149/150
227/227 [==============================] - 0s 786us/step - loss: 0.1062 - accuracy: 0.9546 - mae: 0.1062 - pearson_correlation: 0.7235 - euclidean_distance: 0.1724
Epoch 150/150
227/227 [==============================] - 0s 783us/step - loss: 0.1046 - accuracy: 0.9550 - mae: 0.1046 - pearson_correlation: 0.7282 - euclidean_distance: 0.1697
114/114 [==============================] - 0s 458us/step
Epoch 1/150
227/227 [==============================] - 3s 809us/step - loss: 0.5428 - accuracy: 0.0441 - mae: 0.5428 - pearson_correlation: -0.7731 - euclidean_distance: 0.9473
Epoch 2/150
227/227 [==============================] - 0s 785us/step - loss: 0.5347 - accuracy: 0.0441 - mae: 0.5347 - pearson_correlation: -0.7701 - euclidean_distance: 0.9377
Epoch 3/150
227/227 [==============================] - 0s 784us/step - loss: 0.5307 - accuracy: 0.0441 - mae: 0.5307 - pearson_correlation: -0.7687 - euclidean_distance: 0.9295
Epoch 4/150
227/227 [==============================] - 0s 785us/step - loss: 0.5258 - accuracy: 0.0441 - mae: 0.5258 - pearson_correlation: -0.7738 - euclidean_distance: 0.9225
Epoch 5/150
227/227 [==============================] - 0s 786us/step - loss: 0.5219 - accuracy: 0.0441 - mae: 0.5219 - pearson_correlation: -0.7681 - euclidean_distance: 0.9153
Epoch 6/150
227/227 [==============================] - 0s 784us/step - loss: 0.5143 - accuracy: 0.0441 - mae: 0.5143 - pearson_correlation: -0.7754 - euclidean_distance: 0.9065
Epoch 7/150
227/227 [==============================] - 0s 791us/step - loss: 0.5117 - accuracy: 0.0441 - mae: 0.5117 - pearson_correlation: -0.7692 - euclidean_distance: 0.8991
Epoch 8/150
227/227 [==============================] - 0s 788us/step - loss: 0.5079 - accuracy: 0.0441 - mae: 0.5079 - pearson_correlation: -0.7719 - euclidean_distance: 0.8926
Epoch 9/150
227/227 [==============================] - 0s 787us/step - loss: 0.5010 - accuracy: 0.0445 - mae: 0.5010 - pearson_correlation: -0.7681 - euclidean_distance: 0.8827
Epoch 10/150
227/227 [==============================] - 0s 796us/step - loss: 0.4960 - accuracy: 0.0441 - mae: 0.4960 - pearson_correlation: -0.7699 - euclidean_distance: 0.8747
Epoch 11/150
227/227 [==============================] - 0s 798us/step - loss: 0.4928 - accuracy: 0.0437 - mae: 0.4928 - pearson_correlation: -0.7668 - euclidean_distance: 0.8690
Epoch 12/150
227/227 [==============================] - 0s 793us/step - loss: 0.4900 - accuracy: 0.0441 - mae: 0.4900 - pearson_correlation: -0.7658 - euclidean_distance: 0.8624
Epoch 13/150
227/227 [==============================] - 0s 795us/step - loss: 0.4840 - accuracy: 0.0454 - mae: 0.4840 - pearson_correlation: -0.7635 - euclidean_distance: 0.8535
Epoch 14/150
227/227 [==============================] - 0s 792us/step - loss: 0.4803 - accuracy: 0.0441 - mae: 0.4803 - pearson_correlation: -0.7646 - euclidean_distance: 0.8461
Epoch 15/150
227/227 [==============================] - 0s 805us/step - loss: 0.4774 - accuracy: 0.0441 - mae: 0.4774 - pearson_correlation: -0.7611 - euclidean_distance: 0.8400
Epoch 16/150
227/227 [==============================] - 0s 795us/step - loss: 0.4719 - accuracy: 0.0445 - mae: 0.4719 - pearson_correlation: -0.7635 - euclidean_distance: 0.8324
Epoch 17/150
227/227 [==============================] - 0s 798us/step - loss: 0.4677 - accuracy: 0.0445 - mae: 0.4677 - pearson_correlation: -0.7571 - euclidean_distance: 0.8244
Epoch 18/150
227/227 [==============================] - 0s 800us/step - loss: 0.4624 - accuracy: 0.0445 - mae: 0.4624 - pearson_correlation: -0.7547 - euclidean_distance: 0.8159
Epoch 19/150
227/227 [==============================] - 0s 799us/step - loss: 0.4583 - accuracy: 0.0441 - mae: 0.4583 - pearson_correlation: -0.7523 - euclidean_distance: 0.8083
Epoch 20/150
227/227 [==============================] - 0s 797us/step - loss: 0.4569 - accuracy: 0.0445 - mae: 0.4569 - pearson_correlation: -0.7489 - euclidean_distance: 0.8019
Epoch 21/150
227/227 [==============================] - 0s 797us/step - loss: 0.4523 - accuracy: 0.0450 - mae: 0.4523 - pearson_correlation: -0.7470 - euclidean_distance: 0.7939
Epoch 22/150
227/227 [==============================] - 0s 803us/step - loss: 0.4471 - accuracy: 0.0450 - mae: 0.4471 - pearson_correlation: -0.7409 - euclidean_distance: 0.7853
Epoch 23/150
227/227 [==============================] - 0s 795us/step - loss: 0.4412 - accuracy: 0.0445 - mae: 0.4412 - pearson_correlation: -0.7437 - euclidean_distance: 0.7770
Epoch 24/150
227/227 [==============================] - 0s 805us/step - loss: 0.4364 - accuracy: 0.0445 - mae: 0.4364 - pearson_correlation: -0.7433 - euclidean_distance: 0.7703
Epoch 25/150
227/227 [==============================] - 0s 795us/step - loss: 0.4326 - accuracy: 0.0450 - mae: 0.4326 - pearson_correlation: -0.7324 - euclidean_distance: 0.7609
Epoch 26/150
227/227 [==============================] - 0s 799us/step - loss: 0.4289 - accuracy: 0.0441 - mae: 0.4289 - pearson_correlation: -0.7280 - euclidean_distance: 0.7533
Epoch 27/150
227/227 [==============================] - 0s 797us/step - loss: 0.4256 - accuracy: 0.0450 - mae: 0.4256 - pearson_correlation: -0.7238 - euclidean_distance: 0.7471
Epoch 28/150
227/227 [==============================] - 0s 794us/step - loss: 0.4212 - accuracy: 0.0445 - mae: 0.4212 - pearson_correlation: -0.7183 - euclidean_distance: 0.7386
Epoch 29/150
227/227 [==============================] - 0s 796us/step - loss: 0.4153 - accuracy: 0.0450 - mae: 0.4153 - pearson_correlation: -0.7141 - euclidean_distance: 0.7301
Epoch 30/150
227/227 [==============================] - 0s 791us/step - loss: 0.4107 - accuracy: 0.0450 - mae: 0.4107 - pearson_correlation: -0.7085 - euclidean_distance: 0.7205
Epoch 31/150
227/227 [==============================] - 0s 791us/step - loss: 0.4061 - accuracy: 0.0450 - mae: 0.4061 - pearson_correlation: -0.7005 - euclidean_distance: 0.7122
Epoch 32/150
227/227 [==============================] - 0s 794us/step - loss: 0.4028 - accuracy: 0.0450 - mae: 0.4028 - pearson_correlation: -0.6904 - euclidean_distance: 0.7052
Epoch 33/150
227/227 [==============================] - 0s 793us/step - loss: 0.3963 - accuracy: 0.0454 - mae: 0.3963 - pearson_correlation: -0.6861 - euclidean_distance: 0.6947
Epoch 34/150
227/227 [==============================] - 0s 794us/step - loss: 0.3935 - accuracy: 0.0476 - mae: 0.3935 - pearson_correlation: -0.6680 - euclidean_distance: 0.6877
Epoch 35/150
227/227 [==============================] - 0s 790us/step - loss: 0.3892 - accuracy: 0.0511 - mae: 0.3892 - pearson_correlation: -0.6665 - euclidean_distance: 0.6801
Epoch 36/150
227/227 [==============================] - 0s 796us/step - loss: 0.3836 - accuracy: 0.0498 - mae: 0.3836 - pearson_correlation: -0.6528 - euclidean_distance: 0.6695
Epoch 37/150
227/227 [==============================] - 0s 792us/step - loss: 0.3786 - accuracy: 0.0534 - mae: 0.3786 - pearson_correlation: -0.6468 - euclidean_distance: 0.6620
Epoch 38/150
227/227 [==============================] - 0s 800us/step - loss: 0.3738 - accuracy: 0.0542 - mae: 0.3738 - pearson_correlation: -0.6361 - euclidean_distance: 0.6536
Epoch 39/150
227/227 [==============================] - 0s 794us/step - loss: 0.3702 - accuracy: 0.0569 - mae: 0.3702 - pearson_correlation: -0.6170 - euclidean_distance: 0.6444
Epoch 40/150
227/227 [==============================] - 0s 792us/step - loss: 0.3657 - accuracy: 0.0604 - mae: 0.3657 - pearson_correlation: -0.6162 - euclidean_distance: 0.6362
Epoch 41/150
227/227 [==============================] - 0s 795us/step - loss: 0.3597 - accuracy: 0.0622 - mae: 0.3597 - pearson_correlation: -0.6039 - euclidean_distance: 0.6273
Epoch 42/150
227/227 [==============================] - 0s 796us/step - loss: 0.3552 - accuracy: 0.0701 - mae: 0.3552 - pearson_correlation: -0.5885 - euclidean_distance: 0.6181
Epoch 43/150
227/227 [==============================] - 0s 795us/step - loss: 0.3502 - accuracy: 0.0723 - mae: 0.3502 - pearson_correlation: -0.5702 - euclidean_distance: 0.6093
Epoch 44/150
227/227 [==============================] - 0s 803us/step - loss: 0.3453 - accuracy: 0.0767 - mae: 0.3453 - pearson_correlation: -0.5662 - euclidean_distance: 0.6002
Epoch 45/150
227/227 [==============================] - 0s 796us/step - loss: 0.3413 - accuracy: 0.0847 - mae: 0.3413 - pearson_correlation: -0.5426 - euclidean_distance: 0.5912
Epoch 46/150
227/227 [==============================] - 0s 795us/step - loss: 0.3369 - accuracy: 0.0992 - mae: 0.3369 - pearson_correlation: -0.5220 - euclidean_distance: 0.5832
Epoch 47/150
227/227 [==============================] - 0s 795us/step - loss: 0.3319 - accuracy: 0.1116 - mae: 0.3319 - pearson_correlation: -0.5093 - euclidean_distance: 0.5741
Epoch 48/150
227/227 [==============================] - 0s 795us/step - loss: 0.3281 - accuracy: 0.1168 - mae: 0.3281 - pearson_correlation: -0.4973 - euclidean_distance: 0.5670
Epoch 49/150
227/227 [==============================] - 0s 793us/step - loss: 0.3206 - accuracy: 0.1314 - mae: 0.3206 - pearson_correlation: -0.4733 - euclidean_distance: 0.5547
Epoch 50/150
227/227 [==============================] - 0s 807us/step - loss: 0.3153 - accuracy: 0.1468 - mae: 0.3153 - pearson_correlation: -0.4465 - euclidean_distance: 0.5437
Epoch 51/150
227/227 [==============================] - 0s 796us/step - loss: 0.3119 - accuracy: 0.1631 - mae: 0.3119 - pearson_correlation: -0.4280 - euclidean_distance: 0.5364
Epoch 52/150
227/227 [==============================] - 0s 792us/step - loss: 0.3062 - accuracy: 0.1693 - mae: 0.3062 - pearson_correlation: -0.4130 - euclidean_distance: 0.5284
Epoch 53/150
227/227 [==============================] - 0s 796us/step - loss: 0.3009 - accuracy: 0.1922 - mae: 0.3009 - pearson_correlation: -0.3771 - euclidean_distance: 0.5164
Epoch 54/150
227/227 [==============================] - 0s 791us/step - loss: 0.2956 - accuracy: 0.2028 - mae: 0.2956 - pearson_correlation: -0.3584 - euclidean_distance: 0.5072
Epoch 55/150
227/227 [==============================] - 0s 855us/step - loss: 0.2898 - accuracy: 0.2315 - mae: 0.2898 - pearson_correlation: -0.3378 - euclidean_distance: 0.4976
Epoch 56/150
227/227 [==============================] - 0s 797us/step - loss: 0.2865 - accuracy: 0.2399 - mae: 0.2865 - pearson_correlation: -0.3232 - euclidean_distance: 0.4908
Epoch 57/150
227/227 [==============================] - 0s 793us/step - loss: 0.2808 - accuracy: 0.2646 - mae: 0.2808 - pearson_correlation: -0.2903 - euclidean_distance: 0.4803
Epoch 58/150
227/227 [==============================] - 0s 798us/step - loss: 0.2753 - accuracy: 0.2840 - mae: 0.2753 - pearson_correlation: -0.2620 - euclidean_distance: 0.4701
Epoch 59/150
227/227 [==============================] - 0s 797us/step - loss: 0.2716 - accuracy: 0.3205 - mae: 0.2716 - pearson_correlation: -0.2244 - euclidean_distance: 0.4632
Epoch 60/150
227/227 [==============================] - 0s 807us/step - loss: 0.2660 - accuracy: 0.3223 - mae: 0.2660 - pearson_correlation: -0.2006 - euclidean_distance: 0.4543
Epoch 61/150
227/227 [==============================] - 0s 834us/step - loss: 0.2613 - accuracy: 0.3466 - mae: 0.2613 - pearson_correlation: -0.1796 - euclidean_distance: 0.4460
Epoch 62/150
227/227 [==============================] - 0s 795us/step - loss: 0.2576 - accuracy: 0.3642 - mae: 0.2576 - pearson_correlation: -0.1475 - euclidean_distance: 0.4392
Epoch 63/150
227/227 [==============================] - 0s 804us/step - loss: 0.2532 - accuracy: 0.3757 - mae: 0.2532 - pearson_correlation: -0.1458 - euclidean_distance: 0.4317
Epoch 64/150
227/227 [==============================] - 0s 796us/step - loss: 0.2469 - accuracy: 0.3907 - mae: 0.2469 - pearson_correlation: -0.1140 - euclidean_distance: 0.4218
Epoch 65/150
227/227 [==============================] - 0s 802us/step - loss: 0.2441 - accuracy: 0.4189 - mae: 0.2441 - pearson_correlation: -0.0853 - euclidean_distance: 0.4149
Epoch 66/150
227/227 [==============================] - 0s 796us/step - loss: 0.2398 - accuracy: 0.4453 - mae: 0.2398 - pearson_correlation: -0.0440 - euclidean_distance: 0.4064
Epoch 67/150
227/227 [==============================] - 0s 793us/step - loss: 0.2358 - accuracy: 0.4475 - mae: 0.2358 - pearson_correlation: -0.0444 - euclidean_distance: 0.4008
Epoch 68/150
227/227 [==============================] - 0s 799us/step - loss: 0.2329 - accuracy: 0.4687 - mae: 0.2329 - pearson_correlation: -0.0137 - euclidean_distance: 0.3942
Epoch 69/150
227/227 [==============================] - 0s 801us/step - loss: 0.2294 - accuracy: 0.4828 - mae: 0.2294 - pearson_correlation: 0.0107 - euclidean_distance: 0.3884
Epoch 70/150
227/227 [==============================] - 0s 799us/step - loss: 0.2251 - accuracy: 0.4859 - mae: 0.2251 - pearson_correlation: 0.0247 - euclidean_distance: 0.3809
Epoch 71/150
227/227 [==============================] - 0s 797us/step - loss: 0.2209 - accuracy: 0.5260 - mae: 0.2209 - pearson_correlation: 0.0634 - euclidean_distance: 0.3734
Epoch 72/150
227/227 [==============================] - 0s 796us/step - loss: 0.2173 - accuracy: 0.5313 - mae: 0.2173 - pearson_correlation: 0.0769 - euclidean_distance: 0.3668
Epoch 73/150
227/227 [==============================] - 0s 795us/step - loss: 0.2160 - accuracy: 0.5573 - mae: 0.2160 - pearson_correlation: 0.1004 - euclidean_distance: 0.3631
Epoch 74/150
227/227 [==============================] - 0s 793us/step - loss: 0.2116 - accuracy: 0.5710 - mae: 0.2116 - pearson_correlation: 0.1195 - euclidean_distance: 0.3554
Epoch 75/150
227/227 [==============================] - 0s 791us/step - loss: 0.2060 - accuracy: 0.5882 - mae: 0.2060 - pearson_correlation: 0.1428 - euclidean_distance: 0.3472
Epoch 76/150
227/227 [==============================] - 0s 854us/step - loss: 0.2055 - accuracy: 0.5939 - mae: 0.2055 - pearson_correlation: 0.1590 - euclidean_distance: 0.3453
Epoch 77/150
227/227 [==============================] - 0s 896us/step - loss: 0.1997 - accuracy: 0.6217 - mae: 0.1997 - pearson_correlation: 0.1832 - euclidean_distance: 0.3366
Epoch 78/150
227/227 [==============================] - 0s 920us/step - loss: 0.1994 - accuracy: 0.6301 - mae: 0.1994 - pearson_correlation: 0.1941 - euclidean_distance: 0.3341
Epoch 79/150
227/227 [==============================] - 0s 810us/step - loss: 0.1944 - accuracy: 0.6481 - mae: 0.1944 - pearson_correlation: 0.2223 - euclidean_distance: 0.3262
Epoch 80/150
227/227 [==============================] - 0s 798us/step - loss: 0.1915 - accuracy: 0.6526 - mae: 0.1915 - pearson_correlation: 0.2450 - euclidean_distance: 0.3208
Epoch 81/150
227/227 [==============================] - 0s 791us/step - loss: 0.1906 - accuracy: 0.6667 - mae: 0.1906 - pearson_correlation: 0.2504 - euclidean_distance: 0.3188
Epoch 82/150
227/227 [==============================] - 0s 794us/step - loss: 0.1871 - accuracy: 0.6680 - mae: 0.1871 - pearson_correlation: 0.2607 - euclidean_distance: 0.3134
Epoch 83/150
227/227 [==============================] - 0s 796us/step - loss: 0.1842 - accuracy: 0.6900 - mae: 0.1842 - pearson_correlation: 0.2856 - euclidean_distance: 0.3076
Epoch 84/150
227/227 [==============================] - 0s 793us/step - loss: 0.1795 - accuracy: 0.6997 - mae: 0.1795 - pearson_correlation: 0.3046 - euclidean_distance: 0.3000
Epoch 85/150
227/227 [==============================] - 0s 795us/step - loss: 0.1807 - accuracy: 0.7183 - mae: 0.1807 - pearson_correlation: 0.3157 - euclidean_distance: 0.3011
Epoch 86/150
227/227 [==============================] - 0s 796us/step - loss: 0.1756 - accuracy: 0.7169 - mae: 0.1756 - pearson_correlation: 0.3368 - euclidean_distance: 0.2939
Epoch 87/150
227/227 [==============================] - 0s 791us/step - loss: 0.1736 - accuracy: 0.7372 - mae: 0.1736 - pearson_correlation: 0.3450 - euclidean_distance: 0.2897
Epoch 88/150
227/227 [==============================] - 0s 794us/step - loss: 0.1728 - accuracy: 0.7438 - mae: 0.1728 - pearson_correlation: 0.3584 - euclidean_distance: 0.2876
Epoch 89/150
227/227 [==============================] - 0s 797us/step - loss: 0.1677 - accuracy: 0.7610 - mae: 0.1677 - pearson_correlation: 0.3835 - euclidean_distance: 0.2786
Epoch 90/150
227/227 [==============================] - 0s 797us/step - loss: 0.1662 - accuracy: 0.7694 - mae: 0.1662 - pearson_correlation: 0.3967 - euclidean_distance: 0.2759
Epoch 91/150
227/227 [==============================] - 0s 790us/step - loss: 0.1657 - accuracy: 0.7809 - mae: 0.1657 - pearson_correlation: 0.3894 - euclidean_distance: 0.2752
Epoch 92/150
227/227 [==============================] - 0s 797us/step - loss: 0.1639 - accuracy: 0.7892 - mae: 0.1639 - pearson_correlation: 0.4125 - euclidean_distance: 0.2715
Epoch 93/150
227/227 [==============================] - 0s 795us/step - loss: 0.1613 - accuracy: 0.7945 - mae: 0.1613 - pearson_correlation: 0.4244 - euclidean_distance: 0.2670
Epoch 94/150
227/227 [==============================] - 0s 794us/step - loss: 0.1592 - accuracy: 0.8025 - mae: 0.1592 - pearson_correlation: 0.4340 - euclidean_distance: 0.2638
Epoch 95/150
227/227 [==============================] - 0s 795us/step - loss: 0.1563 - accuracy: 0.8025 - mae: 0.1563 - pearson_correlation: 0.4434 - euclidean_distance: 0.2598
Epoch 96/150
227/227 [==============================] - 0s 793us/step - loss: 0.1548 - accuracy: 0.8153 - mae: 0.1548 - pearson_correlation: 0.4574 - euclidean_distance: 0.2564
Epoch 97/150
227/227 [==============================] - 0s 793us/step - loss: 0.1539 - accuracy: 0.8210 - mae: 0.1539 - pearson_correlation: 0.4688 - euclidean_distance: 0.2542
Epoch 98/150
227/227 [==============================] - 0s 798us/step - loss: 0.1516 - accuracy: 0.8245 - mae: 0.1516 - pearson_correlation: 0.4708 - euclidean_distance: 0.2510
Epoch 99/150
227/227 [==============================] - 0s 807us/step - loss: 0.1484 - accuracy: 0.8355 - mae: 0.1484 - pearson_correlation: 0.4869 - euclidean_distance: 0.2460
Epoch 100/150
227/227 [==============================] - 0s 798us/step - loss: 0.1473 - accuracy: 0.8395 - mae: 0.1473 - pearson_correlation: 0.4961 - euclidean_distance: 0.2439
Epoch 101/150
227/227 [==============================] - 0s 794us/step - loss: 0.1456 - accuracy: 0.8554 - mae: 0.1456 - pearson_correlation: 0.5113 - euclidean_distance: 0.2410
Epoch 102/150
227/227 [==============================] - 0s 796us/step - loss: 0.1443 - accuracy: 0.8549 - mae: 0.1443 - pearson_correlation: 0.5098 - euclidean_distance: 0.2385
Epoch 103/150
227/227 [==============================] - 0s 793us/step - loss: 0.1431 - accuracy: 0.8607 - mae: 0.1431 - pearson_correlation: 0.5202 - euclidean_distance: 0.2361
Epoch 104/150
227/227 [==============================] - 0s 799us/step - loss: 0.1398 - accuracy: 0.8642 - mae: 0.1398 - pearson_correlation: 0.5319 - euclidean_distance: 0.2311
Epoch 105/150
227/227 [==============================] - 0s 802us/step - loss: 0.1395 - accuracy: 0.8651 - mae: 0.1395 - pearson_correlation: 0.5380 - euclidean_distance: 0.2304
Epoch 106/150
227/227 [==============================] - 0s 801us/step - loss: 0.1378 - accuracy: 0.8796 - mae: 0.1378 - pearson_correlation: 0.5422 - euclidean_distance: 0.2278
Epoch 107/150
227/227 [==============================] - 0s 792us/step - loss: 0.1370 - accuracy: 0.8743 - mae: 0.1370 - pearson_correlation: 0.5486 - euclidean_distance: 0.2255
Epoch 108/150
227/227 [==============================] - 0s 799us/step - loss: 0.1349 - accuracy: 0.8867 - mae: 0.1349 - pearson_correlation: 0.5714 - euclidean_distance: 0.2219
Epoch 109/150
227/227 [==============================] - 0s 795us/step - loss: 0.1337 - accuracy: 0.8889 - mae: 0.1337 - pearson_correlation: 0.5642 - euclidean_distance: 0.2202
Epoch 110/150
227/227 [==============================] - 0s 794us/step - loss: 0.1337 - accuracy: 0.8937 - mae: 0.1337 - pearson_correlation: 0.5709 - euclidean_distance: 0.2195
Epoch 111/150
227/227 [==============================] - 0s 796us/step - loss: 0.1331 - accuracy: 0.8929 - mae: 0.1331 - pearson_correlation: 0.5779 - euclidean_distance: 0.2180
Epoch 112/150
227/227 [==============================] - 0s 793us/step - loss: 0.1313 - accuracy: 0.8951 - mae: 0.1313 - pearson_correlation: 0.5823 - euclidean_distance: 0.2160
Epoch 113/150
227/227 [==============================] - 0s 792us/step - loss: 0.1298 - accuracy: 0.8999 - mae: 0.1298 - pearson_correlation: 0.5920 - euclidean_distance: 0.2129
Epoch 114/150
227/227 [==============================] - 0s 795us/step - loss: 0.1278 - accuracy: 0.9021 - mae: 0.1278 - pearson_correlation: 0.6007 - euclidean_distance: 0.2100
Epoch 115/150
227/227 [==============================] - 0s 796us/step - loss: 0.1294 - accuracy: 0.9065 - mae: 0.1294 - pearson_correlation: 0.5987 - euclidean_distance: 0.2114
Epoch 116/150
227/227 [==============================] - 0s 795us/step - loss: 0.1269 - accuracy: 0.9114 - mae: 0.1269 - pearson_correlation: 0.6110 - euclidean_distance: 0.2074
Epoch 117/150
227/227 [==============================] - 0s 791us/step - loss: 0.1264 - accuracy: 0.9021 - mae: 0.1264 - pearson_correlation: 0.6048 - euclidean_distance: 0.2072
Epoch 118/150
227/227 [==============================] - 0s 791us/step - loss: 0.1242 - accuracy: 0.9087 - mae: 0.1242 - pearson_correlation: 0.6217 - euclidean_distance: 0.2031
Epoch 119/150
227/227 [==============================] - 0s 795us/step - loss: 0.1238 - accuracy: 0.9105 - mae: 0.1238 - pearson_correlation: 0.6188 - euclidean_distance: 0.2023
Epoch 120/150
227/227 [==============================] - 0s 797us/step - loss: 0.1224 - accuracy: 0.9136 - mae: 0.1224 - pearson_correlation: 0.6307 - euclidean_distance: 0.2001
Epoch 121/150
227/227 [==============================] - 0s 796us/step - loss: 0.1230 - accuracy: 0.9123 - mae: 0.1230 - pearson_correlation: 0.6236 - euclidean_distance: 0.2004
Epoch 122/150
227/227 [==============================] - 0s 797us/step - loss: 0.1223 - accuracy: 0.9149 - mae: 0.1223 - pearson_correlation: 0.6333 - euclidean_distance: 0.1997
Epoch 123/150
227/227 [==============================] - 0s 796us/step - loss: 0.1187 - accuracy: 0.9162 - mae: 0.1187 - pearson_correlation: 0.6395 - euclidean_distance: 0.1942
Epoch 124/150
227/227 [==============================] - 0s 795us/step - loss: 0.1190 - accuracy: 0.9206 - mae: 0.1190 - pearson_correlation: 0.6496 - euclidean_distance: 0.1944
Epoch 125/150
227/227 [==============================] - 0s 791us/step - loss: 0.1178 - accuracy: 0.9211 - mae: 0.1178 - pearson_correlation: 0.6489 - euclidean_distance: 0.1922
Epoch 126/150
227/227 [==============================] - 0s 793us/step - loss: 0.1170 - accuracy: 0.9233 - mae: 0.1170 - pearson_correlation: 0.6544 - euclidean_distance: 0.1910
Epoch 127/150
227/227 [==============================] - 0s 793us/step - loss: 0.1173 - accuracy: 0.9290 - mae: 0.1173 - pearson_correlation: 0.6593 - euclidean_distance: 0.1911
Epoch 128/150
227/227 [==============================] - 0s 792us/step - loss: 0.1144 - accuracy: 0.9246 - mae: 0.1144 - pearson_correlation: 0.6593 - euclidean_distance: 0.1870
Epoch 129/150
227/227 [==============================] - 0s 796us/step - loss: 0.1156 - accuracy: 0.9286 - mae: 0.1156 - pearson_correlation: 0.6636 - euclidean_distance: 0.1878
Epoch 130/150
227/227 [==============================] - 0s 799us/step - loss: 0.1148 - accuracy: 0.9303 - mae: 0.1148 - pearson_correlation: 0.6672 - euclidean_distance: 0.1871
Epoch 131/150
227/227 [==============================] - 0s 801us/step - loss: 0.1116 - accuracy: 0.9330 - mae: 0.1116 - pearson_correlation: 0.6790 - euclidean_distance: 0.1824
Epoch 132/150
227/227 [==============================] - 0s 816us/step - loss: 0.1134 - accuracy: 0.9303 - mae: 0.1134 - pearson_correlation: 0.6745 - euclidean_distance: 0.1846
Epoch 133/150
227/227 [==============================] - 0s 810us/step - loss: 0.1120 - accuracy: 0.9334 - mae: 0.1120 - pearson_correlation: 0.6768 - euclidean_distance: 0.1826
Epoch 134/150
227/227 [==============================] - 0s 804us/step - loss: 0.1114 - accuracy: 0.9343 - mae: 0.1114 - pearson_correlation: 0.6852 - euclidean_distance: 0.1819
Epoch 135/150
227/227 [==============================] - 0s 795us/step - loss: 0.1093 - accuracy: 0.9369 - mae: 0.1093 - pearson_correlation: 0.6860 - euclidean_distance: 0.1787
Epoch 136/150
227/227 [==============================] - 0s 794us/step - loss: 0.1088 - accuracy: 0.9347 - mae: 0.1088 - pearson_correlation: 0.6883 - euclidean_distance: 0.1769
Epoch 137/150
227/227 [==============================] - 0s 791us/step - loss: 0.1079 - accuracy: 0.9330 - mae: 0.1079 - pearson_correlation: 0.6935 - euclidean_distance: 0.1756
Epoch 138/150
227/227 [==============================] - 0s 794us/step - loss: 0.1100 - accuracy: 0.9317 - mae: 0.1100 - pearson_correlation: 0.6903 - euclidean_distance: 0.1790
Epoch 139/150
227/227 [==============================] - 0s 788us/step - loss: 0.1107 - accuracy: 0.9334 - mae: 0.1107 - pearson_correlation: 0.6864 - euclidean_distance: 0.1800
Epoch 140/150
227/227 [==============================] - 0s 787us/step - loss: 0.1073 - accuracy: 0.9414 - mae: 0.1073 - pearson_correlation: 0.6997 - euclidean_distance: 0.1744
Epoch 141/150
227/227 [==============================] - 0s 792us/step - loss: 0.1076 - accuracy: 0.9392 - mae: 0.1076 - pearson_correlation: 0.6951 - euclidean_distance: 0.1750
Epoch 142/150
227/227 [==============================] - 0s 800us/step - loss: 0.1071 - accuracy: 0.9383 - mae: 0.1071 - pearson_correlation: 0.7048 - euclidean_distance: 0.1734
Epoch 143/150
227/227 [==============================] - 0s 792us/step - loss: 0.1073 - accuracy: 0.9422 - mae: 0.1073 - pearson_correlation: 0.6973 - euclidean_distance: 0.1739
Epoch 144/150
227/227 [==============================] - 0s 793us/step - loss: 0.1057 - accuracy: 0.9383 - mae: 0.1057 - pearson_correlation: 0.7065 - euclidean_distance: 0.1713
Epoch 145/150
227/227 [==============================] - 0s 798us/step - loss: 0.1039 - accuracy: 0.9409 - mae: 0.1039 - pearson_correlation: 0.7102 - euclidean_distance: 0.1686
Epoch 146/150
227/227 [==============================] - 0s 794us/step - loss: 0.1070 - accuracy: 0.9392 - mae: 0.1070 - pearson_correlation: 0.7011 - euclidean_distance: 0.1734
Epoch 147/150
227/227 [==============================] - 0s 794us/step - loss: 0.1037 - accuracy: 0.9405 - mae: 0.1037 - pearson_correlation: 0.7162 - euclidean_distance: 0.1682
Epoch 148/150
227/227 [==============================] - 0s 796us/step - loss: 0.1040 - accuracy: 0.9440 - mae: 0.1040 - pearson_correlation: 0.7124 - euclidean_distance: 0.1686
Epoch 149/150
227/227 [==============================] - 0s 790us/step - loss: 0.1035 - accuracy: 0.9453 - mae: 0.1035 - pearson_correlation: 0.7169 - euclidean_distance: 0.1675
Epoch 150/150
227/227 [==============================] - 0s 796us/step - loss: 0.1031 - accuracy: 0.9484 - mae: 0.1031 - pearson_correlation: 0.7170 - euclidean_distance: 0.1664
114/114 [==============================] - 0s 438us/step
Epoch 1/200
227/227 [==============================] - 1s 820us/step - loss: 0.5226 - accuracy: 0.4067 - mae: 0.5226 - pearson_correlation: -0.0550 - euclidean_distance: 0.8037
Epoch 2/200
227/227 [==============================] - 0s 793us/step - loss: 0.5087 - accuracy: 0.4085 - mae: 0.5087 - pearson_correlation: -0.0590 - euclidean_distance: 0.7845
Epoch 3/200
227/227 [==============================] - 0s 792us/step - loss: 0.4966 - accuracy: 0.4045 - mae: 0.4966 - pearson_correlation: -0.0607 - euclidean_distance: 0.7669
Epoch 4/200
227/227 [==============================] - 0s 789us/step - loss: 0.4822 - accuracy: 0.3992 - mae: 0.4822 - pearson_correlation: -0.0745 - euclidean_distance: 0.7468
Epoch 5/200
227/227 [==============================] - 0s 789us/step - loss: 0.4704 - accuracy: 0.4098 - mae: 0.4704 - pearson_correlation: -0.0619 - euclidean_distance: 0.7285
Epoch 6/200
227/227 [==============================] - 0s 798us/step - loss: 0.4568 - accuracy: 0.4142 - mae: 0.4568 - pearson_correlation: -0.0736 - euclidean_distance: 0.7106
Epoch 7/200
227/227 [==============================] - 0s 790us/step - loss: 0.4395 - accuracy: 0.3992 - mae: 0.4395 - pearson_correlation: -0.0788 - euclidean_distance: 0.6865
Epoch 8/200
227/227 [==============================] - 0s 793us/step - loss: 0.4297 - accuracy: 0.4071 - mae: 0.4297 - pearson_correlation: -0.0845 - euclidean_distance: 0.6723
Epoch 9/200
227/227 [==============================] - 0s 826us/step - loss: 0.4163 - accuracy: 0.3970 - mae: 0.4163 - pearson_correlation: -0.0974 - euclidean_distance: 0.6529
Epoch 10/200
227/227 [==============================] - 0s 862us/step - loss: 0.4016 - accuracy: 0.4045 - mae: 0.4016 - pearson_correlation: -0.0949 - euclidean_distance: 0.6324
Epoch 11/200
227/227 [==============================] - 0s 901us/step - loss: 0.3882 - accuracy: 0.3935 - mae: 0.3882 - pearson_correlation: -0.0961 - euclidean_distance: 0.6126
Epoch 12/200
227/227 [==============================] - 0s 850us/step - loss: 0.3744 - accuracy: 0.4041 - mae: 0.3744 - pearson_correlation: -0.0996 - euclidean_distance: 0.5925
Epoch 13/200
227/227 [==============================] - 0s 791us/step - loss: 0.3634 - accuracy: 0.4169 - mae: 0.3634 - pearson_correlation: -0.0984 - euclidean_distance: 0.5762
Epoch 14/200
227/227 [==============================] - 0s 790us/step - loss: 0.3523 - accuracy: 0.4195 - mae: 0.3523 - pearson_correlation: -0.0897 - euclidean_distance: 0.5605
Epoch 15/200
227/227 [==============================] - 0s 792us/step - loss: 0.3402 - accuracy: 0.4393 - mae: 0.3402 - pearson_correlation: -0.0880 - euclidean_distance: 0.5425
Epoch 16/200
227/227 [==============================] - 0s 790us/step - loss: 0.3273 - accuracy: 0.4402 - mae: 0.3273 - pearson_correlation: -0.0701 - euclidean_distance: 0.5244
Epoch 17/200
227/227 [==============================] - 0s 788us/step - loss: 0.3163 - accuracy: 0.4588 - mae: 0.3163 - pearson_correlation: -0.0544 - euclidean_distance: 0.5075
Epoch 18/200
227/227 [==============================] - 0s 797us/step - loss: 0.3079 - accuracy: 0.4733 - mae: 0.3079 - pearson_correlation: -0.0448 - euclidean_distance: 0.4944
Epoch 19/200
227/227 [==============================] - 0s 794us/step - loss: 0.2959 - accuracy: 0.5002 - mae: 0.2959 - pearson_correlation: -0.0276 - euclidean_distance: 0.4773
Epoch 20/200
227/227 [==============================] - 0s 795us/step - loss: 0.2896 - accuracy: 0.5170 - mae: 0.2896 - pearson_correlation: -0.0044 - euclidean_distance: 0.4670
Epoch 21/200
227/227 [==============================] - 0s 793us/step - loss: 0.2795 - accuracy: 0.5351 - mae: 0.2795 - pearson_correlation: 0.0172 - euclidean_distance: 0.4512
Epoch 22/200
227/227 [==============================] - 0s 788us/step - loss: 0.2700 - accuracy: 0.5554 - mae: 0.2700 - pearson_correlation: 0.0333 - euclidean_distance: 0.4370
Epoch 23/200
227/227 [==============================] - 0s 792us/step - loss: 0.2629 - accuracy: 0.5880 - mae: 0.2629 - pearson_correlation: 0.0665 - euclidean_distance: 0.4254
Epoch 24/200
227/227 [==============================] - 0s 787us/step - loss: 0.2532 - accuracy: 0.6118 - mae: 0.2532 - pearson_correlation: 0.1088 - euclidean_distance: 0.4097
Epoch 25/200
227/227 [==============================] - 0s 793us/step - loss: 0.2465 - accuracy: 0.6246 - mae: 0.2465 - pearson_correlation: 0.1172 - euclidean_distance: 0.3993
Epoch 26/200
227/227 [==============================] - 0s 788us/step - loss: 0.2346 - accuracy: 0.6537 - mae: 0.2346 - pearson_correlation: 0.1521 - euclidean_distance: 0.3822
Epoch 27/200
227/227 [==============================] - 0s 794us/step - loss: 0.2300 - accuracy: 0.6850 - mae: 0.2300 - pearson_correlation: 0.1942 - euclidean_distance: 0.3717
Epoch 28/200
227/227 [==============================] - 0s 790us/step - loss: 0.2199 - accuracy: 0.6992 - mae: 0.2199 - pearson_correlation: 0.2133 - euclidean_distance: 0.3574
Epoch 29/200
227/227 [==============================] - 0s 791us/step - loss: 0.2160 - accuracy: 0.7199 - mae: 0.2160 - pearson_correlation: 0.2420 - euclidean_distance: 0.3506
Epoch 30/200
227/227 [==============================] - 0s 792us/step - loss: 0.2078 - accuracy: 0.7446 - mae: 0.2078 - pearson_correlation: 0.2696 - euclidean_distance: 0.3380
Epoch 31/200
227/227 [==============================] - 0s 784us/step - loss: 0.2014 - accuracy: 0.7600 - mae: 0.2014 - pearson_correlation: 0.3064 - euclidean_distance: 0.3267
Epoch 32/200
227/227 [==============================] - 0s 789us/step - loss: 0.1951 - accuracy: 0.7786 - mae: 0.1951 - pearson_correlation: 0.3271 - euclidean_distance: 0.3159
Epoch 33/200
227/227 [==============================] - 0s 789us/step - loss: 0.1895 - accuracy: 0.8019 - mae: 0.1895 - pearson_correlation: 0.3497 - euclidean_distance: 0.3080
Epoch 34/200
227/227 [==============================] - 0s 790us/step - loss: 0.1849 - accuracy: 0.8006 - mae: 0.1849 - pearson_correlation: 0.3653 - euclidean_distance: 0.3003
Epoch 35/200
227/227 [==============================] - 0s 792us/step - loss: 0.1816 - accuracy: 0.8086 - mae: 0.1816 - pearson_correlation: 0.3870 - euclidean_distance: 0.2944
Epoch 36/200
227/227 [==============================] - 0s 789us/step - loss: 0.1736 - accuracy: 0.8293 - mae: 0.1736 - pearson_correlation: 0.4089 - euclidean_distance: 0.2819
Epoch 37/200
227/227 [==============================] - 0s 791us/step - loss: 0.1726 - accuracy: 0.8324 - mae: 0.1726 - pearson_correlation: 0.4189 - euclidean_distance: 0.2799
Epoch 38/200
227/227 [==============================] - 0s 792us/step - loss: 0.1653 - accuracy: 0.8443 - mae: 0.1653 - pearson_correlation: 0.4522 - euclidean_distance: 0.2681
Epoch 39/200
227/227 [==============================] - 0s 787us/step - loss: 0.1681 - accuracy: 0.8500 - mae: 0.1681 - pearson_correlation: 0.4447 - euclidean_distance: 0.2715
Epoch 40/200
227/227 [==============================] - 0s 790us/step - loss: 0.1649 - accuracy: 0.8641 - mae: 0.1649 - pearson_correlation: 0.4659 - euclidean_distance: 0.2660
Epoch 41/200
227/227 [==============================] - 0s 794us/step - loss: 0.1596 - accuracy: 0.8610 - mae: 0.1596 - pearson_correlation: 0.4847 - euclidean_distance: 0.2570
Epoch 42/200
227/227 [==============================] - 0s 797us/step - loss: 0.1573 - accuracy: 0.8725 - mae: 0.1573 - pearson_correlation: 0.4883 - euclidean_distance: 0.2540
Epoch 43/200
227/227 [==============================] - 0s 790us/step - loss: 0.1537 - accuracy: 0.8738 - mae: 0.1537 - pearson_correlation: 0.5060 - euclidean_distance: 0.2481
Epoch 44/200
227/227 [==============================] - 0s 795us/step - loss: 0.1532 - accuracy: 0.8822 - mae: 0.1532 - pearson_correlation: 0.5165 - euclidean_distance: 0.2461
Epoch 45/200
227/227 [==============================] - 0s 790us/step - loss: 0.1523 - accuracy: 0.8796 - mae: 0.1523 - pearson_correlation: 0.5249 - euclidean_distance: 0.2449
Epoch 46/200
227/227 [==============================] - 0s 790us/step - loss: 0.1493 - accuracy: 0.8990 - mae: 0.1493 - pearson_correlation: 0.5414 - euclidean_distance: 0.2391
Epoch 47/200
227/227 [==============================] - 0s 789us/step - loss: 0.1463 - accuracy: 0.8915 - mae: 0.1463 - pearson_correlation: 0.5540 - euclidean_distance: 0.2354
Epoch 48/200
227/227 [==============================] - 0s 787us/step - loss: 0.1469 - accuracy: 0.8994 - mae: 0.1469 - pearson_correlation: 0.5532 - euclidean_distance: 0.2360
Epoch 49/200
227/227 [==============================] - 0s 790us/step - loss: 0.1466 - accuracy: 0.8999 - mae: 0.1466 - pearson_correlation: 0.5531 - euclidean_distance: 0.2351
Epoch 50/200
227/227 [==============================] - 0s 786us/step - loss: 0.1435 - accuracy: 0.9056 - mae: 0.1435 - pearson_correlation: 0.5727 - euclidean_distance: 0.2303
Epoch 51/200
227/227 [==============================] - 0s 873us/step - loss: 0.1435 - accuracy: 0.9078 - mae: 0.1435 - pearson_correlation: 0.5761 - euclidean_distance: 0.2293
Epoch 52/200
227/227 [==============================] - 0s 849us/step - loss: 0.1451 - accuracy: 0.9144 - mae: 0.1451 - pearson_correlation: 0.5789 - euclidean_distance: 0.2320
Epoch 53/200
227/227 [==============================] - 0s 787us/step - loss: 0.1424 - accuracy: 0.9149 - mae: 0.1424 - pearson_correlation: 0.5851 - euclidean_distance: 0.2272
Epoch 54/200
227/227 [==============================] - 0s 789us/step - loss: 0.1361 - accuracy: 0.9232 - mae: 0.1361 - pearson_correlation: 0.6126 - euclidean_distance: 0.2175
Epoch 55/200
227/227 [==============================] - 0s 804us/step - loss: 0.1346 - accuracy: 0.9206 - mae: 0.1346 - pearson_correlation: 0.6077 - euclidean_distance: 0.2164
Epoch 56/200
227/227 [==============================] - 0s 796us/step - loss: 0.1366 - accuracy: 0.9281 - mae: 0.1366 - pearson_correlation: 0.6075 - euclidean_distance: 0.2187
Epoch 57/200
227/227 [==============================] - 0s 787us/step - loss: 0.1370 - accuracy: 0.9268 - mae: 0.1370 - pearson_correlation: 0.6113 - euclidean_distance: 0.2187
Epoch 58/200
227/227 [==============================] - 0s 786us/step - loss: 0.1357 - accuracy: 0.9263 - mae: 0.1357 - pearson_correlation: 0.6178 - euclidean_distance: 0.2168
Epoch 59/200
227/227 [==============================] - 0s 779us/step - loss: 0.1348 - accuracy: 0.9312 - mae: 0.1348 - pearson_correlation: 0.6195 - euclidean_distance: 0.2159
Epoch 60/200
227/227 [==============================] - 0s 776us/step - loss: 0.1314 - accuracy: 0.9303 - mae: 0.1314 - pearson_correlation: 0.6357 - euclidean_distance: 0.2102
Epoch 61/200
227/227 [==============================] - 0s 784us/step - loss: 0.1315 - accuracy: 0.9343 - mae: 0.1315 - pearson_correlation: 0.6365 - euclidean_distance: 0.2104
Epoch 62/200
227/227 [==============================] - 0s 778us/step - loss: 0.1320 - accuracy: 0.9343 - mae: 0.1320 - pearson_correlation: 0.6434 - euclidean_distance: 0.2105
Epoch 63/200
227/227 [==============================] - 0s 785us/step - loss: 0.1270 - accuracy: 0.9330 - mae: 0.1270 - pearson_correlation: 0.6439 - euclidean_distance: 0.2039
Epoch 64/200
227/227 [==============================] - 0s 790us/step - loss: 0.1290 - accuracy: 0.9378 - mae: 0.1290 - pearson_correlation: 0.6484 - euclidean_distance: 0.2054
Epoch 65/200
227/227 [==============================] - 0s 786us/step - loss: 0.1247 - accuracy: 0.9369 - mae: 0.1247 - pearson_correlation: 0.6486 - euclidean_distance: 0.1998
Epoch 66/200
227/227 [==============================] - 0s 791us/step - loss: 0.1260 - accuracy: 0.9369 - mae: 0.1260 - pearson_correlation: 0.6500 - euclidean_distance: 0.2016
Epoch 67/200
227/227 [==============================] - 0s 790us/step - loss: 0.1252 - accuracy: 0.9418 - mae: 0.1252 - pearson_correlation: 0.6555 - euclidean_distance: 0.2006
Epoch 68/200
227/227 [==============================] - 0s 788us/step - loss: 0.1249 - accuracy: 0.9422 - mae: 0.1249 - pearson_correlation: 0.6567 - euclidean_distance: 0.2006
Epoch 69/200
227/227 [==============================] - 0s 789us/step - loss: 0.1232 - accuracy: 0.9444 - mae: 0.1232 - pearson_correlation: 0.6638 - euclidean_distance: 0.1970
Epoch 70/200
227/227 [==============================] - 0s 789us/step - loss: 0.1224 - accuracy: 0.9462 - mae: 0.1224 - pearson_correlation: 0.6735 - euclidean_distance: 0.1955
Epoch 71/200
227/227 [==============================] - 0s 841us/step - loss: 0.1195 - accuracy: 0.9453 - mae: 0.1195 - pearson_correlation: 0.6694 - euclidean_distance: 0.1917
Epoch 72/200
227/227 [==============================] - 0s 819us/step - loss: 0.1243 - accuracy: 0.9471 - mae: 0.1243 - pearson_correlation: 0.6672 - euclidean_distance: 0.1978
Epoch 73/200
227/227 [==============================] - 0s 793us/step - loss: 0.1202 - accuracy: 0.9462 - mae: 0.1202 - pearson_correlation: 0.6804 - euclidean_distance: 0.1922
Epoch 74/200
227/227 [==============================] - 0s 793us/step - loss: 0.1213 - accuracy: 0.9475 - mae: 0.1213 - pearson_correlation: 0.6803 - euclidean_distance: 0.1939
Epoch 75/200
227/227 [==============================] - 0s 789us/step - loss: 0.1183 - accuracy: 0.9484 - mae: 0.1183 - pearson_correlation: 0.6893 - euclidean_distance: 0.1887
Epoch 76/200
227/227 [==============================] - 0s 787us/step - loss: 0.1196 - accuracy: 0.9488 - mae: 0.1196 - pearson_correlation: 0.6774 - euclidean_distance: 0.1911
Epoch 77/200
227/227 [==============================] - 0s 785us/step - loss: 0.1176 - accuracy: 0.9519 - mae: 0.1176 - pearson_correlation: 0.6895 - euclidean_distance: 0.1878
Epoch 78/200
227/227 [==============================] - 0s 786us/step - loss: 0.1181 - accuracy: 0.9510 - mae: 0.1181 - pearson_correlation: 0.6840 - euclidean_distance: 0.1889
Epoch 79/200
227/227 [==============================] - 0s 789us/step - loss: 0.1176 - accuracy: 0.9488 - mae: 0.1176 - pearson_correlation: 0.6876 - euclidean_distance: 0.1876
Epoch 80/200
227/227 [==============================] - 0s 793us/step - loss: 0.1179 - accuracy: 0.9510 - mae: 0.1179 - pearson_correlation: 0.6943 - euclidean_distance: 0.1880
Epoch 81/200
227/227 [==============================] - 0s 786us/step - loss: 0.1160 - accuracy: 0.9502 - mae: 0.1160 - pearson_correlation: 0.6985 - euclidean_distance: 0.1857
Epoch 82/200
227/227 [==============================] - 0s 787us/step - loss: 0.1146 - accuracy: 0.9537 - mae: 0.1146 - pearson_correlation: 0.6984 - euclidean_distance: 0.1830
Epoch 83/200
227/227 [==============================] - 0s 785us/step - loss: 0.1170 - accuracy: 0.9506 - mae: 0.1170 - pearson_correlation: 0.6955 - euclidean_distance: 0.1867
Epoch 84/200
227/227 [==============================] - 0s 785us/step - loss: 0.1117 - accuracy: 0.9537 - mae: 0.1117 - pearson_correlation: 0.7063 - euclidean_distance: 0.1788
Epoch 85/200
227/227 [==============================] - 0s 790us/step - loss: 0.1132 - accuracy: 0.9559 - mae: 0.1132 - pearson_correlation: 0.7051 - euclidean_distance: 0.1811
Epoch 86/200
227/227 [==============================] - 0s 787us/step - loss: 0.1136 - accuracy: 0.9546 - mae: 0.1136 - pearson_correlation: 0.6975 - euclidean_distance: 0.1819
Epoch 87/200
227/227 [==============================] - 0s 803us/step - loss: 0.1122 - accuracy: 0.9541 - mae: 0.1122 - pearson_correlation: 0.7077 - euclidean_distance: 0.1789
Epoch 88/200
227/227 [==============================] - 0s 791us/step - loss: 0.1146 - accuracy: 0.9554 - mae: 0.1146 - pearson_correlation: 0.7087 - euclidean_distance: 0.1823
Epoch 89/200
227/227 [==============================] - 0s 788us/step - loss: 0.1103 - accuracy: 0.9541 - mae: 0.1103 - pearson_correlation: 0.7103 - euclidean_distance: 0.1765
Epoch 90/200
227/227 [==============================] - 0s 791us/step - loss: 0.1120 - accuracy: 0.9554 - mae: 0.1120 - pearson_correlation: 0.7163 - euclidean_distance: 0.1787
Epoch 91/200
227/227 [==============================] - 0s 789us/step - loss: 0.1103 - accuracy: 0.9559 - mae: 0.1103 - pearson_correlation: 0.7100 - euclidean_distance: 0.1764
Epoch 92/200
227/227 [==============================] - 0s 789us/step - loss: 0.1101 - accuracy: 0.9546 - mae: 0.1101 - pearson_correlation: 0.7202 - euclidean_distance: 0.1756
Epoch 93/200
227/227 [==============================] - 0s 785us/step - loss: 0.1104 - accuracy: 0.9554 - mae: 0.1104 - pearson_correlation: 0.7137 - euclidean_distance: 0.1764
Epoch 94/200
227/227 [==============================] - 0s 786us/step - loss: 0.1113 - accuracy: 0.9546 - mae: 0.1113 - pearson_correlation: 0.7080 - euclidean_distance: 0.1774
Epoch 95/200
227/227 [==============================] - 0s 786us/step - loss: 0.1078 - accuracy: 0.9546 - mae: 0.1078 - pearson_correlation: 0.7257 - euclidean_distance: 0.1728
Epoch 96/200
227/227 [==============================] - 0s 795us/step - loss: 0.1098 - accuracy: 0.9559 - mae: 0.1098 - pearson_correlation: 0.7132 - euclidean_distance: 0.1753
Epoch 97/200
227/227 [==============================] - 0s 844us/step - loss: 0.1088 - accuracy: 0.9559 - mae: 0.1088 - pearson_correlation: 0.7157 - euclidean_distance: 0.1742
Epoch 98/200
227/227 [==============================] - 0s 883us/step - loss: 0.1088 - accuracy: 0.9559 - mae: 0.1088 - pearson_correlation: 0.7183 - euclidean_distance: 0.1739
Epoch 99/200
227/227 [==============================] - 0s 881us/step - loss: 0.1076 - accuracy: 0.9559 - mae: 0.1076 - pearson_correlation: 0.7261 - euclidean_distance: 0.1723
Epoch 100/200
227/227 [==============================] - 0s 833us/step - loss: 0.1068 - accuracy: 0.9554 - mae: 0.1068 - pearson_correlation: 0.7279 - euclidean_distance: 0.1706
Epoch 101/200
227/227 [==============================] - 0s 798us/step - loss: 0.1080 - accuracy: 0.9563 - mae: 0.1080 - pearson_correlation: 0.7235 - euclidean_distance: 0.1724
Epoch 102/200
227/227 [==============================] - 0s 788us/step - loss: 0.1041 - accuracy: 0.9559 - mae: 0.1041 - pearson_correlation: 0.7373 - euclidean_distance: 0.1661
Epoch 103/200
227/227 [==============================] - 0s 789us/step - loss: 0.1048 - accuracy: 0.9559 - mae: 0.1048 - pearson_correlation: 0.7338 - euclidean_distance: 0.1673
Epoch 104/200
227/227 [==============================] - 0s 789us/step - loss: 0.1032 - accuracy: 0.9563 - mae: 0.1032 - pearson_correlation: 0.7375 - euclidean_distance: 0.1653
Epoch 105/200
227/227 [==============================] - 0s 788us/step - loss: 0.1078 - accuracy: 0.9559 - mae: 0.1078 - pearson_correlation: 0.7246 - euclidean_distance: 0.1720
Epoch 106/200
227/227 [==============================] - 0s 787us/step - loss: 0.1055 - accuracy: 0.9563 - mae: 0.1055 - pearson_correlation: 0.7273 - euclidean_distance: 0.1690
Epoch 107/200
227/227 [==============================] - 0s 806us/step - loss: 0.1066 - accuracy: 0.9563 - mae: 0.1066 - pearson_correlation: 0.7289 - euclidean_distance: 0.1697
Epoch 108/200
227/227 [==============================] - 0s 796us/step - loss: 0.1058 - accuracy: 0.9559 - mae: 0.1058 - pearson_correlation: 0.7257 - euclidean_distance: 0.1694
Epoch 109/200
227/227 [==============================] - 0s 789us/step - loss: 0.1049 - accuracy: 0.9559 - mae: 0.1049 - pearson_correlation: 0.7355 - euclidean_distance: 0.1667
Epoch 110/200
227/227 [==============================] - 0s 792us/step - loss: 0.1039 - accuracy: 0.9559 - mae: 0.1039 - pearson_correlation: 0.7355 - euclidean_distance: 0.1667
Epoch 111/200
227/227 [==============================] - 0s 794us/step - loss: 0.1037 - accuracy: 0.9559 - mae: 0.1037 - pearson_correlation: 0.7333 - euclidean_distance: 0.1660
Epoch 112/200
227/227 [==============================] - 0s 795us/step - loss: 0.1059 - accuracy: 0.9563 - mae: 0.1059 - pearson_correlation: 0.7264 - euclidean_distance: 0.1695
Epoch 113/200
227/227 [==============================] - 0s 789us/step - loss: 0.1044 - accuracy: 0.9559 - mae: 0.1044 - pearson_correlation: 0.7367 - euclidean_distance: 0.1662
Epoch 114/200
227/227 [==============================] - 0s 791us/step - loss: 0.1048 - accuracy: 0.9563 - mae: 0.1048 - pearson_correlation: 0.7291 - euclidean_distance: 0.1674
Epoch 115/200
227/227 [==============================] - 0s 788us/step - loss: 0.1022 - accuracy: 0.9554 - mae: 0.1022 - pearson_correlation: 0.7362 - euclidean_distance: 0.1637
Epoch 116/200
227/227 [==============================] - 0s 804us/step - loss: 0.1022 - accuracy: 0.9563 - mae: 0.1022 - pearson_correlation: 0.7442 - euclidean_distance: 0.1627
Epoch 117/200
227/227 [==============================] - 0s 788us/step - loss: 0.1024 - accuracy: 0.9559 - mae: 0.1024 - pearson_correlation: 0.7375 - euclidean_distance: 0.1641
Epoch 118/200
227/227 [==============================] - 0s 788us/step - loss: 0.1044 - accuracy: 0.9563 - mae: 0.1044 - pearson_correlation: 0.7294 - euclidean_distance: 0.1671
Epoch 119/200
227/227 [==============================] - 0s 789us/step - loss: 0.0999 - accuracy: 0.9563 - mae: 0.0999 - pearson_correlation: 0.7482 - euclidean_distance: 0.1598
Epoch 120/200
227/227 [==============================] - 0s 787us/step - loss: 0.1012 - accuracy: 0.9563 - mae: 0.1012 - pearson_correlation: 0.7463 - euclidean_distance: 0.1618
Epoch 121/200
227/227 [==============================] - 0s 787us/step - loss: 0.1027 - accuracy: 0.9563 - mae: 0.1027 - pearson_correlation: 0.7342 - euclidean_distance: 0.1641
Epoch 122/200
227/227 [==============================] - 0s 786us/step - loss: 0.0968 - accuracy: 0.9563 - mae: 0.0968 - pearson_correlation: 0.7547 - euclidean_distance: 0.1555
Epoch 123/200
227/227 [==============================] - 0s 787us/step - loss: 0.1014 - accuracy: 0.9563 - mae: 0.1014 - pearson_correlation: 0.7401 - euclidean_distance: 0.1624
Epoch 124/200
227/227 [==============================] - 0s 783us/step - loss: 0.1008 - accuracy: 0.9563 - mae: 0.1008 - pearson_correlation: 0.7398 - euclidean_distance: 0.1618
Epoch 125/200
227/227 [==============================] - 0s 787us/step - loss: 0.0998 - accuracy: 0.9563 - mae: 0.0998 - pearson_correlation: 0.7486 - euclidean_distance: 0.1600
Epoch 126/200
227/227 [==============================] - 0s 785us/step - loss: 0.1015 - accuracy: 0.9563 - mae: 0.1015 - pearson_correlation: 0.7402 - euclidean_distance: 0.1623
Epoch 127/200
227/227 [==============================] - 0s 788us/step - loss: 0.0984 - accuracy: 0.9554 - mae: 0.0984 - pearson_correlation: 0.7491 - euclidean_distance: 0.1578
Epoch 128/200
227/227 [==============================] - 0s 788us/step - loss: 0.1002 - accuracy: 0.9554 - mae: 0.1002 - pearson_correlation: 0.7481 - euclidean_distance: 0.1599
Epoch 129/200
227/227 [==============================] - 0s 792us/step - loss: 0.0998 - accuracy: 0.9559 - mae: 0.0998 - pearson_correlation: 0.7491 - euclidean_distance: 0.1595
Epoch 130/200
227/227 [==============================] - 0s 789us/step - loss: 0.1000 - accuracy: 0.9563 - mae: 0.1000 - pearson_correlation: 0.7470 - euclidean_distance: 0.1599
Epoch 131/200
227/227 [==============================] - 0s 787us/step - loss: 0.0979 - accuracy: 0.9563 - mae: 0.0979 - pearson_correlation: 0.7515 - euclidean_distance: 0.1570
Epoch 132/200
227/227 [==============================] - 0s 792us/step - loss: 0.0962 - accuracy: 0.9563 - mae: 0.0962 - pearson_correlation: 0.7550 - euclidean_distance: 0.1542
Epoch 133/200
227/227 [==============================] - 0s 786us/step - loss: 0.0994 - accuracy: 0.9563 - mae: 0.0994 - pearson_correlation: 0.7469 - euclidean_distance: 0.1590
Epoch 134/200
227/227 [==============================] - 0s 783us/step - loss: 0.0988 - accuracy: 0.9563 - mae: 0.0988 - pearson_correlation: 0.7494 - euclidean_distance: 0.1579
Epoch 135/200
227/227 [==============================] - 0s 786us/step - loss: 0.0982 - accuracy: 0.9563 - mae: 0.0982 - pearson_correlation: 0.7490 - euclidean_distance: 0.1562
Epoch 136/200
227/227 [==============================] - 0s 785us/step - loss: 0.1001 - accuracy: 0.9563 - mae: 0.1001 - pearson_correlation: 0.7478 - euclidean_distance: 0.1601
Epoch 137/200
227/227 [==============================] - 0s 788us/step - loss: 0.0987 - accuracy: 0.9559 - mae: 0.0987 - pearson_correlation: 0.7494 - euclidean_distance: 0.1577
Epoch 138/200
227/227 [==============================] - 0s 798us/step - loss: 0.0988 - accuracy: 0.9559 - mae: 0.0988 - pearson_correlation: 0.7464 - euclidean_distance: 0.1583
Epoch 139/200
227/227 [==============================] - 0s 788us/step - loss: 0.0977 - accuracy: 0.9563 - mae: 0.0977 - pearson_correlation: 0.7547 - euclidean_distance: 0.1562
Epoch 140/200
227/227 [==============================] - 0s 789us/step - loss: 0.0993 - accuracy: 0.9563 - mae: 0.0993 - pearson_correlation: 0.7488 - euclidean_distance: 0.1589
Epoch 141/200
227/227 [==============================] - 0s 790us/step - loss: 0.0954 - accuracy: 0.9563 - mae: 0.0954 - pearson_correlation: 0.7562 - euclidean_distance: 0.1530
Epoch 142/200
227/227 [==============================] - 0s 786us/step - loss: 0.0970 - accuracy: 0.9563 - mae: 0.0970 - pearson_correlation: 0.7562 - euclidean_distance: 0.1554
Epoch 143/200
227/227 [==============================] - 0s 784us/step - loss: 0.0977 - accuracy: 0.9563 - mae: 0.0977 - pearson_correlation: 0.7552 - euclidean_distance: 0.1566
Epoch 144/200
227/227 [==============================] - 0s 787us/step - loss: 0.0959 - accuracy: 0.9563 - mae: 0.0959 - pearson_correlation: 0.7539 - euclidean_distance: 0.1535
Epoch 145/200
227/227 [==============================] - 0s 783us/step - loss: 0.0948 - accuracy: 0.9563 - mae: 0.0948 - pearson_correlation: 0.7587 - euclidean_distance: 0.1518
Epoch 146/200
227/227 [==============================] - 0s 786us/step - loss: 0.0960 - accuracy: 0.9563 - mae: 0.0960 - pearson_correlation: 0.7535 - euclidean_distance: 0.1538
Epoch 147/200
227/227 [==============================] - 0s 786us/step - loss: 0.0995 - accuracy: 0.9563 - mae: 0.0995 - pearson_correlation: 0.7511 - euclidean_distance: 0.1582
Epoch 148/200
227/227 [==============================] - 0s 780us/step - loss: 0.0973 - accuracy: 0.9563 - mae: 0.0973 - pearson_correlation: 0.7564 - euclidean_distance: 0.1556
Epoch 149/200
227/227 [==============================] - 0s 783us/step - loss: 0.0971 - accuracy: 0.9559 - mae: 0.0971 - pearson_correlation: 0.7539 - euclidean_distance: 0.1555
Epoch 150/200
227/227 [==============================] - 0s 779us/step - loss: 0.0946 - accuracy: 0.9563 - mae: 0.0946 - pearson_correlation: 0.7638 - euclidean_distance: 0.1510
Epoch 151/200
227/227 [==============================] - 0s 782us/step - loss: 0.0964 - accuracy: 0.9563 - mae: 0.0964 - pearson_correlation: 0.7586 - euclidean_distance: 0.1542
Epoch 152/200
227/227 [==============================] - 0s 786us/step - loss: 0.0959 - accuracy: 0.9563 - mae: 0.0959 - pearson_correlation: 0.7538 - euclidean_distance: 0.1532
Epoch 153/200
227/227 [==============================] - 0s 785us/step - loss: 0.0945 - accuracy: 0.9563 - mae: 0.0945 - pearson_correlation: 0.7592 - euclidean_distance: 0.1515
Epoch 154/200
227/227 [==============================] - 0s 782us/step - loss: 0.0936 - accuracy: 0.9563 - mae: 0.0936 - pearson_correlation: 0.7591 - euclidean_distance: 0.1498
Epoch 155/200
227/227 [==============================] - 0s 786us/step - loss: 0.0946 - accuracy: 0.9563 - mae: 0.0946 - pearson_correlation: 0.7623 - euclidean_distance: 0.1511
Epoch 156/200
227/227 [==============================] - 0s 785us/step - loss: 0.0952 - accuracy: 0.9563 - mae: 0.0952 - pearson_correlation: 0.7660 - euclidean_distance: 0.1516
Epoch 157/200
227/227 [==============================] - 0s 784us/step - loss: 0.0964 - accuracy: 0.9568 - mae: 0.0964 - pearson_correlation: 0.7544 - euclidean_distance: 0.1546
Epoch 158/200
227/227 [==============================] - 0s 784us/step - loss: 0.0939 - accuracy: 0.9563 - mae: 0.0939 - pearson_correlation: 0.7649 - euclidean_distance: 0.1502
Epoch 159/200
227/227 [==============================] - 0s 787us/step - loss: 0.0954 - accuracy: 0.9563 - mae: 0.0954 - pearson_correlation: 0.7611 - euclidean_distance: 0.1521
Epoch 160/200
227/227 [==============================] - 0s 790us/step - loss: 0.0944 - accuracy: 0.9563 - mae: 0.0944 - pearson_correlation: 0.7636 - euclidean_distance: 0.1506
Epoch 161/200
227/227 [==============================] - 0s 786us/step - loss: 0.0945 - accuracy: 0.9563 - mae: 0.0945 - pearson_correlation: 0.7639 - euclidean_distance: 0.1507
Epoch 162/200
227/227 [==============================] - 0s 787us/step - loss: 0.0937 - accuracy: 0.9563 - mae: 0.0937 - pearson_correlation: 0.7603 - euclidean_distance: 0.1496
Epoch 163/200
227/227 [==============================] - 0s 786us/step - loss: 0.0961 - accuracy: 0.9563 - mae: 0.0961 - pearson_correlation: 0.7586 - euclidean_distance: 0.1534
Epoch 164/200
227/227 [==============================] - 0s 785us/step - loss: 0.0921 - accuracy: 0.9563 - mae: 0.0921 - pearson_correlation: 0.7658 - euclidean_distance: 0.1475
Epoch 165/200
227/227 [==============================] - 0s 786us/step - loss: 0.0940 - accuracy: 0.9563 - mae: 0.0940 - pearson_correlation: 0.7590 - euclidean_distance: 0.1504
Epoch 166/200
227/227 [==============================] - 0s 782us/step - loss: 0.0930 - accuracy: 0.9563 - mae: 0.0930 - pearson_correlation: 0.7610 - euclidean_distance: 0.1485
Epoch 167/200
227/227 [==============================] - 0s 783us/step - loss: 0.0942 - accuracy: 0.9563 - mae: 0.0942 - pearson_correlation: 0.7609 - euclidean_distance: 0.1502
Epoch 168/200
227/227 [==============================] - 0s 786us/step - loss: 0.0905 - accuracy: 0.9563 - mae: 0.0905 - pearson_correlation: 0.7708 - euclidean_distance: 0.1449
Epoch 169/200
227/227 [==============================] - 0s 785us/step - loss: 0.0919 - accuracy: 0.9563 - mae: 0.0919 - pearson_correlation: 0.7641 - euclidean_distance: 0.1473
Epoch 170/200
227/227 [==============================] - 0s 784us/step - loss: 0.0917 - accuracy: 0.9563 - mae: 0.0917 - pearson_correlation: 0.7736 - euclidean_distance: 0.1464
Epoch 171/200
227/227 [==============================] - 0s 801us/step - loss: 0.0912 - accuracy: 0.9563 - mae: 0.0912 - pearson_correlation: 0.7669 - euclidean_distance: 0.1461
Epoch 172/200
227/227 [==============================] - 0s 788us/step - loss: 0.0940 - accuracy: 0.9563 - mae: 0.0940 - pearson_correlation: 0.7564 - euclidean_distance: 0.1503
Epoch 173/200
227/227 [==============================] - 0s 797us/step - loss: 0.0900 - accuracy: 0.9563 - mae: 0.0900 - pearson_correlation: 0.7702 - euclidean_distance: 0.1439
Epoch 174/200
227/227 [==============================] - 0s 789us/step - loss: 0.0920 - accuracy: 0.9563 - mae: 0.0920 - pearson_correlation: 0.7628 - euclidean_distance: 0.1471
Epoch 175/200
227/227 [==============================] - 0s 782us/step - loss: 0.0908 - accuracy: 0.9563 - mae: 0.0908 - pearson_correlation: 0.7679 - euclidean_distance: 0.1460
Epoch 176/200
227/227 [==============================] - 0s 783us/step - loss: 0.0904 - accuracy: 0.9559 - mae: 0.0904 - pearson_correlation: 0.7696 - euclidean_distance: 0.1451
Epoch 177/200
227/227 [==============================] - 0s 792us/step - loss: 0.0897 - accuracy: 0.9563 - mae: 0.0897 - pearson_correlation: 0.7734 - euclidean_distance: 0.1435
Epoch 178/200
227/227 [==============================] - 0s 794us/step - loss: 0.0938 - accuracy: 0.9563 - mae: 0.0938 - pearson_correlation: 0.7646 - euclidean_distance: 0.1496
Epoch 179/200
227/227 [==============================] - 0s 787us/step - loss: 0.0902 - accuracy: 0.9563 - mae: 0.0902 - pearson_correlation: 0.7735 - euclidean_distance: 0.1441
Epoch 180/200
227/227 [==============================] - 0s 788us/step - loss: 0.0909 - accuracy: 0.9563 - mae: 0.0909 - pearson_correlation: 0.7685 - euclidean_distance: 0.1457
Epoch 181/200
227/227 [==============================] - 0s 786us/step - loss: 0.0908 - accuracy: 0.9563 - mae: 0.0908 - pearson_correlation: 0.7702 - euclidean_distance: 0.1455
Epoch 182/200
227/227 [==============================] - 0s 785us/step - loss: 0.0903 - accuracy: 0.9563 - mae: 0.0903 - pearson_correlation: 0.7750 - euclidean_distance: 0.1440
Epoch 183/200
227/227 [==============================] - 0s 786us/step - loss: 0.0902 - accuracy: 0.9563 - mae: 0.0902 - pearson_correlation: 0.7667 - euclidean_distance: 0.1449
Epoch 184/200
227/227 [==============================] - 0s 787us/step - loss: 0.0908 - accuracy: 0.9563 - mae: 0.0908 - pearson_correlation: 0.7694 - euclidean_distance: 0.1448
Epoch 185/200
227/227 [==============================] - 0s 829us/step - loss: 0.0901 - accuracy: 0.9563 - mae: 0.0901 - pearson_correlation: 0.7715 - euclidean_distance: 0.1443
Epoch 186/200
227/227 [==============================] - 0s 865us/step - loss: 0.0920 - accuracy: 0.9563 - mae: 0.0920 - pearson_correlation: 0.7665 - euclidean_distance: 0.1473
Epoch 187/200
227/227 [==============================] - 0s 883us/step - loss: 0.0923 - accuracy: 0.9563 - mae: 0.0923 - pearson_correlation: 0.7687 - euclidean_distance: 0.1473
Epoch 188/200
227/227 [==============================] - 0s 823us/step - loss: 0.0885 - accuracy: 0.9563 - mae: 0.0885 - pearson_correlation: 0.7782 - euclidean_distance: 0.1419
Epoch 189/200
227/227 [==============================] - 0s 791us/step - loss: 0.0871 - accuracy: 0.9563 - mae: 0.0871 - pearson_correlation: 0.7770 - euclidean_distance: 0.1398
Epoch 190/200
227/227 [==============================] - 0s 803us/step - loss: 0.0892 - accuracy: 0.9563 - mae: 0.0892 - pearson_correlation: 0.7766 - euclidean_distance: 0.1430
Epoch 191/200
227/227 [==============================] - 0s 787us/step - loss: 0.0890 - accuracy: 0.9563 - mae: 0.0890 - pearson_correlation: 0.7712 - euclidean_distance: 0.1427
Epoch 192/200
227/227 [==============================] - 0s 790us/step - loss: 0.0878 - accuracy: 0.9563 - mae: 0.0878 - pearson_correlation: 0.7792 - euclidean_distance: 0.1407
Epoch 193/200
227/227 [==============================] - 0s 791us/step - loss: 0.0898 - accuracy: 0.9563 - mae: 0.0898 - pearson_correlation: 0.7684 - euclidean_distance: 0.1444
Epoch 194/200
227/227 [==============================] - 0s 791us/step - loss: 0.0881 - accuracy: 0.9559 - mae: 0.0881 - pearson_correlation: 0.7747 - euclidean_distance: 0.1418
Epoch 195/200
227/227 [==============================] - 0s 789us/step - loss: 0.0889 - accuracy: 0.9563 - mae: 0.0889 - pearson_correlation: 0.7732 - euclidean_distance: 0.1428
Epoch 196/200
227/227 [==============================] - 0s 789us/step - loss: 0.0896 - accuracy: 0.9563 - mae: 0.0896 - pearson_correlation: 0.7723 - euclidean_distance: 0.1436
Epoch 197/200
227/227 [==============================] - 0s 789us/step - loss: 0.0902 - accuracy: 0.9563 - mae: 0.0902 - pearson_correlation: 0.7787 - euclidean_distance: 0.1442
Epoch 198/200
227/227 [==============================] - 0s 789us/step - loss: 0.0888 - accuracy: 0.9563 - mae: 0.0888 - pearson_correlation: 0.7725 - euclidean_distance: 0.1428
Epoch 199/200
227/227 [==============================] - 0s 789us/step - loss: 0.0867 - accuracy: 0.9563 - mae: 0.0867 - pearson_correlation: 0.7769 - euclidean_distance: 0.1396
Epoch 200/200
227/227 [==============================] - 0s 787us/step - loss: 0.0895 - accuracy: 0.9563 - mae: 0.0895 - pearson_correlation: 0.7780 - euclidean_distance: 0.1432
114/114 [==============================] - 0s 456us/step
Epoch 1/200
227/227 [==============================] - 1s 819us/step - loss: 0.3942 - accuracy: 0.9515 - mae: 0.3942 - pearson_correlation: 0.6823 - euclidean_distance: 0.6328
Epoch 2/200
227/227 [==============================] - 0s 795us/step - loss: 0.3787 - accuracy: 0.9510 - mae: 0.3787 - pearson_correlation: 0.6801 - euclidean_distance: 0.6064
Epoch 3/200
227/227 [==============================] - 0s 796us/step - loss: 0.3634 - accuracy: 0.9519 - mae: 0.3634 - pearson_correlation: 0.6831 - euclidean_distance: 0.5828
Epoch 4/200
227/227 [==============================] - 0s 794us/step - loss: 0.3528 - accuracy: 0.9524 - mae: 0.3528 - pearson_correlation: 0.6789 - euclidean_distance: 0.5657
Epoch 5/200
227/227 [==============================] - 0s 795us/step - loss: 0.3430 - accuracy: 0.9479 - mae: 0.3430 - pearson_correlation: 0.6777 - euclidean_distance: 0.5487
Epoch 6/200
227/227 [==============================] - 0s 796us/step - loss: 0.3291 - accuracy: 0.9515 - mae: 0.3291 - pearson_correlation: 0.6779 - euclidean_distance: 0.5273
Epoch 7/200
227/227 [==============================] - 0s 791us/step - loss: 0.3204 - accuracy: 0.9462 - mae: 0.3204 - pearson_correlation: 0.6750 - euclidean_distance: 0.5134
Epoch 8/200
227/227 [==============================] - 0s 806us/step - loss: 0.3108 - accuracy: 0.9431 - mae: 0.3108 - pearson_correlation: 0.6699 - euclidean_distance: 0.4961
Epoch 9/200
227/227 [==============================] - 0s 792us/step - loss: 0.3014 - accuracy: 0.9418 - mae: 0.3014 - pearson_correlation: 0.6666 - euclidean_distance: 0.4798
Epoch 10/200
227/227 [==============================] - 0s 795us/step - loss: 0.2941 - accuracy: 0.9418 - mae: 0.2941 - pearson_correlation: 0.6620 - euclidean_distance: 0.4678
Epoch 11/200
227/227 [==============================] - 0s 796us/step - loss: 0.2854 - accuracy: 0.9409 - mae: 0.2854 - pearson_correlation: 0.6548 - euclidean_distance: 0.4534
Epoch 12/200
227/227 [==============================] - 0s 794us/step - loss: 0.2782 - accuracy: 0.9413 - mae: 0.2782 - pearson_correlation: 0.6557 - euclidean_distance: 0.4407
Epoch 13/200
227/227 [==============================] - 0s 791us/step - loss: 0.2727 - accuracy: 0.9400 - mae: 0.2727 - pearson_correlation: 0.6536 - euclidean_distance: 0.4319
Epoch 14/200
227/227 [==============================] - 0s 826us/step - loss: 0.2653 - accuracy: 0.9369 - mae: 0.2653 - pearson_correlation: 0.6520 - euclidean_distance: 0.4181
Epoch 15/200
227/227 [==============================] - 0s 797us/step - loss: 0.2569 - accuracy: 0.9404 - mae: 0.2569 - pearson_correlation: 0.6546 - euclidean_distance: 0.4066
Epoch 16/200
227/227 [==============================] - 0s 791us/step - loss: 0.2521 - accuracy: 0.9307 - mae: 0.2521 - pearson_correlation: 0.6481 - euclidean_distance: 0.3973
Epoch 17/200
227/227 [==============================] - 0s 788us/step - loss: 0.2447 - accuracy: 0.9360 - mae: 0.2447 - pearson_correlation: 0.6481 - euclidean_distance: 0.3847
Epoch 18/200
227/227 [==============================] - 0s 790us/step - loss: 0.2406 - accuracy: 0.9382 - mae: 0.2406 - pearson_correlation: 0.6542 - euclidean_distance: 0.3774
Epoch 19/200
227/227 [==============================] - 0s 792us/step - loss: 0.2332 - accuracy: 0.9369 - mae: 0.2332 - pearson_correlation: 0.6490 - euclidean_distance: 0.3667
Epoch 20/200
227/227 [==============================] - 0s 786us/step - loss: 0.2293 - accuracy: 0.9321 - mae: 0.2293 - pearson_correlation: 0.6441 - euclidean_distance: 0.3594
Epoch 21/200
227/227 [==============================] - 0s 787us/step - loss: 0.2205 - accuracy: 0.9316 - mae: 0.2205 - pearson_correlation: 0.6485 - euclidean_distance: 0.3464
Epoch 22/200
227/227 [==============================] - 0s 786us/step - loss: 0.2172 - accuracy: 0.9347 - mae: 0.2172 - pearson_correlation: 0.6518 - euclidean_distance: 0.3407
Epoch 23/200
227/227 [==============================] - 0s 797us/step - loss: 0.2124 - accuracy: 0.9321 - mae: 0.2124 - pearson_correlation: 0.6548 - euclidean_distance: 0.3331
Epoch 24/200
227/227 [==============================] - 0s 788us/step - loss: 0.2103 - accuracy: 0.9312 - mae: 0.2103 - pearson_correlation: 0.6377 - euclidean_distance: 0.3291
Epoch 25/200
227/227 [==============================] - 0s 789us/step - loss: 0.2035 - accuracy: 0.9285 - mae: 0.2035 - pearson_correlation: 0.6485 - euclidean_distance: 0.3193
Epoch 26/200
227/227 [==============================] - 0s 784us/step - loss: 0.2010 - accuracy: 0.9352 - mae: 0.2010 - pearson_correlation: 0.6447 - euclidean_distance: 0.3144
Epoch 27/200
227/227 [==============================] - 0s 788us/step - loss: 0.1956 - accuracy: 0.9325 - mae: 0.1956 - pearson_correlation: 0.6454 - euclidean_distance: 0.3070
Epoch 28/200
227/227 [==============================] - 0s 784us/step - loss: 0.1914 - accuracy: 0.9378 - mae: 0.1914 - pearson_correlation: 0.6521 - euclidean_distance: 0.2999
Epoch 29/200
227/227 [==============================] - 0s 787us/step - loss: 0.1920 - accuracy: 0.9378 - mae: 0.1920 - pearson_correlation: 0.6456 - euclidean_distance: 0.2994
Epoch 30/200
227/227 [==============================] - 0s 786us/step - loss: 0.1874 - accuracy: 0.9325 - mae: 0.1874 - pearson_correlation: 0.6472 - euclidean_distance: 0.2932
Epoch 31/200
227/227 [==============================] - 0s 786us/step - loss: 0.1821 - accuracy: 0.9378 - mae: 0.1821 - pearson_correlation: 0.6527 - euclidean_distance: 0.2846
Epoch 32/200
227/227 [==============================] - 0s 788us/step - loss: 0.1789 - accuracy: 0.9281 - mae: 0.1789 - pearson_correlation: 0.6486 - euclidean_distance: 0.2791
Epoch 33/200
227/227 [==============================] - 0s 787us/step - loss: 0.1768 - accuracy: 0.9343 - mae: 0.1768 - pearson_correlation: 0.6473 - euclidean_distance: 0.2765
Epoch 34/200
227/227 [==============================] - 0s 786us/step - loss: 0.1737 - accuracy: 0.9369 - mae: 0.1737 - pearson_correlation: 0.6518 - euclidean_distance: 0.2719
Epoch 35/200
227/227 [==============================] - 0s 786us/step - loss: 0.1691 - accuracy: 0.9400 - mae: 0.1691 - pearson_correlation: 0.6522 - euclidean_distance: 0.2648
Epoch 36/200
227/227 [==============================] - 0s 789us/step - loss: 0.1672 - accuracy: 0.9382 - mae: 0.1672 - pearson_correlation: 0.6591 - euclidean_distance: 0.2614
Epoch 37/200
227/227 [==============================] - 0s 790us/step - loss: 0.1654 - accuracy: 0.9391 - mae: 0.1654 - pearson_correlation: 0.6509 - euclidean_distance: 0.2586
Epoch 38/200
227/227 [==============================] - 0s 790us/step - loss: 0.1610 - accuracy: 0.9422 - mae: 0.1610 - pearson_correlation: 0.6633 - euclidean_distance: 0.2519
Epoch 39/200
227/227 [==============================] - 0s 790us/step - loss: 0.1628 - accuracy: 0.9356 - mae: 0.1628 - pearson_correlation: 0.6524 - euclidean_distance: 0.2547
Epoch 40/200
227/227 [==============================] - 0s 790us/step - loss: 0.1571 - accuracy: 0.9422 - mae: 0.1571 - pearson_correlation: 0.6568 - euclidean_distance: 0.2465
Epoch 41/200
227/227 [==============================] - 0s 788us/step - loss: 0.1563 - accuracy: 0.9409 - mae: 0.1563 - pearson_correlation: 0.6594 - euclidean_distance: 0.2449
Epoch 42/200
227/227 [==============================] - 0s 790us/step - loss: 0.1519 - accuracy: 0.9374 - mae: 0.1519 - pearson_correlation: 0.6618 - euclidean_distance: 0.2378
Epoch 43/200
227/227 [==============================] - 0s 788us/step - loss: 0.1488 - accuracy: 0.9409 - mae: 0.1488 - pearson_correlation: 0.6655 - euclidean_distance: 0.2332
Epoch 44/200
227/227 [==============================] - 0s 789us/step - loss: 0.1460 - accuracy: 0.9404 - mae: 0.1460 - pearson_correlation: 0.6658 - euclidean_distance: 0.2291
Epoch 45/200
227/227 [==============================] - 0s 788us/step - loss: 0.1493 - accuracy: 0.9418 - mae: 0.1493 - pearson_correlation: 0.6603 - euclidean_distance: 0.2341
Epoch 46/200
227/227 [==============================] - 0s 786us/step - loss: 0.1437 - accuracy: 0.9444 - mae: 0.1437 - pearson_correlation: 0.6685 - euclidean_distance: 0.2260
Epoch 47/200
227/227 [==============================] - 0s 784us/step - loss: 0.1468 - accuracy: 0.9427 - mae: 0.1468 - pearson_correlation: 0.6644 - euclidean_distance: 0.2306
Epoch 48/200
227/227 [==============================] - 0s 787us/step - loss: 0.1425 - accuracy: 0.9431 - mae: 0.1425 - pearson_correlation: 0.6672 - euclidean_distance: 0.2236
Epoch 49/200
227/227 [==============================] - 0s 840us/step - loss: 0.1420 - accuracy: 0.9431 - mae: 0.1420 - pearson_correlation: 0.6627 - euclidean_distance: 0.2233
Epoch 50/200
227/227 [==============================] - 0s 995us/step - loss: 0.1397 - accuracy: 0.9444 - mae: 0.1397 - pearson_correlation: 0.6663 - euclidean_distance: 0.2194
Epoch 51/200
227/227 [==============================] - 0s 837us/step - loss: 0.1384 - accuracy: 0.9466 - mae: 0.1384 - pearson_correlation: 0.6765 - euclidean_distance: 0.2178
Epoch 52/200
227/227 [==============================] - 0s 797us/step - loss: 0.1374 - accuracy: 0.9475 - mae: 0.1374 - pearson_correlation: 0.6677 - euclidean_distance: 0.2165
Epoch 53/200
227/227 [==============================] - 0s 785us/step - loss: 0.1362 - accuracy: 0.9435 - mae: 0.1362 - pearson_correlation: 0.6744 - euclidean_distance: 0.2144
Epoch 54/200
227/227 [==============================] - 0s 788us/step - loss: 0.1372 - accuracy: 0.9475 - mae: 0.1372 - pearson_correlation: 0.6656 - euclidean_distance: 0.2150
Epoch 55/200
227/227 [==============================] - 0s 792us/step - loss: 0.1359 - accuracy: 0.9457 - mae: 0.1359 - pearson_correlation: 0.6688 - euclidean_distance: 0.2144
Epoch 56/200
227/227 [==============================] - 0s 787us/step - loss: 0.1362 - accuracy: 0.9502 - mae: 0.1362 - pearson_correlation: 0.6719 - euclidean_distance: 0.2144
Epoch 57/200
227/227 [==============================] - 0s 789us/step - loss: 0.1337 - accuracy: 0.9488 - mae: 0.1337 - pearson_correlation: 0.6797 - euclidean_distance: 0.2105
Epoch 58/200
227/227 [==============================] - 0s 787us/step - loss: 0.1332 - accuracy: 0.9471 - mae: 0.1332 - pearson_correlation: 0.6813 - euclidean_distance: 0.2096
Epoch 59/200
227/227 [==============================] - 0s 785us/step - loss: 0.1310 - accuracy: 0.9488 - mae: 0.1310 - pearson_correlation: 0.6888 - euclidean_distance: 0.2064
Epoch 60/200
227/227 [==============================] - 0s 784us/step - loss: 0.1289 - accuracy: 0.9475 - mae: 0.1289 - pearson_correlation: 0.6855 - euclidean_distance: 0.2040
Epoch 61/200
227/227 [==============================] - 0s 784us/step - loss: 0.1297 - accuracy: 0.9502 - mae: 0.1297 - pearson_correlation: 0.6808 - euclidean_distance: 0.2043
Epoch 62/200
227/227 [==============================] - 0s 788us/step - loss: 0.1295 - accuracy: 0.9497 - mae: 0.1295 - pearson_correlation: 0.6843 - euclidean_distance: 0.2046
Epoch 63/200
227/227 [==============================] - 0s 789us/step - loss: 0.1268 - accuracy: 0.9506 - mae: 0.1268 - pearson_correlation: 0.6913 - euclidean_distance: 0.2007
Epoch 64/200
227/227 [==============================] - 0s 789us/step - loss: 0.1274 - accuracy: 0.9449 - mae: 0.1274 - pearson_correlation: 0.6855 - euclidean_distance: 0.2017
Epoch 65/200
227/227 [==============================] - 0s 782us/step - loss: 0.1259 - accuracy: 0.9497 - mae: 0.1259 - pearson_correlation: 0.6886 - euclidean_distance: 0.1992
Epoch 66/200
227/227 [==============================] - 0s 786us/step - loss: 0.1271 - accuracy: 0.9497 - mae: 0.1271 - pearson_correlation: 0.6906 - euclidean_distance: 0.2004
Epoch 67/200
227/227 [==============================] - 0s 789us/step - loss: 0.1266 - accuracy: 0.9502 - mae: 0.1266 - pearson_correlation: 0.6895 - euclidean_distance: 0.2003
Epoch 68/200
227/227 [==============================] - 0s 789us/step - loss: 0.1254 - accuracy: 0.9506 - mae: 0.1254 - pearson_correlation: 0.6925 - euclidean_distance: 0.1984
Epoch 69/200
227/227 [==============================] - 0s 864us/step - loss: 0.1229 - accuracy: 0.9479 - mae: 0.1229 - pearson_correlation: 0.6908 - euclidean_distance: 0.1954
Epoch 70/200
227/227 [==============================] - 0s 855us/step - loss: 0.1262 - accuracy: 0.9506 - mae: 0.1262 - pearson_correlation: 0.6894 - euclidean_distance: 0.1996
Epoch 71/200
227/227 [==============================] - 0s 894us/step - loss: 0.1245 - accuracy: 0.9479 - mae: 0.1245 - pearson_correlation: 0.6932 - euclidean_distance: 0.1964
Epoch 72/200
227/227 [==============================] - 0s 872us/step - loss: 0.1253 - accuracy: 0.9524 - mae: 0.1253 - pearson_correlation: 0.6910 - euclidean_distance: 0.1988
Epoch 73/200
227/227 [==============================] - 0s 785us/step - loss: 0.1208 - accuracy: 0.9466 - mae: 0.1208 - pearson_correlation: 0.7010 - euclidean_distance: 0.1914
Epoch 74/200
227/227 [==============================] - 0s 786us/step - loss: 0.1242 - accuracy: 0.9506 - mae: 0.1242 - pearson_correlation: 0.6934 - euclidean_distance: 0.1964
Epoch 75/200
227/227 [==============================] - 0s 790us/step - loss: 0.1202 - accuracy: 0.9510 - mae: 0.1202 - pearson_correlation: 0.6970 - euclidean_distance: 0.1910
Epoch 76/200
227/227 [==============================] - 0s 786us/step - loss: 0.1236 - accuracy: 0.9524 - mae: 0.1236 - pearson_correlation: 0.6979 - euclidean_distance: 0.1950
Epoch 77/200
227/227 [==============================] - 0s 799us/step - loss: 0.1228 - accuracy: 0.9537 - mae: 0.1228 - pearson_correlation: 0.6914 - euclidean_distance: 0.1948
Epoch 78/200
227/227 [==============================] - 0s 792us/step - loss: 0.1209 - accuracy: 0.9532 - mae: 0.1209 - pearson_correlation: 0.6988 - euclidean_distance: 0.1920
Epoch 79/200
227/227 [==============================] - 0s 788us/step - loss: 0.1179 - accuracy: 0.9493 - mae: 0.1179 - pearson_correlation: 0.7069 - euclidean_distance: 0.1868
Epoch 80/200
227/227 [==============================] - 0s 788us/step - loss: 0.1223 - accuracy: 0.9515 - mae: 0.1223 - pearson_correlation: 0.6978 - euclidean_distance: 0.1933
Epoch 81/200
227/227 [==============================] - 0s 786us/step - loss: 0.1193 - accuracy: 0.9502 - mae: 0.1193 - pearson_correlation: 0.7017 - euclidean_distance: 0.1897
Epoch 82/200
227/227 [==============================] - 0s 785us/step - loss: 0.1161 - accuracy: 0.9502 - mae: 0.1161 - pearson_correlation: 0.7080 - euclidean_distance: 0.1851
Epoch 83/200
227/227 [==============================] - 0s 789us/step - loss: 0.1202 - accuracy: 0.9524 - mae: 0.1202 - pearson_correlation: 0.7037 - euclidean_distance: 0.1902
Epoch 84/200
227/227 [==============================] - 0s 790us/step - loss: 0.1179 - accuracy: 0.9515 - mae: 0.1179 - pearson_correlation: 0.7082 - euclidean_distance: 0.1876
Epoch 85/200
227/227 [==============================] - 0s 785us/step - loss: 0.1182 - accuracy: 0.9519 - mae: 0.1182 - pearson_correlation: 0.6995 - euclidean_distance: 0.1880
Epoch 86/200
227/227 [==============================] - 0s 788us/step - loss: 0.1162 - accuracy: 0.9506 - mae: 0.1162 - pearson_correlation: 0.7091 - euclidean_distance: 0.1855
Epoch 87/200
227/227 [==============================] - 0s 783us/step - loss: 0.1173 - accuracy: 0.9510 - mae: 0.1173 - pearson_correlation: 0.7097 - euclidean_distance: 0.1860
Epoch 88/200
227/227 [==============================] - 0s 786us/step - loss: 0.1169 - accuracy: 0.9519 - mae: 0.1169 - pearson_correlation: 0.7041 - euclidean_distance: 0.1864
Epoch 89/200
227/227 [==============================] - 0s 789us/step - loss: 0.1193 - accuracy: 0.9528 - mae: 0.1193 - pearson_correlation: 0.7031 - euclidean_distance: 0.1898
Epoch 90/200
227/227 [==============================] - 0s 788us/step - loss: 0.1146 - accuracy: 0.9515 - mae: 0.1146 - pearson_correlation: 0.7108 - euclidean_distance: 0.1823
Epoch 91/200
227/227 [==============================] - 0s 790us/step - loss: 0.1151 - accuracy: 0.9493 - mae: 0.1151 - pearson_correlation: 0.7156 - euclidean_distance: 0.1831
Epoch 92/200
227/227 [==============================] - 0s 787us/step - loss: 0.1117 - accuracy: 0.9519 - mae: 0.1117 - pearson_correlation: 0.7221 - euclidean_distance: 0.1779
Epoch 93/200
227/227 [==============================] - 0s 788us/step - loss: 0.1122 - accuracy: 0.9532 - mae: 0.1122 - pearson_correlation: 0.7254 - euclidean_distance: 0.1792
Epoch 94/200
227/227 [==============================] - 0s 786us/step - loss: 0.1135 - accuracy: 0.9528 - mae: 0.1135 - pearson_correlation: 0.7178 - euclidean_distance: 0.1806
Epoch 95/200
227/227 [==============================] - 0s 785us/step - loss: 0.1125 - accuracy: 0.9524 - mae: 0.1125 - pearson_correlation: 0.7260 - euclidean_distance: 0.1793
Epoch 96/200
227/227 [==============================] - 0s 783us/step - loss: 0.1130 - accuracy: 0.9515 - mae: 0.1130 - pearson_correlation: 0.7180 - euclidean_distance: 0.1799
Epoch 97/200
227/227 [==============================] - 0s 785us/step - loss: 0.1133 - accuracy: 0.9528 - mae: 0.1133 - pearson_correlation: 0.7127 - euclidean_distance: 0.1803
Epoch 98/200
227/227 [==============================] - 0s 787us/step - loss: 0.1123 - accuracy: 0.9550 - mae: 0.1123 - pearson_correlation: 0.7185 - euclidean_distance: 0.1783
Epoch 99/200
227/227 [==============================] - 0s 786us/step - loss: 0.1122 - accuracy: 0.9537 - mae: 0.1122 - pearson_correlation: 0.7240 - euclidean_distance: 0.1781
Epoch 100/200
227/227 [==============================] - 0s 786us/step - loss: 0.1110 - accuracy: 0.9541 - mae: 0.1110 - pearson_correlation: 0.7170 - euclidean_distance: 0.1770
Epoch 101/200
227/227 [==============================] - 0s 791us/step - loss: 0.1085 - accuracy: 0.9515 - mae: 0.1085 - pearson_correlation: 0.7265 - euclidean_distance: 0.1741
Epoch 102/200
227/227 [==============================] - 0s 787us/step - loss: 0.1149 - accuracy: 0.9532 - mae: 0.1149 - pearson_correlation: 0.7103 - euclidean_distance: 0.1830
Epoch 103/200
227/227 [==============================] - 0s 787us/step - loss: 0.1120 - accuracy: 0.9528 - mae: 0.1120 - pearson_correlation: 0.7230 - euclidean_distance: 0.1783
Epoch 104/200
227/227 [==============================] - 0s 784us/step - loss: 0.1129 - accuracy: 0.9519 - mae: 0.1129 - pearson_correlation: 0.7137 - euclidean_distance: 0.1796
Epoch 105/200
227/227 [==============================] - 0s 784us/step - loss: 0.1113 - accuracy: 0.9528 - mae: 0.1113 - pearson_correlation: 0.7215 - euclidean_distance: 0.1775
Epoch 106/200
227/227 [==============================] - 0s 785us/step - loss: 0.1108 - accuracy: 0.9524 - mae: 0.1108 - pearson_correlation: 0.7219 - euclidean_distance: 0.1761
Epoch 107/200
227/227 [==============================] - 0s 785us/step - loss: 0.1094 - accuracy: 0.9537 - mae: 0.1094 - pearson_correlation: 0.7222 - euclidean_distance: 0.1748
Epoch 108/200
227/227 [==============================] - 0s 787us/step - loss: 0.1090 - accuracy: 0.9546 - mae: 0.1090 - pearson_correlation: 0.7221 - euclidean_distance: 0.1738
Epoch 109/200
227/227 [==============================] - 0s 784us/step - loss: 0.1091 - accuracy: 0.9528 - mae: 0.1091 - pearson_correlation: 0.7274 - euclidean_distance: 0.1743
Epoch 110/200
227/227 [==============================] - 0s 785us/step - loss: 0.1105 - accuracy: 0.9541 - mae: 0.1105 - pearson_correlation: 0.7300 - euclidean_distance: 0.1758
Epoch 111/200
227/227 [==============================] - 0s 778us/step - loss: 0.1075 - accuracy: 0.9524 - mae: 0.1075 - pearson_correlation: 0.7284 - euclidean_distance: 0.1722
Epoch 112/200
227/227 [==============================] - 0s 787us/step - loss: 0.1072 - accuracy: 0.9519 - mae: 0.1072 - pearson_correlation: 0.7304 - euclidean_distance: 0.1710
Epoch 113/200
227/227 [==============================] - 0s 786us/step - loss: 0.1072 - accuracy: 0.9541 - mae: 0.1072 - pearson_correlation: 0.7343 - euclidean_distance: 0.1708
Epoch 114/200
227/227 [==============================] - 0s 789us/step - loss: 0.1103 - accuracy: 0.9541 - mae: 0.1103 - pearson_correlation: 0.7188 - euclidean_distance: 0.1758
Epoch 115/200
227/227 [==============================] - 0s 781us/step - loss: 0.1082 - accuracy: 0.9519 - mae: 0.1082 - pearson_correlation: 0.7260 - euclidean_distance: 0.1729
Epoch 116/200
227/227 [==============================] - 0s 788us/step - loss: 0.1068 - accuracy: 0.9550 - mae: 0.1068 - pearson_correlation: 0.7284 - euclidean_distance: 0.1703
Epoch 117/200
227/227 [==============================] - 0s 788us/step - loss: 0.1068 - accuracy: 0.9537 - mae: 0.1068 - pearson_correlation: 0.7289 - euclidean_distance: 0.1708
Epoch 118/200
227/227 [==============================] - 0s 786us/step - loss: 0.1053 - accuracy: 0.9532 - mae: 0.1053 - pearson_correlation: 0.7322 - euclidean_distance: 0.1688
Epoch 119/200
227/227 [==============================] - 0s 789us/step - loss: 0.1078 - accuracy: 0.9537 - mae: 0.1078 - pearson_correlation: 0.7291 - euclidean_distance: 0.1722
Epoch 120/200
227/227 [==============================] - 0s 786us/step - loss: 0.1042 - accuracy: 0.9532 - mae: 0.1042 - pearson_correlation: 0.7342 - euclidean_distance: 0.1675
Epoch 121/200
227/227 [==============================] - 0s 784us/step - loss: 0.1041 - accuracy: 0.9532 - mae: 0.1041 - pearson_correlation: 0.7386 - euclidean_distance: 0.1668
Epoch 122/200
227/227 [==============================] - 0s 785us/step - loss: 0.1060 - accuracy: 0.9528 - mae: 0.1060 - pearson_correlation: 0.7263 - euclidean_distance: 0.1698
Epoch 123/200
227/227 [==============================] - 0s 784us/step - loss: 0.1045 - accuracy: 0.9528 - mae: 0.1045 - pearson_correlation: 0.7305 - euclidean_distance: 0.1680
Epoch 124/200
227/227 [==============================] - 0s 785us/step - loss: 0.1048 - accuracy: 0.9524 - mae: 0.1048 - pearson_correlation: 0.7332 - euclidean_distance: 0.1677
Epoch 125/200
227/227 [==============================] - 0s 783us/step - loss: 0.1034 - accuracy: 0.9532 - mae: 0.1034 - pearson_correlation: 0.7446 - euclidean_distance: 0.1650
Epoch 126/200
227/227 [==============================] - 0s 782us/step - loss: 0.1046 - accuracy: 0.9541 - mae: 0.1046 - pearson_correlation: 0.7360 - euclidean_distance: 0.1675
Epoch 127/200
227/227 [==============================] - 0s 782us/step - loss: 0.1026 - accuracy: 0.9541 - mae: 0.1026 - pearson_correlation: 0.7403 - euclidean_distance: 0.1644
Epoch 128/200
227/227 [==============================] - 0s 805us/step - loss: 0.1051 - accuracy: 0.9532 - mae: 0.1051 - pearson_correlation: 0.7371 - euclidean_distance: 0.1683
Epoch 129/200
227/227 [==============================] - 0s 787us/step - loss: 0.1053 - accuracy: 0.9528 - mae: 0.1053 - pearson_correlation: 0.7310 - euclidean_distance: 0.1693
Epoch 130/200
227/227 [==============================] - 0s 788us/step - loss: 0.1006 - accuracy: 0.9550 - mae: 0.1006 - pearson_correlation: 0.7412 - euclidean_distance: 0.1618
Epoch 131/200
227/227 [==============================] - 0s 782us/step - loss: 0.1016 - accuracy: 0.9506 - mae: 0.1016 - pearson_correlation: 0.7439 - euclidean_distance: 0.1630
Epoch 132/200
227/227 [==============================] - 0s 785us/step - loss: 0.1020 - accuracy: 0.9537 - mae: 0.1020 - pearson_correlation: 0.7399 - euclidean_distance: 0.1638
Epoch 133/200
227/227 [==============================] - 0s 792us/step - loss: 0.1015 - accuracy: 0.9541 - mae: 0.1015 - pearson_correlation: 0.7426 - euclidean_distance: 0.1629
Epoch 134/200
227/227 [==============================] - 0s 788us/step - loss: 0.1007 - accuracy: 0.9546 - mae: 0.1007 - pearson_correlation: 0.7442 - euclidean_distance: 0.1617
Epoch 135/200
227/227 [==============================] - 0s 788us/step - loss: 0.1019 - accuracy: 0.9541 - mae: 0.1019 - pearson_correlation: 0.7369 - euclidean_distance: 0.1633
Epoch 136/200
227/227 [==============================] - 0s 789us/step - loss: 0.1010 - accuracy: 0.9528 - mae: 0.1010 - pearson_correlation: 0.7398 - euclidean_distance: 0.1619
Epoch 137/200
227/227 [==============================] - 0s 788us/step - loss: 0.1012 - accuracy: 0.9528 - mae: 0.1012 - pearson_correlation: 0.7451 - euclidean_distance: 0.1620
Epoch 138/200
227/227 [==============================] - 0s 786us/step - loss: 0.1010 - accuracy: 0.9532 - mae: 0.1010 - pearson_correlation: 0.7427 - euclidean_distance: 0.1618
Epoch 139/200
227/227 [==============================] - 0s 786us/step - loss: 0.1016 - accuracy: 0.9541 - mae: 0.1016 - pearson_correlation: 0.7420 - euclidean_distance: 0.1636
Epoch 140/200
227/227 [==============================] - 0s 787us/step - loss: 0.1016 - accuracy: 0.9546 - mae: 0.1016 - pearson_correlation: 0.7380 - euclidean_distance: 0.1625
Epoch 141/200
227/227 [==============================] - 0s 787us/step - loss: 0.0993 - accuracy: 0.9554 - mae: 0.0993 - pearson_correlation: 0.7556 - euclidean_distance: 0.1592
Epoch 142/200
227/227 [==============================] - 0s 786us/step - loss: 0.1023 - accuracy: 0.9550 - mae: 0.1023 - pearson_correlation: 0.7370 - euclidean_distance: 0.1645
Epoch 143/200
227/227 [==============================] - 0s 786us/step - loss: 0.0989 - accuracy: 0.9541 - mae: 0.0989 - pearson_correlation: 0.7501 - euclidean_distance: 0.1589
Epoch 144/200
227/227 [==============================] - 0s 786us/step - loss: 0.0987 - accuracy: 0.9541 - mae: 0.0987 - pearson_correlation: 0.7478 - euclidean_distance: 0.1588
Epoch 145/200
227/227 [==============================] - 0s 784us/step - loss: 0.0975 - accuracy: 0.9550 - mae: 0.0975 - pearson_correlation: 0.7516 - euclidean_distance: 0.1564
Epoch 146/200
227/227 [==============================] - 0s 785us/step - loss: 0.0996 - accuracy: 0.9546 - mae: 0.0996 - pearson_correlation: 0.7462 - euclidean_distance: 0.1601
Epoch 147/200
227/227 [==============================] - 0s 787us/step - loss: 0.1003 - accuracy: 0.9546 - mae: 0.1003 - pearson_correlation: 0.7369 - euclidean_distance: 0.1619
Epoch 148/200
227/227 [==============================] - 0s 785us/step - loss: 0.1009 - accuracy: 0.9550 - mae: 0.1009 - pearson_correlation: 0.7445 - euclidean_distance: 0.1613
Epoch 149/200
227/227 [==============================] - 0s 788us/step - loss: 0.0995 - accuracy: 0.9532 - mae: 0.0995 - pearson_correlation: 0.7470 - euclidean_distance: 0.1595
Epoch 150/200
227/227 [==============================] - 0s 789us/step - loss: 0.0989 - accuracy: 0.9550 - mae: 0.0989 - pearson_correlation: 0.7500 - euclidean_distance: 0.1591
Epoch 151/200
227/227 [==============================] - 0s 799us/step - loss: 0.0978 - accuracy: 0.9537 - mae: 0.0978 - pearson_correlation: 0.7521 - euclidean_distance: 0.1577
Epoch 152/200
227/227 [==============================] - 0s 794us/step - loss: 0.0986 - accuracy: 0.9532 - mae: 0.0986 - pearson_correlation: 0.7557 - euclidean_distance: 0.1581
Epoch 153/200
227/227 [==============================] - 0s 789us/step - loss: 0.1004 - accuracy: 0.9537 - mae: 0.1004 - pearson_correlation: 0.7427 - euclidean_distance: 0.1617
Epoch 154/200
227/227 [==============================] - 0s 786us/step - loss: 0.0992 - accuracy: 0.9537 - mae: 0.0992 - pearson_correlation: 0.7473 - euclidean_distance: 0.1592
Epoch 155/200
227/227 [==============================] - 0s 785us/step - loss: 0.0978 - accuracy: 0.9537 - mae: 0.0978 - pearson_correlation: 0.7548 - euclidean_distance: 0.1570
Epoch 156/200
227/227 [==============================] - 0s 783us/step - loss: 0.1010 - accuracy: 0.9550 - mae: 0.1010 - pearson_correlation: 0.7483 - euclidean_distance: 0.1619
Epoch 157/200
227/227 [==============================] - 0s 834us/step - loss: 0.0994 - accuracy: 0.9554 - mae: 0.0994 - pearson_correlation: 0.7434 - euclidean_distance: 0.1602
Epoch 158/200
227/227 [==============================] - 0s 889us/step - loss: 0.0966 - accuracy: 0.9554 - mae: 0.0966 - pearson_correlation: 0.7605 - euclidean_distance: 0.1550
Epoch 159/200
227/227 [==============================] - 0s 1ms/step - loss: 0.0966 - accuracy: 0.9541 - mae: 0.0966 - pearson_correlation: 0.7575 - euclidean_distance: 0.1553
Epoch 160/200
227/227 [==============================] - 0s 797us/step - loss: 0.0992 - accuracy: 0.9537 - mae: 0.0992 - pearson_correlation: 0.7488 - euclidean_distance: 0.1593
Epoch 161/200
227/227 [==============================] - 0s 788us/step - loss: 0.0965 - accuracy: 0.9546 - mae: 0.0965 - pearson_correlation: 0.7542 - euclidean_distance: 0.1548
Epoch 162/200
227/227 [==============================] - 0s 785us/step - loss: 0.0944 - accuracy: 0.9554 - mae: 0.0944 - pearson_correlation: 0.7604 - euclidean_distance: 0.1521
Epoch 163/200
227/227 [==============================] - 0s 788us/step - loss: 0.0987 - accuracy: 0.9554 - mae: 0.0987 - pearson_correlation: 0.7487 - euclidean_distance: 0.1588
Epoch 164/200
227/227 [==============================] - 0s 792us/step - loss: 0.0970 - accuracy: 0.9546 - mae: 0.0970 - pearson_correlation: 0.7502 - euclidean_distance: 0.1561
Epoch 165/200
227/227 [==============================] - 0s 787us/step - loss: 0.0969 - accuracy: 0.9554 - mae: 0.0969 - pearson_correlation: 0.7528 - euclidean_distance: 0.1553
Epoch 166/200
227/227 [==============================] - 0s 792us/step - loss: 0.0975 - accuracy: 0.9546 - mae: 0.0975 - pearson_correlation: 0.7543 - euclidean_distance: 0.1560
Epoch 167/200
227/227 [==============================] - 0s 793us/step - loss: 0.0963 - accuracy: 0.9546 - mae: 0.0963 - pearson_correlation: 0.7548 - euclidean_distance: 0.1548
Epoch 168/200
227/227 [==============================] - 0s 786us/step - loss: 0.0976 - accuracy: 0.9541 - mae: 0.0976 - pearson_correlation: 0.7550 - euclidean_distance: 0.1566
Epoch 169/200
227/227 [==============================] - 0s 789us/step - loss: 0.0956 - accuracy: 0.9550 - mae: 0.0956 - pearson_correlation: 0.7557 - euclidean_distance: 0.1540
Epoch 170/200
227/227 [==============================] - 0s 787us/step - loss: 0.0961 - accuracy: 0.9546 - mae: 0.0961 - pearson_correlation: 0.7534 - euclidean_distance: 0.1540
Epoch 171/200
227/227 [==============================] - 0s 786us/step - loss: 0.0990 - accuracy: 0.9546 - mae: 0.0990 - pearson_correlation: 0.7470 - euclidean_distance: 0.1594
Epoch 172/200
227/227 [==============================] - 0s 789us/step - loss: 0.0945 - accuracy: 0.9550 - mae: 0.0945 - pearson_correlation: 0.7589 - euclidean_distance: 0.1517
Epoch 173/200
227/227 [==============================] - 0s 788us/step - loss: 0.0967 - accuracy: 0.9550 - mae: 0.0967 - pearson_correlation: 0.7579 - euclidean_distance: 0.1553
Epoch 174/200
227/227 [==============================] - 0s 788us/step - loss: 0.0958 - accuracy: 0.9546 - mae: 0.0958 - pearson_correlation: 0.7556 - euclidean_distance: 0.1537
Epoch 175/200
227/227 [==============================] - 0s 785us/step - loss: 0.0946 - accuracy: 0.9550 - mae: 0.0946 - pearson_correlation: 0.7593 - euclidean_distance: 0.1522
Epoch 176/200
227/227 [==============================] - 0s 791us/step - loss: 0.0945 - accuracy: 0.9554 - mae: 0.0945 - pearson_correlation: 0.7595 - euclidean_distance: 0.1524
Epoch 177/200
227/227 [==============================] - 0s 804us/step - loss: 0.0951 - accuracy: 0.9550 - mae: 0.0951 - pearson_correlation: 0.7548 - euclidean_distance: 0.1528
Epoch 178/200
227/227 [==============================] - 0s 790us/step - loss: 0.0929 - accuracy: 0.9550 - mae: 0.0929 - pearson_correlation: 0.7632 - euclidean_distance: 0.1494
Epoch 179/200
227/227 [==============================] - 0s 771us/step - loss: 0.0966 - accuracy: 0.9550 - mae: 0.0966 - pearson_correlation: 0.7491 - euclidean_distance: 0.1555
Epoch 180/200
227/227 [==============================] - 0s 772us/step - loss: 0.0923 - accuracy: 0.9554 - mae: 0.0923 - pearson_correlation: 0.7645 - euclidean_distance: 0.1490
Epoch 181/200
227/227 [==============================] - 0s 771us/step - loss: 0.0965 - accuracy: 0.9546 - mae: 0.0965 - pearson_correlation: 0.7541 - euclidean_distance: 0.1544
Epoch 182/200
227/227 [==============================] - 0s 771us/step - loss: 0.0962 - accuracy: 0.9541 - mae: 0.0962 - pearson_correlation: 0.7536 - euclidean_distance: 0.1549
Epoch 183/200
227/227 [==============================] - 0s 773us/step - loss: 0.0949 - accuracy: 0.9546 - mae: 0.0949 - pearson_correlation: 0.7568 - euclidean_distance: 0.1527
Epoch 184/200
227/227 [==============================] - 0s 780us/step - loss: 0.0914 - accuracy: 0.9546 - mae: 0.0914 - pearson_correlation: 0.7690 - euclidean_distance: 0.1471
Epoch 185/200
227/227 [==============================] - 0s 778us/step - loss: 0.0941 - accuracy: 0.9554 - mae: 0.0941 - pearson_correlation: 0.7564 - euclidean_distance: 0.1519
Epoch 186/200
227/227 [==============================] - 0s 767us/step - loss: 0.0950 - accuracy: 0.9550 - mae: 0.0950 - pearson_correlation: 0.7545 - euclidean_distance: 0.1527
Epoch 187/200
227/227 [==============================] - 0s 772us/step - loss: 0.0932 - accuracy: 0.9554 - mae: 0.0932 - pearson_correlation: 0.7582 - euclidean_distance: 0.1506
Epoch 188/200
227/227 [==============================] - 0s 775us/step - loss: 0.0934 - accuracy: 0.9541 - mae: 0.0934 - pearson_correlation: 0.7649 - euclidean_distance: 0.1503
Epoch 189/200
227/227 [==============================] - 0s 776us/step - loss: 0.0932 - accuracy: 0.9554 - mae: 0.0932 - pearson_correlation: 0.7620 - euclidean_distance: 0.1496
Epoch 190/200
227/227 [==============================] - 0s 766us/step - loss: 0.0917 - accuracy: 0.9550 - mae: 0.0917 - pearson_correlation: 0.7666 - euclidean_distance: 0.1475
Epoch 191/200
227/227 [==============================] - 0s 772us/step - loss: 0.0938 - accuracy: 0.9550 - mae: 0.0938 - pearson_correlation: 0.7565 - euclidean_distance: 0.1515
Epoch 192/200
227/227 [==============================] - 0s 770us/step - loss: 0.0949 - accuracy: 0.9537 - mae: 0.0949 - pearson_correlation: 0.7535 - euclidean_distance: 0.1531
Epoch 193/200
227/227 [==============================] - 0s 773us/step - loss: 0.0926 - accuracy: 0.9550 - mae: 0.0926 - pearson_correlation: 0.7616 - euclidean_distance: 0.1498
Epoch 194/200
227/227 [==============================] - 0s 772us/step - loss: 0.0926 - accuracy: 0.9550 - mae: 0.0926 - pearson_correlation: 0.7612 - euclidean_distance: 0.1490
Epoch 195/200
227/227 [==============================] - 0s 767us/step - loss: 0.0921 - accuracy: 0.9550 - mae: 0.0921 - pearson_correlation: 0.7633 - euclidean_distance: 0.1484
Epoch 196/200
227/227 [==============================] - 0s 773us/step - loss: 0.0912 - accuracy: 0.9550 - mae: 0.0912 - pearson_correlation: 0.7658 - euclidean_distance: 0.1470
Epoch 197/200
227/227 [==============================] - 0s 770us/step - loss: 0.0941 - accuracy: 0.9554 - mae: 0.0941 - pearson_correlation: 0.7569 - euclidean_distance: 0.1518
Epoch 198/200
227/227 [==============================] - 0s 769us/step - loss: 0.0908 - accuracy: 0.9554 - mae: 0.0908 - pearson_correlation: 0.7672 - euclidean_distance: 0.1468
Epoch 199/200
227/227 [==============================] - 0s 768us/step - loss: 0.0913 - accuracy: 0.9550 - mae: 0.0913 - pearson_correlation: 0.7690 - euclidean_distance: 0.1473
Epoch 200/200
227/227 [==============================] - 0s 774us/step - loss: 0.0914 - accuracy: 0.9546 - mae: 0.0914 - pearson_correlation: 0.7717 - euclidean_distance: 0.1471
114/114 [==============================] - 0s 427us/step
Epoch 1/200
227/227 [==============================] - 1s 803us/step - loss: 0.6085 - accuracy: 0.2407 - mae: 0.6085 - pearson_correlation: -0.3810 - euclidean_distance: 0.9449
Epoch 2/200
227/227 [==============================] - 0s 776us/step - loss: 0.5941 - accuracy: 0.2394 - mae: 0.5941 - pearson_correlation: -0.3948 - euclidean_distance: 0.9260
Epoch 3/200
227/227 [==============================] - 0s 772us/step - loss: 0.5798 - accuracy: 0.2235 - mae: 0.5798 - pearson_correlation: -0.4133 - euclidean_distance: 0.9081
Epoch 4/200
227/227 [==============================] - 0s 780us/step - loss: 0.5659 - accuracy: 0.2147 - mae: 0.5659 - pearson_correlation: -0.4214 - euclidean_distance: 0.8893
Epoch 5/200
227/227 [==============================] - 0s 795us/step - loss: 0.5573 - accuracy: 0.2156 - mae: 0.5573 - pearson_correlation: -0.4142 - euclidean_distance: 0.8766
Epoch 6/200
227/227 [==============================] - 0s 792us/step - loss: 0.5443 - accuracy: 0.2019 - mae: 0.5443 - pearson_correlation: -0.4281 - euclidean_distance: 0.8603
Epoch 7/200
227/227 [==============================] - 0s 790us/step - loss: 0.5328 - accuracy: 0.2011 - mae: 0.5328 - pearson_correlation: -0.4468 - euclidean_distance: 0.8450
Epoch 8/200
227/227 [==============================] - 0s 790us/step - loss: 0.5207 - accuracy: 0.1971 - mae: 0.5207 - pearson_correlation: -0.4449 - euclidean_distance: 0.8298
Epoch 9/200
227/227 [==============================] - 0s 788us/step - loss: 0.5120 - accuracy: 0.1944 - mae: 0.5120 - pearson_correlation: -0.4547 - euclidean_distance: 0.8187
Epoch 10/200
227/227 [==============================] - 0s 791us/step - loss: 0.4993 - accuracy: 0.1892 - mae: 0.4993 - pearson_correlation: -0.4594 - euclidean_distance: 0.8016
Epoch 11/200
227/227 [==============================] - 0s 792us/step - loss: 0.4926 - accuracy: 0.1856 - mae: 0.4926 - pearson_correlation: -0.4676 - euclidean_distance: 0.7937
Epoch 12/200
227/227 [==============================] - 0s 791us/step - loss: 0.4830 - accuracy: 0.1790 - mae: 0.4830 - pearson_correlation: -0.4709 - euclidean_distance: 0.7811
Epoch 13/200
227/227 [==============================] - 0s 788us/step - loss: 0.4720 - accuracy: 0.1759 - mae: 0.4720 - pearson_correlation: -0.4797 - euclidean_distance: 0.7678
Epoch 14/200
227/227 [==============================] - 0s 788us/step - loss: 0.4658 - accuracy: 0.1742 - mae: 0.4658 - pearson_correlation: -0.4720 - euclidean_distance: 0.7585
Epoch 15/200
227/227 [==============================] - 0s 788us/step - loss: 0.4565 - accuracy: 0.1786 - mae: 0.4565 - pearson_correlation: -0.4655 - euclidean_distance: 0.7453
Epoch 16/200
227/227 [==============================] - 0s 787us/step - loss: 0.4499 - accuracy: 0.1711 - mae: 0.4499 - pearson_correlation: -0.4650 - euclidean_distance: 0.7360
Epoch 17/200
227/227 [==============================] - 0s 786us/step - loss: 0.4404 - accuracy: 0.1772 - mae: 0.4404 - pearson_correlation: -0.4543 - euclidean_distance: 0.7234
Epoch 18/200
227/227 [==============================] - 0s 790us/step - loss: 0.4335 - accuracy: 0.1790 - mae: 0.4335 - pearson_correlation: -0.4482 - euclidean_distance: 0.7120
Epoch 19/200
227/227 [==============================] - 0s 787us/step - loss: 0.4252 - accuracy: 0.1878 - mae: 0.4252 - pearson_correlation: -0.4392 - euclidean_distance: 0.7014
Epoch 20/200
227/227 [==============================] - 0s 784us/step - loss: 0.4199 - accuracy: 0.1808 - mae: 0.4199 - pearson_correlation: -0.4291 - euclidean_distance: 0.6933
Epoch 21/200
227/227 [==============================] - 0s 786us/step - loss: 0.4118 - accuracy: 0.1953 - mae: 0.4118 - pearson_correlation: -0.4111 - euclidean_distance: 0.6806
Epoch 22/200
227/227 [==============================] - 0s 786us/step - loss: 0.4055 - accuracy: 0.1971 - mae: 0.4055 - pearson_correlation: -0.4100 - euclidean_distance: 0.6716
Epoch 23/200
227/227 [==============================] - 0s 785us/step - loss: 0.3989 - accuracy: 0.2094 - mae: 0.3989 - pearson_correlation: -0.3819 - euclidean_distance: 0.6610
Epoch 24/200
227/227 [==============================] - 0s 788us/step - loss: 0.3896 - accuracy: 0.2134 - mae: 0.3896 - pearson_correlation: -0.3693 - euclidean_distance: 0.6469
Epoch 25/200
227/227 [==============================] - 0s 785us/step - loss: 0.3849 - accuracy: 0.2244 - mae: 0.3849 - pearson_correlation: -0.3443 - euclidean_distance: 0.6381
Epoch 26/200
227/227 [==============================] - 0s 788us/step - loss: 0.3770 - accuracy: 0.2425 - mae: 0.3770 - pearson_correlation: -0.3246 - euclidean_distance: 0.6269
Epoch 27/200
227/227 [==============================] - 0s 787us/step - loss: 0.3701 - accuracy: 0.2597 - mae: 0.3701 - pearson_correlation: -0.2994 - euclidean_distance: 0.6148
Epoch 28/200
227/227 [==============================] - 0s 786us/step - loss: 0.3645 - accuracy: 0.2646 - mae: 0.3645 - pearson_correlation: -0.2919 - euclidean_distance: 0.6071
Epoch 29/200
227/227 [==============================] - 0s 785us/step - loss: 0.3561 - accuracy: 0.2765 - mae: 0.3561 - pearson_correlation: -0.2620 - euclidean_distance: 0.5941
Epoch 30/200
227/227 [==============================] - 0s 799us/step - loss: 0.3489 - accuracy: 0.3025 - mae: 0.3489 - pearson_correlation: -0.2265 - euclidean_distance: 0.5821
Epoch 31/200
227/227 [==============================] - 0s 784us/step - loss: 0.3432 - accuracy: 0.3117 - mae: 0.3432 - pearson_correlation: -0.2177 - euclidean_distance: 0.5735
Epoch 32/200
227/227 [==============================] - 0s 789us/step - loss: 0.3370 - accuracy: 0.3236 - mae: 0.3370 - pearson_correlation: -0.1889 - euclidean_distance: 0.5625
Epoch 33/200
227/227 [==============================] - 0s 786us/step - loss: 0.3300 - accuracy: 0.3435 - mae: 0.3300 - pearson_correlation: -0.1606 - euclidean_distance: 0.5501
Epoch 34/200
227/227 [==============================] - 0s 784us/step - loss: 0.3258 - accuracy: 0.3474 - mae: 0.3258 - pearson_correlation: -0.1516 - euclidean_distance: 0.5443
Epoch 35/200
227/227 [==============================] - 0s 770us/step - loss: 0.3207 - accuracy: 0.3448 - mae: 0.3207 - pearson_correlation: -0.1266 - euclidean_distance: 0.5356
Epoch 36/200
227/227 [==============================] - 0s 773us/step - loss: 0.3132 - accuracy: 0.3598 - mae: 0.3132 - pearson_correlation: -0.0976 - euclidean_distance: 0.5235
Epoch 37/200
227/227 [==============================] - 0s 776us/step - loss: 0.3081 - accuracy: 0.3796 - mae: 0.3081 - pearson_correlation: -0.0709 - euclidean_distance: 0.5163
Epoch 38/200
227/227 [==============================] - 0s 785us/step - loss: 0.3061 - accuracy: 0.3748 - mae: 0.3061 - pearson_correlation: -0.0789 - euclidean_distance: 0.5118
Epoch 39/200
227/227 [==============================] - 0s 770us/step - loss: 0.3007 - accuracy: 0.3823 - mae: 0.3007 - pearson_correlation: -0.0677 - euclidean_distance: 0.5047
Epoch 40/200
227/227 [==============================] - 0s 771us/step - loss: 0.2985 - accuracy: 0.3977 - mae: 0.2985 - pearson_correlation: -0.0452 - euclidean_distance: 0.5000
Epoch 41/200
227/227 [==============================] - 0s 786us/step - loss: 0.2928 - accuracy: 0.3973 - mae: 0.2928 - pearson_correlation: -0.0362 - euclidean_distance: 0.4904
Epoch 42/200
227/227 [==============================] - 0s 845us/step - loss: 0.2915 - accuracy: 0.4083 - mae: 0.2915 - pearson_correlation: -0.0162 - euclidean_distance: 0.4874
Epoch 43/200
227/227 [==============================] - 0s 875us/step - loss: 0.2854 - accuracy: 0.4158 - mae: 0.2854 - pearson_correlation: 0.0050 - euclidean_distance: 0.4793
Epoch 44/200
227/227 [==============================] - 0s 870us/step - loss: 0.2848 - accuracy: 0.4220 - mae: 0.2848 - pearson_correlation: -0.0022 - euclidean_distance: 0.4778
Epoch 45/200
227/227 [==============================] - 0s 772us/step - loss: 0.2795 - accuracy: 0.4259 - mae: 0.2795 - pearson_correlation: 0.0167 - euclidean_distance: 0.4691
Epoch 46/200
227/227 [==============================] - 0s 774us/step - loss: 0.2764 - accuracy: 0.4374 - mae: 0.2764 - pearson_correlation: 0.0348 - euclidean_distance: 0.4633
Epoch 47/200
227/227 [==============================] - 0s 774us/step - loss: 0.2725 - accuracy: 0.4436 - mae: 0.2725 - pearson_correlation: 0.0432 - euclidean_distance: 0.4570
Epoch 48/200
227/227 [==============================] - 0s 767us/step - loss: 0.2702 - accuracy: 0.4449 - mae: 0.2702 - pearson_correlation: 0.0511 - euclidean_distance: 0.4541
Epoch 49/200
227/227 [==============================] - 0s 771us/step - loss: 0.2665 - accuracy: 0.4612 - mae: 0.2665 - pearson_correlation: 0.0575 - euclidean_distance: 0.4487
Epoch 50/200
227/227 [==============================] - 0s 778us/step - loss: 0.2631 - accuracy: 0.4678 - mae: 0.2631 - pearson_correlation: 0.0691 - euclidean_distance: 0.4420
Epoch 51/200
227/227 [==============================] - 0s 776us/step - loss: 0.2605 - accuracy: 0.4877 - mae: 0.2605 - pearson_correlation: 0.0742 - euclidean_distance: 0.4373
Epoch 52/200
227/227 [==============================] - 0s 776us/step - loss: 0.2586 - accuracy: 0.4907 - mae: 0.2586 - pearson_correlation: 0.0845 - euclidean_distance: 0.4348
Epoch 53/200
227/227 [==============================] - 0s 771us/step - loss: 0.2595 - accuracy: 0.4978 - mae: 0.2595 - pearson_correlation: 0.0996 - euclidean_distance: 0.4350
Epoch 54/200
227/227 [==============================] - 0s 776us/step - loss: 0.2519 - accuracy: 0.5110 - mae: 0.2519 - pearson_correlation: 0.1082 - euclidean_distance: 0.4247
Epoch 55/200
227/227 [==============================] - 0s 774us/step - loss: 0.2508 - accuracy: 0.5062 - mae: 0.2508 - pearson_correlation: 0.1062 - euclidean_distance: 0.4224
Epoch 56/200
227/227 [==============================] - 0s 771us/step - loss: 0.2465 - accuracy: 0.5269 - mae: 0.2465 - pearson_correlation: 0.1284 - euclidean_distance: 0.4155
Epoch 57/200
227/227 [==============================] - 0s 773us/step - loss: 0.2436 - accuracy: 0.5414 - mae: 0.2436 - pearson_correlation: 0.1376 - euclidean_distance: 0.4098
Epoch 58/200
227/227 [==============================] - 0s 776us/step - loss: 0.2438 - accuracy: 0.5366 - mae: 0.2438 - pearson_correlation: 0.1375 - euclidean_distance: 0.4101
Epoch 59/200
227/227 [==============================] - 0s 777us/step - loss: 0.2387 - accuracy: 0.5423 - mae: 0.2387 - pearson_correlation: 0.1547 - euclidean_distance: 0.4025
Epoch 60/200
227/227 [==============================] - 0s 785us/step - loss: 0.2391 - accuracy: 0.5639 - mae: 0.2391 - pearson_correlation: 0.1524 - euclidean_distance: 0.4021
Epoch 61/200
227/227 [==============================] - 0s 787us/step - loss: 0.2356 - accuracy: 0.5639 - mae: 0.2356 - pearson_correlation: 0.1688 - euclidean_distance: 0.3955
Epoch 62/200
227/227 [==============================] - 0s 786us/step - loss: 0.2358 - accuracy: 0.5604 - mae: 0.2358 - pearson_correlation: 0.1628 - euclidean_distance: 0.3958
Epoch 63/200
227/227 [==============================] - 0s 786us/step - loss: 0.2281 - accuracy: 0.5780 - mae: 0.2281 - pearson_correlation: 0.1913 - euclidean_distance: 0.3847
Epoch 64/200
227/227 [==============================] - 0s 803us/step - loss: 0.2279 - accuracy: 0.5789 - mae: 0.2279 - pearson_correlation: 0.1845 - euclidean_distance: 0.3846
Epoch 65/200
227/227 [==============================] - 0s 787us/step - loss: 0.2279 - accuracy: 0.5838 - mae: 0.2279 - pearson_correlation: 0.2008 - euclidean_distance: 0.3820
Epoch 66/200
227/227 [==============================] - 0s 786us/step - loss: 0.2241 - accuracy: 0.5877 - mae: 0.2241 - pearson_correlation: 0.2014 - euclidean_distance: 0.3775
Epoch 67/200
227/227 [==============================] - 0s 787us/step - loss: 0.2240 - accuracy: 0.6041 - mae: 0.2240 - pearson_correlation: 0.2163 - euclidean_distance: 0.3753
Epoch 68/200
227/227 [==============================] - 0s 785us/step - loss: 0.2193 - accuracy: 0.6076 - mae: 0.2193 - pearson_correlation: 0.2259 - euclidean_distance: 0.3684
Epoch 69/200
227/227 [==============================] - 0s 787us/step - loss: 0.2172 - accuracy: 0.6093 - mae: 0.2172 - pearson_correlation: 0.2405 - euclidean_distance: 0.3644
Epoch 70/200
227/227 [==============================] - 0s 876us/step - loss: 0.2163 - accuracy: 0.6279 - mae: 0.2163 - pearson_correlation: 0.2438 - euclidean_distance: 0.3622
Epoch 71/200
227/227 [==============================] - 0s 786us/step - loss: 0.2119 - accuracy: 0.6226 - mae: 0.2119 - pearson_correlation: 0.2491 - euclidean_distance: 0.3566
Epoch 72/200
227/227 [==============================] - 0s 790us/step - loss: 0.2127 - accuracy: 0.6354 - mae: 0.2127 - pearson_correlation: 0.2611 - euclidean_distance: 0.3566
Epoch 73/200
227/227 [==============================] - 0s 786us/step - loss: 0.2085 - accuracy: 0.6323 - mae: 0.2085 - pearson_correlation: 0.2664 - euclidean_distance: 0.3502
Epoch 74/200
227/227 [==============================] - 0s 779us/step - loss: 0.2089 - accuracy: 0.6380 - mae: 0.2089 - pearson_correlation: 0.2717 - euclidean_distance: 0.3505
Epoch 75/200
227/227 [==============================] - 0s 781us/step - loss: 0.2072 - accuracy: 0.6415 - mae: 0.2072 - pearson_correlation: 0.2782 - euclidean_distance: 0.3468
Epoch 76/200
227/227 [==============================] - 0s 773us/step - loss: 0.2052 - accuracy: 0.6583 - mae: 0.2052 - pearson_correlation: 0.2926 - euclidean_distance: 0.3432
Epoch 77/200
227/227 [==============================] - 0s 774us/step - loss: 0.2038 - accuracy: 0.6583 - mae: 0.2038 - pearson_correlation: 0.2964 - euclidean_distance: 0.3408
Epoch 78/200
227/227 [==============================] - 0s 772us/step - loss: 0.2013 - accuracy: 0.6746 - mae: 0.2013 - pearson_correlation: 0.3120 - euclidean_distance: 0.3362
Epoch 79/200
227/227 [==============================] - 0s 771us/step - loss: 0.1979 - accuracy: 0.6601 - mae: 0.1979 - pearson_correlation: 0.3046 - euclidean_distance: 0.3317
Epoch 80/200
227/227 [==============================] - 0s 770us/step - loss: 0.1975 - accuracy: 0.6777 - mae: 0.1975 - pearson_correlation: 0.3220 - euclidean_distance: 0.3297
Epoch 81/200
227/227 [==============================] - 0s 772us/step - loss: 0.1941 - accuracy: 0.6790 - mae: 0.1941 - pearson_correlation: 0.3333 - euclidean_distance: 0.3247
Epoch 82/200
227/227 [==============================] - 0s 773us/step - loss: 0.1929 - accuracy: 0.6984 - mae: 0.1929 - pearson_correlation: 0.3352 - euclidean_distance: 0.3225
Epoch 83/200
227/227 [==============================] - 0s 772us/step - loss: 0.1897 - accuracy: 0.7046 - mae: 0.1897 - pearson_correlation: 0.3515 - euclidean_distance: 0.3174
Epoch 84/200
227/227 [==============================] - 0s 773us/step - loss: 0.1882 - accuracy: 0.7068 - mae: 0.1882 - pearson_correlation: 0.3526 - euclidean_distance: 0.3148
Epoch 85/200
227/227 [==============================] - 0s 774us/step - loss: 0.1862 - accuracy: 0.7200 - mae: 0.1862 - pearson_correlation: 0.3765 - euclidean_distance: 0.3108
Epoch 86/200
227/227 [==============================] - 0s 777us/step - loss: 0.1847 - accuracy: 0.7341 - mae: 0.1847 - pearson_correlation: 0.3843 - euclidean_distance: 0.3072
Epoch 87/200
227/227 [==============================] - 0s 770us/step - loss: 0.1814 - accuracy: 0.7443 - mae: 0.1814 - pearson_correlation: 0.3806 - euclidean_distance: 0.3037
Epoch 88/200
227/227 [==============================] - 0s 775us/step - loss: 0.1809 - accuracy: 0.7412 - mae: 0.1809 - pearson_correlation: 0.3916 - euclidean_distance: 0.3017
Epoch 89/200
227/227 [==============================] - 0s 778us/step - loss: 0.1786 - accuracy: 0.7544 - mae: 0.1786 - pearson_correlation: 0.4001 - euclidean_distance: 0.2969
Epoch 90/200
227/227 [==============================] - 0s 786us/step - loss: 0.1782 - accuracy: 0.7623 - mae: 0.1782 - pearson_correlation: 0.4033 - euclidean_distance: 0.2954
Epoch 91/200
227/227 [==============================] - 0s 790us/step - loss: 0.1778 - accuracy: 0.7549 - mae: 0.1778 - pearson_correlation: 0.4042 - euclidean_distance: 0.2962
Epoch 92/200
227/227 [==============================] - 0s 785us/step - loss: 0.1750 - accuracy: 0.7672 - mae: 0.1750 - pearson_correlation: 0.4255 - euclidean_distance: 0.2904
Epoch 93/200
227/227 [==============================] - 0s 789us/step - loss: 0.1761 - accuracy: 0.7866 - mae: 0.1761 - pearson_correlation: 0.4271 - euclidean_distance: 0.2919
Epoch 94/200
227/227 [==============================] - 0s 783us/step - loss: 0.1709 - accuracy: 0.7950 - mae: 0.1709 - pearson_correlation: 0.4419 - euclidean_distance: 0.2834
Epoch 95/200
227/227 [==============================] - 0s 786us/step - loss: 0.1688 - accuracy: 0.8011 - mae: 0.1688 - pearson_correlation: 0.4503 - euclidean_distance: 0.2796
Epoch 96/200
227/227 [==============================] - 0s 781us/step - loss: 0.1675 - accuracy: 0.8091 - mae: 0.1675 - pearson_correlation: 0.4551 - euclidean_distance: 0.2776
Epoch 97/200
227/227 [==============================] - 0s 800us/step - loss: 0.1642 - accuracy: 0.8166 - mae: 0.1642 - pearson_correlation: 0.4646 - euclidean_distance: 0.2734
Epoch 98/200
227/227 [==============================] - 0s 775us/step - loss: 0.1627 - accuracy: 0.8280 - mae: 0.1627 - pearson_correlation: 0.4786 - euclidean_distance: 0.2692
Epoch 99/200
227/227 [==============================] - 0s 771us/step - loss: 0.1619 - accuracy: 0.8347 - mae: 0.1619 - pearson_correlation: 0.4860 - euclidean_distance: 0.2687
Epoch 100/200
227/227 [==============================] - 0s 774us/step - loss: 0.1597 - accuracy: 0.8430 - mae: 0.1597 - pearson_correlation: 0.5002 - euclidean_distance: 0.2634
Epoch 101/200
227/227 [==============================] - 0s 773us/step - loss: 0.1593 - accuracy: 0.8532 - mae: 0.1593 - pearson_correlation: 0.4995 - euclidean_distance: 0.2627
Epoch 102/200
227/227 [==============================] - 0s 777us/step - loss: 0.1586 - accuracy: 0.8505 - mae: 0.1586 - pearson_correlation: 0.4994 - euclidean_distance: 0.2613
Epoch 103/200
227/227 [==============================] - 0s 774us/step - loss: 0.1531 - accuracy: 0.8624 - mae: 0.1531 - pearson_correlation: 0.5218 - euclidean_distance: 0.2524
Epoch 104/200
227/227 [==============================] - 0s 774us/step - loss: 0.1540 - accuracy: 0.8699 - mae: 0.1540 - pearson_correlation: 0.5176 - euclidean_distance: 0.2540
Epoch 105/200
227/227 [==============================] - 0s 769us/step - loss: 0.1507 - accuracy: 0.8757 - mae: 0.1507 - pearson_correlation: 0.5403 - euclidean_distance: 0.2469
Epoch 106/200
227/227 [==============================] - 0s 770us/step - loss: 0.1507 - accuracy: 0.8814 - mae: 0.1507 - pearson_correlation: 0.5324 - euclidean_distance: 0.2470
Epoch 107/200
227/227 [==============================] - 0s 774us/step - loss: 0.1486 - accuracy: 0.8907 - mae: 0.1486 - pearson_correlation: 0.5453 - euclidean_distance: 0.2438
Epoch 108/200
227/227 [==============================] - 0s 767us/step - loss: 0.1458 - accuracy: 0.8951 - mae: 0.1458 - pearson_correlation: 0.5568 - euclidean_distance: 0.2394
Epoch 109/200
227/227 [==============================] - 0s 771us/step - loss: 0.1442 - accuracy: 0.9021 - mae: 0.1442 - pearson_correlation: 0.5637 - euclidean_distance: 0.2369
Epoch 110/200
227/227 [==============================] - 0s 771us/step - loss: 0.1429 - accuracy: 0.8995 - mae: 0.1429 - pearson_correlation: 0.5735 - euclidean_distance: 0.2341
Epoch 111/200
227/227 [==============================] - 0s 784us/step - loss: 0.1413 - accuracy: 0.9012 - mae: 0.1413 - pearson_correlation: 0.5810 - euclidean_distance: 0.2309
Epoch 112/200
227/227 [==============================] - 0s 782us/step - loss: 0.1401 - accuracy: 0.9087 - mae: 0.1401 - pearson_correlation: 0.5839 - euclidean_distance: 0.2293
Epoch 113/200
227/227 [==============================] - 0s 773us/step - loss: 0.1378 - accuracy: 0.9052 - mae: 0.1378 - pearson_correlation: 0.5933 - euclidean_distance: 0.2256
Epoch 114/200
227/227 [==============================] - 0s 775us/step - loss: 0.1371 - accuracy: 0.9171 - mae: 0.1371 - pearson_correlation: 0.6001 - euclidean_distance: 0.2235
Epoch 115/200
227/227 [==============================] - 0s 777us/step - loss: 0.1371 - accuracy: 0.9206 - mae: 0.1371 - pearson_correlation: 0.6021 - euclidean_distance: 0.2233
Epoch 116/200
227/227 [==============================] - 0s 774us/step - loss: 0.1351 - accuracy: 0.9158 - mae: 0.1351 - pearson_correlation: 0.6077 - euclidean_distance: 0.2203
Epoch 117/200
227/227 [==============================] - 0s 769us/step - loss: 0.1347 - accuracy: 0.9264 - mae: 0.1347 - pearson_correlation: 0.6128 - euclidean_distance: 0.2185
Epoch 118/200
227/227 [==============================] - 0s 771us/step - loss: 0.1308 - accuracy: 0.9259 - mae: 0.1308 - pearson_correlation: 0.6249 - euclidean_distance: 0.2123
Epoch 119/200
227/227 [==============================] - 0s 775us/step - loss: 0.1302 - accuracy: 0.9277 - mae: 0.1302 - pearson_correlation: 0.6267 - euclidean_distance: 0.2116
Epoch 120/200
227/227 [==============================] - 0s 772us/step - loss: 0.1265 - accuracy: 0.9321 - mae: 0.1265 - pearson_correlation: 0.6403 - euclidean_distance: 0.2063
Epoch 121/200
227/227 [==============================] - 0s 774us/step - loss: 0.1262 - accuracy: 0.9317 - mae: 0.1262 - pearson_correlation: 0.6474 - euclidean_distance: 0.2049
Epoch 122/200
227/227 [==============================] - 0s 779us/step - loss: 0.1256 - accuracy: 0.9272 - mae: 0.1256 - pearson_correlation: 0.6445 - euclidean_distance: 0.2041
Epoch 123/200
227/227 [==============================] - 0s 786us/step - loss: 0.1244 - accuracy: 0.9295 - mae: 0.1244 - pearson_correlation: 0.6480 - euclidean_distance: 0.2021
Epoch 124/200
227/227 [==============================] - 0s 785us/step - loss: 0.1225 - accuracy: 0.9321 - mae: 0.1225 - pearson_correlation: 0.6533 - euclidean_distance: 0.1989
Epoch 125/200
227/227 [==============================] - 0s 784us/step - loss: 0.1225 - accuracy: 0.9317 - mae: 0.1225 - pearson_correlation: 0.6579 - euclidean_distance: 0.1983
Epoch 126/200
227/227 [==============================] - 0s 786us/step - loss: 0.1206 - accuracy: 0.9356 - mae: 0.1206 - pearson_correlation: 0.6676 - euclidean_distance: 0.1948
Epoch 127/200
227/227 [==============================] - 0s 789us/step - loss: 0.1203 - accuracy: 0.9321 - mae: 0.1203 - pearson_correlation: 0.6648 - euclidean_distance: 0.1949
Epoch 128/200
227/227 [==============================] - 0s 788us/step - loss: 0.1203 - accuracy: 0.9246 - mae: 0.1203 - pearson_correlation: 0.6621 - euclidean_distance: 0.1944
Epoch 129/200
227/227 [==============================] - 0s 785us/step - loss: 0.1172 - accuracy: 0.9330 - mae: 0.1172 - pearson_correlation: 0.6810 - euclidean_distance: 0.1894
Epoch 130/200
227/227 [==============================] - 0s 786us/step - loss: 0.1168 - accuracy: 0.9396 - mae: 0.1168 - pearson_correlation: 0.6817 - euclidean_distance: 0.1876
Epoch 131/200
227/227 [==============================] - 0s 872us/step - loss: 0.1154 - accuracy: 0.9378 - mae: 0.1154 - pearson_correlation: 0.6822 - euclidean_distance: 0.1865
Epoch 132/200
227/227 [==============================] - 0s 881us/step - loss: 0.1155 - accuracy: 0.9374 - mae: 0.1155 - pearson_correlation: 0.6860 - euclidean_distance: 0.1863
Epoch 133/200
227/227 [==============================] - 0s 888us/step - loss: 0.1118 - accuracy: 0.9365 - mae: 0.1118 - pearson_correlation: 0.6903 - euclidean_distance: 0.1809
Epoch 134/200
227/227 [==============================] - 0s 775us/step - loss: 0.1130 - accuracy: 0.9369 - mae: 0.1130 - pearson_correlation: 0.6915 - euclidean_distance: 0.1822
Epoch 135/200
227/227 [==============================] - 0s 776us/step - loss: 0.1159 - accuracy: 0.9387 - mae: 0.1159 - pearson_correlation: 0.6861 - euclidean_distance: 0.1860
Epoch 136/200
227/227 [==============================] - 0s 774us/step - loss: 0.1109 - accuracy: 0.9383 - mae: 0.1109 - pearson_correlation: 0.6953 - euclidean_distance: 0.1785
Epoch 137/200
227/227 [==============================] - 0s 775us/step - loss: 0.1106 - accuracy: 0.9392 - mae: 0.1106 - pearson_correlation: 0.6953 - euclidean_distance: 0.1777
Epoch 138/200
227/227 [==============================] - 0s 785us/step - loss: 0.1122 - accuracy: 0.9378 - mae: 0.1122 - pearson_correlation: 0.7023 - euclidean_distance: 0.1805
Epoch 139/200
227/227 [==============================] - 0s 779us/step - loss: 0.1113 - accuracy: 0.9374 - mae: 0.1113 - pearson_correlation: 0.6933 - euclidean_distance: 0.1793
Epoch 140/200
227/227 [==============================] - 0s 776us/step - loss: 0.1116 - accuracy: 0.9392 - mae: 0.1116 - pearson_correlation: 0.6970 - euclidean_distance: 0.1804
Epoch 141/200
227/227 [==============================] - 0s 779us/step - loss: 0.1086 - accuracy: 0.9387 - mae: 0.1086 - pearson_correlation: 0.7081 - euclidean_distance: 0.1751
Epoch 142/200
227/227 [==============================] - 0s 783us/step - loss: 0.1099 - accuracy: 0.9383 - mae: 0.1099 - pearson_correlation: 0.7054 - euclidean_distance: 0.1766
Epoch 143/200
227/227 [==============================] - 0s 774us/step - loss: 0.1095 - accuracy: 0.9387 - mae: 0.1095 - pearson_correlation: 0.7039 - euclidean_distance: 0.1768
Epoch 144/200
227/227 [==============================] - 0s 775us/step - loss: 0.1071 - accuracy: 0.9449 - mae: 0.1071 - pearson_correlation: 0.7112 - euclidean_distance: 0.1722
Epoch 145/200
227/227 [==============================] - 0s 769us/step - loss: 0.1070 - accuracy: 0.9458 - mae: 0.1070 - pearson_correlation: 0.7161 - euclidean_distance: 0.1718
Epoch 146/200
227/227 [==============================] - 0s 773us/step - loss: 0.1087 - accuracy: 0.9436 - mae: 0.1087 - pearson_correlation: 0.7113 - euclidean_distance: 0.1743
Epoch 147/200
227/227 [==============================] - 0s 775us/step - loss: 0.1063 - accuracy: 0.9414 - mae: 0.1063 - pearson_correlation: 0.7188 - euclidean_distance: 0.1708
Epoch 148/200
227/227 [==============================] - 0s 775us/step - loss: 0.1053 - accuracy: 0.9387 - mae: 0.1053 - pearson_correlation: 0.7198 - euclidean_distance: 0.1699
Epoch 149/200
227/227 [==============================] - 0s 777us/step - loss: 0.1050 - accuracy: 0.9449 - mae: 0.1050 - pearson_correlation: 0.7217 - euclidean_distance: 0.1693
Epoch 150/200
227/227 [==============================] - 0s 776us/step - loss: 0.1046 - accuracy: 0.9396 - mae: 0.1046 - pearson_correlation: 0.7219 - euclidean_distance: 0.1685
Epoch 151/200
227/227 [==============================] - 0s 774us/step - loss: 0.1055 - accuracy: 0.9400 - mae: 0.1055 - pearson_correlation: 0.7158 - euclidean_distance: 0.1703
Epoch 152/200
227/227 [==============================] - 0s 774us/step - loss: 0.1052 - accuracy: 0.9427 - mae: 0.1052 - pearson_correlation: 0.7241 - euclidean_distance: 0.1687
Epoch 153/200
227/227 [==============================] - 0s 782us/step - loss: 0.1055 - accuracy: 0.9427 - mae: 0.1055 - pearson_correlation: 0.7194 - euclidean_distance: 0.1693
Epoch 154/200
227/227 [==============================] - 0s 775us/step - loss: 0.1033 - accuracy: 0.9453 - mae: 0.1033 - pearson_correlation: 0.7271 - euclidean_distance: 0.1660
Epoch 155/200
227/227 [==============================] - 0s 775us/step - loss: 0.1044 - accuracy: 0.9427 - mae: 0.1044 - pearson_correlation: 0.7244 - euclidean_distance: 0.1682
Epoch 156/200
227/227 [==============================] - 0s 770us/step - loss: 0.1059 - accuracy: 0.9431 - mae: 0.1059 - pearson_correlation: 0.7148 - euclidean_distance: 0.1700
Epoch 157/200
227/227 [==============================] - 0s 771us/step - loss: 0.1020 - accuracy: 0.9480 - mae: 0.1020 - pearson_correlation: 0.7282 - euclidean_distance: 0.1636
Epoch 158/200
227/227 [==============================] - 0s 773us/step - loss: 0.1023 - accuracy: 0.9466 - mae: 0.1023 - pearson_correlation: 0.7328 - euclidean_distance: 0.1641
Epoch 159/200
227/227 [==============================] - 0s 773us/step - loss: 0.1036 - accuracy: 0.9466 - mae: 0.1036 - pearson_correlation: 0.7263 - euclidean_distance: 0.1670
Epoch 160/200
227/227 [==============================] - 0s 783us/step - loss: 0.1047 - accuracy: 0.9458 - mae: 0.1047 - pearson_correlation: 0.7210 - euclidean_distance: 0.1677
Epoch 161/200
227/227 [==============================] - 0s 783us/step - loss: 0.1013 - accuracy: 0.9440 - mae: 0.1013 - pearson_correlation: 0.7358 - euclidean_distance: 0.1623
Epoch 162/200
227/227 [==============================] - 0s 785us/step - loss: 0.1027 - accuracy: 0.9431 - mae: 0.1027 - pearson_correlation: 0.7270 - euclidean_distance: 0.1654
Epoch 163/200
227/227 [==============================] - 0s 786us/step - loss: 0.1010 - accuracy: 0.9453 - mae: 0.1010 - pearson_correlation: 0.7285 - euclidean_distance: 0.1629
Epoch 164/200
227/227 [==============================] - 0s 784us/step - loss: 0.1014 - accuracy: 0.9466 - mae: 0.1014 - pearson_correlation: 0.7372 - euclidean_distance: 0.1628
Epoch 165/200
227/227 [==============================] - 0s 785us/step - loss: 0.1020 - accuracy: 0.9440 - mae: 0.1020 - pearson_correlation: 0.7262 - euclidean_distance: 0.1638
Epoch 166/200
227/227 [==============================] - 0s 788us/step - loss: 0.1019 - accuracy: 0.9462 - mae: 0.1019 - pearson_correlation: 0.7278 - euclidean_distance: 0.1640
Epoch 167/200
227/227 [==============================] - 0s 785us/step - loss: 0.1002 - accuracy: 0.9471 - mae: 0.1002 - pearson_correlation: 0.7400 - euclidean_distance: 0.1604
Epoch 168/200
227/227 [==============================] - 0s 789us/step - loss: 0.1007 - accuracy: 0.9431 - mae: 0.1007 - pearson_correlation: 0.7338 - euclidean_distance: 0.1612
Epoch 169/200
227/227 [==============================] - 0s 782us/step - loss: 0.0982 - accuracy: 0.9502 - mae: 0.0982 - pearson_correlation: 0.7486 - euclidean_distance: 0.1579
Epoch 170/200
227/227 [==============================] - 0s 783us/step - loss: 0.1002 - accuracy: 0.9466 - mae: 0.1002 - pearson_correlation: 0.7343 - euclidean_distance: 0.1610
Epoch 171/200
227/227 [==============================] - 0s 785us/step - loss: 0.0999 - accuracy: 0.9453 - mae: 0.0999 - pearson_correlation: 0.7329 - euclidean_distance: 0.1605
Epoch 172/200
227/227 [==============================] - 0s 786us/step - loss: 0.1010 - accuracy: 0.9458 - mae: 0.1010 - pearson_correlation: 0.7338 - euclidean_distance: 0.1623
Epoch 173/200
227/227 [==============================] - 0s 782us/step - loss: 0.1002 - accuracy: 0.9431 - mae: 0.1002 - pearson_correlation: 0.7396 - euclidean_distance: 0.1609
Epoch 174/200
227/227 [==============================] - 0s 782us/step - loss: 0.0988 - accuracy: 0.9480 - mae: 0.0988 - pearson_correlation: 0.7428 - euclidean_distance: 0.1590
Epoch 175/200
227/227 [==============================] - 0s 785us/step - loss: 0.0999 - accuracy: 0.9475 - mae: 0.0999 - pearson_correlation: 0.7331 - euclidean_distance: 0.1605
Epoch 176/200
227/227 [==============================] - 0s 785us/step - loss: 0.0967 - accuracy: 0.9511 - mae: 0.0967 - pearson_correlation: 0.7464 - euclidean_distance: 0.1557
Epoch 177/200
227/227 [==============================] - 0s 782us/step - loss: 0.0976 - accuracy: 0.9506 - mae: 0.0976 - pearson_correlation: 0.7403 - euclidean_distance: 0.1573
Epoch 178/200
227/227 [==============================] - 0s 782us/step - loss: 0.0982 - accuracy: 0.9453 - mae: 0.0982 - pearson_correlation: 0.7380 - euclidean_distance: 0.1580
Epoch 179/200
227/227 [==============================] - 0s 782us/step - loss: 0.0963 - accuracy: 0.9511 - mae: 0.0963 - pearson_correlation: 0.7522 - euclidean_distance: 0.1544
Epoch 180/200
227/227 [==============================] - 0s 788us/step - loss: 0.0978 - accuracy: 0.9497 - mae: 0.0978 - pearson_correlation: 0.7454 - euclidean_distance: 0.1571
Epoch 181/200
227/227 [==============================] - 0s 783us/step - loss: 0.0978 - accuracy: 0.9480 - mae: 0.0978 - pearson_correlation: 0.7374 - euclidean_distance: 0.1573
Epoch 182/200
227/227 [==============================] - 0s 784us/step - loss: 0.0966 - accuracy: 0.9489 - mae: 0.0966 - pearson_correlation: 0.7509 - euclidean_distance: 0.1556
Epoch 183/200
227/227 [==============================] - 0s 786us/step - loss: 0.0973 - accuracy: 0.9462 - mae: 0.0973 - pearson_correlation: 0.7459 - euclidean_distance: 0.1566
Epoch 184/200
227/227 [==============================] - 0s 788us/step - loss: 0.0968 - accuracy: 0.9453 - mae: 0.0968 - pearson_correlation: 0.7437 - euclidean_distance: 0.1562
Epoch 185/200
227/227 [==============================] - 0s 783us/step - loss: 0.0990 - accuracy: 0.9466 - mae: 0.0990 - pearson_correlation: 0.7459 - euclidean_distance: 0.1586
Epoch 186/200
227/227 [==============================] - 0s 781us/step - loss: 0.0964 - accuracy: 0.9506 - mae: 0.0964 - pearson_correlation: 0.7463 - euclidean_distance: 0.1544
Epoch 187/200
227/227 [==============================] - 0s 786us/step - loss: 0.0935 - accuracy: 0.9506 - mae: 0.0935 - pearson_correlation: 0.7615 - euclidean_distance: 0.1506
Epoch 188/200
227/227 [==============================] - 0s 785us/step - loss: 0.0937 - accuracy: 0.9519 - mae: 0.0937 - pearson_correlation: 0.7545 - euclidean_distance: 0.1514
Epoch 189/200
227/227 [==============================] - 0s 782us/step - loss: 0.0971 - accuracy: 0.9506 - mae: 0.0971 - pearson_correlation: 0.7433 - euclidean_distance: 0.1561
Epoch 190/200
227/227 [==============================] - 0s 783us/step - loss: 0.0943 - accuracy: 0.9515 - mae: 0.0943 - pearson_correlation: 0.7553 - euclidean_distance: 0.1518
Epoch 191/200
227/227 [==============================] - 0s 786us/step - loss: 0.0956 - accuracy: 0.9489 - mae: 0.0956 - pearson_correlation: 0.7477 - euclidean_distance: 0.1541
Epoch 192/200
227/227 [==============================] - 0s 784us/step - loss: 0.0953 - accuracy: 0.9489 - mae: 0.0953 - pearson_correlation: 0.7502 - euclidean_distance: 0.1531
Epoch 193/200
227/227 [==============================] - 0s 788us/step - loss: 0.0932 - accuracy: 0.9506 - mae: 0.0932 - pearson_correlation: 0.7582 - euclidean_distance: 0.1497
Epoch 194/200
227/227 [==============================] - 0s 785us/step - loss: 0.0944 - accuracy: 0.9546 - mae: 0.0944 - pearson_correlation: 0.7487 - euclidean_distance: 0.1519
Epoch 195/200
227/227 [==============================] - 0s 773us/step - loss: 0.0959 - accuracy: 0.9524 - mae: 0.0959 - pearson_correlation: 0.7519 - euclidean_distance: 0.1543
Epoch 196/200
227/227 [==============================] - 0s 770us/step - loss: 0.0942 - accuracy: 0.9519 - mae: 0.0942 - pearson_correlation: 0.7572 - euclidean_distance: 0.1512
Epoch 197/200
227/227 [==============================] - 0s 773us/step - loss: 0.0942 - accuracy: 0.9506 - mae: 0.0942 - pearson_correlation: 0.7535 - euclidean_distance: 0.1519
Epoch 198/200
227/227 [==============================] - 0s 779us/step - loss: 0.0934 - accuracy: 0.9506 - mae: 0.0934 - pearson_correlation: 0.7594 - euclidean_distance: 0.1498
Epoch 199/200
227/227 [==============================] - 0s 772us/step - loss: 0.0935 - accuracy: 0.9497 - mae: 0.0935 - pearson_correlation: 0.7557 - euclidean_distance: 0.1509
Epoch 200/200
227/227 [==============================] - 0s 783us/step - loss: 0.0922 - accuracy: 0.9502 - mae: 0.0922 - pearson_correlation: 0.7563 - euclidean_distance: 0.1487
114/114 [==============================] - 0s 435us/step
Epoch 1/250
227/227 [==============================] - 1s 814us/step - loss: 0.3327 - accuracy: 0.6299 - mae: 0.3327 - pearson_correlation: 0.0836 - euclidean_distance: 0.5128
Epoch 2/250
227/227 [==============================] - 0s 794us/step - loss: 0.3268 - accuracy: 0.6378 - mae: 0.3268 - pearson_correlation: 0.0904 - euclidean_distance: 0.5038
Epoch 3/250
227/227 [==============================] - 0s 794us/step - loss: 0.3215 - accuracy: 0.6630 - mae: 0.3215 - pearson_correlation: 0.0995 - euclidean_distance: 0.4967
Epoch 4/250
227/227 [==============================] - 0s 792us/step - loss: 0.3147 - accuracy: 0.6745 - mae: 0.3147 - pearson_correlation: 0.1036 - euclidean_distance: 0.4865
Epoch 5/250
227/227 [==============================] - 0s 801us/step - loss: 0.3093 - accuracy: 0.6811 - mae: 0.3093 - pearson_correlation: 0.1184 - euclidean_distance: 0.4790
Epoch 6/250
227/227 [==============================] - 0s 786us/step - loss: 0.3040 - accuracy: 0.6806 - mae: 0.3040 - pearson_correlation: 0.1213 - euclidean_distance: 0.4711
Epoch 7/250
227/227 [==============================] - 0s 788us/step - loss: 0.2968 - accuracy: 0.7164 - mae: 0.2968 - pearson_correlation: 0.1342 - euclidean_distance: 0.4597
Epoch 8/250
227/227 [==============================] - 0s 791us/step - loss: 0.2916 - accuracy: 0.7239 - mae: 0.2916 - pearson_correlation: 0.1416 - euclidean_distance: 0.4529
Epoch 9/250
227/227 [==============================] - 0s 789us/step - loss: 0.2842 - accuracy: 0.7353 - mae: 0.2842 - pearson_correlation: 0.1516 - euclidean_distance: 0.4425
Epoch 10/250
227/227 [==============================] - 0s 795us/step - loss: 0.2827 - accuracy: 0.7397 - mae: 0.2827 - pearson_correlation: 0.1649 - euclidean_distance: 0.4394
Epoch 11/250
227/227 [==============================] - 0s 791us/step - loss: 0.2723 - accuracy: 0.7539 - mae: 0.2723 - pearson_correlation: 0.1734 - euclidean_distance: 0.4246
Epoch 12/250
227/227 [==============================] - 0s 789us/step - loss: 0.2635 - accuracy: 0.7578 - mae: 0.2635 - pearson_correlation: 0.1946 - euclidean_distance: 0.4124
Epoch 13/250
227/227 [==============================] - 0s 790us/step - loss: 0.2594 - accuracy: 0.7693 - mae: 0.2594 - pearson_correlation: 0.1957 - euclidean_distance: 0.4059
Epoch 14/250
227/227 [==============================] - 0s 789us/step - loss: 0.2579 - accuracy: 0.7821 - mae: 0.2579 - pearson_correlation: 0.2074 - euclidean_distance: 0.4033
Epoch 15/250
227/227 [==============================] - 0s 792us/step - loss: 0.2503 - accuracy: 0.7980 - mae: 0.2503 - pearson_correlation: 0.2271 - euclidean_distance: 0.3917
Epoch 16/250
227/227 [==============================] - 0s 852us/step - loss: 0.2428 - accuracy: 0.8072 - mae: 0.2428 - pearson_correlation: 0.2389 - euclidean_distance: 0.3813
Epoch 17/250
227/227 [==============================] - 0s 871us/step - loss: 0.2387 - accuracy: 0.8086 - mae: 0.2387 - pearson_correlation: 0.2473 - euclidean_distance: 0.3750
Epoch 18/250
227/227 [==============================] - 0s 873us/step - loss: 0.2313 - accuracy: 0.8209 - mae: 0.2313 - pearson_correlation: 0.2655 - euclidean_distance: 0.3641
Epoch 19/250
227/227 [==============================] - 0s 792us/step - loss: 0.2259 - accuracy: 0.8319 - mae: 0.2259 - pearson_correlation: 0.2812 - euclidean_distance: 0.3553
Epoch 20/250
227/227 [==============================] - 0s 785us/step - loss: 0.2197 - accuracy: 0.8368 - mae: 0.2197 - pearson_correlation: 0.2961 - euclidean_distance: 0.3466
Epoch 21/250
227/227 [==============================] - 0s 789us/step - loss: 0.2158 - accuracy: 0.8394 - mae: 0.2158 - pearson_correlation: 0.3042 - euclidean_distance: 0.3412
Epoch 22/250
227/227 [==============================] - 0s 775us/step - loss: 0.2144 - accuracy: 0.8496 - mae: 0.2144 - pearson_correlation: 0.3038 - euclidean_distance: 0.3379
Epoch 23/250
227/227 [==============================] - 0s 775us/step - loss: 0.2034 - accuracy: 0.8624 - mae: 0.2034 - pearson_correlation: 0.3369 - euclidean_distance: 0.3217
Epoch 24/250
227/227 [==============================] - 0s 777us/step - loss: 0.2012 - accuracy: 0.8659 - mae: 0.2012 - pearson_correlation: 0.3520 - euclidean_distance: 0.3188
Epoch 25/250
227/227 [==============================] - 0s 771us/step - loss: 0.1977 - accuracy: 0.8738 - mae: 0.1977 - pearson_correlation: 0.3550 - euclidean_distance: 0.3140
Epoch 26/250
227/227 [==============================] - 0s 774us/step - loss: 0.1884 - accuracy: 0.8738 - mae: 0.1884 - pearson_correlation: 0.3829 - euclidean_distance: 0.2994
Epoch 27/250
227/227 [==============================] - 0s 772us/step - loss: 0.1856 - accuracy: 0.8862 - mae: 0.1856 - pearson_correlation: 0.3977 - euclidean_distance: 0.2950
Epoch 28/250
227/227 [==============================] - 0s 776us/step - loss: 0.1840 - accuracy: 0.8760 - mae: 0.1840 - pearson_correlation: 0.3975 - euclidean_distance: 0.2925
Epoch 29/250
227/227 [==============================] - 0s 772us/step - loss: 0.1781 - accuracy: 0.8805 - mae: 0.1781 - pearson_correlation: 0.4170 - euclidean_distance: 0.2837
Epoch 30/250
227/227 [==============================] - 0s 769us/step - loss: 0.1806 - accuracy: 0.8950 - mae: 0.1806 - pearson_correlation: 0.4160 - euclidean_distance: 0.2873
Epoch 31/250
227/227 [==============================] - 0s 776us/step - loss: 0.1716 - accuracy: 0.8880 - mae: 0.1716 - pearson_correlation: 0.4349 - euclidean_distance: 0.2739
Epoch 32/250
227/227 [==============================] - 0s 773us/step - loss: 0.1714 - accuracy: 0.9038 - mae: 0.1714 - pearson_correlation: 0.4475 - euclidean_distance: 0.2726
Epoch 33/250
227/227 [==============================] - 0s 772us/step - loss: 0.1674 - accuracy: 0.9034 - mae: 0.1674 - pearson_correlation: 0.4634 - euclidean_distance: 0.2662
Epoch 34/250
227/227 [==============================] - 0s 771us/step - loss: 0.1648 - accuracy: 0.9149 - mae: 0.1648 - pearson_correlation: 0.4730 - euclidean_distance: 0.2631
Epoch 35/250
227/227 [==============================] - 0s 767us/step - loss: 0.1622 - accuracy: 0.9166 - mae: 0.1622 - pearson_correlation: 0.4899 - euclidean_distance: 0.2577
Epoch 36/250
227/227 [==============================] - 0s 772us/step - loss: 0.1596 - accuracy: 0.9175 - mae: 0.1596 - pearson_correlation: 0.4899 - euclidean_distance: 0.2546
Epoch 37/250
227/227 [==============================] - 0s 770us/step - loss: 0.1605 - accuracy: 0.9180 - mae: 0.1605 - pearson_correlation: 0.4904 - euclidean_distance: 0.2563
Epoch 38/250
227/227 [==============================] - 0s 776us/step - loss: 0.1610 - accuracy: 0.9228 - mae: 0.1610 - pearson_correlation: 0.4951 - euclidean_distance: 0.2550
Epoch 39/250
227/227 [==============================] - 0s 774us/step - loss: 0.1584 - accuracy: 0.9255 - mae: 0.1584 - pearson_correlation: 0.4969 - euclidean_distance: 0.2520
Epoch 40/250
227/227 [==============================] - 0s 773us/step - loss: 0.1537 - accuracy: 0.9281 - mae: 0.1537 - pearson_correlation: 0.5213 - euclidean_distance: 0.2438
Epoch 41/250
227/227 [==============================] - 0s 775us/step - loss: 0.1503 - accuracy: 0.9294 - mae: 0.1503 - pearson_correlation: 0.5336 - euclidean_distance: 0.2394
Epoch 42/250
227/227 [==============================] - 0s 773us/step - loss: 0.1520 - accuracy: 0.9294 - mae: 0.1520 - pearson_correlation: 0.5386 - euclidean_distance: 0.2412
Epoch 43/250
227/227 [==============================] - 0s 772us/step - loss: 0.1515 - accuracy: 0.9325 - mae: 0.1515 - pearson_correlation: 0.5420 - euclidean_distance: 0.2413
Epoch 44/250
227/227 [==============================] - 0s 773us/step - loss: 0.1496 - accuracy: 0.9360 - mae: 0.1496 - pearson_correlation: 0.5492 - euclidean_distance: 0.2372
Epoch 45/250
227/227 [==============================] - 0s 778us/step - loss: 0.1479 - accuracy: 0.9356 - mae: 0.1479 - pearson_correlation: 0.5563 - euclidean_distance: 0.2356
Epoch 46/250
227/227 [==============================] - 0s 776us/step - loss: 0.1467 - accuracy: 0.9396 - mae: 0.1467 - pearson_correlation: 0.5582 - euclidean_distance: 0.2330
Epoch 47/250
227/227 [==============================] - 0s 771us/step - loss: 0.1470 - accuracy: 0.9374 - mae: 0.1470 - pearson_correlation: 0.5569 - euclidean_distance: 0.2328
Epoch 48/250
227/227 [==============================] - 0s 774us/step - loss: 0.1475 - accuracy: 0.9418 - mae: 0.1475 - pearson_correlation: 0.5588 - euclidean_distance: 0.2341
Epoch 49/250
227/227 [==============================] - 0s 772us/step - loss: 0.1450 - accuracy: 0.9435 - mae: 0.1450 - pearson_correlation: 0.5660 - euclidean_distance: 0.2310
Epoch 50/250
227/227 [==============================] - 0s 773us/step - loss: 0.1433 - accuracy: 0.9422 - mae: 0.1433 - pearson_correlation: 0.5795 - euclidean_distance: 0.2275
Epoch 51/250
227/227 [==============================] - 0s 773us/step - loss: 0.1444 - accuracy: 0.9422 - mae: 0.1444 - pearson_correlation: 0.5747 - euclidean_distance: 0.2284
Epoch 52/250
227/227 [==============================] - 0s 772us/step - loss: 0.1430 - accuracy: 0.9449 - mae: 0.1430 - pearson_correlation: 0.5800 - euclidean_distance: 0.2265
Epoch 53/250
227/227 [==============================] - 0s 773us/step - loss: 0.1392 - accuracy: 0.9466 - mae: 0.1392 - pearson_correlation: 0.5987 - euclidean_distance: 0.2204
Epoch 54/250
227/227 [==============================] - 0s 775us/step - loss: 0.1438 - accuracy: 0.9453 - mae: 0.1438 - pearson_correlation: 0.5803 - euclidean_distance: 0.2282
Epoch 55/250
227/227 [==============================] - 0s 772us/step - loss: 0.1420 - accuracy: 0.9475 - mae: 0.1420 - pearson_correlation: 0.5841 - euclidean_distance: 0.2249
Epoch 56/250
227/227 [==============================] - 0s 781us/step - loss: 0.1373 - accuracy: 0.9449 - mae: 0.1373 - pearson_correlation: 0.6059 - euclidean_distance: 0.2175
Epoch 57/250
227/227 [==============================] - 0s 775us/step - loss: 0.1380 - accuracy: 0.9471 - mae: 0.1380 - pearson_correlation: 0.6023 - euclidean_distance: 0.2190
Epoch 58/250
227/227 [==============================] - 0s 772us/step - loss: 0.1436 - accuracy: 0.9497 - mae: 0.1436 - pearson_correlation: 0.5848 - euclidean_distance: 0.2275
Epoch 59/250
227/227 [==============================] - 0s 773us/step - loss: 0.1396 - accuracy: 0.9471 - mae: 0.1396 - pearson_correlation: 0.6060 - euclidean_distance: 0.2211
Epoch 60/250
227/227 [==============================] - 0s 775us/step - loss: 0.1395 - accuracy: 0.9502 - mae: 0.1395 - pearson_correlation: 0.6034 - euclidean_distance: 0.2208
Epoch 61/250
227/227 [==============================] - 0s 779us/step - loss: 0.1407 - accuracy: 0.9488 - mae: 0.1407 - pearson_correlation: 0.6006 - euclidean_distance: 0.2225
Epoch 62/250
227/227 [==============================] - 0s 769us/step - loss: 0.1352 - accuracy: 0.9524 - mae: 0.1352 - pearson_correlation: 0.6184 - euclidean_distance: 0.2144
Epoch 63/250
227/227 [==============================] - 0s 773us/step - loss: 0.1341 - accuracy: 0.9510 - mae: 0.1341 - pearson_correlation: 0.6211 - euclidean_distance: 0.2123
Epoch 64/250
227/227 [==============================] - 0s 772us/step - loss: 0.1333 - accuracy: 0.9497 - mae: 0.1333 - pearson_correlation: 0.6315 - euclidean_distance: 0.2109
Epoch 65/250
227/227 [==============================] - 0s 772us/step - loss: 0.1349 - accuracy: 0.9471 - mae: 0.1349 - pearson_correlation: 0.6204 - euclidean_distance: 0.2135
Epoch 66/250
227/227 [==============================] - 0s 772us/step - loss: 0.1344 - accuracy: 0.9537 - mae: 0.1344 - pearson_correlation: 0.6276 - euclidean_distance: 0.2126
Epoch 67/250
227/227 [==============================] - 0s 774us/step - loss: 0.1330 - accuracy: 0.9506 - mae: 0.1330 - pearson_correlation: 0.6273 - euclidean_distance: 0.2109
Epoch 68/250
227/227 [==============================] - 0s 774us/step - loss: 0.1334 - accuracy: 0.9488 - mae: 0.1334 - pearson_correlation: 0.6330 - euclidean_distance: 0.2106
Epoch 69/250
227/227 [==============================] - 0s 772us/step - loss: 0.1325 - accuracy: 0.9502 - mae: 0.1325 - pearson_correlation: 0.6344 - euclidean_distance: 0.2097
Epoch 70/250
227/227 [==============================] - 0s 771us/step - loss: 0.1321 - accuracy: 0.9524 - mae: 0.1321 - pearson_correlation: 0.6369 - euclidean_distance: 0.2095
Epoch 71/250
227/227 [==============================] - 0s 774us/step - loss: 0.1332 - accuracy: 0.9537 - mae: 0.1332 - pearson_correlation: 0.6335 - euclidean_distance: 0.2097
Epoch 72/250
227/227 [==============================] - 0s 771us/step - loss: 0.1291 - accuracy: 0.9519 - mae: 0.1291 - pearson_correlation: 0.6450 - euclidean_distance: 0.2042
Epoch 73/250
227/227 [==============================] - 0s 773us/step - loss: 0.1314 - accuracy: 0.9524 - mae: 0.1314 - pearson_correlation: 0.6366 - euclidean_distance: 0.2080
Epoch 74/250
227/227 [==============================] - 0s 773us/step - loss: 0.1333 - accuracy: 0.9550 - mae: 0.1333 - pearson_correlation: 0.6298 - euclidean_distance: 0.2107
Epoch 75/250
227/227 [==============================] - 0s 773us/step - loss: 0.1291 - accuracy: 0.9541 - mae: 0.1291 - pearson_correlation: 0.6458 - euclidean_distance: 0.2049
Epoch 76/250
227/227 [==============================] - 0s 773us/step - loss: 0.1276 - accuracy: 0.9537 - mae: 0.1276 - pearson_correlation: 0.6538 - euclidean_distance: 0.2017
Epoch 77/250
227/227 [==============================] - 0s 772us/step - loss: 0.1303 - accuracy: 0.9550 - mae: 0.1303 - pearson_correlation: 0.6476 - euclidean_distance: 0.2057
Epoch 78/250
227/227 [==============================] - 0s 772us/step - loss: 0.1318 - accuracy: 0.9554 - mae: 0.1318 - pearson_correlation: 0.6373 - euclidean_distance: 0.2076
Epoch 79/250
227/227 [==============================] - 0s 776us/step - loss: 0.1296 - accuracy: 0.9537 - mae: 0.1296 - pearson_correlation: 0.6547 - euclidean_distance: 0.2049
Epoch 80/250
227/227 [==============================] - 0s 773us/step - loss: 0.1287 - accuracy: 0.9532 - mae: 0.1287 - pearson_correlation: 0.6537 - euclidean_distance: 0.2023
Epoch 81/250
227/227 [==============================] - 0s 769us/step - loss: 0.1254 - accuracy: 0.9532 - mae: 0.1254 - pearson_correlation: 0.6554 - euclidean_distance: 0.1980
Epoch 82/250
227/227 [==============================] - 0s 767us/step - loss: 0.1262 - accuracy: 0.9541 - mae: 0.1262 - pearson_correlation: 0.6541 - euclidean_distance: 0.2001
Epoch 83/250
227/227 [==============================] - 0s 769us/step - loss: 0.1256 - accuracy: 0.9541 - mae: 0.1256 - pearson_correlation: 0.6572 - euclidean_distance: 0.1987
Epoch 84/250
227/227 [==============================] - 0s 772us/step - loss: 0.1258 - accuracy: 0.9546 - mae: 0.1258 - pearson_correlation: 0.6658 - euclidean_distance: 0.1988
Epoch 85/250
227/227 [==============================] - 0s 773us/step - loss: 0.1243 - accuracy: 0.9554 - mae: 0.1243 - pearson_correlation: 0.6659 - euclidean_distance: 0.1972
Epoch 86/250
227/227 [==============================] - 0s 771us/step - loss: 0.1260 - accuracy: 0.9554 - mae: 0.1260 - pearson_correlation: 0.6630 - euclidean_distance: 0.1989
Epoch 87/250
227/227 [==============================] - 0s 770us/step - loss: 0.1246 - accuracy: 0.9541 - mae: 0.1246 - pearson_correlation: 0.6637 - euclidean_distance: 0.1972
Epoch 88/250
227/227 [==============================] - 0s 770us/step - loss: 0.1235 - accuracy: 0.9550 - mae: 0.1235 - pearson_correlation: 0.6770 - euclidean_distance: 0.1951
Epoch 89/250
227/227 [==============================] - 0s 773us/step - loss: 0.1233 - accuracy: 0.9554 - mae: 0.1233 - pearson_correlation: 0.6699 - euclidean_distance: 0.1950
Epoch 90/250
227/227 [==============================] - 0s 772us/step - loss: 0.1212 - accuracy: 0.9546 - mae: 0.1212 - pearson_correlation: 0.6791 - euclidean_distance: 0.1913
Epoch 91/250
227/227 [==============================] - 0s 773us/step - loss: 0.1245 - accuracy: 0.9559 - mae: 0.1245 - pearson_correlation: 0.6733 - euclidean_distance: 0.1962
Epoch 92/250
227/227 [==============================] - 0s 770us/step - loss: 0.1232 - accuracy: 0.9546 - mae: 0.1232 - pearson_correlation: 0.6735 - euclidean_distance: 0.1943
Epoch 93/250
227/227 [==============================] - 0s 772us/step - loss: 0.1251 - accuracy: 0.9554 - mae: 0.1251 - pearson_correlation: 0.6706 - euclidean_distance: 0.1965
Epoch 94/250
227/227 [==============================] - 0s 772us/step - loss: 0.1233 - accuracy: 0.9554 - mae: 0.1233 - pearson_correlation: 0.6750 - euclidean_distance: 0.1945
Epoch 95/250
227/227 [==============================] - 0s 772us/step - loss: 0.1223 - accuracy: 0.9546 - mae: 0.1223 - pearson_correlation: 0.6708 - euclidean_distance: 0.1933
Epoch 96/250
227/227 [==============================] - 0s 771us/step - loss: 0.1232 - accuracy: 0.9541 - mae: 0.1232 - pearson_correlation: 0.6795 - euclidean_distance: 0.1947
Epoch 97/250
227/227 [==============================] - 0s 771us/step - loss: 0.1223 - accuracy: 0.9541 - mae: 0.1223 - pearson_correlation: 0.6726 - euclidean_distance: 0.1930
Epoch 98/250
227/227 [==============================] - 0s 768us/step - loss: 0.1198 - accuracy: 0.9550 - mae: 0.1198 - pearson_correlation: 0.6825 - euclidean_distance: 0.1895
Epoch 99/250
227/227 [==============================] - 0s 773us/step - loss: 0.1205 - accuracy: 0.9559 - mae: 0.1205 - pearson_correlation: 0.6851 - euclidean_distance: 0.1900
Epoch 100/250
227/227 [==============================] - 0s 771us/step - loss: 0.1212 - accuracy: 0.9550 - mae: 0.1212 - pearson_correlation: 0.6854 - euclidean_distance: 0.1914
Epoch 101/250
227/227 [==============================] - 0s 771us/step - loss: 0.1183 - accuracy: 0.9550 - mae: 0.1183 - pearson_correlation: 0.6934 - euclidean_distance: 0.1867
Epoch 102/250
227/227 [==============================] - 0s 774us/step - loss: 0.1224 - accuracy: 0.9554 - mae: 0.1224 - pearson_correlation: 0.6721 - euclidean_distance: 0.1934
Epoch 103/250
227/227 [==============================] - 0s 772us/step - loss: 0.1206 - accuracy: 0.9554 - mae: 0.1206 - pearson_correlation: 0.6840 - euclidean_distance: 0.1902
Epoch 104/250
227/227 [==============================] - 0s 799us/step - loss: 0.1212 - accuracy: 0.9554 - mae: 0.1212 - pearson_correlation: 0.6835 - euclidean_distance: 0.1912
Epoch 105/250
227/227 [==============================] - 0s 788us/step - loss: 0.1234 - accuracy: 0.9546 - mae: 0.1234 - pearson_correlation: 0.6853 - euclidean_distance: 0.1940
Epoch 106/250
227/227 [==============================] - 0s 830us/step - loss: 0.1178 - accuracy: 0.9559 - mae: 0.1178 - pearson_correlation: 0.6966 - euclidean_distance: 0.1855
Epoch 107/250
227/227 [==============================] - 0s 867us/step - loss: 0.1202 - accuracy: 0.9554 - mae: 0.1202 - pearson_correlation: 0.6862 - euclidean_distance: 0.1900
Epoch 108/250
227/227 [==============================] - 0s 853us/step - loss: 0.1180 - accuracy: 0.9554 - mae: 0.1180 - pearson_correlation: 0.6927 - euclidean_distance: 0.1865
Epoch 109/250
227/227 [==============================] - 0s 897us/step - loss: 0.1179 - accuracy: 0.9559 - mae: 0.1179 - pearson_correlation: 0.6890 - euclidean_distance: 0.1864
Epoch 110/250
227/227 [==============================] - 0s 793us/step - loss: 0.1162 - accuracy: 0.9554 - mae: 0.1162 - pearson_correlation: 0.6988 - euclidean_distance: 0.1840
Epoch 111/250
227/227 [==============================] - 0s 771us/step - loss: 0.1190 - accuracy: 0.9559 - mae: 0.1190 - pearson_correlation: 0.6915 - euclidean_distance: 0.1885
Epoch 112/250
227/227 [==============================] - 0s 790us/step - loss: 0.1185 - accuracy: 0.9554 - mae: 0.1185 - pearson_correlation: 0.6887 - euclidean_distance: 0.1871
Epoch 113/250
227/227 [==============================] - 0s 777us/step - loss: 0.1191 - accuracy: 0.9554 - mae: 0.1191 - pearson_correlation: 0.6897 - euclidean_distance: 0.1880
Epoch 114/250
227/227 [==============================] - 0s 779us/step - loss: 0.1169 - accuracy: 0.9563 - mae: 0.1169 - pearson_correlation: 0.6959 - euclidean_distance: 0.1845
Epoch 115/250
227/227 [==============================] - 0s 776us/step - loss: 0.1165 - accuracy: 0.9559 - mae: 0.1165 - pearson_correlation: 0.7007 - euclidean_distance: 0.1832
Epoch 116/250
227/227 [==============================] - 0s 772us/step - loss: 0.1168 - accuracy: 0.9559 - mae: 0.1168 - pearson_correlation: 0.6957 - euclidean_distance: 0.1844
Epoch 117/250
227/227 [==============================] - 0s 784us/step - loss: 0.1168 - accuracy: 0.9546 - mae: 0.1168 - pearson_correlation: 0.6968 - euclidean_distance: 0.1844
Epoch 118/250
227/227 [==============================] - 0s 771us/step - loss: 0.1149 - accuracy: 0.9559 - mae: 0.1149 - pearson_correlation: 0.7018 - euclidean_distance: 0.1819
Epoch 119/250
227/227 [==============================] - 0s 771us/step - loss: 0.1149 - accuracy: 0.9559 - mae: 0.1149 - pearson_correlation: 0.6987 - euclidean_distance: 0.1815
Epoch 120/250
227/227 [==============================] - 0s 773us/step - loss: 0.1159 - accuracy: 0.9554 - mae: 0.1159 - pearson_correlation: 0.6982 - euclidean_distance: 0.1829
Epoch 121/250
227/227 [==============================] - 0s 772us/step - loss: 0.1126 - accuracy: 0.9559 - mae: 0.1126 - pearson_correlation: 0.7132 - euclidean_distance: 0.1779
Epoch 122/250
227/227 [==============================] - 0s 772us/step - loss: 0.1152 - accuracy: 0.9563 - mae: 0.1152 - pearson_correlation: 0.7015 - euclidean_distance: 0.1819
Epoch 123/250
227/227 [==============================] - 0s 774us/step - loss: 0.1154 - accuracy: 0.9563 - mae: 0.1154 - pearson_correlation: 0.7027 - euclidean_distance: 0.1821
Epoch 124/250
227/227 [==============================] - 0s 772us/step - loss: 0.1157 - accuracy: 0.9559 - mae: 0.1157 - pearson_correlation: 0.7026 - euclidean_distance: 0.1826
Epoch 125/250
227/227 [==============================] - 0s 774us/step - loss: 0.1150 - accuracy: 0.9563 - mae: 0.1150 - pearson_correlation: 0.7038 - euclidean_distance: 0.1812
Epoch 126/250
227/227 [==============================] - 0s 771us/step - loss: 0.1166 - accuracy: 0.9550 - mae: 0.1166 - pearson_correlation: 0.6979 - euclidean_distance: 0.1840
Epoch 127/250
227/227 [==============================] - 0s 775us/step - loss: 0.1109 - accuracy: 0.9559 - mae: 0.1109 - pearson_correlation: 0.7141 - euclidean_distance: 0.1754
Epoch 128/250
227/227 [==============================] - 0s 775us/step - loss: 0.1136 - accuracy: 0.9554 - mae: 0.1136 - pearson_correlation: 0.7152 - euclidean_distance: 0.1795
Epoch 129/250
227/227 [==============================] - 0s 772us/step - loss: 0.1131 - accuracy: 0.9550 - mae: 0.1131 - pearson_correlation: 0.7090 - euclidean_distance: 0.1783
Epoch 130/250
227/227 [==============================] - 0s 774us/step - loss: 0.1174 - accuracy: 0.9563 - mae: 0.1174 - pearson_correlation: 0.7026 - euclidean_distance: 0.1845
Epoch 131/250
227/227 [==============================] - 0s 773us/step - loss: 0.1106 - accuracy: 0.9559 - mae: 0.1106 - pearson_correlation: 0.7123 - euclidean_distance: 0.1751
Epoch 132/250
227/227 [==============================] - 0s 780us/step - loss: 0.1124 - accuracy: 0.9559 - mae: 0.1124 - pearson_correlation: 0.7112 - euclidean_distance: 0.1776
Epoch 133/250
227/227 [==============================] - 0s 800us/step - loss: 0.1076 - accuracy: 0.9563 - mae: 0.1076 - pearson_correlation: 0.7237 - euclidean_distance: 0.1703
Epoch 134/250
227/227 [==============================] - 0s 771us/step - loss: 0.1117 - accuracy: 0.9559 - mae: 0.1117 - pearson_correlation: 0.7197 - euclidean_distance: 0.1761
Epoch 135/250
227/227 [==============================] - 0s 774us/step - loss: 0.1134 - accuracy: 0.9563 - mae: 0.1134 - pearson_correlation: 0.7070 - euclidean_distance: 0.1790
Epoch 136/250
227/227 [==============================] - 0s 772us/step - loss: 0.1116 - accuracy: 0.9563 - mae: 0.1116 - pearson_correlation: 0.7097 - euclidean_distance: 0.1768
Epoch 137/250
227/227 [==============================] - 0s 768us/step - loss: 0.1123 - accuracy: 0.9563 - mae: 0.1123 - pearson_correlation: 0.7071 - euclidean_distance: 0.1774
Epoch 138/250
227/227 [==============================] - 0s 775us/step - loss: 0.1133 - accuracy: 0.9563 - mae: 0.1133 - pearson_correlation: 0.7081 - euclidean_distance: 0.1789
Epoch 139/250
227/227 [==============================] - 0s 774us/step - loss: 0.1075 - accuracy: 0.9554 - mae: 0.1075 - pearson_correlation: 0.7241 - euclidean_distance: 0.1704
Epoch 140/250
227/227 [==============================] - 0s 772us/step - loss: 0.1129 - accuracy: 0.9563 - mae: 0.1129 - pearson_correlation: 0.7130 - euclidean_distance: 0.1776
Epoch 141/250
227/227 [==============================] - 0s 771us/step - loss: 0.1118 - accuracy: 0.9563 - mae: 0.1118 - pearson_correlation: 0.7093 - euclidean_distance: 0.1762
Epoch 142/250
227/227 [==============================] - 0s 772us/step - loss: 0.1092 - accuracy: 0.9563 - mae: 0.1092 - pearson_correlation: 0.7216 - euclidean_distance: 0.1728
Epoch 143/250
227/227 [==============================] - 0s 773us/step - loss: 0.1089 - accuracy: 0.9559 - mae: 0.1089 - pearson_correlation: 0.7263 - euclidean_distance: 0.1718
Epoch 144/250
227/227 [==============================] - 0s 769us/step - loss: 0.1125 - accuracy: 0.9563 - mae: 0.1125 - pearson_correlation: 0.7162 - euclidean_distance: 0.1771
Epoch 145/250
227/227 [==============================] - 0s 770us/step - loss: 0.1106 - accuracy: 0.9563 - mae: 0.1106 - pearson_correlation: 0.7199 - euclidean_distance: 0.1744
Epoch 146/250
227/227 [==============================] - 0s 771us/step - loss: 0.1073 - accuracy: 0.9559 - mae: 0.1073 - pearson_correlation: 0.7307 - euclidean_distance: 0.1695
Epoch 147/250
227/227 [==============================] - 0s 772us/step - loss: 0.1098 - accuracy: 0.9563 - mae: 0.1098 - pearson_correlation: 0.7224 - euclidean_distance: 0.1733
Epoch 148/250
227/227 [==============================] - 0s 773us/step - loss: 0.1112 - accuracy: 0.9563 - mae: 0.1112 - pearson_correlation: 0.7134 - euclidean_distance: 0.1754
Epoch 149/250
227/227 [==============================] - 0s 774us/step - loss: 0.1082 - accuracy: 0.9563 - mae: 0.1082 - pearson_correlation: 0.7244 - euclidean_distance: 0.1704
Epoch 150/250
227/227 [==============================] - 0s 772us/step - loss: 0.1099 - accuracy: 0.9563 - mae: 0.1099 - pearson_correlation: 0.7178 - euclidean_distance: 0.1732
Epoch 151/250
227/227 [==============================] - 0s 773us/step - loss: 0.1082 - accuracy: 0.9563 - mae: 0.1082 - pearson_correlation: 0.7235 - euclidean_distance: 0.1702
Epoch 152/250
227/227 [==============================] - 0s 775us/step - loss: 0.1049 - accuracy: 0.9563 - mae: 0.1049 - pearson_correlation: 0.7346 - euclidean_distance: 0.1660
Epoch 153/250
227/227 [==============================] - 0s 769us/step - loss: 0.1088 - accuracy: 0.9563 - mae: 0.1088 - pearson_correlation: 0.7226 - euclidean_distance: 0.1717
Epoch 154/250
227/227 [==============================] - 0s 772us/step - loss: 0.1077 - accuracy: 0.9563 - mae: 0.1077 - pearson_correlation: 0.7225 - euclidean_distance: 0.1703
Epoch 155/250
227/227 [==============================] - 0s 775us/step - loss: 0.1082 - accuracy: 0.9559 - mae: 0.1082 - pearson_correlation: 0.7206 - euclidean_distance: 0.1714
Epoch 156/250
227/227 [==============================] - 0s 770us/step - loss: 0.1081 - accuracy: 0.9563 - mae: 0.1081 - pearson_correlation: 0.7211 - euclidean_distance: 0.1704
Epoch 157/250
227/227 [==============================] - 0s 773us/step - loss: 0.1050 - accuracy: 0.9563 - mae: 0.1050 - pearson_correlation: 0.7309 - euclidean_distance: 0.1661
Epoch 158/250
227/227 [==============================] - 0s 771us/step - loss: 0.1065 - accuracy: 0.9559 - mae: 0.1065 - pearson_correlation: 0.7312 - euclidean_distance: 0.1681
Epoch 159/250
227/227 [==============================] - 0s 769us/step - loss: 0.1075 - accuracy: 0.9563 - mae: 0.1075 - pearson_correlation: 0.7248 - euclidean_distance: 0.1698
Epoch 160/250
227/227 [==============================] - 0s 770us/step - loss: 0.1061 - accuracy: 0.9563 - mae: 0.1061 - pearson_correlation: 0.7305 - euclidean_distance: 0.1683
Epoch 161/250
227/227 [==============================] - 0s 771us/step - loss: 0.1061 - accuracy: 0.9563 - mae: 0.1061 - pearson_correlation: 0.7319 - euclidean_distance: 0.1675
Epoch 162/250
227/227 [==============================] - 0s 772us/step - loss: 0.1076 - accuracy: 0.9563 - mae: 0.1076 - pearson_correlation: 0.7286 - euclidean_distance: 0.1698
Epoch 163/250
227/227 [==============================] - 0s 772us/step - loss: 0.1075 - accuracy: 0.9563 - mae: 0.1075 - pearson_correlation: 0.7294 - euclidean_distance: 0.1693
Epoch 164/250
227/227 [==============================] - 0s 774us/step - loss: 0.1041 - accuracy: 0.9563 - mae: 0.1041 - pearson_correlation: 0.7313 - euclidean_distance: 0.1645
Epoch 165/250
227/227 [==============================] - 0s 771us/step - loss: 0.1035 - accuracy: 0.9563 - mae: 0.1035 - pearson_correlation: 0.7292 - euclidean_distance: 0.1636
Epoch 166/250
227/227 [==============================] - 0s 772us/step - loss: 0.1090 - accuracy: 0.9559 - mae: 0.1090 - pearson_correlation: 0.7248 - euclidean_distance: 0.1719
Epoch 167/250
227/227 [==============================] - 0s 773us/step - loss: 0.1036 - accuracy: 0.9563 - mae: 0.1036 - pearson_correlation: 0.7386 - euclidean_distance: 0.1642
Epoch 168/250
227/227 [==============================] - 0s 777us/step - loss: 0.1047 - accuracy: 0.9559 - mae: 0.1047 - pearson_correlation: 0.7339 - euclidean_distance: 0.1655
Epoch 169/250
227/227 [==============================] - 0s 772us/step - loss: 0.1080 - accuracy: 0.9559 - mae: 0.1080 - pearson_correlation: 0.7266 - euclidean_distance: 0.1707
Epoch 170/250
227/227 [==============================] - 0s 771us/step - loss: 0.1031 - accuracy: 0.9563 - mae: 0.1031 - pearson_correlation: 0.7405 - euclidean_distance: 0.1635
Epoch 171/250
227/227 [==============================] - 0s 772us/step - loss: 0.1051 - accuracy: 0.9563 - mae: 0.1051 - pearson_correlation: 0.7313 - euclidean_distance: 0.1658
Epoch 172/250
227/227 [==============================] - 0s 771us/step - loss: 0.1070 - accuracy: 0.9563 - mae: 0.1070 - pearson_correlation: 0.7283 - euclidean_distance: 0.1683
Epoch 173/250
227/227 [==============================] - 0s 774us/step - loss: 0.1052 - accuracy: 0.9563 - mae: 0.1052 - pearson_correlation: 0.7380 - euclidean_distance: 0.1657
Epoch 174/250
227/227 [==============================] - 0s 783us/step - loss: 0.1043 - accuracy: 0.9563 - mae: 0.1043 - pearson_correlation: 0.7311 - euclidean_distance: 0.1649
Epoch 175/250
227/227 [==============================] - 0s 773us/step - loss: 0.1017 - accuracy: 0.9563 - mae: 0.1017 - pearson_correlation: 0.7442 - euclidean_distance: 0.1612
Epoch 176/250
227/227 [==============================] - 0s 771us/step - loss: 0.1026 - accuracy: 0.9563 - mae: 0.1026 - pearson_correlation: 0.7400 - euclidean_distance: 0.1626
Epoch 177/250
227/227 [==============================] - 0s 771us/step - loss: 0.1028 - accuracy: 0.9563 - mae: 0.1028 - pearson_correlation: 0.7420 - euclidean_distance: 0.1626
Epoch 178/250
227/227 [==============================] - 0s 772us/step - loss: 0.1060 - accuracy: 0.9559 - mae: 0.1060 - pearson_correlation: 0.7373 - euclidean_distance: 0.1670
Epoch 179/250
227/227 [==============================] - 0s 772us/step - loss: 0.1043 - accuracy: 0.9563 - mae: 0.1043 - pearson_correlation: 0.7383 - euclidean_distance: 0.1642
Epoch 180/250
227/227 [==============================] - 0s 769us/step - loss: 0.1050 - accuracy: 0.9563 - mae: 0.1050 - pearson_correlation: 0.7326 - euclidean_distance: 0.1655
Epoch 181/250
227/227 [==============================] - 0s 774us/step - loss: 0.1037 - accuracy: 0.9563 - mae: 0.1037 - pearson_correlation: 0.7465 - euclidean_distance: 0.1632
Epoch 182/250
227/227 [==============================] - 0s 770us/step - loss: 0.1017 - accuracy: 0.9563 - mae: 0.1017 - pearson_correlation: 0.7404 - euclidean_distance: 0.1613
Epoch 183/250
227/227 [==============================] - 0s 769us/step - loss: 0.1051 - accuracy: 0.9563 - mae: 0.1051 - pearson_correlation: 0.7316 - euclidean_distance: 0.1664
Epoch 184/250
227/227 [==============================] - 0s 773us/step - loss: 0.1052 - accuracy: 0.9563 - mae: 0.1052 - pearson_correlation: 0.7387 - euclidean_distance: 0.1654
Epoch 185/250
227/227 [==============================] - 0s 771us/step - loss: 0.1043 - accuracy: 0.9563 - mae: 0.1043 - pearson_correlation: 0.7371 - euclidean_distance: 0.1647
Epoch 186/250
227/227 [==============================] - 0s 774us/step - loss: 0.1031 - accuracy: 0.9563 - mae: 0.1031 - pearson_correlation: 0.7423 - euclidean_distance: 0.1625
Epoch 187/250
227/227 [==============================] - 0s 774us/step - loss: 0.1021 - accuracy: 0.9563 - mae: 0.1021 - pearson_correlation: 0.7423 - euclidean_distance: 0.1610
Epoch 188/250
227/227 [==============================] - 0s 771us/step - loss: 0.1016 - accuracy: 0.9563 - mae: 0.1016 - pearson_correlation: 0.7464 - euclidean_distance: 0.1605
Epoch 189/250
227/227 [==============================] - 0s 770us/step - loss: 0.1024 - accuracy: 0.9563 - mae: 0.1024 - pearson_correlation: 0.7391 - euclidean_distance: 0.1620
Epoch 190/250
227/227 [==============================] - 0s 771us/step - loss: 0.1033 - accuracy: 0.9563 - mae: 0.1033 - pearson_correlation: 0.7372 - euclidean_distance: 0.1632
Epoch 191/250
227/227 [==============================] - 0s 771us/step - loss: 0.1012 - accuracy: 0.9559 - mae: 0.1012 - pearson_correlation: 0.7504 - euclidean_distance: 0.1596
Epoch 192/250
227/227 [==============================] - 0s 773us/step - loss: 0.1034 - accuracy: 0.9563 - mae: 0.1034 - pearson_correlation: 0.7369 - euclidean_distance: 0.1633
Epoch 193/250
227/227 [==============================] - 0s 770us/step - loss: 0.0990 - accuracy: 0.9563 - mae: 0.0990 - pearson_correlation: 0.7454 - euclidean_distance: 0.1569
Epoch 194/250
227/227 [==============================] - 0s 775us/step - loss: 0.1026 - accuracy: 0.9563 - mae: 0.1026 - pearson_correlation: 0.7409 - euclidean_distance: 0.1623
Epoch 195/250
227/227 [==============================] - 0s 805us/step - loss: 0.1031 - accuracy: 0.9563 - mae: 0.1031 - pearson_correlation: 0.7380 - euclidean_distance: 0.1630
Epoch 196/250
227/227 [==============================] - 0s 854us/step - loss: 0.0988 - accuracy: 0.9563 - mae: 0.0988 - pearson_correlation: 0.7504 - euclidean_distance: 0.1564
Epoch 197/250
227/227 [==============================] - 0s 870us/step - loss: 0.1011 - accuracy: 0.9559 - mae: 0.1011 - pearson_correlation: 0.7433 - euclidean_distance: 0.1604
Epoch 198/250
227/227 [==============================] - 0s 807us/step - loss: 0.1029 - accuracy: 0.9563 - mae: 0.1029 - pearson_correlation: 0.7377 - euclidean_distance: 0.1627
Epoch 199/250
227/227 [==============================] - 0s 773us/step - loss: 0.1015 - accuracy: 0.9563 - mae: 0.1015 - pearson_correlation: 0.7450 - euclidean_distance: 0.1602
Epoch 200/250
227/227 [==============================] - 0s 773us/step - loss: 0.0996 - accuracy: 0.9563 - mae: 0.0996 - pearson_correlation: 0.7484 - euclidean_distance: 0.1577
Epoch 201/250
227/227 [==============================] - 0s 774us/step - loss: 0.0992 - accuracy: 0.9563 - mae: 0.0992 - pearson_correlation: 0.7489 - euclidean_distance: 0.1575
Epoch 202/250
227/227 [==============================] - 0s 775us/step - loss: 0.0997 - accuracy: 0.9563 - mae: 0.0997 - pearson_correlation: 0.7448 - euclidean_distance: 0.1580
Epoch 203/250
227/227 [==============================] - 0s 773us/step - loss: 0.1005 - accuracy: 0.9563 - mae: 0.1005 - pearson_correlation: 0.7446 - euclidean_distance: 0.1592
Epoch 204/250
227/227 [==============================] - 0s 771us/step - loss: 0.0995 - accuracy: 0.9563 - mae: 0.0995 - pearson_correlation: 0.7486 - euclidean_distance: 0.1573
Epoch 205/250
227/227 [==============================] - 0s 774us/step - loss: 0.1012 - accuracy: 0.9563 - mae: 0.1012 - pearson_correlation: 0.7386 - euclidean_distance: 0.1604
Epoch 206/250
227/227 [==============================] - 0s 774us/step - loss: 0.0995 - accuracy: 0.9563 - mae: 0.0995 - pearson_correlation: 0.7505 - euclidean_distance: 0.1574
Epoch 207/250
227/227 [==============================] - 0s 774us/step - loss: 0.1022 - accuracy: 0.9563 - mae: 0.1022 - pearson_correlation: 0.7403 - euclidean_distance: 0.1613
Epoch 208/250
227/227 [==============================] - 0s 775us/step - loss: 0.0991 - accuracy: 0.9563 - mae: 0.0991 - pearson_correlation: 0.7546 - euclidean_distance: 0.1562
Epoch 209/250
227/227 [==============================] - 0s 778us/step - loss: 0.1008 - accuracy: 0.9563 - mae: 0.1008 - pearson_correlation: 0.7417 - euclidean_distance: 0.1591
Epoch 210/250
227/227 [==============================] - 0s 772us/step - loss: 0.0994 - accuracy: 0.9559 - mae: 0.0994 - pearson_correlation: 0.7511 - euclidean_distance: 0.1570
Epoch 211/250
227/227 [==============================] - 0s 773us/step - loss: 0.1005 - accuracy: 0.9563 - mae: 0.1005 - pearson_correlation: 0.7481 - euclidean_distance: 0.1589
Epoch 212/250
227/227 [==============================] - 0s 774us/step - loss: 0.0989 - accuracy: 0.9563 - mae: 0.0989 - pearson_correlation: 0.7505 - euclidean_distance: 0.1566
Epoch 213/250
227/227 [==============================] - 0s 771us/step - loss: 0.0988 - accuracy: 0.9563 - mae: 0.0988 - pearson_correlation: 0.7541 - euclidean_distance: 0.1565
Epoch 214/250
227/227 [==============================] - 0s 772us/step - loss: 0.0984 - accuracy: 0.9563 - mae: 0.0984 - pearson_correlation: 0.7565 - euclidean_distance: 0.1553
Epoch 215/250
227/227 [==============================] - 0s 773us/step - loss: 0.0994 - accuracy: 0.9563 - mae: 0.0994 - pearson_correlation: 0.7519 - euclidean_distance: 0.1569
Epoch 216/250
227/227 [==============================] - 0s 774us/step - loss: 0.0990 - accuracy: 0.9563 - mae: 0.0990 - pearson_correlation: 0.7525 - euclidean_distance: 0.1566
Epoch 217/250
227/227 [==============================] - 0s 775us/step - loss: 0.0983 - accuracy: 0.9563 - mae: 0.0983 - pearson_correlation: 0.7541 - euclidean_distance: 0.1556
Epoch 218/250
227/227 [==============================] - 0s 775us/step - loss: 0.0973 - accuracy: 0.9563 - mae: 0.0973 - pearson_correlation: 0.7597 - euclidean_distance: 0.1540
Epoch 219/250
227/227 [==============================] - 0s 775us/step - loss: 0.0986 - accuracy: 0.9563 - mae: 0.0986 - pearson_correlation: 0.7486 - euclidean_distance: 0.1556
Epoch 220/250
227/227 [==============================] - 0s 773us/step - loss: 0.0976 - accuracy: 0.9563 - mae: 0.0976 - pearson_correlation: 0.7537 - euclidean_distance: 0.1544
Epoch 221/250
227/227 [==============================] - 0s 769us/step - loss: 0.0987 - accuracy: 0.9563 - mae: 0.0987 - pearson_correlation: 0.7514 - euclidean_distance: 0.1561
Epoch 222/250
227/227 [==============================] - 0s 775us/step - loss: 0.0999 - accuracy: 0.9563 - mae: 0.0999 - pearson_correlation: 0.7499 - euclidean_distance: 0.1578
Epoch 223/250
227/227 [==============================] - 0s 773us/step - loss: 0.0996 - accuracy: 0.9563 - mae: 0.0996 - pearson_correlation: 0.7500 - euclidean_distance: 0.1577
Epoch 224/250
227/227 [==============================] - 0s 771us/step - loss: 0.0970 - accuracy: 0.9563 - mae: 0.0970 - pearson_correlation: 0.7619 - euclidean_distance: 0.1532
Epoch 225/250
227/227 [==============================] - 0s 773us/step - loss: 0.0967 - accuracy: 0.9563 - mae: 0.0967 - pearson_correlation: 0.7532 - euclidean_distance: 0.1531
Epoch 226/250
227/227 [==============================] - 0s 773us/step - loss: 0.0963 - accuracy: 0.9563 - mae: 0.0963 - pearson_correlation: 0.7564 - euclidean_distance: 0.1526
Epoch 227/250
227/227 [==============================] - 0s 773us/step - loss: 0.0965 - accuracy: 0.9563 - mae: 0.0965 - pearson_correlation: 0.7590 - euclidean_distance: 0.1526
Epoch 228/250
227/227 [==============================] - 0s 777us/step - loss: 0.0968 - accuracy: 0.9563 - mae: 0.0968 - pearson_correlation: 0.7541 - euclidean_distance: 0.1530
Epoch 229/250
227/227 [==============================] - 0s 785us/step - loss: 0.0971 - accuracy: 0.9563 - mae: 0.0971 - pearson_correlation: 0.7563 - euclidean_distance: 0.1539
Epoch 230/250
227/227 [==============================] - 0s 789us/step - loss: 0.0957 - accuracy: 0.9563 - mae: 0.0957 - pearson_correlation: 0.7631 - euclidean_distance: 0.1515
Epoch 231/250
227/227 [==============================] - 0s 769us/step - loss: 0.0969 - accuracy: 0.9563 - mae: 0.0969 - pearson_correlation: 0.7583 - euclidean_distance: 0.1533
Epoch 232/250
227/227 [==============================] - 0s 771us/step - loss: 0.0985 - accuracy: 0.9563 - mae: 0.0985 - pearson_correlation: 0.7524 - euclidean_distance: 0.1552
Epoch 233/250
227/227 [==============================] - 0s 773us/step - loss: 0.0977 - accuracy: 0.9563 - mae: 0.0977 - pearson_correlation: 0.7502 - euclidean_distance: 0.1545
Epoch 234/250
227/227 [==============================] - 0s 774us/step - loss: 0.0977 - accuracy: 0.9563 - mae: 0.0977 - pearson_correlation: 0.7491 - euclidean_distance: 0.1551
Epoch 235/250
227/227 [==============================] - 0s 770us/step - loss: 0.0969 - accuracy: 0.9563 - mae: 0.0969 - pearson_correlation: 0.7535 - euclidean_distance: 0.1539
Epoch 236/250
227/227 [==============================] - 0s 771us/step - loss: 0.0955 - accuracy: 0.9563 - mae: 0.0955 - pearson_correlation: 0.7559 - euclidean_distance: 0.1511
Epoch 237/250
227/227 [==============================] - 0s 774us/step - loss: 0.1000 - accuracy: 0.9563 - mae: 0.1000 - pearson_correlation: 0.7463 - euclidean_distance: 0.1583
Epoch 238/250
227/227 [==============================] - 0s 768us/step - loss: 0.0952 - accuracy: 0.9563 - mae: 0.0952 - pearson_correlation: 0.7563 - euclidean_distance: 0.1511
Epoch 239/250
227/227 [==============================] - 0s 774us/step - loss: 0.0959 - accuracy: 0.9563 - mae: 0.0959 - pearson_correlation: 0.7640 - euclidean_distance: 0.1517
Epoch 240/250
227/227 [==============================] - 0s 774us/step - loss: 0.0937 - accuracy: 0.9563 - mae: 0.0937 - pearson_correlation: 0.7688 - euclidean_distance: 0.1485
Epoch 241/250
227/227 [==============================] - 0s 772us/step - loss: 0.0952 - accuracy: 0.9563 - mae: 0.0952 - pearson_correlation: 0.7612 - euclidean_distance: 0.1507
Epoch 242/250
227/227 [==============================] - 0s 774us/step - loss: 0.0929 - accuracy: 0.9563 - mae: 0.0929 - pearson_correlation: 0.7698 - euclidean_distance: 0.1472
Epoch 243/250
227/227 [==============================] - 0s 777us/step - loss: 0.0959 - accuracy: 0.9563 - mae: 0.0959 - pearson_correlation: 0.7550 - euclidean_distance: 0.1519
Epoch 244/250
227/227 [==============================] - 0s 772us/step - loss: 0.0966 - accuracy: 0.9563 - mae: 0.0966 - pearson_correlation: 0.7590 - euclidean_distance: 0.1525
Epoch 245/250
227/227 [==============================] - 0s 773us/step - loss: 0.0946 - accuracy: 0.9563 - mae: 0.0946 - pearson_correlation: 0.7627 - euclidean_distance: 0.1502
Epoch 246/250
227/227 [==============================] - 0s 776us/step - loss: 0.0957 - accuracy: 0.9563 - mae: 0.0957 - pearson_correlation: 0.7557 - euclidean_distance: 0.1513
Epoch 247/250
227/227 [==============================] - 0s 773us/step - loss: 0.0926 - accuracy: 0.9563 - mae: 0.0926 - pearson_correlation: 0.7635 - euclidean_distance: 0.1474
Epoch 248/250
227/227 [==============================] - 0s 772us/step - loss: 0.0959 - accuracy: 0.9563 - mae: 0.0959 - pearson_correlation: 0.7600 - euclidean_distance: 0.1518
Epoch 249/250
227/227 [==============================] - 0s 773us/step - loss: 0.0945 - accuracy: 0.9563 - mae: 0.0945 - pearson_correlation: 0.7639 - euclidean_distance: 0.1500
Epoch 250/250
227/227 [==============================] - 0s 773us/step - loss: 0.0907 - accuracy: 0.9563 - mae: 0.0907 - pearson_correlation: 0.7680 - euclidean_distance: 0.1440
114/114 [==============================] - 0s 418us/step
Epoch 1/250
227/227 [==============================] - 1s 818us/step - loss: 0.8068 - accuracy: 0.9250 - mae: 0.8068 - pearson_correlation: 0.6443 - euclidean_distance: 1.2108
Epoch 2/250
227/227 [==============================] - 0s 778us/step - loss: 0.7874 - accuracy: 0.9197 - mae: 0.7874 - pearson_correlation: 0.6415 - euclidean_distance: 1.1827
Epoch 3/250
227/227 [==============================] - 0s 771us/step - loss: 0.7621 - accuracy: 0.9202 - mae: 0.7621 - pearson_correlation: 0.6409 - euclidean_distance: 1.1484
Epoch 4/250
227/227 [==============================] - 0s 779us/step - loss: 0.7351 - accuracy: 0.9091 - mae: 0.7351 - pearson_correlation: 0.6368 - euclidean_distance: 1.1092
Epoch 5/250
227/227 [==============================] - 0s 781us/step - loss: 0.7160 - accuracy: 0.9056 - mae: 0.7160 - pearson_correlation: 0.6251 - euclidean_distance: 1.0816
Epoch 6/250
227/227 [==============================] - 0s 777us/step - loss: 0.6944 - accuracy: 0.9113 - mae: 0.6944 - pearson_correlation: 0.6269 - euclidean_distance: 1.0502
Epoch 7/250
227/227 [==============================] - 0s 778us/step - loss: 0.6748 - accuracy: 0.9065 - mae: 0.6748 - pearson_correlation: 0.6294 - euclidean_distance: 1.0232
Epoch 8/250
227/227 [==============================] - 0s 777us/step - loss: 0.6523 - accuracy: 0.9007 - mae: 0.6523 - pearson_correlation: 0.6148 - euclidean_distance: 0.9882
Epoch 9/250
227/227 [==============================] - 0s 774us/step - loss: 0.6280 - accuracy: 0.8963 - mae: 0.6280 - pearson_correlation: 0.6150 - euclidean_distance: 0.9553
Epoch 10/250
227/227 [==============================] - 0s 778us/step - loss: 0.6094 - accuracy: 0.8915 - mae: 0.6094 - pearson_correlation: 0.6070 - euclidean_distance: 0.9275
Epoch 11/250
227/227 [==============================] - 0s 770us/step - loss: 0.5877 - accuracy: 0.8888 - mae: 0.5877 - pearson_correlation: 0.6040 - euclidean_distance: 0.8954
Epoch 12/250
227/227 [==============================] - 0s 773us/step - loss: 0.5690 - accuracy: 0.8919 - mae: 0.5690 - pearson_correlation: 0.6043 - euclidean_distance: 0.8674
Epoch 13/250
227/227 [==============================] - 0s 786us/step - loss: 0.5531 - accuracy: 0.8853 - mae: 0.5531 - pearson_correlation: 0.5992 - euclidean_distance: 0.8436
Epoch 14/250
227/227 [==============================] - 0s 785us/step - loss: 0.5364 - accuracy: 0.8875 - mae: 0.5364 - pearson_correlation: 0.5961 - euclidean_distance: 0.8157
Epoch 15/250
227/227 [==============================] - 0s 786us/step - loss: 0.5180 - accuracy: 0.8796 - mae: 0.5180 - pearson_correlation: 0.5910 - euclidean_distance: 0.7887
Epoch 16/250
227/227 [==============================] - 0s 792us/step - loss: 0.5017 - accuracy: 0.8805 - mae: 0.5017 - pearson_correlation: 0.5830 - euclidean_distance: 0.7657
Epoch 17/250
227/227 [==============================] - 0s 788us/step - loss: 0.4830 - accuracy: 0.8871 - mae: 0.4830 - pearson_correlation: 0.5869 - euclidean_distance: 0.7368
Epoch 18/250
227/227 [==============================] - 0s 778us/step - loss: 0.4661 - accuracy: 0.8730 - mae: 0.4661 - pearson_correlation: 0.5785 - euclidean_distance: 0.7124
Epoch 19/250
227/227 [==============================] - 0s 771us/step - loss: 0.4501 - accuracy: 0.8774 - mae: 0.4501 - pearson_correlation: 0.5768 - euclidean_distance: 0.6881
Epoch 20/250
227/227 [==============================] - 0s 774us/step - loss: 0.4362 - accuracy: 0.8818 - mae: 0.4362 - pearson_correlation: 0.5662 - euclidean_distance: 0.6664
Epoch 21/250
227/227 [==============================] - 0s 774us/step - loss: 0.4190 - accuracy: 0.8787 - mae: 0.4190 - pearson_correlation: 0.5706 - euclidean_distance: 0.6404
Epoch 22/250
227/227 [==============================] - 0s 772us/step - loss: 0.4067 - accuracy: 0.8738 - mae: 0.4067 - pearson_correlation: 0.5542 - euclidean_distance: 0.6223
Epoch 23/250
227/227 [==============================] - 0s 781us/step - loss: 0.3902 - accuracy: 0.8721 - mae: 0.3902 - pearson_correlation: 0.5558 - euclidean_distance: 0.5976
Epoch 24/250
227/227 [==============================] - 0s 769us/step - loss: 0.3813 - accuracy: 0.8774 - mae: 0.3813 - pearson_correlation: 0.5511 - euclidean_distance: 0.5844
Epoch 25/250
227/227 [==============================] - 0s 772us/step - loss: 0.3709 - accuracy: 0.8721 - mae: 0.3709 - pearson_correlation: 0.5484 - euclidean_distance: 0.5697
Epoch 26/250
227/227 [==============================] - 0s 772us/step - loss: 0.3581 - accuracy: 0.8690 - mae: 0.3581 - pearson_correlation: 0.5452 - euclidean_distance: 0.5494
Epoch 27/250
227/227 [==============================] - 0s 772us/step - loss: 0.3467 - accuracy: 0.8566 - mae: 0.3467 - pearson_correlation: 0.5294 - euclidean_distance: 0.5323
Epoch 28/250
227/227 [==============================] - 0s 772us/step - loss: 0.3362 - accuracy: 0.8668 - mae: 0.3362 - pearson_correlation: 0.5366 - euclidean_distance: 0.5179
Epoch 29/250
227/227 [==============================] - 0s 768us/step - loss: 0.3268 - accuracy: 0.8663 - mae: 0.3268 - pearson_correlation: 0.5317 - euclidean_distance: 0.5033
Epoch 30/250
227/227 [==============================] - 0s 776us/step - loss: 0.3147 - accuracy: 0.8756 - mae: 0.3147 - pearson_correlation: 0.5331 - euclidean_distance: 0.4847
Epoch 31/250
227/227 [==============================] - 0s 854us/step - loss: 0.3083 - accuracy: 0.8703 - mae: 0.3083 - pearson_correlation: 0.5381 - euclidean_distance: 0.4752
Epoch 32/250
227/227 [==============================] - 0s 862us/step - loss: 0.2997 - accuracy: 0.8650 - mae: 0.2997 - pearson_correlation: 0.5345 - euclidean_distance: 0.4631
Epoch 33/250
227/227 [==============================] - 0s 907us/step - loss: 0.2915 - accuracy: 0.8774 - mae: 0.2915 - pearson_correlation: 0.5308 - euclidean_distance: 0.4503
Epoch 34/250
227/227 [==============================] - 0s 795us/step - loss: 0.2842 - accuracy: 0.8672 - mae: 0.2842 - pearson_correlation: 0.5259 - euclidean_distance: 0.4403
Epoch 35/250
227/227 [==============================] - 0s 775us/step - loss: 0.2763 - accuracy: 0.8716 - mae: 0.2763 - pearson_correlation: 0.5330 - euclidean_distance: 0.4276
Epoch 36/250
227/227 [==============================] - 0s 782us/step - loss: 0.2699 - accuracy: 0.8743 - mae: 0.2699 - pearson_correlation: 0.5311 - euclidean_distance: 0.4191
Epoch 37/250
227/227 [==============================] - 0s 777us/step - loss: 0.2650 - accuracy: 0.8805 - mae: 0.2650 - pearson_correlation: 0.5299 - euclidean_distance: 0.4114
Epoch 38/250
227/227 [==============================] - 0s 777us/step - loss: 0.2570 - accuracy: 0.8769 - mae: 0.2570 - pearson_correlation: 0.5293 - euclidean_distance: 0.4000
Epoch 39/250
227/227 [==============================] - 0s 778us/step - loss: 0.2513 - accuracy: 0.8844 - mae: 0.2513 - pearson_correlation: 0.5303 - euclidean_distance: 0.3912
Epoch 40/250
227/227 [==============================] - 0s 774us/step - loss: 0.2478 - accuracy: 0.8924 - mae: 0.2478 - pearson_correlation: 0.5303 - euclidean_distance: 0.3853
Epoch 41/250
227/227 [==============================] - 0s 775us/step - loss: 0.2401 - accuracy: 0.8941 - mae: 0.2401 - pearson_correlation: 0.5347 - euclidean_distance: 0.3745
Epoch 42/250
227/227 [==============================] - 0s 783us/step - loss: 0.2375 - accuracy: 0.8862 - mae: 0.2375 - pearson_correlation: 0.5314 - euclidean_distance: 0.3714
Epoch 43/250
227/227 [==============================] - 0s 788us/step - loss: 0.2331 - accuracy: 0.8915 - mae: 0.2331 - pearson_correlation: 0.5318 - euclidean_distance: 0.3635
Epoch 44/250
227/227 [==============================] - 0s 792us/step - loss: 0.2231 - accuracy: 0.8950 - mae: 0.2231 - pearson_correlation: 0.5419 - euclidean_distance: 0.3484
Epoch 45/250
227/227 [==============================] - 0s 785us/step - loss: 0.2214 - accuracy: 0.8999 - mae: 0.2214 - pearson_correlation: 0.5382 - euclidean_distance: 0.3466
Epoch 46/250
227/227 [==============================] - 0s 790us/step - loss: 0.2158 - accuracy: 0.8981 - mae: 0.2158 - pearson_correlation: 0.5539 - euclidean_distance: 0.3376
Epoch 47/250
227/227 [==============================] - 0s 779us/step - loss: 0.2145 - accuracy: 0.9052 - mae: 0.2145 - pearson_correlation: 0.5439 - euclidean_distance: 0.3355
Epoch 48/250
227/227 [==============================] - 0s 780us/step - loss: 0.2075 - accuracy: 0.9060 - mae: 0.2075 - pearson_correlation: 0.5580 - euclidean_distance: 0.3242
Epoch 49/250
227/227 [==============================] - 0s 777us/step - loss: 0.2062 - accuracy: 0.9078 - mae: 0.2062 - pearson_correlation: 0.5456 - euclidean_distance: 0.3228
Epoch 50/250
227/227 [==============================] - 0s 775us/step - loss: 0.2046 - accuracy: 0.9109 - mae: 0.2046 - pearson_correlation: 0.5529 - euclidean_distance: 0.3197
Epoch 51/250
227/227 [==============================] - 0s 771us/step - loss: 0.1997 - accuracy: 0.9144 - mae: 0.1997 - pearson_correlation: 0.5612 - euclidean_distance: 0.3122
Epoch 52/250
227/227 [==============================] - 0s 777us/step - loss: 0.1929 - accuracy: 0.9105 - mae: 0.1929 - pearson_correlation: 0.5592 - euclidean_distance: 0.3036
Epoch 53/250
227/227 [==============================] - 0s 774us/step - loss: 0.1910 - accuracy: 0.9149 - mae: 0.1910 - pearson_correlation: 0.5647 - euclidean_distance: 0.2998
Epoch 54/250
227/227 [==============================] - 0s 783us/step - loss: 0.1860 - accuracy: 0.9180 - mae: 0.1860 - pearson_correlation: 0.5672 - euclidean_distance: 0.2926
Epoch 55/250
227/227 [==============================] - 0s 778us/step - loss: 0.1861 - accuracy: 0.9272 - mae: 0.1861 - pearson_correlation: 0.5703 - euclidean_distance: 0.2923
Epoch 56/250
227/227 [==============================] - 0s 780us/step - loss: 0.1854 - accuracy: 0.9237 - mae: 0.1854 - pearson_correlation: 0.5665 - euclidean_distance: 0.2916
Epoch 57/250
227/227 [==============================] - 0s 777us/step - loss: 0.1760 - accuracy: 0.9272 - mae: 0.1760 - pearson_correlation: 0.5848 - euclidean_distance: 0.2769
Epoch 58/250
227/227 [==============================] - 0s 774us/step - loss: 0.1768 - accuracy: 0.9290 - mae: 0.1768 - pearson_correlation: 0.5777 - euclidean_distance: 0.2779
Epoch 59/250
227/227 [==============================] - 0s 776us/step - loss: 0.1752 - accuracy: 0.9250 - mae: 0.1752 - pearson_correlation: 0.5783 - euclidean_distance: 0.2756
Epoch 60/250
227/227 [==============================] - 0s 773us/step - loss: 0.1724 - accuracy: 0.9272 - mae: 0.1724 - pearson_correlation: 0.5875 - euclidean_distance: 0.2716
Epoch 61/250
227/227 [==============================] - 0s 776us/step - loss: 0.1695 - accuracy: 0.9268 - mae: 0.1695 - pearson_correlation: 0.5881 - euclidean_distance: 0.2672
Epoch 62/250
227/227 [==============================] - 0s 773us/step - loss: 0.1664 - accuracy: 0.9228 - mae: 0.1664 - pearson_correlation: 0.5839 - euclidean_distance: 0.2630
Epoch 63/250
227/227 [==============================] - 0s 777us/step - loss: 0.1694 - accuracy: 0.9290 - mae: 0.1694 - pearson_correlation: 0.5780 - euclidean_distance: 0.2674
Epoch 64/250
227/227 [==============================] - 0s 778us/step - loss: 0.1644 - accuracy: 0.9307 - mae: 0.1644 - pearson_correlation: 0.5858 - euclidean_distance: 0.2605
Epoch 65/250
227/227 [==============================] - 0s 775us/step - loss: 0.1615 - accuracy: 0.9325 - mae: 0.1615 - pearson_correlation: 0.5943 - euclidean_distance: 0.2551
Epoch 66/250
227/227 [==============================] - 0s 774us/step - loss: 0.1577 - accuracy: 0.9303 - mae: 0.1577 - pearson_correlation: 0.5994 - euclidean_distance: 0.2500
Epoch 67/250
227/227 [==============================] - 0s 774us/step - loss: 0.1543 - accuracy: 0.9268 - mae: 0.1543 - pearson_correlation: 0.6060 - euclidean_distance: 0.2452
Epoch 68/250
227/227 [==============================] - 0s 775us/step - loss: 0.1574 - accuracy: 0.9272 - mae: 0.1574 - pearson_correlation: 0.5977 - euclidean_distance: 0.2495
Epoch 69/250
227/227 [==============================] - 0s 774us/step - loss: 0.1535 - accuracy: 0.9307 - mae: 0.1535 - pearson_correlation: 0.6076 - euclidean_distance: 0.2430
Epoch 70/250
227/227 [==============================] - 0s 774us/step - loss: 0.1507 - accuracy: 0.9294 - mae: 0.1507 - pearson_correlation: 0.6089 - euclidean_distance: 0.2403
Epoch 71/250
227/227 [==============================] - 0s 776us/step - loss: 0.1514 - accuracy: 0.9360 - mae: 0.1514 - pearson_correlation: 0.6074 - euclidean_distance: 0.2402
Epoch 72/250
227/227 [==============================] - 0s 777us/step - loss: 0.1457 - accuracy: 0.9378 - mae: 0.1457 - pearson_correlation: 0.6161 - euclidean_distance: 0.2318
Epoch 73/250
227/227 [==============================] - 0s 772us/step - loss: 0.1466 - accuracy: 0.9312 - mae: 0.1466 - pearson_correlation: 0.6138 - euclidean_distance: 0.2344
Epoch 74/250
227/227 [==============================] - 0s 773us/step - loss: 0.1468 - accuracy: 0.9334 - mae: 0.1468 - pearson_correlation: 0.6093 - euclidean_distance: 0.2346
Epoch 75/250
227/227 [==============================] - 0s 776us/step - loss: 0.1454 - accuracy: 0.9352 - mae: 0.1454 - pearson_correlation: 0.6150 - euclidean_distance: 0.2321
Epoch 76/250
227/227 [==============================] - 0s 776us/step - loss: 0.1417 - accuracy: 0.9378 - mae: 0.1417 - pearson_correlation: 0.6216 - euclidean_distance: 0.2262
Epoch 77/250
227/227 [==============================] - 0s 777us/step - loss: 0.1435 - accuracy: 0.9369 - mae: 0.1435 - pearson_correlation: 0.6147 - euclidean_distance: 0.2293
Epoch 78/250
227/227 [==============================] - 0s 773us/step - loss: 0.1411 - accuracy: 0.9330 - mae: 0.1411 - pearson_correlation: 0.6245 - euclidean_distance: 0.2249
Epoch 79/250
227/227 [==============================] - 0s 783us/step - loss: 0.1401 - accuracy: 0.9356 - mae: 0.1401 - pearson_correlation: 0.6287 - euclidean_distance: 0.2235
Epoch 80/250
227/227 [==============================] - 0s 772us/step - loss: 0.1401 - accuracy: 0.9374 - mae: 0.1401 - pearson_correlation: 0.6216 - euclidean_distance: 0.2235
Epoch 81/250
227/227 [==============================] - 0s 775us/step - loss: 0.1357 - accuracy: 0.9356 - mae: 0.1357 - pearson_correlation: 0.6351 - euclidean_distance: 0.2167
Epoch 82/250
227/227 [==============================] - 0s 776us/step - loss: 0.1361 - accuracy: 0.9365 - mae: 0.1361 - pearson_correlation: 0.6410 - euclidean_distance: 0.2158
Epoch 83/250
227/227 [==============================] - 0s 773us/step - loss: 0.1350 - accuracy: 0.9387 - mae: 0.1350 - pearson_correlation: 0.6346 - euclidean_distance: 0.2158
Epoch 84/250
227/227 [==============================] - 0s 768us/step - loss: 0.1358 - accuracy: 0.9378 - mae: 0.1358 - pearson_correlation: 0.6325 - euclidean_distance: 0.2173
Epoch 85/250
227/227 [==============================] - 0s 776us/step - loss: 0.1328 - accuracy: 0.9391 - mae: 0.1328 - pearson_correlation: 0.6441 - euclidean_distance: 0.2125
Epoch 86/250
227/227 [==============================] - 0s 772us/step - loss: 0.1308 - accuracy: 0.9400 - mae: 0.1308 - pearson_correlation: 0.6468 - euclidean_distance: 0.2101
Epoch 87/250
227/227 [==============================] - 0s 774us/step - loss: 0.1311 - accuracy: 0.9422 - mae: 0.1311 - pearson_correlation: 0.6457 - euclidean_distance: 0.2097
Epoch 88/250
227/227 [==============================] - 0s 777us/step - loss: 0.1293 - accuracy: 0.9396 - mae: 0.1293 - pearson_correlation: 0.6515 - euclidean_distance: 0.2082
Epoch 89/250
227/227 [==============================] - 0s 782us/step - loss: 0.1313 - accuracy: 0.9413 - mae: 0.1313 - pearson_correlation: 0.6473 - euclidean_distance: 0.2104
Epoch 90/250
227/227 [==============================] - 0s 769us/step - loss: 0.1295 - accuracy: 0.9427 - mae: 0.1295 - pearson_correlation: 0.6516 - euclidean_distance: 0.2078
Epoch 91/250
227/227 [==============================] - 0s 770us/step - loss: 0.1297 - accuracy: 0.9382 - mae: 0.1297 - pearson_correlation: 0.6454 - euclidean_distance: 0.2079
Epoch 92/250
227/227 [==============================] - 0s 772us/step - loss: 0.1282 - accuracy: 0.9413 - mae: 0.1282 - pearson_correlation: 0.6484 - euclidean_distance: 0.2063
Epoch 93/250
227/227 [==============================] - 0s 772us/step - loss: 0.1255 - accuracy: 0.9427 - mae: 0.1255 - pearson_correlation: 0.6593 - euclidean_distance: 0.2016
Epoch 94/250
227/227 [==============================] - 0s 775us/step - loss: 0.1265 - accuracy: 0.9422 - mae: 0.1265 - pearson_correlation: 0.6553 - euclidean_distance: 0.2035
Epoch 95/250
227/227 [==============================] - 0s 772us/step - loss: 0.1255 - accuracy: 0.9427 - mae: 0.1255 - pearson_correlation: 0.6623 - euclidean_distance: 0.2017
Epoch 96/250
227/227 [==============================] - 0s 776us/step - loss: 0.1245 - accuracy: 0.9435 - mae: 0.1245 - pearson_correlation: 0.6616 - euclidean_distance: 0.1995
Epoch 97/250
227/227 [==============================] - 0s 778us/step - loss: 0.1239 - accuracy: 0.9369 - mae: 0.1239 - pearson_correlation: 0.6605 - euclidean_distance: 0.1995
Epoch 98/250
227/227 [==============================] - 0s 784us/step - loss: 0.1229 - accuracy: 0.9413 - mae: 0.1229 - pearson_correlation: 0.6693 - euclidean_distance: 0.1978
Epoch 99/250
227/227 [==============================] - 0s 789us/step - loss: 0.1238 - accuracy: 0.9422 - mae: 0.1238 - pearson_correlation: 0.6651 - euclidean_distance: 0.1993
Epoch 100/250
227/227 [==============================] - 0s 783us/step - loss: 0.1226 - accuracy: 0.9418 - mae: 0.1226 - pearson_correlation: 0.6657 - euclidean_distance: 0.1974
Epoch 101/250
227/227 [==============================] - 0s 776us/step - loss: 0.1211 - accuracy: 0.9457 - mae: 0.1211 - pearson_correlation: 0.6715 - euclidean_distance: 0.1948
Epoch 102/250
227/227 [==============================] - 0s 774us/step - loss: 0.1217 - accuracy: 0.9440 - mae: 0.1217 - pearson_correlation: 0.6639 - euclidean_distance: 0.1967
Epoch 103/250
227/227 [==============================] - 0s 774us/step - loss: 0.1222 - accuracy: 0.9444 - mae: 0.1222 - pearson_correlation: 0.6653 - euclidean_distance: 0.1967
Epoch 104/250
227/227 [==============================] - 0s 776us/step - loss: 0.1211 - accuracy: 0.9435 - mae: 0.1211 - pearson_correlation: 0.6704 - euclidean_distance: 0.1951
Epoch 105/250
227/227 [==============================] - 0s 775us/step - loss: 0.1173 - accuracy: 0.9457 - mae: 0.1173 - pearson_correlation: 0.6780 - euclidean_distance: 0.1893
Epoch 106/250
227/227 [==============================] - 0s 776us/step - loss: 0.1207 - accuracy: 0.9427 - mae: 0.1207 - pearson_correlation: 0.6685 - euclidean_distance: 0.1951
Epoch 107/250
227/227 [==============================] - 0s 774us/step - loss: 0.1177 - accuracy: 0.9440 - mae: 0.1177 - pearson_correlation: 0.6843 - euclidean_distance: 0.1896
Epoch 108/250
227/227 [==============================] - 0s 784us/step - loss: 0.1192 - accuracy: 0.9440 - mae: 0.1192 - pearson_correlation: 0.6761 - euclidean_distance: 0.1924
Epoch 109/250
227/227 [==============================] - 0s 785us/step - loss: 0.1213 - accuracy: 0.9466 - mae: 0.1213 - pearson_correlation: 0.6691 - euclidean_distance: 0.1952
Epoch 110/250
227/227 [==============================] - 0s 784us/step - loss: 0.1177 - accuracy: 0.9457 - mae: 0.1177 - pearson_correlation: 0.6830 - euclidean_distance: 0.1903
Epoch 111/250
227/227 [==============================] - 0s 784us/step - loss: 0.1155 - accuracy: 0.9471 - mae: 0.1155 - pearson_correlation: 0.6888 - euclidean_distance: 0.1864
Epoch 112/250
227/227 [==============================] - 0s 784us/step - loss: 0.1160 - accuracy: 0.9488 - mae: 0.1160 - pearson_correlation: 0.6862 - euclidean_distance: 0.1876
Epoch 113/250
227/227 [==============================] - 0s 787us/step - loss: 0.1155 - accuracy: 0.9479 - mae: 0.1155 - pearson_correlation: 0.6824 - euclidean_distance: 0.1871
Epoch 114/250
227/227 [==============================] - 0s 785us/step - loss: 0.1132 - accuracy: 0.9462 - mae: 0.1132 - pearson_correlation: 0.6910 - euclidean_distance: 0.1833
Epoch 115/250
227/227 [==============================] - 0s 784us/step - loss: 0.1125 - accuracy: 0.9493 - mae: 0.1125 - pearson_correlation: 0.6908 - euclidean_distance: 0.1820
Epoch 116/250
227/227 [==============================] - 0s 785us/step - loss: 0.1134 - accuracy: 0.9479 - mae: 0.1134 - pearson_correlation: 0.6983 - euclidean_distance: 0.1833
Epoch 117/250
227/227 [==============================] - 0s 787us/step - loss: 0.1140 - accuracy: 0.9457 - mae: 0.1140 - pearson_correlation: 0.6880 - euclidean_distance: 0.1843
Epoch 118/250
227/227 [==============================] - 0s 784us/step - loss: 0.1169 - accuracy: 0.9466 - mae: 0.1169 - pearson_correlation: 0.6806 - euclidean_distance: 0.1889
Epoch 119/250
227/227 [==============================] - 0s 785us/step - loss: 0.1144 - accuracy: 0.9462 - mae: 0.1144 - pearson_correlation: 0.6870 - euclidean_distance: 0.1849
Epoch 120/250
227/227 [==============================] - 0s 835us/step - loss: 0.1146 - accuracy: 0.9471 - mae: 0.1146 - pearson_correlation: 0.6906 - euclidean_distance: 0.1848
Epoch 121/250
227/227 [==============================] - 0s 874us/step - loss: 0.1124 - accuracy: 0.9466 - mae: 0.1124 - pearson_correlation: 0.6949 - euclidean_distance: 0.1817
Epoch 122/250
227/227 [==============================] - 0s 917us/step - loss: 0.1141 - accuracy: 0.9484 - mae: 0.1141 - pearson_correlation: 0.6875 - euclidean_distance: 0.1851
Epoch 123/250
227/227 [==============================] - 0s 836us/step - loss: 0.1100 - accuracy: 0.9502 - mae: 0.1100 - pearson_correlation: 0.7006 - euclidean_distance: 0.1785
Epoch 124/250
227/227 [==============================] - 0s 788us/step - loss: 0.1098 - accuracy: 0.9502 - mae: 0.1098 - pearson_correlation: 0.7032 - euclidean_distance: 0.1782
Epoch 125/250
227/227 [==============================] - 0s 787us/step - loss: 0.1108 - accuracy: 0.9479 - mae: 0.1108 - pearson_correlation: 0.6996 - euclidean_distance: 0.1794
Epoch 126/250
227/227 [==============================] - 0s 788us/step - loss: 0.1084 - accuracy: 0.9502 - mae: 0.1084 - pearson_correlation: 0.7013 - euclidean_distance: 0.1765
Epoch 127/250
227/227 [==============================] - 0s 787us/step - loss: 0.1129 - accuracy: 0.9515 - mae: 0.1129 - pearson_correlation: 0.6886 - euclidean_distance: 0.1830
Epoch 128/250
227/227 [==============================] - 0s 791us/step - loss: 0.1088 - accuracy: 0.9493 - mae: 0.1088 - pearson_correlation: 0.7072 - euclidean_distance: 0.1766
Epoch 129/250
227/227 [==============================] - 0s 782us/step - loss: 0.1095 - accuracy: 0.9484 - mae: 0.1095 - pearson_correlation: 0.6988 - euclidean_distance: 0.1775
Epoch 130/250
227/227 [==============================] - 0s 776us/step - loss: 0.1089 - accuracy: 0.9479 - mae: 0.1089 - pearson_correlation: 0.7097 - euclidean_distance: 0.1762
Epoch 131/250
227/227 [==============================] - 0s 771us/step - loss: 0.1080 - accuracy: 0.9497 - mae: 0.1080 - pearson_correlation: 0.7066 - euclidean_distance: 0.1750
Epoch 132/250
227/227 [==============================] - 0s 775us/step - loss: 0.1087 - accuracy: 0.9515 - mae: 0.1087 - pearson_correlation: 0.7137 - euclidean_distance: 0.1747
Epoch 133/250
227/227 [==============================] - 0s 774us/step - loss: 0.1116 - accuracy: 0.9515 - mae: 0.1116 - pearson_correlation: 0.6913 - euclidean_distance: 0.1812
Epoch 134/250
227/227 [==============================] - 0s 776us/step - loss: 0.1068 - accuracy: 0.9471 - mae: 0.1068 - pearson_correlation: 0.7092 - euclidean_distance: 0.1728
Epoch 135/250
227/227 [==============================] - 0s 779us/step - loss: 0.1085 - accuracy: 0.9497 - mae: 0.1085 - pearson_correlation: 0.7038 - euclidean_distance: 0.1761
Epoch 136/250
227/227 [==============================] - 0s 778us/step - loss: 0.1089 - accuracy: 0.9488 - mae: 0.1089 - pearson_correlation: 0.7106 - euclidean_distance: 0.1767
Epoch 137/250
227/227 [==============================] - 0s 777us/step - loss: 0.1084 - accuracy: 0.9493 - mae: 0.1084 - pearson_correlation: 0.7134 - euclidean_distance: 0.1757
Epoch 138/250
227/227 [==============================] - 0s 776us/step - loss: 0.1039 - accuracy: 0.9519 - mae: 0.1039 - pearson_correlation: 0.7187 - euclidean_distance: 0.1691
Epoch 139/250
227/227 [==============================] - 0s 772us/step - loss: 0.1081 - accuracy: 0.9532 - mae: 0.1081 - pearson_correlation: 0.7056 - euclidean_distance: 0.1753
Epoch 140/250
227/227 [==============================] - 0s 790us/step - loss: 0.1075 - accuracy: 0.9493 - mae: 0.1075 - pearson_correlation: 0.7073 - euclidean_distance: 0.1747
Epoch 141/250
227/227 [==============================] - 0s 773us/step - loss: 0.1094 - accuracy: 0.9510 - mae: 0.1094 - pearson_correlation: 0.7071 - euclidean_distance: 0.1772
Epoch 142/250
227/227 [==============================] - 0s 777us/step - loss: 0.1059 - accuracy: 0.9493 - mae: 0.1059 - pearson_correlation: 0.7131 - euclidean_distance: 0.1726
Epoch 143/250
227/227 [==============================] - 0s 772us/step - loss: 0.1037 - accuracy: 0.9510 - mae: 0.1037 - pearson_correlation: 0.7216 - euclidean_distance: 0.1682
Epoch 144/250
227/227 [==============================] - 0s 775us/step - loss: 0.1064 - accuracy: 0.9532 - mae: 0.1064 - pearson_correlation: 0.7141 - euclidean_distance: 0.1724
Epoch 145/250
227/227 [==============================] - 0s 1ms/step - loss: 0.1070 - accuracy: 0.9528 - mae: 0.1070 - pearson_correlation: 0.7124 - euclidean_distance: 0.1734
Epoch 146/250
227/227 [==============================] - 0s 787us/step - loss: 0.1046 - accuracy: 0.9510 - mae: 0.1046 - pearson_correlation: 0.7158 - euclidean_distance: 0.1696
Epoch 147/250
227/227 [==============================] - 0s 785us/step - loss: 0.1043 - accuracy: 0.9515 - mae: 0.1043 - pearson_correlation: 0.7196 - euclidean_distance: 0.1694
Epoch 148/250
227/227 [==============================] - 0s 790us/step - loss: 0.1029 - accuracy: 0.9497 - mae: 0.1029 - pearson_correlation: 0.7227 - euclidean_distance: 0.1672
Epoch 149/250
227/227 [==============================] - 0s 785us/step - loss: 0.1056 - accuracy: 0.9484 - mae: 0.1056 - pearson_correlation: 0.7194 - euclidean_distance: 0.1718
Epoch 150/250
227/227 [==============================] - 0s 788us/step - loss: 0.1023 - accuracy: 0.9510 - mae: 0.1023 - pearson_correlation: 0.7274 - euclidean_distance: 0.1664
Epoch 151/250
227/227 [==============================] - 0s 784us/step - loss: 0.1035 - accuracy: 0.9519 - mae: 0.1035 - pearson_correlation: 0.7207 - euclidean_distance: 0.1685
Epoch 152/250
227/227 [==============================] - 0s 776us/step - loss: 0.1044 - accuracy: 0.9541 - mae: 0.1044 - pearson_correlation: 0.7232 - euclidean_distance: 0.1697
Epoch 153/250
227/227 [==============================] - 0s 773us/step - loss: 0.1038 - accuracy: 0.9506 - mae: 0.1038 - pearson_correlation: 0.7202 - euclidean_distance: 0.1691
Epoch 154/250
227/227 [==============================] - 0s 779us/step - loss: 0.1051 - accuracy: 0.9532 - mae: 0.1051 - pearson_correlation: 0.7186 - euclidean_distance: 0.1706
Epoch 155/250
227/227 [==============================] - 0s 772us/step - loss: 0.1040 - accuracy: 0.9537 - mae: 0.1040 - pearson_correlation: 0.7223 - euclidean_distance: 0.1686
Epoch 156/250
227/227 [==============================] - 0s 776us/step - loss: 0.1007 - accuracy: 0.9519 - mae: 0.1007 - pearson_correlation: 0.7300 - euclidean_distance: 0.1632
Epoch 157/250
227/227 [==============================] - 0s 777us/step - loss: 0.1016 - accuracy: 0.9519 - mae: 0.1016 - pearson_correlation: 0.7246 - euclidean_distance: 0.1652
Epoch 158/250
227/227 [==============================] - 0s 775us/step - loss: 0.1012 - accuracy: 0.9515 - mae: 0.1012 - pearson_correlation: 0.7253 - euclidean_distance: 0.1652
Epoch 159/250
227/227 [==============================] - 0s 774us/step - loss: 0.1026 - accuracy: 0.9524 - mae: 0.1026 - pearson_correlation: 0.7239 - euclidean_distance: 0.1667
Epoch 160/250
227/227 [==============================] - 0s 776us/step - loss: 0.1000 - accuracy: 0.9519 - mae: 0.1000 - pearson_correlation: 0.7300 - euclidean_distance: 0.1624
Epoch 161/250
227/227 [==============================] - 0s 776us/step - loss: 0.1038 - accuracy: 0.9519 - mae: 0.1038 - pearson_correlation: 0.7241 - euclidean_distance: 0.1685
Epoch 162/250
227/227 [==============================] - 0s 777us/step - loss: 0.1017 - accuracy: 0.9510 - mae: 0.1017 - pearson_correlation: 0.7287 - euclidean_distance: 0.1651
Epoch 163/250
227/227 [==============================] - 0s 772us/step - loss: 0.1019 - accuracy: 0.9528 - mae: 0.1019 - pearson_correlation: 0.7286 - euclidean_distance: 0.1655
Epoch 164/250
227/227 [==============================] - 0s 775us/step - loss: 0.1037 - accuracy: 0.9528 - mae: 0.1037 - pearson_correlation: 0.7209 - euclidean_distance: 0.1689
Epoch 165/250
227/227 [==============================] - 0s 774us/step - loss: 0.1013 - accuracy: 0.9532 - mae: 0.1013 - pearson_correlation: 0.7250 - euclidean_distance: 0.1650
Epoch 166/250
227/227 [==============================] - 0s 769us/step - loss: 0.1008 - accuracy: 0.9524 - mae: 0.1008 - pearson_correlation: 0.7313 - euclidean_distance: 0.1632
Epoch 167/250
227/227 [==============================] - 0s 777us/step - loss: 0.0980 - accuracy: 0.9537 - mae: 0.0980 - pearson_correlation: 0.7354 - euclidean_distance: 0.1592
Epoch 168/250
227/227 [==============================] - 0s 773us/step - loss: 0.1001 - accuracy: 0.9524 - mae: 0.1001 - pearson_correlation: 0.7306 - euclidean_distance: 0.1628
Epoch 169/250
227/227 [==============================] - 0s 775us/step - loss: 0.1008 - accuracy: 0.9532 - mae: 0.1008 - pearson_correlation: 0.7267 - euclidean_distance: 0.1637
Epoch 170/250
227/227 [==============================] - 0s 777us/step - loss: 0.0988 - accuracy: 0.9532 - mae: 0.0988 - pearson_correlation: 0.7321 - euclidean_distance: 0.1612
Epoch 171/250
227/227 [==============================] - 0s 774us/step - loss: 0.1004 - accuracy: 0.9537 - mae: 0.1004 - pearson_correlation: 0.7258 - euclidean_distance: 0.1641
Epoch 172/250
227/227 [==============================] - 0s 773us/step - loss: 0.0968 - accuracy: 0.9546 - mae: 0.0968 - pearson_correlation: 0.7394 - euclidean_distance: 0.1579
Epoch 173/250
227/227 [==============================] - 0s 775us/step - loss: 0.0954 - accuracy: 0.9524 - mae: 0.0954 - pearson_correlation: 0.7443 - euclidean_distance: 0.1557
Epoch 174/250
227/227 [==============================] - 0s 778us/step - loss: 0.0991 - accuracy: 0.9524 - mae: 0.0991 - pearson_correlation: 0.7350 - euclidean_distance: 0.1615
Epoch 175/250
227/227 [==============================] - 0s 773us/step - loss: 0.0964 - accuracy: 0.9541 - mae: 0.0964 - pearson_correlation: 0.7455 - euclidean_distance: 0.1574
Epoch 176/250
227/227 [==============================] - 0s 775us/step - loss: 0.0969 - accuracy: 0.9537 - mae: 0.0969 - pearson_correlation: 0.7355 - euclidean_distance: 0.1583
Epoch 177/250
227/227 [==============================] - 0s 771us/step - loss: 0.0967 - accuracy: 0.9541 - mae: 0.0967 - pearson_correlation: 0.7414 - euclidean_distance: 0.1573
Epoch 178/250
227/227 [==============================] - 0s 778us/step - loss: 0.0961 - accuracy: 0.9559 - mae: 0.0961 - pearson_correlation: 0.7407 - euclidean_distance: 0.1562
Epoch 179/250
227/227 [==============================] - 0s 774us/step - loss: 0.0965 - accuracy: 0.9519 - mae: 0.0965 - pearson_correlation: 0.7362 - euclidean_distance: 0.1573
Epoch 180/250
227/227 [==============================] - 0s 779us/step - loss: 0.0982 - accuracy: 0.9537 - mae: 0.0982 - pearson_correlation: 0.7318 - euclidean_distance: 0.1604
Epoch 181/250
227/227 [==============================] - 0s 774us/step - loss: 0.0961 - accuracy: 0.9546 - mae: 0.0961 - pearson_correlation: 0.7426 - euclidean_distance: 0.1559
Epoch 182/250
227/227 [==============================] - 0s 778us/step - loss: 0.0961 - accuracy: 0.9537 - mae: 0.0961 - pearson_correlation: 0.7485 - euclidean_distance: 0.1562
Epoch 183/250
227/227 [==============================] - 0s 775us/step - loss: 0.0975 - accuracy: 0.9541 - mae: 0.0975 - pearson_correlation: 0.7376 - euclidean_distance: 0.1585
Epoch 184/250
227/227 [==============================] - 0s 780us/step - loss: 0.0951 - accuracy: 0.9541 - mae: 0.0951 - pearson_correlation: 0.7435 - euclidean_distance: 0.1549
Epoch 185/250
227/227 [==============================] - 0s 773us/step - loss: 0.0946 - accuracy: 0.9541 - mae: 0.0946 - pearson_correlation: 0.7464 - euclidean_distance: 0.1540
Epoch 186/250
227/227 [==============================] - 0s 776us/step - loss: 0.0965 - accuracy: 0.9554 - mae: 0.0965 - pearson_correlation: 0.7377 - euclidean_distance: 0.1574
Epoch 187/250
227/227 [==============================] - 0s 776us/step - loss: 0.0952 - accuracy: 0.9546 - mae: 0.0952 - pearson_correlation: 0.7484 - euclidean_distance: 0.1549
Epoch 188/250
227/227 [==============================] - 0s 771us/step - loss: 0.0952 - accuracy: 0.9537 - mae: 0.0952 - pearson_correlation: 0.7427 - euclidean_distance: 0.1548
Epoch 189/250
227/227 [==============================] - 0s 772us/step - loss: 0.0930 - accuracy: 0.9550 - mae: 0.0930 - pearson_correlation: 0.7498 - euclidean_distance: 0.1517
Epoch 190/250
227/227 [==============================] - 0s 776us/step - loss: 0.0962 - accuracy: 0.9532 - mae: 0.0962 - pearson_correlation: 0.7457 - euclidean_distance: 0.1572
Epoch 191/250
227/227 [==============================] - 0s 824us/step - loss: 0.0970 - accuracy: 0.9550 - mae: 0.0970 - pearson_correlation: 0.7392 - euclidean_distance: 0.1583
Epoch 192/250
227/227 [==============================] - 0s 779us/step - loss: 0.0972 - accuracy: 0.9532 - mae: 0.0972 - pearson_correlation: 0.7322 - euclidean_distance: 0.1585
Epoch 193/250
227/227 [==============================] - 0s 773us/step - loss: 0.0956 - accuracy: 0.9550 - mae: 0.0956 - pearson_correlation: 0.7413 - euclidean_distance: 0.1561
Epoch 194/250
227/227 [==============================] - 0s 768us/step - loss: 0.0948 - accuracy: 0.9541 - mae: 0.0948 - pearson_correlation: 0.7452 - euclidean_distance: 0.1548
Epoch 195/250
227/227 [==============================] - 0s 775us/step - loss: 0.0952 - accuracy: 0.9541 - mae: 0.0952 - pearson_correlation: 0.7419 - euclidean_distance: 0.1553
Epoch 196/250
227/227 [==============================] - 0s 769us/step - loss: 0.0943 - accuracy: 0.9541 - mae: 0.0943 - pearson_correlation: 0.7480 - euclidean_distance: 0.1540
Epoch 197/250
227/227 [==============================] - 0s 776us/step - loss: 0.0944 - accuracy: 0.9550 - mae: 0.0944 - pearson_correlation: 0.7482 - euclidean_distance: 0.1535
Epoch 198/250
227/227 [==============================] - 0s 774us/step - loss: 0.0963 - accuracy: 0.9550 - mae: 0.0963 - pearson_correlation: 0.7420 - euclidean_distance: 0.1568
Epoch 199/250
227/227 [==============================] - 0s 771us/step - loss: 0.0930 - accuracy: 0.9541 - mae: 0.0930 - pearson_correlation: 0.7519 - euclidean_distance: 0.1513
Epoch 200/250
227/227 [==============================] - 0s 775us/step - loss: 0.0949 - accuracy: 0.9541 - mae: 0.0949 - pearson_correlation: 0.7432 - euclidean_distance: 0.1548
Epoch 201/250
227/227 [==============================] - 0s 793us/step - loss: 0.0931 - accuracy: 0.9550 - mae: 0.0931 - pearson_correlation: 0.7486 - euclidean_distance: 0.1519
Epoch 202/250
227/227 [==============================] - 0s 773us/step - loss: 0.0933 - accuracy: 0.9550 - mae: 0.0933 - pearson_correlation: 0.7499 - euclidean_distance: 0.1520
Epoch 203/250
227/227 [==============================] - 0s 779us/step - loss: 0.0931 - accuracy: 0.9546 - mae: 0.0931 - pearson_correlation: 0.7523 - euclidean_distance: 0.1520
Epoch 204/250
227/227 [==============================] - 0s 776us/step - loss: 0.0920 - accuracy: 0.9550 - mae: 0.0920 - pearson_correlation: 0.7555 - euclidean_distance: 0.1496
Epoch 205/250
227/227 [==============================] - 0s 772us/step - loss: 0.0945 - accuracy: 0.9546 - mae: 0.0945 - pearson_correlation: 0.7467 - euclidean_distance: 0.1540
Epoch 206/250
227/227 [==============================] - 0s 775us/step - loss: 0.0910 - accuracy: 0.9532 - mae: 0.0910 - pearson_correlation: 0.7561 - euclidean_distance: 0.1488
Epoch 207/250
227/227 [==============================] - 0s 774us/step - loss: 0.0948 - accuracy: 0.9546 - mae: 0.0948 - pearson_correlation: 0.7447 - euclidean_distance: 0.1544
Epoch 208/250
227/227 [==============================] - 0s 778us/step - loss: 0.0919 - accuracy: 0.9537 - mae: 0.0919 - pearson_correlation: 0.7479 - euclidean_distance: 0.1503
Epoch 209/250
227/227 [==============================] - 0s 846us/step - loss: 0.0920 - accuracy: 0.9537 - mae: 0.0920 - pearson_correlation: 0.7550 - euclidean_distance: 0.1499
Epoch 210/250
227/227 [==============================] - 0s 880us/step - loss: 0.0913 - accuracy: 0.9546 - mae: 0.0913 - pearson_correlation: 0.7574 - euclidean_distance: 0.1489
Epoch 211/250
227/227 [==============================] - 0s 899us/step - loss: 0.0923 - accuracy: 0.9537 - mae: 0.0923 - pearson_correlation: 0.7541 - euclidean_distance: 0.1499
Epoch 212/250
227/227 [==============================] - 0s 781us/step - loss: 0.0931 - accuracy: 0.9546 - mae: 0.0931 - pearson_correlation: 0.7542 - euclidean_distance: 0.1514
Epoch 213/250
227/227 [==============================] - 0s 785us/step - loss: 0.0949 - accuracy: 0.9550 - mae: 0.0949 - pearson_correlation: 0.7453 - euclidean_distance: 0.1546
Epoch 214/250
227/227 [==============================] - 0s 784us/step - loss: 0.0925 - accuracy: 0.9546 - mae: 0.0925 - pearson_correlation: 0.7515 - euclidean_distance: 0.1506
Epoch 215/250
227/227 [==============================] - 0s 789us/step - loss: 0.0932 - accuracy: 0.9550 - mae: 0.0932 - pearson_correlation: 0.7527 - euclidean_distance: 0.1519
Epoch 216/250
227/227 [==============================] - 0s 789us/step - loss: 0.0951 - accuracy: 0.9537 - mae: 0.0951 - pearson_correlation: 0.7425 - euclidean_distance: 0.1549
Epoch 217/250
227/227 [==============================] - 0s 789us/step - loss: 0.0920 - accuracy: 0.9546 - mae: 0.0920 - pearson_correlation: 0.7580 - euclidean_distance: 0.1498
Epoch 218/250
227/227 [==============================] - 0s 789us/step - loss: 0.0920 - accuracy: 0.9546 - mae: 0.0920 - pearson_correlation: 0.7552 - euclidean_distance: 0.1499
Epoch 219/250
227/227 [==============================] - 0s 788us/step - loss: 0.0895 - accuracy: 0.9546 - mae: 0.0895 - pearson_correlation: 0.7582 - euclidean_distance: 0.1463
Epoch 220/250
227/227 [==============================] - 0s 787us/step - loss: 0.0919 - accuracy: 0.9550 - mae: 0.0919 - pearson_correlation: 0.7512 - euclidean_distance: 0.1498
Epoch 221/250
227/227 [==============================] - 0s 778us/step - loss: 0.0902 - accuracy: 0.9541 - mae: 0.0902 - pearson_correlation: 0.7568 - euclidean_distance: 0.1473
Epoch 222/250
227/227 [==============================] - 0s 781us/step - loss: 0.0912 - accuracy: 0.9546 - mae: 0.0912 - pearson_correlation: 0.7562 - euclidean_distance: 0.1495
Epoch 223/250
227/227 [==============================] - 0s 1ms/step - loss: 0.0906 - accuracy: 0.9550 - mae: 0.0906 - pearson_correlation: 0.7605 - euclidean_distance: 0.1478
Epoch 224/250
227/227 [==============================] - 0s 781us/step - loss: 0.0915 - accuracy: 0.9550 - mae: 0.0915 - pearson_correlation: 0.7610 - euclidean_distance: 0.1489
Epoch 225/250
227/227 [==============================] - 0s 779us/step - loss: 0.0891 - accuracy: 0.9546 - mae: 0.0891 - pearson_correlation: 0.7626 - euclidean_distance: 0.1457
Epoch 226/250
227/227 [==============================] - 0s 777us/step - loss: 0.0924 - accuracy: 0.9537 - mae: 0.0924 - pearson_correlation: 0.7458 - euclidean_distance: 0.1507
Epoch 227/250
227/227 [==============================] - 0s 780us/step - loss: 0.0889 - accuracy: 0.9550 - mae: 0.0889 - pearson_correlation: 0.7601 - euclidean_distance: 0.1453
Epoch 228/250
227/227 [==============================] - 0s 776us/step - loss: 0.0890 - accuracy: 0.9550 - mae: 0.0890 - pearson_correlation: 0.7587 - euclidean_distance: 0.1461
Epoch 229/250
227/227 [==============================] - 0s 774us/step - loss: 0.0914 - accuracy: 0.9546 - mae: 0.0914 - pearson_correlation: 0.7516 - euclidean_distance: 0.1494
Epoch 230/250
227/227 [==============================] - 0s 777us/step - loss: 0.0903 - accuracy: 0.9554 - mae: 0.0903 - pearson_correlation: 0.7640 - euclidean_distance: 0.1470
Epoch 231/250
227/227 [==============================] - 0s 835us/step - loss: 0.0894 - accuracy: 0.9550 - mae: 0.0894 - pearson_correlation: 0.7638 - euclidean_distance: 0.1459
Epoch 232/250
227/227 [==============================] - 0s 779us/step - loss: 0.0871 - accuracy: 0.9550 - mae: 0.0871 - pearson_correlation: 0.7660 - euclidean_distance: 0.1426
Epoch 233/250
227/227 [==============================] - 0s 778us/step - loss: 0.0901 - accuracy: 0.9554 - mae: 0.0901 - pearson_correlation: 0.7547 - euclidean_distance: 0.1472
Epoch 234/250
227/227 [==============================] - 0s 773us/step - loss: 0.0882 - accuracy: 0.9554 - mae: 0.0882 - pearson_correlation: 0.7587 - euclidean_distance: 0.1440
Epoch 235/250
227/227 [==============================] - 0s 776us/step - loss: 0.0870 - accuracy: 0.9554 - mae: 0.0870 - pearson_correlation: 0.7656 - euclidean_distance: 0.1420
Epoch 236/250
227/227 [==============================] - 0s 772us/step - loss: 0.0897 - accuracy: 0.9546 - mae: 0.0897 - pearson_correlation: 0.7602 - euclidean_distance: 0.1463
Epoch 237/250
227/227 [==============================] - 0s 776us/step - loss: 0.0898 - accuracy: 0.9554 - mae: 0.0898 - pearson_correlation: 0.7603 - euclidean_distance: 0.1473
Epoch 238/250
227/227 [==============================] - 0s 776us/step - loss: 0.0879 - accuracy: 0.9550 - mae: 0.0879 - pearson_correlation: 0.7634 - euclidean_distance: 0.1441
Epoch 239/250
227/227 [==============================] - 0s 775us/step - loss: 0.0892 - accuracy: 0.9554 - mae: 0.0892 - pearson_correlation: 0.7632 - euclidean_distance: 0.1451
Epoch 240/250
227/227 [==============================] - 0s 773us/step - loss: 0.0875 - accuracy: 0.9554 - mae: 0.0875 - pearson_correlation: 0.7663 - euclidean_distance: 0.1429
Epoch 241/250
227/227 [==============================] - 0s 911us/step - loss: 0.0883 - accuracy: 0.9554 - mae: 0.0883 - pearson_correlation: 0.7601 - euclidean_distance: 0.1447
Epoch 242/250
227/227 [==============================] - 0s 811us/step - loss: 0.0879 - accuracy: 0.9554 - mae: 0.0879 - pearson_correlation: 0.7641 - euclidean_distance: 0.1431
Epoch 243/250
227/227 [==============================] - 0s 787us/step - loss: 0.0886 - accuracy: 0.9550 - mae: 0.0886 - pearson_correlation: 0.7626 - euclidean_distance: 0.1450
Epoch 244/250
227/227 [==============================] - 0s 820us/step - loss: 0.0871 - accuracy: 0.9554 - mae: 0.0871 - pearson_correlation: 0.7637 - euclidean_distance: 0.1429
Epoch 245/250
227/227 [==============================] - 0s 775us/step - loss: 0.0890 - accuracy: 0.9550 - mae: 0.0890 - pearson_correlation: 0.7665 - euclidean_distance: 0.1446
Epoch 246/250
227/227 [==============================] - 0s 783us/step - loss: 0.0893 - accuracy: 0.9550 - mae: 0.0893 - pearson_correlation: 0.7612 - euclidean_distance: 0.1462
Epoch 247/250
227/227 [==============================] - 0s 775us/step - loss: 0.0879 - accuracy: 0.9550 - mae: 0.0879 - pearson_correlation: 0.7645 - euclidean_distance: 0.1436
Epoch 248/250
227/227 [==============================] - 0s 777us/step - loss: 0.0885 - accuracy: 0.9554 - mae: 0.0885 - pearson_correlation: 0.7724 - euclidean_distance: 0.1441
Epoch 249/250
227/227 [==============================] - 0s 778us/step - loss: 0.0868 - accuracy: 0.9554 - mae: 0.0868 - pearson_correlation: 0.7684 - euclidean_distance: 0.1415
Epoch 250/250
227/227 [==============================] - 0s 769us/step - loss: 0.0895 - accuracy: 0.9550 - mae: 0.0895 - pearson_correlation: 0.7627 - euclidean_distance: 0.1461
114/114 [==============================] - 0s 430us/step
Epoch 1/250
227/227 [==============================] - 1s 790us/step - loss: 0.6655 - accuracy: 0.6305 - mae: 0.6655 - pearson_correlation: 0.1854 - euclidean_distance: 0.9811
Epoch 2/250
227/227 [==============================] - 0s 786us/step - loss: 0.6539 - accuracy: 0.6168 - mae: 0.6539 - pearson_correlation: 0.1645 - euclidean_distance: 0.9673
Epoch 3/250
227/227 [==============================] - 0s 773us/step - loss: 0.6381 - accuracy: 0.5966 - mae: 0.6381 - pearson_correlation: 0.1390 - euclidean_distance: 0.9469
Epoch 4/250
227/227 [==============================] - 0s 768us/step - loss: 0.6212 - accuracy: 0.5692 - mae: 0.6212 - pearson_correlation: 0.0973 - euclidean_distance: 0.9265
Epoch 5/250
227/227 [==============================] - 0s 772us/step - loss: 0.6081 - accuracy: 0.5710 - mae: 0.6081 - pearson_correlation: 0.0858 - euclidean_distance: 0.9096
Epoch 6/250
227/227 [==============================] - 0s 826us/step - loss: 0.5954 - accuracy: 0.5463 - mae: 0.5954 - pearson_correlation: 0.0612 - euclidean_distance: 0.8944
Epoch 7/250
227/227 [==============================] - 0s 797us/step - loss: 0.5810 - accuracy: 0.5419 - mae: 0.5810 - pearson_correlation: 0.0288 - euclidean_distance: 0.8764
Epoch 8/250
227/227 [==============================] - 0s 775us/step - loss: 0.5674 - accuracy: 0.5295 - mae: 0.5674 - pearson_correlation: 0.0227 - euclidean_distance: 0.8588
Epoch 9/250
227/227 [==============================] - 0s 775us/step - loss: 0.5547 - accuracy: 0.5106 - mae: 0.5547 - pearson_correlation: -0.0044 - euclidean_distance: 0.8426
Epoch 10/250
227/227 [==============================] - 0s 773us/step - loss: 0.5438 - accuracy: 0.5110 - mae: 0.5438 - pearson_correlation: -0.0164 - euclidean_distance: 0.8282
Epoch 11/250
227/227 [==============================] - 0s 776us/step - loss: 0.5314 - accuracy: 0.4841 - mae: 0.5314 - pearson_correlation: -0.0422 - euclidean_distance: 0.8134
Epoch 12/250
227/227 [==============================] - 0s 774us/step - loss: 0.5204 - accuracy: 0.4934 - mae: 0.5204 - pearson_correlation: -0.0334 - euclidean_distance: 0.7976
Epoch 13/250
227/227 [==============================] - 0s 798us/step - loss: 0.5084 - accuracy: 0.4762 - mae: 0.5084 - pearson_correlation: -0.0564 - euclidean_distance: 0.7820
Epoch 14/250
227/227 [==============================] - 0s 774us/step - loss: 0.4986 - accuracy: 0.4705 - mae: 0.4986 - pearson_correlation: -0.0654 - euclidean_distance: 0.7681
Epoch 15/250
227/227 [==============================] - 0s 775us/step - loss: 0.4891 - accuracy: 0.4577 - mae: 0.4891 - pearson_correlation: -0.0722 - euclidean_distance: 0.7549
Epoch 16/250
227/227 [==============================] - 0s 775us/step - loss: 0.4778 - accuracy: 0.4700 - mae: 0.4778 - pearson_correlation: -0.0631 - euclidean_distance: 0.7405
Epoch 17/250
227/227 [==============================] - 0s 773us/step - loss: 0.4671 - accuracy: 0.4484 - mae: 0.4671 - pearson_correlation: -0.0811 - euclidean_distance: 0.7261
Epoch 18/250
227/227 [==============================] - 0s 770us/step - loss: 0.4571 - accuracy: 0.4519 - mae: 0.4571 - pearson_correlation: -0.0728 - euclidean_distance: 0.7113
Epoch 19/250
227/227 [==============================] - 0s 771us/step - loss: 0.4488 - accuracy: 0.4612 - mae: 0.4488 - pearson_correlation: -0.0743 - euclidean_distance: 0.6996
Epoch 20/250
227/227 [==============================] - 0s 771us/step - loss: 0.4384 - accuracy: 0.4511 - mae: 0.4384 - pearson_correlation: -0.0732 - euclidean_distance: 0.6852
Epoch 21/250
227/227 [==============================] - 0s 773us/step - loss: 0.4289 - accuracy: 0.4374 - mae: 0.4289 - pearson_correlation: -0.0702 - euclidean_distance: 0.6717
Epoch 22/250
227/227 [==============================] - 0s 770us/step - loss: 0.4199 - accuracy: 0.4524 - mae: 0.4199 - pearson_correlation: -0.0465 - euclidean_distance: 0.6576
Epoch 23/250
227/227 [==============================] - 0s 775us/step - loss: 0.4116 - accuracy: 0.4418 - mae: 0.4116 - pearson_correlation: -0.0574 - euclidean_distance: 0.6457
Epoch 24/250
227/227 [==============================] - 0s 770us/step - loss: 0.4016 - accuracy: 0.4493 - mae: 0.4016 - pearson_correlation: -0.0509 - euclidean_distance: 0.6295
Epoch 25/250
227/227 [==============================] - 0s 779us/step - loss: 0.3941 - accuracy: 0.4489 - mae: 0.3941 - pearson_correlation: -0.0406 - euclidean_distance: 0.6200
Epoch 26/250
227/227 [==============================] - 0s 772us/step - loss: 0.3841 - accuracy: 0.4515 - mae: 0.3841 - pearson_correlation: -0.0398 - euclidean_distance: 0.6052
Epoch 27/250
227/227 [==============================] - 0s 775us/step - loss: 0.3767 - accuracy: 0.4647 - mae: 0.3767 - pearson_correlation: -0.0134 - euclidean_distance: 0.5925
Epoch 28/250
227/227 [==============================] - 0s 773us/step - loss: 0.3675 - accuracy: 0.4793 - mae: 0.3675 - pearson_correlation: -0.0169 - euclidean_distance: 0.5795
Epoch 29/250
227/227 [==============================] - 0s 771us/step - loss: 0.3595 - accuracy: 0.4674 - mae: 0.3595 - pearson_correlation: -0.0158 - euclidean_distance: 0.5681
Epoch 30/250
227/227 [==============================] - 0s 774us/step - loss: 0.3487 - accuracy: 0.4859 - mae: 0.3487 - pearson_correlation: 0.0240 - euclidean_distance: 0.5507
Epoch 31/250
227/227 [==============================] - 0s 773us/step - loss: 0.3419 - accuracy: 0.4960 - mae: 0.3419 - pearson_correlation: 0.0259 - euclidean_distance: 0.5408
Epoch 32/250
227/227 [==============================] - 0s 773us/step - loss: 0.3362 - accuracy: 0.4987 - mae: 0.3362 - pearson_correlation: 0.0538 - euclidean_distance: 0.5316
Epoch 33/250
227/227 [==============================] - 0s 774us/step - loss: 0.3254 - accuracy: 0.5251 - mae: 0.3254 - pearson_correlation: 0.0655 - euclidean_distance: 0.5142
Epoch 34/250
227/227 [==============================] - 0s 772us/step - loss: 0.3205 - accuracy: 0.5410 - mae: 0.3205 - pearson_correlation: 0.0830 - euclidean_distance: 0.5062
Epoch 35/250
227/227 [==============================] - 0s 775us/step - loss: 0.3113 - accuracy: 0.5467 - mae: 0.3113 - pearson_correlation: 0.0872 - euclidean_distance: 0.4943
Epoch 36/250
227/227 [==============================] - 0s 776us/step - loss: 0.3037 - accuracy: 0.5639 - mae: 0.3037 - pearson_correlation: 0.1117 - euclidean_distance: 0.4800
Epoch 37/250
227/227 [==============================] - 0s 779us/step - loss: 0.2961 - accuracy: 0.5970 - mae: 0.2961 - pearson_correlation: 0.1430 - euclidean_distance: 0.4674
Epoch 38/250
227/227 [==============================] - 0s 775us/step - loss: 0.2878 - accuracy: 0.6071 - mae: 0.2878 - pearson_correlation: 0.1465 - euclidean_distance: 0.4558
Epoch 39/250
227/227 [==============================] - 0s 776us/step - loss: 0.2789 - accuracy: 0.6186 - mae: 0.2789 - pearson_correlation: 0.1750 - euclidean_distance: 0.4433
Epoch 40/250
227/227 [==============================] - 0s 776us/step - loss: 0.2726 - accuracy: 0.6565 - mae: 0.2726 - pearson_correlation: 0.1920 - euclidean_distance: 0.4326
Epoch 41/250
227/227 [==============================] - 0s 775us/step - loss: 0.2668 - accuracy: 0.6658 - mae: 0.2668 - pearson_correlation: 0.2075 - euclidean_distance: 0.4237
Epoch 42/250
227/227 [==============================] - 0s 772us/step - loss: 0.2598 - accuracy: 0.6953 - mae: 0.2598 - pearson_correlation: 0.2233 - euclidean_distance: 0.4129
Epoch 43/250
227/227 [==============================] - 0s 824us/step - loss: 0.2505 - accuracy: 0.7174 - mae: 0.2505 - pearson_correlation: 0.2469 - euclidean_distance: 0.3976
Epoch 44/250
227/227 [==============================] - 0s 848us/step - loss: 0.2420 - accuracy: 0.7302 - mae: 0.2420 - pearson_correlation: 0.2759 - euclidean_distance: 0.3864
Epoch 45/250
227/227 [==============================] - 0s 885us/step - loss: 0.2374 - accuracy: 0.7518 - mae: 0.2374 - pearson_correlation: 0.2842 - euclidean_distance: 0.3781
Epoch 46/250
227/227 [==============================] - 0s 839us/step - loss: 0.2329 - accuracy: 0.7892 - mae: 0.2329 - pearson_correlation: 0.3022 - euclidean_distance: 0.3698
Epoch 47/250
227/227 [==============================] - 0s 788us/step - loss: 0.2253 - accuracy: 0.8025 - mae: 0.2253 - pearson_correlation: 0.3294 - euclidean_distance: 0.3581
Epoch 48/250
227/227 [==============================] - 0s 789us/step - loss: 0.2207 - accuracy: 0.8108 - mae: 0.2207 - pearson_correlation: 0.3385 - euclidean_distance: 0.3509
Epoch 49/250
227/227 [==============================] - 0s 786us/step - loss: 0.2160 - accuracy: 0.8355 - mae: 0.2160 - pearson_correlation: 0.3562 - euclidean_distance: 0.3434
Epoch 50/250
227/227 [==============================] - 0s 785us/step - loss: 0.2057 - accuracy: 0.8435 - mae: 0.2057 - pearson_correlation: 0.3774 - euclidean_distance: 0.3275
Epoch 51/250
227/227 [==============================] - 0s 788us/step - loss: 0.2044 - accuracy: 0.8593 - mae: 0.2044 - pearson_correlation: 0.3888 - euclidean_distance: 0.3249
Epoch 52/250
227/227 [==============================] - 0s 780us/step - loss: 0.1985 - accuracy: 0.8602 - mae: 0.1985 - pearson_correlation: 0.4041 - euclidean_distance: 0.3160
Epoch 53/250
227/227 [==============================] - 0s 777us/step - loss: 0.1991 - accuracy: 0.8602 - mae: 0.1991 - pearson_correlation: 0.4050 - euclidean_distance: 0.3164
Epoch 54/250
227/227 [==============================] - 0s 785us/step - loss: 0.1905 - accuracy: 0.8796 - mae: 0.1905 - pearson_correlation: 0.4215 - euclidean_distance: 0.3034
Epoch 55/250
227/227 [==============================] - 0s 789us/step - loss: 0.1880 - accuracy: 0.8995 - mae: 0.1880 - pearson_correlation: 0.4353 - euclidean_distance: 0.2999
Epoch 56/250
227/227 [==============================] - 0s 784us/step - loss: 0.1845 - accuracy: 0.8959 - mae: 0.1845 - pearson_correlation: 0.4389 - euclidean_distance: 0.2944
Epoch 57/250
227/227 [==============================] - 0s 786us/step - loss: 0.1815 - accuracy: 0.9017 - mae: 0.1815 - pearson_correlation: 0.4557 - euclidean_distance: 0.2896
Epoch 58/250
227/227 [==============================] - 0s 797us/step - loss: 0.1813 - accuracy: 0.9017 - mae: 0.1813 - pearson_correlation: 0.4584 - euclidean_distance: 0.2888
Epoch 59/250
227/227 [==============================] - 0s 785us/step - loss: 0.1793 - accuracy: 0.9105 - mae: 0.1793 - pearson_correlation: 0.4709 - euclidean_distance: 0.2854
Epoch 60/250
227/227 [==============================] - 0s 785us/step - loss: 0.1734 - accuracy: 0.9162 - mae: 0.1734 - pearson_correlation: 0.4918 - euclidean_distance: 0.2757
Epoch 61/250
227/227 [==============================] - 0s 785us/step - loss: 0.1735 - accuracy: 0.9096 - mae: 0.1735 - pearson_correlation: 0.4761 - euclidean_distance: 0.2765
Epoch 62/250
227/227 [==============================] - 0s 786us/step - loss: 0.1702 - accuracy: 0.9255 - mae: 0.1702 - pearson_correlation: 0.5023 - euclidean_distance: 0.2715
Epoch 63/250
227/227 [==============================] - 0s 786us/step - loss: 0.1660 - accuracy: 0.9255 - mae: 0.1660 - pearson_correlation: 0.5066 - euclidean_distance: 0.2654
Epoch 64/250
227/227 [==============================] - 0s 783us/step - loss: 0.1669 - accuracy: 0.9220 - mae: 0.1669 - pearson_correlation: 0.5103 - euclidean_distance: 0.2665
Epoch 65/250
227/227 [==============================] - 0s 787us/step - loss: 0.1643 - accuracy: 0.9312 - mae: 0.1643 - pearson_correlation: 0.5182 - euclidean_distance: 0.2627
Epoch 66/250
227/227 [==============================] - 0s 790us/step - loss: 0.1646 - accuracy: 0.9281 - mae: 0.1646 - pearson_correlation: 0.5180 - euclidean_distance: 0.2616
Epoch 67/250
227/227 [==============================] - 0s 787us/step - loss: 0.1598 - accuracy: 0.9352 - mae: 0.1598 - pearson_correlation: 0.5318 - euclidean_distance: 0.2556
Epoch 68/250
227/227 [==============================] - 0s 782us/step - loss: 0.1617 - accuracy: 0.9259 - mae: 0.1617 - pearson_correlation: 0.5242 - euclidean_distance: 0.2569
Epoch 69/250
227/227 [==============================] - 0s 775us/step - loss: 0.1585 - accuracy: 0.9321 - mae: 0.1585 - pearson_correlation: 0.5400 - euclidean_distance: 0.2525
Epoch 70/250
227/227 [==============================] - 0s 775us/step - loss: 0.1576 - accuracy: 0.9361 - mae: 0.1576 - pearson_correlation: 0.5433 - euclidean_distance: 0.2513
Epoch 71/250
227/227 [==============================] - 0s 772us/step - loss: 0.1531 - accuracy: 0.9369 - mae: 0.1531 - pearson_correlation: 0.5570 - euclidean_distance: 0.2442
Epoch 72/250
227/227 [==============================] - 0s 770us/step - loss: 0.1520 - accuracy: 0.9352 - mae: 0.1520 - pearson_correlation: 0.5632 - euclidean_distance: 0.2425
Epoch 73/250
227/227 [==============================] - 0s 775us/step - loss: 0.1528 - accuracy: 0.9431 - mae: 0.1528 - pearson_correlation: 0.5683 - euclidean_distance: 0.2434
Epoch 74/250
227/227 [==============================] - 0s 772us/step - loss: 0.1525 - accuracy: 0.9369 - mae: 0.1525 - pearson_correlation: 0.5697 - euclidean_distance: 0.2430
Epoch 75/250
227/227 [==============================] - 0s 781us/step - loss: 0.1532 - accuracy: 0.9400 - mae: 0.1532 - pearson_correlation: 0.5645 - euclidean_distance: 0.2441
Epoch 76/250
227/227 [==============================] - 0s 784us/step - loss: 0.1452 - accuracy: 0.9400 - mae: 0.1452 - pearson_correlation: 0.5876 - euclidean_distance: 0.2318
Epoch 77/250
227/227 [==============================] - 0s 773us/step - loss: 0.1487 - accuracy: 0.9418 - mae: 0.1487 - pearson_correlation: 0.5815 - euclidean_distance: 0.2366
Epoch 78/250
227/227 [==============================] - 0s 773us/step - loss: 0.1483 - accuracy: 0.9462 - mae: 0.1483 - pearson_correlation: 0.5788 - euclidean_distance: 0.2359
Epoch 79/250
227/227 [==============================] - 0s 782us/step - loss: 0.1455 - accuracy: 0.9444 - mae: 0.1455 - pearson_correlation: 0.5897 - euclidean_distance: 0.2309
Epoch 80/250
227/227 [==============================] - 0s 781us/step - loss: 0.1431 - accuracy: 0.9449 - mae: 0.1431 - pearson_correlation: 0.6005 - euclidean_distance: 0.2280
Epoch 81/250
227/227 [==============================] - 0s 782us/step - loss: 0.1425 - accuracy: 0.9480 - mae: 0.1425 - pearson_correlation: 0.5934 - euclidean_distance: 0.2274
Epoch 82/250
227/227 [==============================] - 0s 781us/step - loss: 0.1427 - accuracy: 0.9418 - mae: 0.1427 - pearson_correlation: 0.5969 - euclidean_distance: 0.2276
Epoch 83/250
227/227 [==============================] - 0s 784us/step - loss: 0.1394 - accuracy: 0.9489 - mae: 0.1394 - pearson_correlation: 0.6161 - euclidean_distance: 0.2220
Epoch 84/250
227/227 [==============================] - 0s 779us/step - loss: 0.1393 - accuracy: 0.9462 - mae: 0.1393 - pearson_correlation: 0.6160 - euclidean_distance: 0.2213
Epoch 85/250
227/227 [==============================] - 0s 783us/step - loss: 0.1410 - accuracy: 0.9462 - mae: 0.1410 - pearson_correlation: 0.6089 - euclidean_distance: 0.2247
Epoch 86/250
227/227 [==============================] - 0s 779us/step - loss: 0.1373 - accuracy: 0.9449 - mae: 0.1373 - pearson_correlation: 0.6223 - euclidean_distance: 0.2186
Epoch 87/250
227/227 [==============================] - 0s 781us/step - loss: 0.1386 - accuracy: 0.9484 - mae: 0.1386 - pearson_correlation: 0.6149 - euclidean_distance: 0.2204
Epoch 88/250
227/227 [==============================] - 0s 773us/step - loss: 0.1339 - accuracy: 0.9497 - mae: 0.1339 - pearson_correlation: 0.6356 - euclidean_distance: 0.2138
Epoch 89/250
227/227 [==============================] - 0s 772us/step - loss: 0.1369 - accuracy: 0.9475 - mae: 0.1369 - pearson_correlation: 0.6282 - euclidean_distance: 0.2175
Epoch 90/250
227/227 [==============================] - 0s 772us/step - loss: 0.1359 - accuracy: 0.9511 - mae: 0.1359 - pearson_correlation: 0.6307 - euclidean_distance: 0.2164
Epoch 91/250
227/227 [==============================] - 0s 775us/step - loss: 0.1370 - accuracy: 0.9475 - mae: 0.1370 - pearson_correlation: 0.6166 - euclidean_distance: 0.2179
Epoch 92/250
227/227 [==============================] - 0s 772us/step - loss: 0.1334 - accuracy: 0.9497 - mae: 0.1334 - pearson_correlation: 0.6365 - euclidean_distance: 0.2117
Epoch 93/250
227/227 [==============================] - 0s 774us/step - loss: 0.1351 - accuracy: 0.9502 - mae: 0.1351 - pearson_correlation: 0.6320 - euclidean_distance: 0.2151
Epoch 94/250
227/227 [==============================] - 0s 777us/step - loss: 0.1331 - accuracy: 0.9511 - mae: 0.1331 - pearson_correlation: 0.6376 - euclidean_distance: 0.2113
Epoch 95/250
227/227 [==============================] - 0s 775us/step - loss: 0.1290 - accuracy: 0.9515 - mae: 0.1290 - pearson_correlation: 0.6495 - euclidean_distance: 0.2056
Epoch 96/250
227/227 [==============================] - 0s 777us/step - loss: 0.1288 - accuracy: 0.9519 - mae: 0.1288 - pearson_correlation: 0.6491 - euclidean_distance: 0.2055
Epoch 97/250
227/227 [==============================] - 0s 772us/step - loss: 0.1289 - accuracy: 0.9528 - mae: 0.1289 - pearson_correlation: 0.6545 - euclidean_distance: 0.2045
Epoch 98/250
227/227 [==============================] - 0s 773us/step - loss: 0.1289 - accuracy: 0.9519 - mae: 0.1289 - pearson_correlation: 0.6568 - euclidean_distance: 0.2049
Epoch 99/250
227/227 [==============================] - 0s 772us/step - loss: 0.1283 - accuracy: 0.9511 - mae: 0.1283 - pearson_correlation: 0.6529 - euclidean_distance: 0.2045
Epoch 100/250
227/227 [==============================] - 0s 767us/step - loss: 0.1274 - accuracy: 0.9528 - mae: 0.1274 - pearson_correlation: 0.6579 - euclidean_distance: 0.2027
Epoch 101/250
227/227 [==============================] - 0s 774us/step - loss: 0.1263 - accuracy: 0.9524 - mae: 0.1263 - pearson_correlation: 0.6626 - euclidean_distance: 0.2007
Epoch 102/250
227/227 [==============================] - 0s 770us/step - loss: 0.1284 - accuracy: 0.9502 - mae: 0.1284 - pearson_correlation: 0.6457 - euclidean_distance: 0.2046
Epoch 103/250
227/227 [==============================] - 0s 772us/step - loss: 0.1252 - accuracy: 0.9528 - mae: 0.1252 - pearson_correlation: 0.6597 - euclidean_distance: 0.1992
Epoch 104/250
227/227 [==============================] - 0s 776us/step - loss: 0.1246 - accuracy: 0.9506 - mae: 0.1246 - pearson_correlation: 0.6720 - euclidean_distance: 0.1983
Epoch 105/250
227/227 [==============================] - 0s 774us/step - loss: 0.1237 - accuracy: 0.9524 - mae: 0.1237 - pearson_correlation: 0.6693 - euclidean_distance: 0.1968
Epoch 106/250
227/227 [==============================] - 0s 773us/step - loss: 0.1247 - accuracy: 0.9528 - mae: 0.1247 - pearson_correlation: 0.6716 - euclidean_distance: 0.1986
Epoch 107/250
227/227 [==============================] - 0s 774us/step - loss: 0.1235 - accuracy: 0.9524 - mae: 0.1235 - pearson_correlation: 0.6617 - euclidean_distance: 0.1969
Epoch 108/250
227/227 [==============================] - 0s 784us/step - loss: 0.1207 - accuracy: 0.9541 - mae: 0.1207 - pearson_correlation: 0.6803 - euclidean_distance: 0.1924
Epoch 109/250
227/227 [==============================] - 0s 785us/step - loss: 0.1227 - accuracy: 0.9533 - mae: 0.1227 - pearson_correlation: 0.6733 - euclidean_distance: 0.1952
Epoch 110/250
227/227 [==============================] - 0s 783us/step - loss: 0.1227 - accuracy: 0.9546 - mae: 0.1227 - pearson_correlation: 0.6707 - euclidean_distance: 0.1952
Epoch 111/250
227/227 [==============================] - 0s 782us/step - loss: 0.1198 - accuracy: 0.9546 - mae: 0.1198 - pearson_correlation: 0.6867 - euclidean_distance: 0.1907
Epoch 112/250
227/227 [==============================] - 0s 782us/step - loss: 0.1203 - accuracy: 0.9550 - mae: 0.1203 - pearson_correlation: 0.6805 - euclidean_distance: 0.1918
Epoch 113/250
227/227 [==============================] - 0s 785us/step - loss: 0.1198 - accuracy: 0.9537 - mae: 0.1198 - pearson_correlation: 0.6806 - euclidean_distance: 0.1906
Epoch 114/250
227/227 [==============================] - 0s 816us/step - loss: 0.1189 - accuracy: 0.9546 - mae: 0.1189 - pearson_correlation: 0.6876 - euclidean_distance: 0.1891
Epoch 115/250
227/227 [==============================] - 0s 788us/step - loss: 0.1176 - accuracy: 0.9524 - mae: 0.1176 - pearson_correlation: 0.6883 - euclidean_distance: 0.1874
Epoch 116/250
227/227 [==============================] - 0s 787us/step - loss: 0.1210 - accuracy: 0.9546 - mae: 0.1210 - pearson_correlation: 0.6842 - euclidean_distance: 0.1917
Epoch 117/250
227/227 [==============================] - 0s 790us/step - loss: 0.1197 - accuracy: 0.9519 - mae: 0.1197 - pearson_correlation: 0.6854 - euclidean_distance: 0.1902
Epoch 118/250
227/227 [==============================] - 0s 785us/step - loss: 0.1167 - accuracy: 0.9533 - mae: 0.1167 - pearson_correlation: 0.6941 - euclidean_distance: 0.1862
Epoch 119/250
227/227 [==============================] - 0s 785us/step - loss: 0.1162 - accuracy: 0.9537 - mae: 0.1162 - pearson_correlation: 0.6940 - euclidean_distance: 0.1847
Epoch 120/250
227/227 [==============================] - 0s 821us/step - loss: 0.1150 - accuracy: 0.9541 - mae: 0.1150 - pearson_correlation: 0.6967 - euclidean_distance: 0.1836
Epoch 121/250
227/227 [==============================] - 0s 786us/step - loss: 0.1169 - accuracy: 0.9537 - mae: 0.1169 - pearson_correlation: 0.6916 - euclidean_distance: 0.1862
Epoch 122/250
227/227 [==============================] - 0s 790us/step - loss: 0.1165 - accuracy: 0.9537 - mae: 0.1165 - pearson_correlation: 0.6967 - euclidean_distance: 0.1852
Epoch 123/250
227/227 [==============================] - 0s 783us/step - loss: 0.1133 - accuracy: 0.9537 - mae: 0.1133 - pearson_correlation: 0.7005 - euclidean_distance: 0.1806
Epoch 124/250
227/227 [==============================] - 0s 788us/step - loss: 0.1129 - accuracy: 0.9541 - mae: 0.1129 - pearson_correlation: 0.7069 - euclidean_distance: 0.1798
Epoch 125/250
227/227 [==============================] - 0s 785us/step - loss: 0.1136 - accuracy: 0.9550 - mae: 0.1136 - pearson_correlation: 0.7080 - euclidean_distance: 0.1810
Epoch 126/250
227/227 [==============================] - 0s 783us/step - loss: 0.1130 - accuracy: 0.9546 - mae: 0.1130 - pearson_correlation: 0.7005 - euclidean_distance: 0.1801
Epoch 127/250
227/227 [==============================] - 0s 784us/step - loss: 0.1133 - accuracy: 0.9541 - mae: 0.1133 - pearson_correlation: 0.7013 - euclidean_distance: 0.1808
Epoch 128/250
227/227 [==============================] - 0s 786us/step - loss: 0.1131 - accuracy: 0.9541 - mae: 0.1131 - pearson_correlation: 0.7086 - euclidean_distance: 0.1799
Epoch 129/250
227/227 [==============================] - 0s 784us/step - loss: 0.1137 - accuracy: 0.9550 - mae: 0.1137 - pearson_correlation: 0.7010 - euclidean_distance: 0.1813
Epoch 130/250
227/227 [==============================] - 0s 785us/step - loss: 0.1135 - accuracy: 0.9546 - mae: 0.1135 - pearson_correlation: 0.7010 - euclidean_distance: 0.1809
Epoch 131/250
227/227 [==============================] - 0s 780us/step - loss: 0.1122 - accuracy: 0.9546 - mae: 0.1122 - pearson_correlation: 0.7055 - euclidean_distance: 0.1789
Epoch 132/250
227/227 [==============================] - 0s 818us/step - loss: 0.1100 - accuracy: 0.9550 - mae: 0.1100 - pearson_correlation: 0.7089 - euclidean_distance: 0.1756
Epoch 133/250
227/227 [==============================] - 0s 860us/step - loss: 0.1126 - accuracy: 0.9550 - mae: 0.1126 - pearson_correlation: 0.7075 - euclidean_distance: 0.1804
Epoch 134/250
227/227 [==============================] - 0s 901us/step - loss: 0.1138 - accuracy: 0.9555 - mae: 0.1138 - pearson_correlation: 0.7032 - euclidean_distance: 0.1814
Epoch 135/250
227/227 [==============================] - 0s 848us/step - loss: 0.1103 - accuracy: 0.9537 - mae: 0.1103 - pearson_correlation: 0.7107 - euclidean_distance: 0.1765
Epoch 136/250
227/227 [==============================] - 0s 792us/step - loss: 0.1142 - accuracy: 0.9550 - mae: 0.1142 - pearson_correlation: 0.7001 - euclidean_distance: 0.1817
Epoch 137/250
227/227 [==============================] - 0s 784us/step - loss: 0.1108 - accuracy: 0.9555 - mae: 0.1108 - pearson_correlation: 0.7152 - euclidean_distance: 0.1766
Epoch 138/250
227/227 [==============================] - 0s 786us/step - loss: 0.1096 - accuracy: 0.9559 - mae: 0.1096 - pearson_correlation: 0.7213 - euclidean_distance: 0.1750
Epoch 139/250
227/227 [==============================] - 0s 786us/step - loss: 0.1096 - accuracy: 0.9563 - mae: 0.1096 - pearson_correlation: 0.7110 - euclidean_distance: 0.1750
Epoch 140/250
227/227 [==============================] - 0s 784us/step - loss: 0.1105 - accuracy: 0.9550 - mae: 0.1105 - pearson_correlation: 0.7132 - euclidean_distance: 0.1761
Epoch 141/250
227/227 [==============================] - 0s 784us/step - loss: 0.1105 - accuracy: 0.9546 - mae: 0.1105 - pearson_correlation: 0.7106 - euclidean_distance: 0.1766
Epoch 142/250
227/227 [==============================] - 0s 786us/step - loss: 0.1098 - accuracy: 0.9559 - mae: 0.1098 - pearson_correlation: 0.7124 - euclidean_distance: 0.1752
Epoch 143/250
227/227 [==============================] - 0s 787us/step - loss: 0.1058 - accuracy: 0.9550 - mae: 0.1058 - pearson_correlation: 0.7258 - euclidean_distance: 0.1701
Epoch 144/250
227/227 [==============================] - 0s 787us/step - loss: 0.1056 - accuracy: 0.9555 - mae: 0.1056 - pearson_correlation: 0.7199 - euclidean_distance: 0.1690
Epoch 145/250
227/227 [==============================] - 0s 786us/step - loss: 0.1071 - accuracy: 0.9550 - mae: 0.1071 - pearson_correlation: 0.7269 - euclidean_distance: 0.1707
Epoch 146/250
227/227 [==============================] - 0s 784us/step - loss: 0.1100 - accuracy: 0.9555 - mae: 0.1100 - pearson_correlation: 0.7116 - euclidean_distance: 0.1755
Epoch 147/250
227/227 [==============================] - 0s 785us/step - loss: 0.1101 - accuracy: 0.9555 - mae: 0.1101 - pearson_correlation: 0.7139 - euclidean_distance: 0.1759
Epoch 148/250
227/227 [==============================] - 0s 785us/step - loss: 0.1061 - accuracy: 0.9555 - mae: 0.1061 - pearson_correlation: 0.7227 - euclidean_distance: 0.1700
Epoch 149/250
227/227 [==============================] - 0s 785us/step - loss: 0.1068 - accuracy: 0.9550 - mae: 0.1068 - pearson_correlation: 0.7186 - euclidean_distance: 0.1711
Epoch 150/250
227/227 [==============================] - 0s 785us/step - loss: 0.1050 - accuracy: 0.9555 - mae: 0.1050 - pearson_correlation: 0.7257 - euclidean_distance: 0.1680
Epoch 151/250
227/227 [==============================] - 0s 782us/step - loss: 0.1067 - accuracy: 0.9555 - mae: 0.1067 - pearson_correlation: 0.7255 - euclidean_distance: 0.1707
Epoch 152/250
227/227 [==============================] - 0s 787us/step - loss: 0.1061 - accuracy: 0.9555 - mae: 0.1061 - pearson_correlation: 0.7298 - euclidean_distance: 0.1694
Epoch 153/250
227/227 [==============================] - 0s 783us/step - loss: 0.1032 - accuracy: 0.9563 - mae: 0.1032 - pearson_correlation: 0.7330 - euclidean_distance: 0.1652
Epoch 154/250
227/227 [==============================] - 0s 777us/step - loss: 0.1070 - accuracy: 0.9550 - mae: 0.1070 - pearson_correlation: 0.7231 - euclidean_distance: 0.1715
Epoch 155/250
227/227 [==============================] - 0s 777us/step - loss: 0.1039 - accuracy: 0.9546 - mae: 0.1039 - pearson_correlation: 0.7336 - euclidean_distance: 0.1665
Epoch 156/250
227/227 [==============================] - 0s 774us/step - loss: 0.1038 - accuracy: 0.9546 - mae: 0.1038 - pearson_correlation: 0.7314 - euclidean_distance: 0.1665
Epoch 157/250
227/227 [==============================] - 0s 778us/step - loss: 0.1025 - accuracy: 0.9550 - mae: 0.1025 - pearson_correlation: 0.7326 - euclidean_distance: 0.1648
Epoch 158/250
227/227 [==============================] - 0s 773us/step - loss: 0.1033 - accuracy: 0.9559 - mae: 0.1033 - pearson_correlation: 0.7381 - euclidean_distance: 0.1651
Epoch 159/250
227/227 [==============================] - 0s 771us/step - loss: 0.1053 - accuracy: 0.9541 - mae: 0.1053 - pearson_correlation: 0.7304 - euclidean_distance: 0.1682
Epoch 160/250
227/227 [==============================] - 0s 785us/step - loss: 0.1029 - accuracy: 0.9559 - mae: 0.1029 - pearson_correlation: 0.7337 - euclidean_distance: 0.1647
Epoch 161/250
227/227 [==============================] - 0s 775us/step - loss: 0.1032 - accuracy: 0.9555 - mae: 0.1032 - pearson_correlation: 0.7316 - euclidean_distance: 0.1651
Epoch 162/250
227/227 [==============================] - 0s 776us/step - loss: 0.1038 - accuracy: 0.9563 - mae: 0.1038 - pearson_correlation: 0.7326 - euclidean_distance: 0.1665
Epoch 163/250
227/227 [==============================] - 0s 776us/step - loss: 0.1030 - accuracy: 0.9555 - mae: 0.1030 - pearson_correlation: 0.7387 - euclidean_distance: 0.1650
Epoch 164/250
227/227 [==============================] - 0s 774us/step - loss: 0.1029 - accuracy: 0.9559 - mae: 0.1029 - pearson_correlation: 0.7347 - euclidean_distance: 0.1648
Epoch 165/250
227/227 [==============================] - 0s 775us/step - loss: 0.1030 - accuracy: 0.9555 - mae: 0.1030 - pearson_correlation: 0.7334 - euclidean_distance: 0.1648
Epoch 166/250
227/227 [==============================] - 0s 775us/step - loss: 0.1001 - accuracy: 0.9541 - mae: 0.1001 - pearson_correlation: 0.7385 - euclidean_distance: 0.1608
Epoch 167/250
227/227 [==============================] - 0s 785us/step - loss: 0.1051 - accuracy: 0.9559 - mae: 0.1051 - pearson_correlation: 0.7303 - euclidean_distance: 0.1684
Epoch 168/250
227/227 [==============================] - 0s 783us/step - loss: 0.1023 - accuracy: 0.9559 - mae: 0.1023 - pearson_correlation: 0.7362 - euclidean_distance: 0.1643
Epoch 169/250
227/227 [==============================] - 0s 782us/step - loss: 0.1018 - accuracy: 0.9559 - mae: 0.1018 - pearson_correlation: 0.7358 - euclidean_distance: 0.1636
Epoch 170/250
227/227 [==============================] - 0s 792us/step - loss: 0.1005 - accuracy: 0.9550 - mae: 0.1005 - pearson_correlation: 0.7356 - euclidean_distance: 0.1617
Epoch 171/250
227/227 [==============================] - 0s 787us/step - loss: 0.1024 - accuracy: 0.9559 - mae: 0.1024 - pearson_correlation: 0.7319 - euclidean_distance: 0.1641
Epoch 172/250
227/227 [==============================] - 0s 787us/step - loss: 0.1006 - accuracy: 0.9559 - mae: 0.1006 - pearson_correlation: 0.7390 - euclidean_distance: 0.1613
Epoch 173/250
227/227 [==============================] - 0s 785us/step - loss: 0.0995 - accuracy: 0.9555 - mae: 0.0995 - pearson_correlation: 0.7438 - euclidean_distance: 0.1601
Epoch 174/250
227/227 [==============================] - 0s 785us/step - loss: 0.0984 - accuracy: 0.9559 - mae: 0.0984 - pearson_correlation: 0.7493 - euclidean_distance: 0.1579
Epoch 175/250
227/227 [==============================] - 0s 785us/step - loss: 0.1004 - accuracy: 0.9555 - mae: 0.1004 - pearson_correlation: 0.7426 - euclidean_distance: 0.1614
Epoch 176/250
227/227 [==============================] - 0s 783us/step - loss: 0.1027 - accuracy: 0.9559 - mae: 0.1027 - pearson_correlation: 0.7310 - euclidean_distance: 0.1651
Epoch 177/250
227/227 [==============================] - 0s 785us/step - loss: 0.1002 - accuracy: 0.9559 - mae: 0.1002 - pearson_correlation: 0.7402 - euclidean_distance: 0.1611
Epoch 178/250
227/227 [==============================] - 0s 783us/step - loss: 0.0997 - accuracy: 0.9559 - mae: 0.0997 - pearson_correlation: 0.7422 - euclidean_distance: 0.1602
Epoch 179/250
227/227 [==============================] - 0s 779us/step - loss: 0.0984 - accuracy: 0.9555 - mae: 0.0984 - pearson_correlation: 0.7442 - euclidean_distance: 0.1579
Epoch 180/250
227/227 [==============================] - 0s 787us/step - loss: 0.0998 - accuracy: 0.9559 - mae: 0.0998 - pearson_correlation: 0.7461 - euclidean_distance: 0.1595
Epoch 181/250
227/227 [==============================] - 0s 785us/step - loss: 0.0976 - accuracy: 0.9555 - mae: 0.0976 - pearson_correlation: 0.7416 - euclidean_distance: 0.1572
Epoch 182/250
227/227 [==============================] - 0s 784us/step - loss: 0.0984 - accuracy: 0.9559 - mae: 0.0984 - pearson_correlation: 0.7480 - euclidean_distance: 0.1580
Epoch 183/250
227/227 [==============================] - 0s 785us/step - loss: 0.0979 - accuracy: 0.9559 - mae: 0.0979 - pearson_correlation: 0.7454 - euclidean_distance: 0.1573
Epoch 184/250
227/227 [==============================] - 0s 784us/step - loss: 0.0970 - accuracy: 0.9550 - mae: 0.0970 - pearson_correlation: 0.7490 - euclidean_distance: 0.1556
Epoch 185/250
227/227 [==============================] - 0s 784us/step - loss: 0.0976 - accuracy: 0.9559 - mae: 0.0976 - pearson_correlation: 0.7459 - euclidean_distance: 0.1568
Epoch 186/250
227/227 [==============================] - 0s 783us/step - loss: 0.0955 - accuracy: 0.9559 - mae: 0.0955 - pearson_correlation: 0.7521 - euclidean_distance: 0.1541
Epoch 187/250
227/227 [==============================] - 0s 781us/step - loss: 0.0971 - accuracy: 0.9555 - mae: 0.0971 - pearson_correlation: 0.7520 - euclidean_distance: 0.1552
Epoch 188/250
227/227 [==============================] - 0s 782us/step - loss: 0.0995 - accuracy: 0.9559 - mae: 0.0995 - pearson_correlation: 0.7458 - euclidean_distance: 0.1591
Epoch 189/250
227/227 [==============================] - 0s 782us/step - loss: 0.0976 - accuracy: 0.9559 - mae: 0.0976 - pearson_correlation: 0.7445 - euclidean_distance: 0.1567
Epoch 190/250
227/227 [==============================] - 0s 781us/step - loss: 0.0960 - accuracy: 0.9550 - mae: 0.0960 - pearson_correlation: 0.7554 - euclidean_distance: 0.1543
Epoch 191/250
227/227 [==============================] - 0s 776us/step - loss: 0.0983 - accuracy: 0.9555 - mae: 0.0983 - pearson_correlation: 0.7473 - euclidean_distance: 0.1579
Epoch 192/250
227/227 [==============================] - 0s 773us/step - loss: 0.0987 - accuracy: 0.9555 - mae: 0.0987 - pearson_correlation: 0.7489 - euclidean_distance: 0.1589
Epoch 193/250
227/227 [==============================] - 0s 776us/step - loss: 0.0929 - accuracy: 0.9559 - mae: 0.0929 - pearson_correlation: 0.7577 - euclidean_distance: 0.1493
Epoch 194/250
227/227 [==============================] - 0s 772us/step - loss: 0.0964 - accuracy: 0.9559 - mae: 0.0964 - pearson_correlation: 0.7480 - euclidean_distance: 0.1552
Epoch 195/250
227/227 [==============================] - 0s 775us/step - loss: 0.0931 - accuracy: 0.9550 - mae: 0.0931 - pearson_correlation: 0.7583 - euclidean_distance: 0.1503
Epoch 196/250
227/227 [==============================] - 0s 772us/step - loss: 0.0946 - accuracy: 0.9559 - mae: 0.0946 - pearson_correlation: 0.7574 - euclidean_distance: 0.1515
Epoch 197/250
227/227 [==============================] - 0s 772us/step - loss: 0.0965 - accuracy: 0.9550 - mae: 0.0965 - pearson_correlation: 0.7478 - euclidean_distance: 0.1547
Epoch 198/250
227/227 [==============================] - 0s 774us/step - loss: 0.0948 - accuracy: 0.9555 - mae: 0.0948 - pearson_correlation: 0.7506 - euclidean_distance: 0.1528
Epoch 199/250
227/227 [==============================] - 0s 777us/step - loss: 0.0961 - accuracy: 0.9559 - mae: 0.0961 - pearson_correlation: 0.7539 - euclidean_distance: 0.1541
Epoch 200/250
227/227 [==============================] - 0s 776us/step - loss: 0.0960 - accuracy: 0.9559 - mae: 0.0960 - pearson_correlation: 0.7504 - euclidean_distance: 0.1539
Epoch 201/250
227/227 [==============================] - 0s 771us/step - loss: 0.0952 - accuracy: 0.9559 - mae: 0.0952 - pearson_correlation: 0.7532 - euclidean_distance: 0.1532
Epoch 202/250
227/227 [==============================] - 0s 772us/step - loss: 0.0928 - accuracy: 0.9559 - mae: 0.0928 - pearson_correlation: 0.7531 - euclidean_distance: 0.1500
Epoch 203/250
227/227 [==============================] - 0s 774us/step - loss: 0.0959 - accuracy: 0.9555 - mae: 0.0959 - pearson_correlation: 0.7532 - euclidean_distance: 0.1541
Epoch 204/250
227/227 [==============================] - 0s 776us/step - loss: 0.0948 - accuracy: 0.9563 - mae: 0.0948 - pearson_correlation: 0.7563 - euclidean_distance: 0.1521
Epoch 205/250
227/227 [==============================] - 0s 774us/step - loss: 0.0931 - accuracy: 0.9550 - mae: 0.0931 - pearson_correlation: 0.7608 - euclidean_distance: 0.1495
Epoch 206/250
227/227 [==============================] - 0s 775us/step - loss: 0.0926 - accuracy: 0.9559 - mae: 0.0926 - pearson_correlation: 0.7580 - euclidean_distance: 0.1493
Epoch 207/250
227/227 [==============================] - 0s 773us/step - loss: 0.0935 - accuracy: 0.9559 - mae: 0.0935 - pearson_correlation: 0.7604 - euclidean_distance: 0.1503
Epoch 208/250
227/227 [==============================] - 0s 774us/step - loss: 0.0934 - accuracy: 0.9555 - mae: 0.0934 - pearson_correlation: 0.7584 - euclidean_distance: 0.1505
Epoch 209/250
227/227 [==============================] - 0s 776us/step - loss: 0.0929 - accuracy: 0.9559 - mae: 0.0929 - pearson_correlation: 0.7646 - euclidean_distance: 0.1489
Epoch 210/250
227/227 [==============================] - 0s 774us/step - loss: 0.0931 - accuracy: 0.9559 - mae: 0.0931 - pearson_correlation: 0.7598 - euclidean_distance: 0.1501
Epoch 211/250
227/227 [==============================] - 0s 775us/step - loss: 0.0942 - accuracy: 0.9555 - mae: 0.0942 - pearson_correlation: 0.7482 - euclidean_distance: 0.1520
Epoch 212/250
227/227 [==============================] - 0s 775us/step - loss: 0.0943 - accuracy: 0.9559 - mae: 0.0943 - pearson_correlation: 0.7594 - euclidean_distance: 0.1518
Epoch 213/250
227/227 [==============================] - 0s 773us/step - loss: 0.0920 - accuracy: 0.9559 - mae: 0.0920 - pearson_correlation: 0.7590 - euclidean_distance: 0.1477
Epoch 214/250
227/227 [==============================] - 0s 771us/step - loss: 0.0945 - accuracy: 0.9559 - mae: 0.0945 - pearson_correlation: 0.7570 - euclidean_distance: 0.1519
Epoch 215/250
227/227 [==============================] - 0s 773us/step - loss: 0.0911 - accuracy: 0.9559 - mae: 0.0911 - pearson_correlation: 0.7694 - euclidean_distance: 0.1464
Epoch 216/250
227/227 [==============================] - 0s 788us/step - loss: 0.0916 - accuracy: 0.9559 - mae: 0.0916 - pearson_correlation: 0.7567 - euclidean_distance: 0.1475
Epoch 217/250
227/227 [==============================] - 0s 772us/step - loss: 0.0956 - accuracy: 0.9559 - mae: 0.0956 - pearson_correlation: 0.7543 - euclidean_distance: 0.1535
Epoch 218/250
227/227 [==============================] - 0s 773us/step - loss: 0.0938 - accuracy: 0.9555 - mae: 0.0938 - pearson_correlation: 0.7563 - euclidean_distance: 0.1511
Epoch 219/250
227/227 [==============================] - 0s 775us/step - loss: 0.0895 - accuracy: 0.9559 - mae: 0.0895 - pearson_correlation: 0.7677 - euclidean_distance: 0.1438
Epoch 220/250
227/227 [==============================] - 0s 773us/step - loss: 0.0912 - accuracy: 0.9559 - mae: 0.0912 - pearson_correlation: 0.7643 - euclidean_distance: 0.1471
Epoch 221/250
227/227 [==============================] - 0s 803us/step - loss: 0.0913 - accuracy: 0.9559 - mae: 0.0913 - pearson_correlation: 0.7571 - euclidean_distance: 0.1471
Epoch 222/250
227/227 [==============================] - 0s 850us/step - loss: 0.0919 - accuracy: 0.9559 - mae: 0.0919 - pearson_correlation: 0.7631 - euclidean_distance: 0.1483
Epoch 223/250
227/227 [==============================] - 0s 894us/step - loss: 0.0926 - accuracy: 0.9559 - mae: 0.0926 - pearson_correlation: 0.7602 - euclidean_distance: 0.1495
Epoch 224/250
227/227 [==============================] - 0s 871us/step - loss: 0.0905 - accuracy: 0.9559 - mae: 0.0905 - pearson_correlation: 0.7653 - euclidean_distance: 0.1462
Epoch 225/250
227/227 [==============================] - 0s 774us/step - loss: 0.0886 - accuracy: 0.9559 - mae: 0.0886 - pearson_correlation: 0.7673 - euclidean_distance: 0.1435
Epoch 226/250
227/227 [==============================] - 0s 785us/step - loss: 0.0915 - accuracy: 0.9559 - mae: 0.0915 - pearson_correlation: 0.7619 - euclidean_distance: 0.1476
Epoch 227/250
227/227 [==============================] - 0s 776us/step - loss: 0.0907 - accuracy: 0.9559 - mae: 0.0907 - pearson_correlation: 0.7666 - euclidean_distance: 0.1469
Epoch 228/250
227/227 [==============================] - 0s 776us/step - loss: 0.0893 - accuracy: 0.9559 - mae: 0.0893 - pearson_correlation: 0.7681 - euclidean_distance: 0.1436
Epoch 229/250
227/227 [==============================] - 0s 775us/step - loss: 0.0906 - accuracy: 0.9559 - mae: 0.0906 - pearson_correlation: 0.7630 - euclidean_distance: 0.1461
Epoch 230/250
227/227 [==============================] - 0s 774us/step - loss: 0.0894 - accuracy: 0.9559 - mae: 0.0894 - pearson_correlation: 0.7682 - euclidean_distance: 0.1445
Epoch 231/250
227/227 [==============================] - 0s 775us/step - loss: 0.0905 - accuracy: 0.9559 - mae: 0.0905 - pearson_correlation: 0.7653 - euclidean_distance: 0.1457
Epoch 232/250
227/227 [==============================] - 0s 773us/step - loss: 0.0906 - accuracy: 0.9559 - mae: 0.0906 - pearson_correlation: 0.7682 - euclidean_distance: 0.1460
Epoch 233/250
227/227 [==============================] - 0s 777us/step - loss: 0.0902 - accuracy: 0.9563 - mae: 0.0902 - pearson_correlation: 0.7697 - euclidean_distance: 0.1452
Epoch 234/250
227/227 [==============================] - 0s 774us/step - loss: 0.0878 - accuracy: 0.9559 - mae: 0.0878 - pearson_correlation: 0.7712 - euclidean_distance: 0.1416
Epoch 235/250
227/227 [==============================] - 0s 773us/step - loss: 0.0900 - accuracy: 0.9559 - mae: 0.0900 - pearson_correlation: 0.7714 - euclidean_distance: 0.1449
Epoch 236/250
227/227 [==============================] - 0s 773us/step - loss: 0.0916 - accuracy: 0.9559 - mae: 0.0916 - pearson_correlation: 0.7644 - euclidean_distance: 0.1474
Epoch 237/250
227/227 [==============================] - 0s 769us/step - loss: 0.0911 - accuracy: 0.9559 - mae: 0.0911 - pearson_correlation: 0.7640 - euclidean_distance: 0.1462
Epoch 238/250
227/227 [==============================] - 0s 775us/step - loss: 0.0888 - accuracy: 0.9559 - mae: 0.0888 - pearson_correlation: 0.7724 - euclidean_distance: 0.1431
Epoch 239/250
227/227 [==============================] - 0s 777us/step - loss: 0.0871 - accuracy: 0.9555 - mae: 0.0871 - pearson_correlation: 0.7730 - euclidean_distance: 0.1405
Epoch 240/250
227/227 [==============================] - 0s 772us/step - loss: 0.0894 - accuracy: 0.9559 - mae: 0.0894 - pearson_correlation: 0.7686 - euclidean_distance: 0.1441
Epoch 241/250
227/227 [==============================] - 0s 772us/step - loss: 0.0896 - accuracy: 0.9559 - mae: 0.0896 - pearson_correlation: 0.7696 - euclidean_distance: 0.1448
Epoch 242/250
227/227 [==============================] - 0s 772us/step - loss: 0.0876 - accuracy: 0.9559 - mae: 0.0876 - pearson_correlation: 0.7749 - euclidean_distance: 0.1415
Epoch 243/250
227/227 [==============================] - 0s 776us/step - loss: 0.0886 - accuracy: 0.9559 - mae: 0.0886 - pearson_correlation: 0.7706 - euclidean_distance: 0.1432
Epoch 244/250
227/227 [==============================] - 0s 774us/step - loss: 0.0881 - accuracy: 0.9559 - mae: 0.0881 - pearson_correlation: 0.7684 - euclidean_distance: 0.1426
Epoch 245/250
227/227 [==============================] - 0s 775us/step - loss: 0.0896 - accuracy: 0.9559 - mae: 0.0896 - pearson_correlation: 0.7678 - euclidean_distance: 0.1440
Epoch 246/250
227/227 [==============================] - 0s 775us/step - loss: 0.0874 - accuracy: 0.9559 - mae: 0.0874 - pearson_correlation: 0.7701 - euclidean_distance: 0.1412
Epoch 247/250
227/227 [==============================] - 0s 772us/step - loss: 0.0887 - accuracy: 0.9559 - mae: 0.0887 - pearson_correlation: 0.7736 - euclidean_distance: 0.1427
Epoch 248/250
227/227 [==============================] - 0s 775us/step - loss: 0.0878 - accuracy: 0.9559 - mae: 0.0878 - pearson_correlation: 0.7768 - euclidean_distance: 0.1416
Epoch 249/250
227/227 [==============================] - 0s 772us/step - loss: 0.0869 - accuracy: 0.9559 - mae: 0.0869 - pearson_correlation: 0.7763 - euclidean_distance: 0.1402
Epoch 250/250
227/227 [==============================] - 0s 774us/step - loss: 0.0888 - accuracy: 0.9555 - mae: 0.0888 - pearson_correlation: 0.7753 - euclidean_distance: 0.1424
114/114 [==============================] - 0s 437us/step
Epoch 1/300
227/227 [==============================] - 1s 813us/step - loss: 0.4714 - accuracy: 0.3401 - mae: 0.4714 - pearson_correlation: -0.2824 - euclidean_distance: 0.7570
Epoch 2/300
227/227 [==============================] - 0s 783us/step - loss: 0.4630 - accuracy: 0.3516 - mae: 0.4630 - pearson_correlation: -0.2711 - euclidean_distance: 0.7442
Epoch 3/300
227/227 [==============================] - 0s 780us/step - loss: 0.4559 - accuracy: 0.3516 - mae: 0.4559 - pearson_correlation: -0.2485 - euclidean_distance: 0.7315
Epoch 4/300
227/227 [==============================] - 0s 775us/step - loss: 0.4512 - accuracy: 0.3542 - mae: 0.4512 - pearson_correlation: -0.2391 - euclidean_distance: 0.7230
Epoch 5/300
227/227 [==============================] - 0s 778us/step - loss: 0.4422 - accuracy: 0.3727 - mae: 0.4422 - pearson_correlation: -0.2255 - euclidean_distance: 0.7093
Epoch 6/300
227/227 [==============================] - 0s 777us/step - loss: 0.4358 - accuracy: 0.3763 - mae: 0.4358 - pearson_correlation: -0.2061 - euclidean_distance: 0.6998
Epoch 7/300
227/227 [==============================] - 0s 777us/step - loss: 0.4296 - accuracy: 0.3767 - mae: 0.4296 - pearson_correlation: -0.1933 - euclidean_distance: 0.6891
Epoch 8/300
227/227 [==============================] - 0s 776us/step - loss: 0.4250 - accuracy: 0.3789 - mae: 0.4250 - pearson_correlation: -0.1805 - euclidean_distance: 0.6811
Epoch 9/300
227/227 [==============================] - 0s 777us/step - loss: 0.4172 - accuracy: 0.3939 - mae: 0.4172 - pearson_correlation: -0.1625 - euclidean_distance: 0.6693
Epoch 10/300
227/227 [==============================] - 0s 779us/step - loss: 0.4121 - accuracy: 0.4005 - mae: 0.4121 - pearson_correlation: -0.1429 - euclidean_distance: 0.6589
Epoch 11/300
227/227 [==============================] - 0s 779us/step - loss: 0.4074 - accuracy: 0.4195 - mae: 0.4074 - pearson_correlation: -0.1326 - euclidean_distance: 0.6502
Epoch 12/300
227/227 [==============================] - 0s 778us/step - loss: 0.3998 - accuracy: 0.4186 - mae: 0.3998 - pearson_correlation: -0.1261 - euclidean_distance: 0.6401
Epoch 13/300
227/227 [==============================] - 0s 778us/step - loss: 0.3959 - accuracy: 0.4151 - mae: 0.3959 - pearson_correlation: -0.1098 - euclidean_distance: 0.6327
Epoch 14/300
227/227 [==============================] - 0s 776us/step - loss: 0.3875 - accuracy: 0.4332 - mae: 0.3875 - pearson_correlation: -0.0836 - euclidean_distance: 0.6189
Epoch 15/300
227/227 [==============================] - 0s 777us/step - loss: 0.3810 - accuracy: 0.4420 - mae: 0.3810 - pearson_correlation: -0.0762 - euclidean_distance: 0.6084
Epoch 16/300
227/227 [==============================] - 0s 776us/step - loss: 0.3741 - accuracy: 0.4592 - mae: 0.3741 - pearson_correlation: -0.0626 - euclidean_distance: 0.5963
Epoch 17/300
227/227 [==============================] - 0s 780us/step - loss: 0.3691 - accuracy: 0.4729 - mae: 0.3691 - pearson_correlation: -0.0419 - euclidean_distance: 0.5878
Epoch 18/300
227/227 [==============================] - 0s 852us/step - loss: 0.3603 - accuracy: 0.4795 - mae: 0.3603 - pearson_correlation: -0.0253 - euclidean_distance: 0.5745
Epoch 19/300
227/227 [==============================] - 0s 806us/step - loss: 0.3532 - accuracy: 0.4971 - mae: 0.3532 - pearson_correlation: -0.0047 - euclidean_distance: 0.5620
Epoch 20/300
227/227 [==============================] - 0s 778us/step - loss: 0.3482 - accuracy: 0.5170 - mae: 0.3482 - pearson_correlation: 0.0152 - euclidean_distance: 0.5538
Epoch 21/300
227/227 [==============================] - 0s 777us/step - loss: 0.3416 - accuracy: 0.5390 - mae: 0.3416 - pearson_correlation: 0.0381 - euclidean_distance: 0.5434
Epoch 22/300
227/227 [==============================] - 0s 777us/step - loss: 0.3358 - accuracy: 0.5518 - mae: 0.3358 - pearson_correlation: 0.0682 - euclidean_distance: 0.5331
Epoch 23/300
227/227 [==============================] - 0s 781us/step - loss: 0.3320 - accuracy: 0.5527 - mae: 0.3320 - pearson_correlation: 0.0626 - euclidean_distance: 0.5266
Epoch 24/300
227/227 [==============================] - 0s 786us/step - loss: 0.3235 - accuracy: 0.5876 - mae: 0.3235 - pearson_correlation: 0.1001 - euclidean_distance: 0.5123
Epoch 25/300
227/227 [==============================] - 0s 782us/step - loss: 0.3181 - accuracy: 0.5920 - mae: 0.3181 - pearson_correlation: 0.1017 - euclidean_distance: 0.5044
Epoch 26/300
227/227 [==============================] - 0s 782us/step - loss: 0.3127 - accuracy: 0.6118 - mae: 0.3127 - pearson_correlation: 0.1221 - euclidean_distance: 0.4954
Epoch 27/300
227/227 [==============================] - 0s 780us/step - loss: 0.3066 - accuracy: 0.6237 - mae: 0.3066 - pearson_correlation: 0.1443 - euclidean_distance: 0.4853
Epoch 28/300
227/227 [==============================] - 0s 788us/step - loss: 0.2995 - accuracy: 0.6480 - mae: 0.2995 - pearson_correlation: 0.1681 - euclidean_distance: 0.4717
Epoch 29/300
227/227 [==============================] - 0s 784us/step - loss: 0.2947 - accuracy: 0.6423 - mae: 0.2947 - pearson_correlation: 0.1710 - euclidean_distance: 0.4668
Epoch 30/300
227/227 [==============================] - 0s 778us/step - loss: 0.2881 - accuracy: 0.6674 - mae: 0.2881 - pearson_correlation: 0.1969 - euclidean_distance: 0.4551
Epoch 31/300
227/227 [==============================] - 0s 776us/step - loss: 0.2834 - accuracy: 0.6749 - mae: 0.2834 - pearson_correlation: 0.2207 - euclidean_distance: 0.4478
Epoch 32/300
227/227 [==============================] - 0s 782us/step - loss: 0.2750 - accuracy: 0.6974 - mae: 0.2750 - pearson_correlation: 0.2312 - euclidean_distance: 0.4346
Epoch 33/300
227/227 [==============================] - 0s 789us/step - loss: 0.2742 - accuracy: 0.6961 - mae: 0.2742 - pearson_correlation: 0.2359 - euclidean_distance: 0.4330
Epoch 34/300
227/227 [==============================] - 0s 789us/step - loss: 0.2728 - accuracy: 0.7080 - mae: 0.2728 - pearson_correlation: 0.2547 - euclidean_distance: 0.4295
Epoch 35/300
227/227 [==============================] - 0s 791us/step - loss: 0.2659 - accuracy: 0.7230 - mae: 0.2659 - pearson_correlation: 0.2748 - euclidean_distance: 0.4192
Epoch 36/300
227/227 [==============================] - 0s 790us/step - loss: 0.2591 - accuracy: 0.7389 - mae: 0.2591 - pearson_correlation: 0.2793 - euclidean_distance: 0.4086
Epoch 37/300
227/227 [==============================] - 0s 790us/step - loss: 0.2595 - accuracy: 0.7375 - mae: 0.2595 - pearson_correlation: 0.2846 - euclidean_distance: 0.4088
Epoch 38/300
227/227 [==============================] - 0s 787us/step - loss: 0.2546 - accuracy: 0.7446 - mae: 0.2546 - pearson_correlation: 0.3056 - euclidean_distance: 0.4003
Epoch 39/300
227/227 [==============================] - 0s 791us/step - loss: 0.2467 - accuracy: 0.7521 - mae: 0.2467 - pearson_correlation: 0.3212 - euclidean_distance: 0.3903
Epoch 40/300
227/227 [==============================] - 0s 790us/step - loss: 0.2480 - accuracy: 0.7614 - mae: 0.2480 - pearson_correlation: 0.3224 - euclidean_distance: 0.3919
Epoch 41/300
227/227 [==============================] - 0s 789us/step - loss: 0.2383 - accuracy: 0.7821 - mae: 0.2383 - pearson_correlation: 0.3507 - euclidean_distance: 0.3748
Epoch 42/300
227/227 [==============================] - 0s 777us/step - loss: 0.2386 - accuracy: 0.7711 - mae: 0.2386 - pearson_correlation: 0.3542 - euclidean_distance: 0.3767
Epoch 43/300
227/227 [==============================] - 0s 774us/step - loss: 0.2363 - accuracy: 0.7719 - mae: 0.2363 - pearson_correlation: 0.3631 - euclidean_distance: 0.3725
Epoch 44/300
227/227 [==============================] - 0s 773us/step - loss: 0.2307 - accuracy: 0.7953 - mae: 0.2307 - pearson_correlation: 0.3844 - euclidean_distance: 0.3638
Epoch 45/300
227/227 [==============================] - 0s 777us/step - loss: 0.2290 - accuracy: 0.8068 - mae: 0.2290 - pearson_correlation: 0.3853 - euclidean_distance: 0.3618
Epoch 46/300
227/227 [==============================] - 0s 777us/step - loss: 0.2241 - accuracy: 0.8134 - mae: 0.2241 - pearson_correlation: 0.3962 - euclidean_distance: 0.3527
Epoch 47/300
227/227 [==============================] - 0s 776us/step - loss: 0.2229 - accuracy: 0.8112 - mae: 0.2229 - pearson_correlation: 0.4014 - euclidean_distance: 0.3525
Epoch 48/300
227/227 [==============================] - 0s 774us/step - loss: 0.2186 - accuracy: 0.8174 - mae: 0.2186 - pearson_correlation: 0.4112 - euclidean_distance: 0.3457
Epoch 49/300
227/227 [==============================] - 0s 775us/step - loss: 0.2157 - accuracy: 0.8143 - mae: 0.2157 - pearson_correlation: 0.4081 - euclidean_distance: 0.3415
Epoch 50/300
227/227 [==============================] - 0s 776us/step - loss: 0.2133 - accuracy: 0.8156 - mae: 0.2133 - pearson_correlation: 0.4275 - euclidean_distance: 0.3372
Epoch 51/300
227/227 [==============================] - 0s 775us/step - loss: 0.2112 - accuracy: 0.8174 - mae: 0.2112 - pearson_correlation: 0.4192 - euclidean_distance: 0.3360
Epoch 52/300
227/227 [==============================] - 0s 780us/step - loss: 0.2061 - accuracy: 0.8355 - mae: 0.2061 - pearson_correlation: 0.4383 - euclidean_distance: 0.3276
Epoch 53/300
227/227 [==============================] - 0s 778us/step - loss: 0.2035 - accuracy: 0.8284 - mae: 0.2035 - pearson_correlation: 0.4491 - euclidean_distance: 0.3229
Epoch 54/300
227/227 [==============================] - 0s 777us/step - loss: 0.2050 - accuracy: 0.8386 - mae: 0.2050 - pearson_correlation: 0.4478 - euclidean_distance: 0.3262
Epoch 55/300
227/227 [==============================] - 0s 774us/step - loss: 0.2060 - accuracy: 0.8381 - mae: 0.2060 - pearson_correlation: 0.4492 - euclidean_distance: 0.3270
Epoch 56/300
227/227 [==============================] - 0s 799us/step - loss: 0.1993 - accuracy: 0.8399 - mae: 0.1993 - pearson_correlation: 0.4672 - euclidean_distance: 0.3164
Epoch 57/300
227/227 [==============================] - 0s 847us/step - loss: 0.1971 - accuracy: 0.8474 - mae: 0.1971 - pearson_correlation: 0.4722 - euclidean_distance: 0.3130
Epoch 58/300
227/227 [==============================] - 0s 916us/step - loss: 0.1952 - accuracy: 0.8562 - mae: 0.1952 - pearson_correlation: 0.4769 - euclidean_distance: 0.3092
Epoch 59/300
227/227 [==============================] - 0s 858us/step - loss: 0.1913 - accuracy: 0.8536 - mae: 0.1913 - pearson_correlation: 0.4791 - euclidean_distance: 0.3033
Epoch 60/300
227/227 [==============================] - 0s 779us/step - loss: 0.1902 - accuracy: 0.8584 - mae: 0.1902 - pearson_correlation: 0.4892 - euclidean_distance: 0.3025
Epoch 61/300
227/227 [==============================] - 0s 779us/step - loss: 0.1884 - accuracy: 0.8571 - mae: 0.1884 - pearson_correlation: 0.4904 - euclidean_distance: 0.2986
Epoch 62/300
227/227 [==============================] - 0s 775us/step - loss: 0.1881 - accuracy: 0.8641 - mae: 0.1881 - pearson_correlation: 0.4971 - euclidean_distance: 0.2997
Epoch 63/300
227/227 [==============================] - 0s 779us/step - loss: 0.1826 - accuracy: 0.8646 - mae: 0.1826 - pearson_correlation: 0.4983 - euclidean_distance: 0.2920
Epoch 64/300
227/227 [==============================] - 0s 777us/step - loss: 0.1807 - accuracy: 0.8703 - mae: 0.1807 - pearson_correlation: 0.5166 - euclidean_distance: 0.2872
Epoch 65/300
227/227 [==============================] - 0s 776us/step - loss: 0.1781 - accuracy: 0.8663 - mae: 0.1781 - pearson_correlation: 0.5200 - euclidean_distance: 0.2840
Epoch 66/300
227/227 [==============================] - 0s 778us/step - loss: 0.1759 - accuracy: 0.8721 - mae: 0.1759 - pearson_correlation: 0.5269 - euclidean_distance: 0.2812
Epoch 67/300
227/227 [==============================] - 0s 787us/step - loss: 0.1773 - accuracy: 0.8796 - mae: 0.1773 - pearson_correlation: 0.5209 - euclidean_distance: 0.2829
Epoch 68/300
227/227 [==============================] - 0s 812us/step - loss: 0.1717 - accuracy: 0.8783 - mae: 0.1717 - pearson_correlation: 0.5379 - euclidean_distance: 0.2745
Epoch 69/300
227/227 [==============================] - 0s 780us/step - loss: 0.1712 - accuracy: 0.8730 - mae: 0.1712 - pearson_correlation: 0.5378 - euclidean_distance: 0.2733
Epoch 70/300
227/227 [==============================] - 0s 780us/step - loss: 0.1709 - accuracy: 0.8791 - mae: 0.1709 - pearson_correlation: 0.5448 - euclidean_distance: 0.2727
Epoch 71/300
227/227 [==============================] - 0s 777us/step - loss: 0.1685 - accuracy: 0.8862 - mae: 0.1685 - pearson_correlation: 0.5526 - euclidean_distance: 0.2674
Epoch 72/300
227/227 [==============================] - 0s 777us/step - loss: 0.1706 - accuracy: 0.8906 - mae: 0.1706 - pearson_correlation: 0.5477 - euclidean_distance: 0.2717
Epoch 73/300
227/227 [==============================] - 0s 775us/step - loss: 0.1654 - accuracy: 0.8928 - mae: 0.1654 - pearson_correlation: 0.5555 - euclidean_distance: 0.2649
Epoch 74/300
227/227 [==============================] - 0s 785us/step - loss: 0.1683 - accuracy: 0.8963 - mae: 0.1683 - pearson_correlation: 0.5594 - euclidean_distance: 0.2683
Epoch 75/300
227/227 [==============================] - 0s 778us/step - loss: 0.1633 - accuracy: 0.8990 - mae: 0.1633 - pearson_correlation: 0.5612 - euclidean_distance: 0.2604
Epoch 76/300
227/227 [==============================] - 0s 778us/step - loss: 0.1660 - accuracy: 0.8955 - mae: 0.1660 - pearson_correlation: 0.5575 - euclidean_distance: 0.2644
Epoch 77/300
227/227 [==============================] - 0s 776us/step - loss: 0.1588 - accuracy: 0.8955 - mae: 0.1588 - pearson_correlation: 0.5670 - euclidean_distance: 0.2535
Epoch 78/300
227/227 [==============================] - 0s 777us/step - loss: 0.1600 - accuracy: 0.8915 - mae: 0.1600 - pearson_correlation: 0.5749 - euclidean_distance: 0.2546
Epoch 79/300
227/227 [==============================] - 0s 783us/step - loss: 0.1571 - accuracy: 0.9012 - mae: 0.1571 - pearson_correlation: 0.5825 - euclidean_distance: 0.2501
Epoch 80/300
227/227 [==============================] - 0s 775us/step - loss: 0.1561 - accuracy: 0.9074 - mae: 0.1561 - pearson_correlation: 0.5880 - euclidean_distance: 0.2484
Epoch 81/300
227/227 [==============================] - 0s 777us/step - loss: 0.1610 - accuracy: 0.9030 - mae: 0.1610 - pearson_correlation: 0.5709 - euclidean_distance: 0.2563
Epoch 82/300
227/227 [==============================] - 0s 775us/step - loss: 0.1547 - accuracy: 0.9109 - mae: 0.1547 - pearson_correlation: 0.5894 - euclidean_distance: 0.2460
Epoch 83/300
227/227 [==============================] - 0s 778us/step - loss: 0.1584 - accuracy: 0.9052 - mae: 0.1584 - pearson_correlation: 0.5848 - euclidean_distance: 0.2526
Epoch 84/300
227/227 [==============================] - 0s 792us/step - loss: 0.1532 - accuracy: 0.9082 - mae: 0.1532 - pearson_correlation: 0.5908 - euclidean_distance: 0.2448
Epoch 85/300
227/227 [==============================] - 0s 779us/step - loss: 0.1576 - accuracy: 0.9166 - mae: 0.1576 - pearson_correlation: 0.5836 - euclidean_distance: 0.2506
Epoch 86/300
227/227 [==============================] - 0s 779us/step - loss: 0.1520 - accuracy: 0.9232 - mae: 0.1520 - pearson_correlation: 0.6012 - euclidean_distance: 0.2413
Epoch 87/300
227/227 [==============================] - 0s 777us/step - loss: 0.1510 - accuracy: 0.9149 - mae: 0.1510 - pearson_correlation: 0.5972 - euclidean_distance: 0.2403
Epoch 88/300
227/227 [==============================] - 0s 775us/step - loss: 0.1503 - accuracy: 0.9140 - mae: 0.1503 - pearson_correlation: 0.6035 - euclidean_distance: 0.2394
Epoch 89/300
227/227 [==============================] - 0s 775us/step - loss: 0.1527 - accuracy: 0.9140 - mae: 0.1527 - pearson_correlation: 0.5979 - euclidean_distance: 0.2430
Epoch 90/300
227/227 [==============================] - 0s 787us/step - loss: 0.1493 - accuracy: 0.9180 - mae: 0.1493 - pearson_correlation: 0.6025 - euclidean_distance: 0.2381
Epoch 91/300
227/227 [==============================] - 0s 789us/step - loss: 0.1480 - accuracy: 0.9184 - mae: 0.1480 - pearson_correlation: 0.6140 - euclidean_distance: 0.2355
Epoch 92/300
227/227 [==============================] - 0s 793us/step - loss: 0.1489 - accuracy: 0.9215 - mae: 0.1489 - pearson_correlation: 0.6107 - euclidean_distance: 0.2379
Epoch 93/300
227/227 [==============================] - 0s 790us/step - loss: 0.1460 - accuracy: 0.9259 - mae: 0.1460 - pearson_correlation: 0.6177 - euclidean_distance: 0.2321
Epoch 94/300
227/227 [==============================] - 0s 795us/step - loss: 0.1492 - accuracy: 0.9334 - mae: 0.1492 - pearson_correlation: 0.6114 - euclidean_distance: 0.2370
Epoch 95/300
227/227 [==============================] - 0s 792us/step - loss: 0.1451 - accuracy: 0.9285 - mae: 0.1451 - pearson_correlation: 0.6200 - euclidean_distance: 0.2307
Epoch 96/300
227/227 [==============================] - 0s 786us/step - loss: 0.1464 - accuracy: 0.9272 - mae: 0.1464 - pearson_correlation: 0.6149 - euclidean_distance: 0.2321
Epoch 97/300
227/227 [==============================] - 0s 789us/step - loss: 0.1459 - accuracy: 0.9263 - mae: 0.1459 - pearson_correlation: 0.6119 - euclidean_distance: 0.2323
Epoch 98/300
227/227 [==============================] - 0s 788us/step - loss: 0.1450 - accuracy: 0.9263 - mae: 0.1450 - pearson_correlation: 0.6123 - euclidean_distance: 0.2311
Epoch 99/300
227/227 [==============================] - 0s 788us/step - loss: 0.1432 - accuracy: 0.9307 - mae: 0.1432 - pearson_correlation: 0.6192 - euclidean_distance: 0.2280
Epoch 100/300
227/227 [==============================] - 0s 788us/step - loss: 0.1430 - accuracy: 0.9263 - mae: 0.1430 - pearson_correlation: 0.6203 - euclidean_distance: 0.2280
Epoch 101/300
227/227 [==============================] - 0s 789us/step - loss: 0.1420 - accuracy: 0.9307 - mae: 0.1420 - pearson_correlation: 0.6290 - euclidean_distance: 0.2260
Epoch 102/300
227/227 [==============================] - 0s 791us/step - loss: 0.1426 - accuracy: 0.9321 - mae: 0.1426 - pearson_correlation: 0.6290 - euclidean_distance: 0.2271
Epoch 103/300
227/227 [==============================] - 0s 782us/step - loss: 0.1402 - accuracy: 0.9281 - mae: 0.1402 - pearson_correlation: 0.6342 - euclidean_distance: 0.2230
Epoch 104/300
227/227 [==============================] - 0s 790us/step - loss: 0.1396 - accuracy: 0.9303 - mae: 0.1396 - pearson_correlation: 0.6347 - euclidean_distance: 0.2224
Epoch 105/300
227/227 [==============================] - 0s 788us/step - loss: 0.1394 - accuracy: 0.9360 - mae: 0.1394 - pearson_correlation: 0.6431 - euclidean_distance: 0.2218
Epoch 106/300
227/227 [==============================] - 0s 792us/step - loss: 0.1393 - accuracy: 0.9316 - mae: 0.1393 - pearson_correlation: 0.6356 - euclidean_distance: 0.2216
Epoch 107/300
227/227 [==============================] - 0s 793us/step - loss: 0.1409 - accuracy: 0.9290 - mae: 0.1409 - pearson_correlation: 0.6332 - euclidean_distance: 0.2246
Epoch 108/300
227/227 [==============================] - 0s 792us/step - loss: 0.1381 - accuracy: 0.9321 - mae: 0.1381 - pearson_correlation: 0.6387 - euclidean_distance: 0.2207
Epoch 109/300
227/227 [==============================] - 0s 792us/step - loss: 0.1364 - accuracy: 0.9334 - mae: 0.1364 - pearson_correlation: 0.6470 - euclidean_distance: 0.2171
Epoch 110/300
227/227 [==============================] - 0s 782us/step - loss: 0.1398 - accuracy: 0.9294 - mae: 0.1398 - pearson_correlation: 0.6286 - euclidean_distance: 0.2228
Epoch 111/300
227/227 [==============================] - 0s 790us/step - loss: 0.1396 - accuracy: 0.9356 - mae: 0.1396 - pearson_correlation: 0.6406 - euclidean_distance: 0.2221
Epoch 112/300
227/227 [==============================] - 0s 780us/step - loss: 0.1383 - accuracy: 0.9391 - mae: 0.1383 - pearson_correlation: 0.6373 - euclidean_distance: 0.2192
Epoch 113/300
227/227 [==============================] - 0s 776us/step - loss: 0.1350 - accuracy: 0.9338 - mae: 0.1350 - pearson_correlation: 0.6481 - euclidean_distance: 0.2156
Epoch 114/300
227/227 [==============================] - 0s 776us/step - loss: 0.1373 - accuracy: 0.9334 - mae: 0.1373 - pearson_correlation: 0.6433 - euclidean_distance: 0.2190
Epoch 115/300
227/227 [==============================] - 0s 778us/step - loss: 0.1370 - accuracy: 0.9391 - mae: 0.1370 - pearson_correlation: 0.6424 - euclidean_distance: 0.2183
Epoch 116/300
227/227 [==============================] - 0s 777us/step - loss: 0.1354 - accuracy: 0.9404 - mae: 0.1354 - pearson_correlation: 0.6563 - euclidean_distance: 0.2153
Epoch 117/300
227/227 [==============================] - 0s 774us/step - loss: 0.1357 - accuracy: 0.9347 - mae: 0.1357 - pearson_correlation: 0.6435 - euclidean_distance: 0.2162
Epoch 118/300
227/227 [==============================] - 0s 777us/step - loss: 0.1341 - accuracy: 0.9334 - mae: 0.1341 - pearson_correlation: 0.6513 - euclidean_distance: 0.2134
Epoch 119/300
227/227 [==============================] - 0s 779us/step - loss: 0.1340 - accuracy: 0.9404 - mae: 0.1340 - pearson_correlation: 0.6490 - euclidean_distance: 0.2130
Epoch 120/300
227/227 [==============================] - 0s 776us/step - loss: 0.1354 - accuracy: 0.9356 - mae: 0.1354 - pearson_correlation: 0.6496 - euclidean_distance: 0.2157
Epoch 121/300
227/227 [==============================] - 0s 772us/step - loss: 0.1359 - accuracy: 0.9391 - mae: 0.1359 - pearson_correlation: 0.6490 - euclidean_distance: 0.2162
Epoch 122/300
227/227 [==============================] - 0s 776us/step - loss: 0.1333 - accuracy: 0.9352 - mae: 0.1333 - pearson_correlation: 0.6489 - euclidean_distance: 0.2126
Epoch 123/300
227/227 [==============================] - 0s 774us/step - loss: 0.1338 - accuracy: 0.9374 - mae: 0.1338 - pearson_correlation: 0.6507 - euclidean_distance: 0.2131
Epoch 124/300
227/227 [==============================] - 0s 776us/step - loss: 0.1351 - accuracy: 0.9422 - mae: 0.1351 - pearson_correlation: 0.6495 - euclidean_distance: 0.2153
Epoch 125/300
227/227 [==============================] - 0s 776us/step - loss: 0.1288 - accuracy: 0.9400 - mae: 0.1288 - pearson_correlation: 0.6613 - euclidean_distance: 0.2054
Epoch 126/300
227/227 [==============================] - 0s 780us/step - loss: 0.1312 - accuracy: 0.9400 - mae: 0.1312 - pearson_correlation: 0.6607 - euclidean_distance: 0.2089
Epoch 127/300
227/227 [==============================] - 0s 773us/step - loss: 0.1321 - accuracy: 0.9418 - mae: 0.1321 - pearson_correlation: 0.6606 - euclidean_distance: 0.2099
Epoch 128/300
227/227 [==============================] - 0s 777us/step - loss: 0.1323 - accuracy: 0.9391 - mae: 0.1323 - pearson_correlation: 0.6581 - euclidean_distance: 0.2110
Epoch 129/300
227/227 [==============================] - 0s 777us/step - loss: 0.1295 - accuracy: 0.9391 - mae: 0.1295 - pearson_correlation: 0.6665 - euclidean_distance: 0.2064
Epoch 130/300
227/227 [==============================] - 0s 779us/step - loss: 0.1327 - accuracy: 0.9404 - mae: 0.1327 - pearson_correlation: 0.6588 - euclidean_distance: 0.2105
Epoch 131/300
227/227 [==============================] - 0s 773us/step - loss: 0.1302 - accuracy: 0.9409 - mae: 0.1302 - pearson_correlation: 0.6627 - euclidean_distance: 0.2073
Epoch 132/300
227/227 [==============================] - 0s 779us/step - loss: 0.1294 - accuracy: 0.9427 - mae: 0.1294 - pearson_correlation: 0.6592 - euclidean_distance: 0.2065
Epoch 133/300
227/227 [==============================] - 0s 783us/step - loss: 0.1289 - accuracy: 0.9427 - mae: 0.1289 - pearson_correlation: 0.6635 - euclidean_distance: 0.2050
Epoch 134/300
227/227 [==============================] - 0s 783us/step - loss: 0.1284 - accuracy: 0.9396 - mae: 0.1284 - pearson_correlation: 0.6707 - euclidean_distance: 0.2043
Epoch 135/300
227/227 [==============================] - 0s 787us/step - loss: 0.1291 - accuracy: 0.9413 - mae: 0.1291 - pearson_correlation: 0.6643 - euclidean_distance: 0.2062
Epoch 136/300
227/227 [==============================] - 0s 780us/step - loss: 0.1300 - accuracy: 0.9466 - mae: 0.1300 - pearson_correlation: 0.6696 - euclidean_distance: 0.2066
Epoch 137/300
227/227 [==============================] - 0s 776us/step - loss: 0.1263 - accuracy: 0.9475 - mae: 0.1263 - pearson_correlation: 0.6796 - euclidean_distance: 0.2008
Epoch 138/300
227/227 [==============================] - 0s 778us/step - loss: 0.1284 - accuracy: 0.9427 - mae: 0.1284 - pearson_correlation: 0.6644 - euclidean_distance: 0.2042
Epoch 139/300
227/227 [==============================] - 0s 775us/step - loss: 0.1301 - accuracy: 0.9382 - mae: 0.1301 - pearson_correlation: 0.6599 - euclidean_distance: 0.2070
Epoch 140/300
227/227 [==============================] - 0s 790us/step - loss: 0.1267 - accuracy: 0.9369 - mae: 0.1267 - pearson_correlation: 0.6732 - euclidean_distance: 0.2015
Epoch 141/300
227/227 [==============================] - 0s 776us/step - loss: 0.1286 - accuracy: 0.9431 - mae: 0.1286 - pearson_correlation: 0.6666 - euclidean_distance: 0.2045
Epoch 142/300
227/227 [==============================] - 0s 782us/step - loss: 0.1241 - accuracy: 0.9462 - mae: 0.1241 - pearson_correlation: 0.6817 - euclidean_distance: 0.1976
Epoch 143/300
227/227 [==============================] - 0s 778us/step - loss: 0.1250 - accuracy: 0.9431 - mae: 0.1250 - pearson_correlation: 0.6766 - euclidean_distance: 0.1993
Epoch 144/300
227/227 [==============================] - 0s 776us/step - loss: 0.1286 - accuracy: 0.9440 - mae: 0.1286 - pearson_correlation: 0.6669 - euclidean_distance: 0.2054
Epoch 145/300
227/227 [==============================] - 0s 802us/step - loss: 0.1257 - accuracy: 0.9427 - mae: 0.1257 - pearson_correlation: 0.6786 - euclidean_distance: 0.2004
Epoch 146/300
227/227 [==============================] - 0s 841us/step - loss: 0.1220 - accuracy: 0.9440 - mae: 0.1220 - pearson_correlation: 0.6864 - euclidean_distance: 0.1954
Epoch 147/300
227/227 [==============================] - 0s 882us/step - loss: 0.1230 - accuracy: 0.9457 - mae: 0.1230 - pearson_correlation: 0.6863 - euclidean_distance: 0.1959
Epoch 148/300
227/227 [==============================] - 0s 828us/step - loss: 0.1236 - accuracy: 0.9387 - mae: 0.1236 - pearson_correlation: 0.6820 - euclidean_distance: 0.1975
Epoch 149/300
227/227 [==============================] - 0s 781us/step - loss: 0.1249 - accuracy: 0.9471 - mae: 0.1249 - pearson_correlation: 0.6838 - euclidean_distance: 0.1990
Epoch 150/300
227/227 [==============================] - 0s 783us/step - loss: 0.1217 - accuracy: 0.9462 - mae: 0.1217 - pearson_correlation: 0.6848 - euclidean_distance: 0.1947
Epoch 151/300
227/227 [==============================] - 0s 779us/step - loss: 0.1236 - accuracy: 0.9431 - mae: 0.1236 - pearson_correlation: 0.6761 - euclidean_distance: 0.1965
Epoch 152/300
227/227 [==============================] - 0s 782us/step - loss: 0.1228 - accuracy: 0.9453 - mae: 0.1228 - pearson_correlation: 0.6857 - euclidean_distance: 0.1957
Epoch 153/300
227/227 [==============================] - 0s 776us/step - loss: 0.1205 - accuracy: 0.9471 - mae: 0.1205 - pearson_correlation: 0.6943 - euclidean_distance: 0.1919
Epoch 154/300
227/227 [==============================] - 0s 778us/step - loss: 0.1187 - accuracy: 0.9488 - mae: 0.1187 - pearson_correlation: 0.6938 - euclidean_distance: 0.1894
Epoch 155/300
227/227 [==============================] - 0s 776us/step - loss: 0.1195 - accuracy: 0.9471 - mae: 0.1195 - pearson_correlation: 0.6942 - euclidean_distance: 0.1908
Epoch 156/300
227/227 [==============================] - 0s 778us/step - loss: 0.1195 - accuracy: 0.9475 - mae: 0.1195 - pearson_correlation: 0.6925 - euclidean_distance: 0.1906
Epoch 157/300
227/227 [==============================] - 0s 778us/step - loss: 0.1215 - accuracy: 0.9457 - mae: 0.1215 - pearson_correlation: 0.6862 - euclidean_distance: 0.1932
Epoch 158/300
227/227 [==============================] - 0s 779us/step - loss: 0.1205 - accuracy: 0.9453 - mae: 0.1205 - pearson_correlation: 0.6916 - euclidean_distance: 0.1924
Epoch 159/300
227/227 [==============================] - 0s 778us/step - loss: 0.1209 - accuracy: 0.9457 - mae: 0.1209 - pearson_correlation: 0.6914 - euclidean_distance: 0.1925
Epoch 160/300
227/227 [==============================] - 0s 777us/step - loss: 0.1208 - accuracy: 0.9444 - mae: 0.1208 - pearson_correlation: 0.6916 - euclidean_distance: 0.1924
Epoch 161/300
227/227 [==============================] - 0s 776us/step - loss: 0.1201 - accuracy: 0.9471 - mae: 0.1201 - pearson_correlation: 0.6897 - euclidean_distance: 0.1925
Epoch 162/300
227/227 [==============================] - 0s 777us/step - loss: 0.1202 - accuracy: 0.9471 - mae: 0.1202 - pearson_correlation: 0.6848 - euclidean_distance: 0.1925
Epoch 163/300
227/227 [==============================] - 0s 776us/step - loss: 0.1181 - accuracy: 0.9449 - mae: 0.1181 - pearson_correlation: 0.6976 - euclidean_distance: 0.1892
Epoch 164/300
227/227 [==============================] - 0s 779us/step - loss: 0.1175 - accuracy: 0.9528 - mae: 0.1175 - pearson_correlation: 0.6987 - euclidean_distance: 0.1878
Epoch 165/300
227/227 [==============================] - 0s 776us/step - loss: 0.1177 - accuracy: 0.9466 - mae: 0.1177 - pearson_correlation: 0.7031 - euclidean_distance: 0.1883
Epoch 166/300
227/227 [==============================] - 0s 777us/step - loss: 0.1193 - accuracy: 0.9484 - mae: 0.1193 - pearson_correlation: 0.6914 - euclidean_distance: 0.1907
Epoch 167/300
227/227 [==============================] - 0s 778us/step - loss: 0.1155 - accuracy: 0.9475 - mae: 0.1155 - pearson_correlation: 0.7034 - euclidean_distance: 0.1849
Epoch 168/300
227/227 [==============================] - 0s 779us/step - loss: 0.1186 - accuracy: 0.9497 - mae: 0.1186 - pearson_correlation: 0.6969 - euclidean_distance: 0.1889
Epoch 169/300
227/227 [==============================] - 0s 778us/step - loss: 0.1173 - accuracy: 0.9435 - mae: 0.1173 - pearson_correlation: 0.6990 - euclidean_distance: 0.1878
Epoch 170/300
227/227 [==============================] - 0s 775us/step - loss: 0.1172 - accuracy: 0.9462 - mae: 0.1172 - pearson_correlation: 0.7005 - euclidean_distance: 0.1872
Epoch 171/300
227/227 [==============================] - 0s 778us/step - loss: 0.1148 - accuracy: 0.9493 - mae: 0.1148 - pearson_correlation: 0.7057 - euclidean_distance: 0.1834
Epoch 172/300
227/227 [==============================] - 0s 775us/step - loss: 0.1175 - accuracy: 0.9444 - mae: 0.1175 - pearson_correlation: 0.6940 - euclidean_distance: 0.1875
Epoch 173/300
227/227 [==============================] - 0s 778us/step - loss: 0.1185 - accuracy: 0.9484 - mae: 0.1185 - pearson_correlation: 0.6939 - euclidean_distance: 0.1892
Epoch 174/300
227/227 [==============================] - 0s 778us/step - loss: 0.1163 - accuracy: 0.9497 - mae: 0.1163 - pearson_correlation: 0.7071 - euclidean_distance: 0.1860
Epoch 175/300
227/227 [==============================] - 0s 777us/step - loss: 0.1154 - accuracy: 0.9475 - mae: 0.1154 - pearson_correlation: 0.7052 - euclidean_distance: 0.1839
Epoch 176/300
227/227 [==============================] - 0s 776us/step - loss: 0.1168 - accuracy: 0.9462 - mae: 0.1168 - pearson_correlation: 0.6962 - euclidean_distance: 0.1868
Epoch 177/300
227/227 [==============================] - 0s 777us/step - loss: 0.1147 - accuracy: 0.9479 - mae: 0.1147 - pearson_correlation: 0.7043 - euclidean_distance: 0.1839
Epoch 178/300
227/227 [==============================] - 0s 776us/step - loss: 0.1132 - accuracy: 0.9484 - mae: 0.1132 - pearson_correlation: 0.7138 - euclidean_distance: 0.1811
Epoch 179/300
227/227 [==============================] - 0s 776us/step - loss: 0.1158 - accuracy: 0.9488 - mae: 0.1158 - pearson_correlation: 0.7001 - euclidean_distance: 0.1847
Epoch 180/300
227/227 [==============================] - 0s 775us/step - loss: 0.1151 - accuracy: 0.9466 - mae: 0.1151 - pearson_correlation: 0.7064 - euclidean_distance: 0.1837
Epoch 181/300
227/227 [==============================] - 0s 778us/step - loss: 0.1147 - accuracy: 0.9475 - mae: 0.1147 - pearson_correlation: 0.7005 - euclidean_distance: 0.1831
Epoch 182/300
227/227 [==============================] - 0s 778us/step - loss: 0.1124 - accuracy: 0.9506 - mae: 0.1124 - pearson_correlation: 0.7123 - euclidean_distance: 0.1795
Epoch 183/300
227/227 [==============================] - 0s 777us/step - loss: 0.1136 - accuracy: 0.9466 - mae: 0.1136 - pearson_correlation: 0.7091 - euclidean_distance: 0.1813
Epoch 184/300
227/227 [==============================] - 0s 777us/step - loss: 0.1149 - accuracy: 0.9524 - mae: 0.1149 - pearson_correlation: 0.7063 - euclidean_distance: 0.1845
Epoch 185/300
227/227 [==============================] - 0s 778us/step - loss: 0.1130 - accuracy: 0.9515 - mae: 0.1130 - pearson_correlation: 0.7053 - euclidean_distance: 0.1813
Epoch 186/300
227/227 [==============================] - 0s 779us/step - loss: 0.1144 - accuracy: 0.9519 - mae: 0.1144 - pearson_correlation: 0.7035 - euclidean_distance: 0.1837
Epoch 187/300
227/227 [==============================] - 0s 778us/step - loss: 0.1123 - accuracy: 0.9488 - mae: 0.1123 - pearson_correlation: 0.7147 - euclidean_distance: 0.1793
Epoch 188/300
227/227 [==============================] - 0s 776us/step - loss: 0.1145 - accuracy: 0.9506 - mae: 0.1145 - pearson_correlation: 0.7039 - euclidean_distance: 0.1826
Epoch 189/300
227/227 [==============================] - 0s 777us/step - loss: 0.1125 - accuracy: 0.9528 - mae: 0.1125 - pearson_correlation: 0.7092 - euclidean_distance: 0.1801
Epoch 190/300
227/227 [==============================] - 0s 779us/step - loss: 0.1130 - accuracy: 0.9497 - mae: 0.1130 - pearson_correlation: 0.7110 - euclidean_distance: 0.1811
Epoch 191/300
227/227 [==============================] - 0s 775us/step - loss: 0.1125 - accuracy: 0.9510 - mae: 0.1125 - pearson_correlation: 0.7101 - euclidean_distance: 0.1807
Epoch 192/300
227/227 [==============================] - 0s 788us/step - loss: 0.1130 - accuracy: 0.9519 - mae: 0.1130 - pearson_correlation: 0.7091 - euclidean_distance: 0.1806
Epoch 193/300
227/227 [==============================] - 0s 778us/step - loss: 0.1097 - accuracy: 0.9502 - mae: 0.1097 - pearson_correlation: 0.7188 - euclidean_distance: 0.1759
Epoch 194/300
227/227 [==============================] - 0s 789us/step - loss: 0.1123 - accuracy: 0.9493 - mae: 0.1123 - pearson_correlation: 0.7106 - euclidean_distance: 0.1799
Epoch 195/300
227/227 [==============================] - 0s 778us/step - loss: 0.1096 - accuracy: 0.9528 - mae: 0.1096 - pearson_correlation: 0.7226 - euclidean_distance: 0.1749
Epoch 196/300
227/227 [==============================] - 0s 785us/step - loss: 0.1124 - accuracy: 0.9497 - mae: 0.1124 - pearson_correlation: 0.7095 - euclidean_distance: 0.1797
Epoch 197/300
227/227 [==============================] - 0s 776us/step - loss: 0.1114 - accuracy: 0.9515 - mae: 0.1114 - pearson_correlation: 0.7080 - euclidean_distance: 0.1796
Epoch 198/300
227/227 [==============================] - 0s 776us/step - loss: 0.1122 - accuracy: 0.9506 - mae: 0.1122 - pearson_correlation: 0.7148 - euclidean_distance: 0.1798
Epoch 199/300
227/227 [==============================] - 0s 778us/step - loss: 0.1106 - accuracy: 0.9532 - mae: 0.1106 - pearson_correlation: 0.7209 - euclidean_distance: 0.1770
Epoch 200/300
227/227 [==============================] - 0s 805us/step - loss: 0.1088 - accuracy: 0.9519 - mae: 0.1088 - pearson_correlation: 0.7221 - euclidean_distance: 0.1746
Epoch 201/300
227/227 [==============================] - 0s 788us/step - loss: 0.1123 - accuracy: 0.9493 - mae: 0.1123 - pearson_correlation: 0.7142 - euclidean_distance: 0.1794
Epoch 202/300
227/227 [==============================] - 0s 783us/step - loss: 0.1102 - accuracy: 0.9510 - mae: 0.1102 - pearson_correlation: 0.7179 - euclidean_distance: 0.1760
Epoch 203/300
227/227 [==============================] - 0s 778us/step - loss: 0.1117 - accuracy: 0.9497 - mae: 0.1117 - pearson_correlation: 0.7055 - euclidean_distance: 0.1789
Epoch 204/300
227/227 [==============================] - 0s 781us/step - loss: 0.1087 - accuracy: 0.9528 - mae: 0.1087 - pearson_correlation: 0.7257 - euclidean_distance: 0.1743
Epoch 205/300
227/227 [==============================] - 0s 776us/step - loss: 0.1121 - accuracy: 0.9515 - mae: 0.1121 - pearson_correlation: 0.7144 - euclidean_distance: 0.1793
Epoch 206/300
227/227 [==============================] - 0s 778us/step - loss: 0.1103 - accuracy: 0.9515 - mae: 0.1103 - pearson_correlation: 0.7197 - euclidean_distance: 0.1762
Epoch 207/300
227/227 [==============================] - 0s 781us/step - loss: 0.1098 - accuracy: 0.9550 - mae: 0.1098 - pearson_correlation: 0.7205 - euclidean_distance: 0.1759
Epoch 208/300
227/227 [==============================] - 0s 777us/step - loss: 0.1102 - accuracy: 0.9515 - mae: 0.1102 - pearson_correlation: 0.7187 - euclidean_distance: 0.1767
Epoch 209/300
227/227 [==============================] - 0s 779us/step - loss: 0.1086 - accuracy: 0.9515 - mae: 0.1086 - pearson_correlation: 0.7212 - euclidean_distance: 0.1742
Epoch 210/300
227/227 [==============================] - 0s 777us/step - loss: 0.1081 - accuracy: 0.9519 - mae: 0.1081 - pearson_correlation: 0.7212 - euclidean_distance: 0.1734
Epoch 211/300
227/227 [==============================] - 0s 776us/step - loss: 0.1077 - accuracy: 0.9497 - mae: 0.1077 - pearson_correlation: 0.7196 - euclidean_distance: 0.1727
Epoch 212/300
227/227 [==============================] - 0s 776us/step - loss: 0.1091 - accuracy: 0.9528 - mae: 0.1091 - pearson_correlation: 0.7165 - euclidean_distance: 0.1747
Epoch 213/300
227/227 [==============================] - 0s 778us/step - loss: 0.1089 - accuracy: 0.9524 - mae: 0.1089 - pearson_correlation: 0.7193 - euclidean_distance: 0.1746
Epoch 214/300
227/227 [==============================] - 0s 774us/step - loss: 0.1056 - accuracy: 0.9502 - mae: 0.1056 - pearson_correlation: 0.7231 - euclidean_distance: 0.1694
Epoch 215/300
227/227 [==============================] - 0s 775us/step - loss: 0.1102 - accuracy: 0.9528 - mae: 0.1102 - pearson_correlation: 0.7153 - euclidean_distance: 0.1768
Epoch 216/300
227/227 [==============================] - 0s 776us/step - loss: 0.1087 - accuracy: 0.9510 - mae: 0.1087 - pearson_correlation: 0.7208 - euclidean_distance: 0.1746
Epoch 217/300
227/227 [==============================] - 0s 778us/step - loss: 0.1045 - accuracy: 0.9506 - mae: 0.1045 - pearson_correlation: 0.7347 - euclidean_distance: 0.1678
Epoch 218/300
227/227 [==============================] - 0s 777us/step - loss: 0.1054 - accuracy: 0.9528 - mae: 0.1054 - pearson_correlation: 0.7290 - euclidean_distance: 0.1690
Epoch 219/300
227/227 [==============================] - 0s 776us/step - loss: 0.1062 - accuracy: 0.9519 - mae: 0.1062 - pearson_correlation: 0.7250 - euclidean_distance: 0.1711
Epoch 220/300
227/227 [==============================] - 0s 779us/step - loss: 0.1056 - accuracy: 0.9524 - mae: 0.1056 - pearson_correlation: 0.7336 - euclidean_distance: 0.1699
Epoch 221/300
227/227 [==============================] - 0s 777us/step - loss: 0.1057 - accuracy: 0.9497 - mae: 0.1057 - pearson_correlation: 0.7320 - euclidean_distance: 0.1697
Epoch 222/300
227/227 [==============================] - 0s 776us/step - loss: 0.1051 - accuracy: 0.9532 - mae: 0.1051 - pearson_correlation: 0.7217 - euclidean_distance: 0.1691
Epoch 223/300
227/227 [==============================] - 0s 775us/step - loss: 0.1046 - accuracy: 0.9519 - mae: 0.1046 - pearson_correlation: 0.7329 - euclidean_distance: 0.1673
Epoch 224/300
227/227 [==============================] - 0s 776us/step - loss: 0.1051 - accuracy: 0.9532 - mae: 0.1051 - pearson_correlation: 0.7309 - euclidean_distance: 0.1688
Epoch 225/300
227/227 [==============================] - 0s 777us/step - loss: 0.1052 - accuracy: 0.9502 - mae: 0.1052 - pearson_correlation: 0.7287 - euclidean_distance: 0.1693
Epoch 226/300
227/227 [==============================] - 0s 777us/step - loss: 0.1033 - accuracy: 0.9524 - mae: 0.1033 - pearson_correlation: 0.7355 - euclidean_distance: 0.1658
Epoch 227/300
227/227 [==============================] - 0s 779us/step - loss: 0.1039 - accuracy: 0.9541 - mae: 0.1039 - pearson_correlation: 0.7388 - euclidean_distance: 0.1671
Epoch 228/300
227/227 [==============================] - 0s 776us/step - loss: 0.1037 - accuracy: 0.9519 - mae: 0.1037 - pearson_correlation: 0.7355 - euclidean_distance: 0.1665
Epoch 229/300
227/227 [==============================] - 0s 780us/step - loss: 0.1051 - accuracy: 0.9537 - mae: 0.1051 - pearson_correlation: 0.7287 - euclidean_distance: 0.1683
Epoch 230/300
227/227 [==============================] - 0s 776us/step - loss: 0.1057 - accuracy: 0.9519 - mae: 0.1057 - pearson_correlation: 0.7226 - euclidean_distance: 0.1699
Epoch 231/300
227/227 [==============================] - 0s 776us/step - loss: 0.1039 - accuracy: 0.9510 - mae: 0.1039 - pearson_correlation: 0.7334 - euclidean_distance: 0.1663
Epoch 232/300
227/227 [==============================] - 0s 780us/step - loss: 0.1038 - accuracy: 0.9502 - mae: 0.1038 - pearson_correlation: 0.7315 - euclidean_distance: 0.1667
Epoch 233/300
227/227 [==============================] - 0s 775us/step - loss: 0.1025 - accuracy: 0.9515 - mae: 0.1025 - pearson_correlation: 0.7413 - euclidean_distance: 0.1647
Epoch 234/300
227/227 [==============================] - 0s 785us/step - loss: 0.1028 - accuracy: 0.9532 - mae: 0.1028 - pearson_correlation: 0.7366 - euclidean_distance: 0.1653
Epoch 235/300
227/227 [==============================] - 0s 845us/step - loss: 0.1032 - accuracy: 0.9546 - mae: 0.1032 - pearson_correlation: 0.7342 - euclidean_distance: 0.1651
Epoch 236/300
227/227 [==============================] - 0s 879us/step - loss: 0.1019 - accuracy: 0.9537 - mae: 0.1019 - pearson_correlation: 0.7355 - euclidean_distance: 0.1636
Epoch 237/300
227/227 [==============================] - 0s 868us/step - loss: 0.1014 - accuracy: 0.9541 - mae: 0.1014 - pearson_correlation: 0.7386 - euclidean_distance: 0.1635
Epoch 238/300
227/227 [==============================] - 0s 781us/step - loss: 0.1030 - accuracy: 0.9537 - mae: 0.1030 - pearson_correlation: 0.7366 - euclidean_distance: 0.1653
Epoch 239/300
227/227 [==============================] - 0s 780us/step - loss: 0.1050 - accuracy: 0.9506 - mae: 0.1050 - pearson_correlation: 0.7299 - euclidean_distance: 0.1682
Epoch 240/300
227/227 [==============================] - 0s 778us/step - loss: 0.1027 - accuracy: 0.9528 - mae: 0.1027 - pearson_correlation: 0.7394 - euclidean_distance: 0.1649
Epoch 241/300
227/227 [==============================] - 0s 778us/step - loss: 0.1027 - accuracy: 0.9537 - mae: 0.1027 - pearson_correlation: 0.7390 - euclidean_distance: 0.1646
Epoch 242/300
227/227 [==============================] - 0s 777us/step - loss: 0.1037 - accuracy: 0.9532 - mae: 0.1037 - pearson_correlation: 0.7274 - euclidean_distance: 0.1665
Epoch 243/300
227/227 [==============================] - 0s 781us/step - loss: 0.1015 - accuracy: 0.9537 - mae: 0.1015 - pearson_correlation: 0.7340 - euclidean_distance: 0.1638
Epoch 244/300
227/227 [==============================] - 0s 777us/step - loss: 0.1031 - accuracy: 0.9528 - mae: 0.1031 - pearson_correlation: 0.7340 - euclidean_distance: 0.1659
Epoch 245/300
227/227 [==============================] - 0s 777us/step - loss: 0.1030 - accuracy: 0.9546 - mae: 0.1030 - pearson_correlation: 0.7400 - euclidean_distance: 0.1650
Epoch 246/300
227/227 [==============================] - 0s 778us/step - loss: 0.1003 - accuracy: 0.9541 - mae: 0.1003 - pearson_correlation: 0.7452 - euclidean_distance: 0.1614
Epoch 247/300
227/227 [==============================] - 0s 787us/step - loss: 0.1024 - accuracy: 0.9541 - mae: 0.1024 - pearson_correlation: 0.7388 - euclidean_distance: 0.1649
Epoch 248/300
227/227 [==============================] - 0s 789us/step - loss: 0.1043 - accuracy: 0.9554 - mae: 0.1043 - pearson_correlation: 0.7330 - euclidean_distance: 0.1674
Epoch 249/300
227/227 [==============================] - 0s 788us/step - loss: 0.1027 - accuracy: 0.9532 - mae: 0.1027 - pearson_correlation: 0.7381 - euclidean_distance: 0.1649
Epoch 250/300
227/227 [==============================] - 0s 795us/step - loss: 0.1017 - accuracy: 0.9541 - mae: 0.1017 - pearson_correlation: 0.7436 - euclidean_distance: 0.1633
Epoch 251/300
227/227 [==============================] - 0s 791us/step - loss: 0.1036 - accuracy: 0.9524 - mae: 0.1036 - pearson_correlation: 0.7328 - euclidean_distance: 0.1670
Epoch 252/300
227/227 [==============================] - 0s 801us/step - loss: 0.1033 - accuracy: 0.9519 - mae: 0.1033 - pearson_correlation: 0.7295 - euclidean_distance: 0.1663
Epoch 253/300
227/227 [==============================] - 0s 792us/step - loss: 0.1021 - accuracy: 0.9528 - mae: 0.1021 - pearson_correlation: 0.7403 - euclidean_distance: 0.1637
Epoch 254/300
227/227 [==============================] - 0s 794us/step - loss: 0.1027 - accuracy: 0.9528 - mae: 0.1027 - pearson_correlation: 0.7333 - euclidean_distance: 0.1649
Epoch 255/300
227/227 [==============================] - 0s 785us/step - loss: 0.1024 - accuracy: 0.9528 - mae: 0.1024 - pearson_correlation: 0.7425 - euclidean_distance: 0.1639
Epoch 256/300
227/227 [==============================] - 0s 795us/step - loss: 0.1007 - accuracy: 0.9550 - mae: 0.1007 - pearson_correlation: 0.7467 - euclidean_distance: 0.1625
Epoch 257/300
227/227 [==============================] - 0s 791us/step - loss: 0.1000 - accuracy: 0.9532 - mae: 0.1000 - pearson_correlation: 0.7418 - euclidean_distance: 0.1612
Epoch 258/300
227/227 [==============================] - 0s 791us/step - loss: 0.1024 - accuracy: 0.9541 - mae: 0.1024 - pearson_correlation: 0.7327 - euclidean_distance: 0.1649
Epoch 259/300
227/227 [==============================] - 0s 790us/step - loss: 0.1004 - accuracy: 0.9532 - mae: 0.1004 - pearson_correlation: 0.7426 - euclidean_distance: 0.1614
Epoch 260/300
227/227 [==============================] - 0s 787us/step - loss: 0.1000 - accuracy: 0.9546 - mae: 0.1000 - pearson_correlation: 0.7513 - euclidean_distance: 0.1603
Epoch 261/300
227/227 [==============================] - 0s 794us/step - loss: 0.1008 - accuracy: 0.9537 - mae: 0.1008 - pearson_correlation: 0.7438 - euclidean_distance: 0.1616
Epoch 262/300
227/227 [==============================] - 0s 789us/step - loss: 0.1008 - accuracy: 0.9510 - mae: 0.1008 - pearson_correlation: 0.7395 - euclidean_distance: 0.1625
Epoch 263/300
227/227 [==============================] - 0s 792us/step - loss: 0.0988 - accuracy: 0.9559 - mae: 0.0988 - pearson_correlation: 0.7504 - euclidean_distance: 0.1594
Epoch 264/300
227/227 [==============================] - 0s 789us/step - loss: 0.0996 - accuracy: 0.9541 - mae: 0.0996 - pearson_correlation: 0.7430 - euclidean_distance: 0.1602
Epoch 265/300
227/227 [==============================] - 0s 788us/step - loss: 0.0964 - accuracy: 0.9537 - mae: 0.0964 - pearson_correlation: 0.7532 - euclidean_distance: 0.1556
Epoch 266/300
227/227 [==============================] - 0s 782us/step - loss: 0.0984 - accuracy: 0.9541 - mae: 0.0984 - pearson_correlation: 0.7547 - euclidean_distance: 0.1583
Epoch 267/300
227/227 [==============================] - 0s 774us/step - loss: 0.0980 - accuracy: 0.9554 - mae: 0.0980 - pearson_correlation: 0.7548 - euclidean_distance: 0.1574
Epoch 268/300
227/227 [==============================] - 0s 777us/step - loss: 0.0988 - accuracy: 0.9537 - mae: 0.0988 - pearson_correlation: 0.7504 - euclidean_distance: 0.1591
Epoch 269/300
227/227 [==============================] - 0s 779us/step - loss: 0.0962 - accuracy: 0.9532 - mae: 0.0962 - pearson_correlation: 0.7533 - euclidean_distance: 0.1550
Epoch 270/300
227/227 [==============================] - 0s 779us/step - loss: 0.0982 - accuracy: 0.9550 - mae: 0.0982 - pearson_correlation: 0.7484 - euclidean_distance: 0.1576
Epoch 271/300
227/227 [==============================] - 0s 777us/step - loss: 0.0988 - accuracy: 0.9559 - mae: 0.0988 - pearson_correlation: 0.7491 - euclidean_distance: 0.1585
Epoch 272/300
227/227 [==============================] - 0s 777us/step - loss: 0.0966 - accuracy: 0.9532 - mae: 0.0966 - pearson_correlation: 0.7542 - euclidean_distance: 0.1560
Epoch 273/300
227/227 [==============================] - 0s 776us/step - loss: 0.0976 - accuracy: 0.9546 - mae: 0.0976 - pearson_correlation: 0.7509 - euclidean_distance: 0.1571
Epoch 274/300
227/227 [==============================] - 0s 776us/step - loss: 0.0985 - accuracy: 0.9559 - mae: 0.0985 - pearson_correlation: 0.7538 - euclidean_distance: 0.1579
Epoch 275/300
227/227 [==============================] - 0s 778us/step - loss: 0.1003 - accuracy: 0.9550 - mae: 0.1003 - pearson_correlation: 0.7471 - euclidean_distance: 0.1608
Epoch 276/300
227/227 [==============================] - 0s 776us/step - loss: 0.0993 - accuracy: 0.9541 - mae: 0.0993 - pearson_correlation: 0.7413 - euclidean_distance: 0.1606
Epoch 277/300
227/227 [==============================] - 0s 787us/step - loss: 0.0969 - accuracy: 0.9554 - mae: 0.0969 - pearson_correlation: 0.7516 - euclidean_distance: 0.1561
Epoch 278/300
227/227 [==============================] - 0s 772us/step - loss: 0.0966 - accuracy: 0.9546 - mae: 0.0966 - pearson_correlation: 0.7527 - euclidean_distance: 0.1553
Epoch 279/300
227/227 [==============================] - 0s 778us/step - loss: 0.0958 - accuracy: 0.9537 - mae: 0.0958 - pearson_correlation: 0.7524 - euclidean_distance: 0.1547
Epoch 280/300
227/227 [==============================] - 0s 775us/step - loss: 0.0993 - accuracy: 0.9532 - mae: 0.0993 - pearson_correlation: 0.7481 - euclidean_distance: 0.1596
Epoch 281/300
227/227 [==============================] - 0s 777us/step - loss: 0.0965 - accuracy: 0.9568 - mae: 0.0965 - pearson_correlation: 0.7575 - euclidean_distance: 0.1551
Epoch 282/300
227/227 [==============================] - 0s 778us/step - loss: 0.0956 - accuracy: 0.9550 - mae: 0.0956 - pearson_correlation: 0.7557 - euclidean_distance: 0.1541
Epoch 283/300
227/227 [==============================] - 0s 774us/step - loss: 0.0969 - accuracy: 0.9541 - mae: 0.0969 - pearson_correlation: 0.7498 - euclidean_distance: 0.1563
Epoch 284/300
227/227 [==============================] - 0s 778us/step - loss: 0.0971 - accuracy: 0.9541 - mae: 0.0971 - pearson_correlation: 0.7528 - euclidean_distance: 0.1560
Epoch 285/300
227/227 [==============================] - 0s 776us/step - loss: 0.0972 - accuracy: 0.9563 - mae: 0.0972 - pearson_correlation: 0.7490 - euclidean_distance: 0.1568
Epoch 286/300
227/227 [==============================] - 0s 778us/step - loss: 0.0974 - accuracy: 0.9550 - mae: 0.0974 - pearson_correlation: 0.7551 - euclidean_distance: 0.1566
Epoch 287/300
227/227 [==============================] - 0s 776us/step - loss: 0.0971 - accuracy: 0.9554 - mae: 0.0971 - pearson_correlation: 0.7539 - euclidean_distance: 0.1559
Epoch 288/300
227/227 [==============================] - 0s 776us/step - loss: 0.0969 - accuracy: 0.9541 - mae: 0.0969 - pearson_correlation: 0.7507 - euclidean_distance: 0.1557
Epoch 289/300
227/227 [==============================] - 0s 773us/step - loss: 0.0963 - accuracy: 0.9537 - mae: 0.0963 - pearson_correlation: 0.7498 - euclidean_distance: 0.1554
Epoch 290/300
227/227 [==============================] - 0s 777us/step - loss: 0.0963 - accuracy: 0.9546 - mae: 0.0963 - pearson_correlation: 0.7534 - euclidean_distance: 0.1561
Epoch 291/300
227/227 [==============================] - 0s 774us/step - loss: 0.0965 - accuracy: 0.9541 - mae: 0.0965 - pearson_correlation: 0.7562 - euclidean_distance: 0.1552
Epoch 292/300
227/227 [==============================] - 0s 776us/step - loss: 0.0953 - accuracy: 0.9537 - mae: 0.0953 - pearson_correlation: 0.7582 - euclidean_distance: 0.1540
Epoch 293/300
227/227 [==============================] - 0s 777us/step - loss: 0.0937 - accuracy: 0.9550 - mae: 0.0937 - pearson_correlation: 0.7574 - euclidean_distance: 0.1512
Epoch 294/300
227/227 [==============================] - 0s 772us/step - loss: 0.0967 - accuracy: 0.9559 - mae: 0.0967 - pearson_correlation: 0.7539 - euclidean_distance: 0.1562
Epoch 295/300
227/227 [==============================] - 0s 777us/step - loss: 0.0964 - accuracy: 0.9559 - mae: 0.0964 - pearson_correlation: 0.7533 - euclidean_distance: 0.1552
Epoch 296/300
227/227 [==============================] - 0s 779us/step - loss: 0.0943 - accuracy: 0.9546 - mae: 0.0943 - pearson_correlation: 0.7629 - euclidean_distance: 0.1517
Epoch 297/300
227/227 [==============================] - 0s 774us/step - loss: 0.0965 - accuracy: 0.9537 - mae: 0.0965 - pearson_correlation: 0.7540 - euclidean_distance: 0.1552
Epoch 298/300
227/227 [==============================] - 0s 772us/step - loss: 0.0956 - accuracy: 0.9563 - mae: 0.0956 - pearson_correlation: 0.7583 - euclidean_distance: 0.1541
Epoch 299/300
227/227 [==============================] - 0s 782us/step - loss: 0.0937 - accuracy: 0.9550 - mae: 0.0937 - pearson_correlation: 0.7598 - euclidean_distance: 0.1514
Epoch 300/300
227/227 [==============================] - 0s 780us/step - loss: 0.0951 - accuracy: 0.9568 - mae: 0.0951 - pearson_correlation: 0.7563 - euclidean_distance: 0.1534
114/114 [==============================] - 0s 457us/step
Epoch 1/300
227/227 [==============================] - 1s 798us/step - loss: 0.5425 - accuracy: 0.4707 - mae: 0.5425 - pearson_correlation: -0.0354 - euclidean_distance: 0.8199
Epoch 2/300
227/227 [==============================] - 0s 772us/step - loss: 0.5219 - accuracy: 0.4870 - mae: 0.5219 - pearson_correlation: -0.0163 - euclidean_distance: 0.7896
Epoch 3/300
227/227 [==============================] - 0s 772us/step - loss: 0.4982 - accuracy: 0.5077 - mae: 0.4982 - pearson_correlation: 0.0122 - euclidean_distance: 0.7542
Epoch 4/300
227/227 [==============================] - 0s 768us/step - loss: 0.4787 - accuracy: 0.5390 - mae: 0.4787 - pearson_correlation: 0.0348 - euclidean_distance: 0.7258
Epoch 5/300
227/227 [==============================] - 0s 767us/step - loss: 0.4578 - accuracy: 0.5642 - mae: 0.4578 - pearson_correlation: 0.0648 - euclidean_distance: 0.6950
Epoch 6/300
227/227 [==============================] - 0s 772us/step - loss: 0.4399 - accuracy: 0.5805 - mae: 0.4399 - pearson_correlation: 0.0837 - euclidean_distance: 0.6677
Epoch 7/300
227/227 [==============================] - 0s 768us/step - loss: 0.4221 - accuracy: 0.5911 - mae: 0.4221 - pearson_correlation: 0.1066 - euclidean_distance: 0.6426
Epoch 8/300
227/227 [==============================] - 0s 765us/step - loss: 0.4071 - accuracy: 0.6259 - mae: 0.4071 - pearson_correlation: 0.1290 - euclidean_distance: 0.6200
Epoch 9/300
227/227 [==============================] - 0s 764us/step - loss: 0.3908 - accuracy: 0.6484 - mae: 0.3908 - pearson_correlation: 0.1488 - euclidean_distance: 0.5966
Epoch 10/300
227/227 [==============================] - 0s 765us/step - loss: 0.3764 - accuracy: 0.6736 - mae: 0.3764 - pearson_correlation: 0.1782 - euclidean_distance: 0.5753
Epoch 11/300
227/227 [==============================] - 0s 771us/step - loss: 0.3610 - accuracy: 0.6978 - mae: 0.3610 - pearson_correlation: 0.1861 - euclidean_distance: 0.5532
Epoch 12/300
227/227 [==============================] - 0s 768us/step - loss: 0.3509 - accuracy: 0.6996 - mae: 0.3509 - pearson_correlation: 0.2030 - euclidean_distance: 0.5382
Epoch 13/300
227/227 [==============================] - 0s 766us/step - loss: 0.3324 - accuracy: 0.7195 - mae: 0.3324 - pearson_correlation: 0.2271 - euclidean_distance: 0.5111
Epoch 14/300
227/227 [==============================] - 0s 770us/step - loss: 0.3175 - accuracy: 0.7358 - mae: 0.3175 - pearson_correlation: 0.2376 - euclidean_distance: 0.4909
Epoch 15/300
227/227 [==============================] - 0s 766us/step - loss: 0.3094 - accuracy: 0.7561 - mae: 0.3094 - pearson_correlation: 0.2560 - euclidean_distance: 0.4783
Epoch 16/300
227/227 [==============================] - 0s 768us/step - loss: 0.2965 - accuracy: 0.7733 - mae: 0.2965 - pearson_correlation: 0.2731 - euclidean_distance: 0.4589
Epoch 17/300
227/227 [==============================] - 0s 766us/step - loss: 0.2870 - accuracy: 0.7799 - mae: 0.2870 - pearson_correlation: 0.2759 - euclidean_distance: 0.4454
Epoch 18/300
227/227 [==============================] - 0s 768us/step - loss: 0.2737 - accuracy: 0.7966 - mae: 0.2737 - pearson_correlation: 0.2969 - euclidean_distance: 0.4260
Epoch 19/300
227/227 [==============================] - 0s 766us/step - loss: 0.2639 - accuracy: 0.8121 - mae: 0.2639 - pearson_correlation: 0.3094 - euclidean_distance: 0.4112
Epoch 20/300
227/227 [==============================] - 0s 831us/step - loss: 0.2584 - accuracy: 0.8244 - mae: 0.2584 - pearson_correlation: 0.3158 - euclidean_distance: 0.4034
Epoch 21/300
227/227 [==============================] - 0s 854us/step - loss: 0.2483 - accuracy: 0.8275 - mae: 0.2483 - pearson_correlation: 0.3356 - euclidean_distance: 0.3873
Epoch 22/300
227/227 [==============================] - 0s 869us/step - loss: 0.2409 - accuracy: 0.8288 - mae: 0.2409 - pearson_correlation: 0.3375 - euclidean_distance: 0.3774
Epoch 23/300
227/227 [==============================] - 0s 792us/step - loss: 0.2320 - accuracy: 0.8430 - mae: 0.2320 - pearson_correlation: 0.3718 - euclidean_distance: 0.3625
Epoch 24/300
227/227 [==============================] - 0s 767us/step - loss: 0.2275 - accuracy: 0.8513 - mae: 0.2275 - pearson_correlation: 0.3708 - euclidean_distance: 0.3553
Epoch 25/300
227/227 [==============================] - 0s 767us/step - loss: 0.2230 - accuracy: 0.8527 - mae: 0.2230 - pearson_correlation: 0.3787 - euclidean_distance: 0.3488
Epoch 26/300
227/227 [==============================] - 0s 769us/step - loss: 0.2125 - accuracy: 0.8646 - mae: 0.2125 - pearson_correlation: 0.4070 - euclidean_distance: 0.3328
Epoch 27/300
227/227 [==============================] - 0s 769us/step - loss: 0.2083 - accuracy: 0.8703 - mae: 0.2083 - pearson_correlation: 0.4038 - euclidean_distance: 0.3268
Epoch 28/300
227/227 [==============================] - 0s 771us/step - loss: 0.2061 - accuracy: 0.8822 - mae: 0.2061 - pearson_correlation: 0.4175 - euclidean_distance: 0.3225
Epoch 29/300
227/227 [==============================] - 0s 768us/step - loss: 0.2011 - accuracy: 0.8708 - mae: 0.2011 - pearson_correlation: 0.4288 - euclidean_distance: 0.3145
Epoch 30/300
227/227 [==============================] - 0s 767us/step - loss: 0.1974 - accuracy: 0.8800 - mae: 0.1974 - pearson_correlation: 0.4317 - euclidean_distance: 0.3088
Epoch 31/300
227/227 [==============================] - 0s 775us/step - loss: 0.1926 - accuracy: 0.8778 - mae: 0.1926 - pearson_correlation: 0.4445 - euclidean_distance: 0.3015
Epoch 32/300
227/227 [==============================] - 0s 768us/step - loss: 0.1871 - accuracy: 0.8862 - mae: 0.1871 - pearson_correlation: 0.4602 - euclidean_distance: 0.2919
Epoch 33/300
227/227 [==============================] - 0s 768us/step - loss: 0.1853 - accuracy: 0.8880 - mae: 0.1853 - pearson_correlation: 0.4617 - euclidean_distance: 0.2906
Epoch 34/300
227/227 [==============================] - 0s 766us/step - loss: 0.1829 - accuracy: 0.8928 - mae: 0.1829 - pearson_correlation: 0.4660 - euclidean_distance: 0.2867
Epoch 35/300
227/227 [==============================] - 0s 768us/step - loss: 0.1763 - accuracy: 0.8941 - mae: 0.1763 - pearson_correlation: 0.4873 - euclidean_distance: 0.2768
Epoch 36/300
227/227 [==============================] - 0s 770us/step - loss: 0.1752 - accuracy: 0.8946 - mae: 0.1752 - pearson_correlation: 0.4868 - euclidean_distance: 0.2752
Epoch 37/300
227/227 [==============================] - 0s 771us/step - loss: 0.1779 - accuracy: 0.9060 - mae: 0.1779 - pearson_correlation: 0.4904 - euclidean_distance: 0.2772
Epoch 38/300
227/227 [==============================] - 0s 769us/step - loss: 0.1730 - accuracy: 0.8981 - mae: 0.1730 - pearson_correlation: 0.5009 - euclidean_distance: 0.2710
Epoch 39/300
227/227 [==============================] - 0s 769us/step - loss: 0.1703 - accuracy: 0.9074 - mae: 0.1703 - pearson_correlation: 0.5080 - euclidean_distance: 0.2666
Epoch 40/300
227/227 [==============================] - 0s 764us/step - loss: 0.1696 - accuracy: 0.9157 - mae: 0.1696 - pearson_correlation: 0.5102 - euclidean_distance: 0.2654
Epoch 41/300
227/227 [==============================] - 0s 769us/step - loss: 0.1694 - accuracy: 0.9087 - mae: 0.1694 - pearson_correlation: 0.5207 - euclidean_distance: 0.2647
Epoch 42/300
227/227 [==============================] - 0s 768us/step - loss: 0.1634 - accuracy: 0.9149 - mae: 0.1634 - pearson_correlation: 0.5256 - euclidean_distance: 0.2563
Epoch 43/300
227/227 [==============================] - 0s 770us/step - loss: 0.1640 - accuracy: 0.9162 - mae: 0.1640 - pearson_correlation: 0.5276 - euclidean_distance: 0.2567
Epoch 44/300
227/227 [==============================] - 0s 767us/step - loss: 0.1640 - accuracy: 0.9188 - mae: 0.1640 - pearson_correlation: 0.5259 - euclidean_distance: 0.2564
Epoch 45/300
227/227 [==============================] - 0s 773us/step - loss: 0.1613 - accuracy: 0.9246 - mae: 0.1613 - pearson_correlation: 0.5390 - euclidean_distance: 0.2521
Epoch 46/300
227/227 [==============================] - 0s 762us/step - loss: 0.1603 - accuracy: 0.9180 - mae: 0.1603 - pearson_correlation: 0.5392 - euclidean_distance: 0.2507
Epoch 47/300
227/227 [==============================] - 0s 764us/step - loss: 0.1574 - accuracy: 0.9232 - mae: 0.1574 - pearson_correlation: 0.5512 - euclidean_distance: 0.2465
Epoch 48/300
227/227 [==============================] - 0s 785us/step - loss: 0.1553 - accuracy: 0.9277 - mae: 0.1553 - pearson_correlation: 0.5589 - euclidean_distance: 0.2432
Epoch 49/300
227/227 [==============================] - 0s 773us/step - loss: 0.1535 - accuracy: 0.9307 - mae: 0.1535 - pearson_correlation: 0.5618 - euclidean_distance: 0.2396
Epoch 50/300
227/227 [==============================] - 0s 765us/step - loss: 0.1519 - accuracy: 0.9263 - mae: 0.1519 - pearson_correlation: 0.5676 - euclidean_distance: 0.2378
Epoch 51/300
227/227 [==============================] - 0s 769us/step - loss: 0.1519 - accuracy: 0.9281 - mae: 0.1519 - pearson_correlation: 0.5725 - euclidean_distance: 0.2381
Epoch 52/300
227/227 [==============================] - 0s 764us/step - loss: 0.1495 - accuracy: 0.9268 - mae: 0.1495 - pearson_correlation: 0.5700 - euclidean_distance: 0.2344
Epoch 53/300
227/227 [==============================] - 0s 768us/step - loss: 0.1508 - accuracy: 0.9360 - mae: 0.1508 - pearson_correlation: 0.5747 - euclidean_distance: 0.2359
Epoch 54/300
227/227 [==============================] - 0s 767us/step - loss: 0.1485 - accuracy: 0.9307 - mae: 0.1485 - pearson_correlation: 0.5814 - euclidean_distance: 0.2329
Epoch 55/300
227/227 [==============================] - 0s 770us/step - loss: 0.1496 - accuracy: 0.9325 - mae: 0.1496 - pearson_correlation: 0.5776 - euclidean_distance: 0.2345
Epoch 56/300
227/227 [==============================] - 0s 769us/step - loss: 0.1466 - accuracy: 0.9263 - mae: 0.1466 - pearson_correlation: 0.5864 - euclidean_distance: 0.2304
Epoch 57/300
227/227 [==============================] - 0s 764us/step - loss: 0.1460 - accuracy: 0.9343 - mae: 0.1460 - pearson_correlation: 0.5965 - euclidean_distance: 0.2287
Epoch 58/300
227/227 [==============================] - 0s 774us/step - loss: 0.1479 - accuracy: 0.9330 - mae: 0.1479 - pearson_correlation: 0.5920 - euclidean_distance: 0.2320
Epoch 59/300
227/227 [==============================] - 0s 776us/step - loss: 0.1436 - accuracy: 0.9338 - mae: 0.1436 - pearson_correlation: 0.5977 - euclidean_distance: 0.2255
Epoch 60/300
227/227 [==============================] - 0s 787us/step - loss: 0.1433 - accuracy: 0.9382 - mae: 0.1433 - pearson_correlation: 0.5997 - euclidean_distance: 0.2242
Epoch 61/300
227/227 [==============================] - 0s 775us/step - loss: 0.1434 - accuracy: 0.9400 - mae: 0.1434 - pearson_correlation: 0.5946 - euclidean_distance: 0.2247
Epoch 62/300
227/227 [==============================] - 0s 767us/step - loss: 0.1427 - accuracy: 0.9382 - mae: 0.1427 - pearson_correlation: 0.6038 - euclidean_distance: 0.2237
Epoch 63/300
227/227 [==============================] - 0s 776us/step - loss: 0.1442 - accuracy: 0.9369 - mae: 0.1442 - pearson_correlation: 0.5913 - euclidean_distance: 0.2262
Epoch 64/300
227/227 [==============================] - 0s 789us/step - loss: 0.1416 - accuracy: 0.9422 - mae: 0.1416 - pearson_correlation: 0.6065 - euclidean_distance: 0.2214
Epoch 65/300
227/227 [==============================] - 0s 787us/step - loss: 0.1415 - accuracy: 0.9409 - mae: 0.1415 - pearson_correlation: 0.6085 - euclidean_distance: 0.2216
Epoch 66/300
227/227 [==============================] - 0s 786us/step - loss: 0.1378 - accuracy: 0.9453 - mae: 0.1378 - pearson_correlation: 0.6212 - euclidean_distance: 0.2158
Epoch 67/300
227/227 [==============================] - 0s 786us/step - loss: 0.1383 - accuracy: 0.9453 - mae: 0.1383 - pearson_correlation: 0.6179 - euclidean_distance: 0.2172
Epoch 68/300
227/227 [==============================] - 0s 784us/step - loss: 0.1358 - accuracy: 0.9409 - mae: 0.1358 - pearson_correlation: 0.6224 - euclidean_distance: 0.2133
Epoch 69/300
227/227 [==============================] - 0s 784us/step - loss: 0.1373 - accuracy: 0.9400 - mae: 0.1373 - pearson_correlation: 0.6179 - euclidean_distance: 0.2156
Epoch 70/300
227/227 [==============================] - 0s 789us/step - loss: 0.1378 - accuracy: 0.9449 - mae: 0.1378 - pearson_correlation: 0.6223 - euclidean_distance: 0.2161
Epoch 71/300
227/227 [==============================] - 0s 786us/step - loss: 0.1372 - accuracy: 0.9449 - mae: 0.1372 - pearson_correlation: 0.6187 - euclidean_distance: 0.2153
Epoch 72/300
227/227 [==============================] - 0s 784us/step - loss: 0.1316 - accuracy: 0.9440 - mae: 0.1316 - pearson_correlation: 0.6387 - euclidean_distance: 0.2067
Epoch 73/300
227/227 [==============================] - 0s 786us/step - loss: 0.1322 - accuracy: 0.9453 - mae: 0.1322 - pearson_correlation: 0.6281 - euclidean_distance: 0.2084
Epoch 74/300
227/227 [==============================] - 0s 784us/step - loss: 0.1323 - accuracy: 0.9453 - mae: 0.1323 - pearson_correlation: 0.6342 - euclidean_distance: 0.2084
Epoch 75/300
227/227 [==============================] - 0s 787us/step - loss: 0.1298 - accuracy: 0.9444 - mae: 0.1298 - pearson_correlation: 0.6462 - euclidean_distance: 0.2041
Epoch 76/300
227/227 [==============================] - 0s 787us/step - loss: 0.1316 - accuracy: 0.9462 - mae: 0.1316 - pearson_correlation: 0.6413 - euclidean_distance: 0.2070
Epoch 77/300
227/227 [==============================] - 0s 785us/step - loss: 0.1278 - accuracy: 0.9502 - mae: 0.1278 - pearson_correlation: 0.6496 - euclidean_distance: 0.2007
Epoch 78/300
227/227 [==============================] - 0s 785us/step - loss: 0.1297 - accuracy: 0.9475 - mae: 0.1297 - pearson_correlation: 0.6467 - euclidean_distance: 0.2041
Epoch 79/300
227/227 [==============================] - 0s 787us/step - loss: 0.1285 - accuracy: 0.9502 - mae: 0.1285 - pearson_correlation: 0.6472 - euclidean_distance: 0.2026
Epoch 80/300
227/227 [==============================] - 0s 785us/step - loss: 0.1298 - accuracy: 0.9462 - mae: 0.1298 - pearson_correlation: 0.6482 - euclidean_distance: 0.2037
Epoch 81/300
227/227 [==============================] - 0s 785us/step - loss: 0.1279 - accuracy: 0.9493 - mae: 0.1279 - pearson_correlation: 0.6473 - euclidean_distance: 0.2020
Epoch 82/300
227/227 [==============================] - 0s 789us/step - loss: 0.1276 - accuracy: 0.9488 - mae: 0.1276 - pearson_correlation: 0.6527 - euclidean_distance: 0.2009
Epoch 83/300
227/227 [==============================] - 0s 788us/step - loss: 0.1253 - accuracy: 0.9479 - mae: 0.1253 - pearson_correlation: 0.6583 - euclidean_distance: 0.1982
Epoch 84/300
227/227 [==============================] - 0s 788us/step - loss: 0.1235 - accuracy: 0.9493 - mae: 0.1235 - pearson_correlation: 0.6597 - euclidean_distance: 0.1949
Epoch 85/300
227/227 [==============================] - 0s 788us/step - loss: 0.1273 - accuracy: 0.9515 - mae: 0.1273 - pearson_correlation: 0.6541 - euclidean_distance: 0.2009
Epoch 86/300
227/227 [==============================] - 0s 787us/step - loss: 0.1220 - accuracy: 0.9502 - mae: 0.1220 - pearson_correlation: 0.6652 - euclidean_distance: 0.1925
Epoch 87/300
227/227 [==============================] - 0s 786us/step - loss: 0.1233 - accuracy: 0.9493 - mae: 0.1233 - pearson_correlation: 0.6696 - euclidean_distance: 0.1943
Epoch 88/300
227/227 [==============================] - 0s 789us/step - loss: 0.1213 - accuracy: 0.9528 - mae: 0.1213 - pearson_correlation: 0.6726 - euclidean_distance: 0.1910
Epoch 89/300
227/227 [==============================] - 0s 788us/step - loss: 0.1240 - accuracy: 0.9537 - mae: 0.1240 - pearson_correlation: 0.6609 - euclidean_distance: 0.1952
Epoch 90/300
227/227 [==============================] - 0s 783us/step - loss: 0.1248 - accuracy: 0.9488 - mae: 0.1248 - pearson_correlation: 0.6598 - euclidean_distance: 0.1971
Epoch 91/300
227/227 [==============================] - 0s 786us/step - loss: 0.1227 - accuracy: 0.9510 - mae: 0.1227 - pearson_correlation: 0.6670 - euclidean_distance: 0.1937
Epoch 92/300
227/227 [==============================] - 0s 785us/step - loss: 0.1193 - accuracy: 0.9515 - mae: 0.1193 - pearson_correlation: 0.6854 - euclidean_distance: 0.1880
Epoch 93/300
227/227 [==============================] - 0s 787us/step - loss: 0.1208 - accuracy: 0.9510 - mae: 0.1208 - pearson_correlation: 0.6694 - euclidean_distance: 0.1904
Epoch 94/300
227/227 [==============================] - 0s 788us/step - loss: 0.1202 - accuracy: 0.9484 - mae: 0.1202 - pearson_correlation: 0.6744 - euclidean_distance: 0.1901
Epoch 95/300
227/227 [==============================] - 0s 785us/step - loss: 0.1192 - accuracy: 0.9519 - mae: 0.1192 - pearson_correlation: 0.6817 - euclidean_distance: 0.1884
Epoch 96/300
227/227 [==============================] - 0s 787us/step - loss: 0.1194 - accuracy: 0.9510 - mae: 0.1194 - pearson_correlation: 0.6731 - euclidean_distance: 0.1887
Epoch 97/300
227/227 [==============================] - 0s 785us/step - loss: 0.1202 - accuracy: 0.9515 - mae: 0.1202 - pearson_correlation: 0.6741 - euclidean_distance: 0.1894
Epoch 98/300
227/227 [==============================] - 0s 785us/step - loss: 0.1194 - accuracy: 0.9510 - mae: 0.1194 - pearson_correlation: 0.6809 - euclidean_distance: 0.1887
Epoch 99/300
227/227 [==============================] - 0s 785us/step - loss: 0.1190 - accuracy: 0.9524 - mae: 0.1190 - pearson_correlation: 0.6769 - euclidean_distance: 0.1883
Epoch 100/300
227/227 [==============================] - 0s 784us/step - loss: 0.1186 - accuracy: 0.9528 - mae: 0.1186 - pearson_correlation: 0.6893 - euclidean_distance: 0.1870
Epoch 101/300
227/227 [==============================] - 0s 788us/step - loss: 0.1177 - accuracy: 0.9524 - mae: 0.1177 - pearson_correlation: 0.6879 - euclidean_distance: 0.1860
Epoch 102/300
227/227 [==============================] - 0s 787us/step - loss: 0.1188 - accuracy: 0.9519 - mae: 0.1188 - pearson_correlation: 0.6844 - euclidean_distance: 0.1876
Epoch 103/300
227/227 [==============================] - 0s 787us/step - loss: 0.1176 - accuracy: 0.9528 - mae: 0.1176 - pearson_correlation: 0.6814 - euclidean_distance: 0.1863
Epoch 104/300
227/227 [==============================] - 0s 788us/step - loss: 0.1127 - accuracy: 0.9524 - mae: 0.1127 - pearson_correlation: 0.6962 - euclidean_distance: 0.1787
Epoch 105/300
227/227 [==============================] - 0s 787us/step - loss: 0.1148 - accuracy: 0.9506 - mae: 0.1148 - pearson_correlation: 0.6878 - euclidean_distance: 0.1819
Epoch 106/300
227/227 [==============================] - 0s 784us/step - loss: 0.1136 - accuracy: 0.9515 - mae: 0.1136 - pearson_correlation: 0.6999 - euclidean_distance: 0.1802
Epoch 107/300
227/227 [==============================] - 0s 787us/step - loss: 0.1133 - accuracy: 0.9524 - mae: 0.1133 - pearson_correlation: 0.6983 - euclidean_distance: 0.1793
Epoch 108/300
227/227 [==============================] - 0s 791us/step - loss: 0.1124 - accuracy: 0.9519 - mae: 0.1124 - pearson_correlation: 0.6996 - euclidean_distance: 0.1781
Epoch 109/300
227/227 [==============================] - 0s 824us/step - loss: 0.1123 - accuracy: 0.9506 - mae: 0.1123 - pearson_correlation: 0.6986 - euclidean_distance: 0.1780
Epoch 110/300
227/227 [==============================] - 0s 864us/step - loss: 0.1123 - accuracy: 0.9537 - mae: 0.1123 - pearson_correlation: 0.7004 - euclidean_distance: 0.1784
Epoch 111/300
227/227 [==============================] - 0s 875us/step - loss: 0.1113 - accuracy: 0.9537 - mae: 0.1113 - pearson_correlation: 0.7054 - euclidean_distance: 0.1762
Epoch 112/300
227/227 [==============================] - 0s 818us/step - loss: 0.1127 - accuracy: 0.9532 - mae: 0.1127 - pearson_correlation: 0.6989 - euclidean_distance: 0.1784
Epoch 113/300
227/227 [==============================] - 0s 789us/step - loss: 0.1095 - accuracy: 0.9546 - mae: 0.1095 - pearson_correlation: 0.7131 - euclidean_distance: 0.1736
Epoch 114/300
227/227 [==============================] - 0s 789us/step - loss: 0.1110 - accuracy: 0.9537 - mae: 0.1110 - pearson_correlation: 0.7072 - euclidean_distance: 0.1761
Epoch 115/300
227/227 [==============================] - 0s 791us/step - loss: 0.1097 - accuracy: 0.9528 - mae: 0.1097 - pearson_correlation: 0.7118 - euclidean_distance: 0.1742
Epoch 116/300
227/227 [==============================] - 0s 793us/step - loss: 0.1064 - accuracy: 0.9537 - mae: 0.1064 - pearson_correlation: 0.7118 - euclidean_distance: 0.1692
Epoch 117/300
227/227 [==============================] - 0s 790us/step - loss: 0.1108 - accuracy: 0.9510 - mae: 0.1108 - pearson_correlation: 0.7040 - euclidean_distance: 0.1757
Epoch 118/300
227/227 [==============================] - 0s 784us/step - loss: 0.1097 - accuracy: 0.9537 - mae: 0.1097 - pearson_correlation: 0.7076 - euclidean_distance: 0.1751
Epoch 119/300
227/227 [==============================] - 0s 789us/step - loss: 0.1082 - accuracy: 0.9519 - mae: 0.1082 - pearson_correlation: 0.7113 - euclidean_distance: 0.1722
Epoch 120/300
227/227 [==============================] - 0s 786us/step - loss: 0.1095 - accuracy: 0.9541 - mae: 0.1095 - pearson_correlation: 0.7083 - euclidean_distance: 0.1739
Epoch 121/300
227/227 [==============================] - 0s 785us/step - loss: 0.1061 - accuracy: 0.9515 - mae: 0.1061 - pearson_correlation: 0.7208 - euclidean_distance: 0.1687
Epoch 122/300
227/227 [==============================] - 0s 786us/step - loss: 0.1073 - accuracy: 0.9524 - mae: 0.1073 - pearson_correlation: 0.7161 - euclidean_distance: 0.1710
Epoch 123/300
227/227 [==============================] - 0s 787us/step - loss: 0.1081 - accuracy: 0.9541 - mae: 0.1081 - pearson_correlation: 0.7165 - euclidean_distance: 0.1718
Epoch 124/300
227/227 [==============================] - 0s 787us/step - loss: 0.1059 - accuracy: 0.9546 - mae: 0.1059 - pearson_correlation: 0.7198 - euclidean_distance: 0.1692
Epoch 125/300
227/227 [==============================] - 0s 787us/step - loss: 0.1048 - accuracy: 0.9546 - mae: 0.1048 - pearson_correlation: 0.7213 - euclidean_distance: 0.1670
Epoch 126/300
227/227 [==============================] - 0s 787us/step - loss: 0.1073 - accuracy: 0.9532 - mae: 0.1073 - pearson_correlation: 0.7174 - euclidean_distance: 0.1707
Epoch 127/300
227/227 [==============================] - 0s 787us/step - loss: 0.1067 - accuracy: 0.9541 - mae: 0.1067 - pearson_correlation: 0.7195 - euclidean_distance: 0.1694
Epoch 128/300
227/227 [==============================] - 0s 785us/step - loss: 0.1043 - accuracy: 0.9541 - mae: 0.1043 - pearson_correlation: 0.7265 - euclidean_distance: 0.1662
Epoch 129/300
227/227 [==============================] - 0s 783us/step - loss: 0.1044 - accuracy: 0.9546 - mae: 0.1044 - pearson_correlation: 0.7264 - euclidean_distance: 0.1659
Epoch 130/300
227/227 [==============================] - 0s 786us/step - loss: 0.1017 - accuracy: 0.9532 - mae: 0.1017 - pearson_correlation: 0.7291 - euclidean_distance: 0.1626
Epoch 131/300
227/227 [==============================] - 0s 784us/step - loss: 0.1043 - accuracy: 0.9519 - mae: 0.1043 - pearson_correlation: 0.7292 - euclidean_distance: 0.1656
Epoch 132/300
227/227 [==============================] - 0s 789us/step - loss: 0.1016 - accuracy: 0.9546 - mae: 0.1016 - pearson_correlation: 0.7355 - euclidean_distance: 0.1618
Epoch 133/300
227/227 [==============================] - 0s 787us/step - loss: 0.1030 - accuracy: 0.9537 - mae: 0.1030 - pearson_correlation: 0.7331 - euclidean_distance: 0.1643
Epoch 134/300
227/227 [==============================] - 0s 789us/step - loss: 0.1050 - accuracy: 0.9541 - mae: 0.1050 - pearson_correlation: 0.7223 - euclidean_distance: 0.1676
Epoch 135/300
227/227 [==============================] - 0s 785us/step - loss: 0.1016 - accuracy: 0.9550 - mae: 0.1016 - pearson_correlation: 0.7394 - euclidean_distance: 0.1621
Epoch 136/300
227/227 [==============================] - 0s 788us/step - loss: 0.0992 - accuracy: 0.9537 - mae: 0.0992 - pearson_correlation: 0.7395 - euclidean_distance: 0.1587
Epoch 137/300
227/227 [==============================] - 0s 788us/step - loss: 0.1011 - accuracy: 0.9537 - mae: 0.1011 - pearson_correlation: 0.7319 - euclidean_distance: 0.1616
Epoch 138/300
227/227 [==============================] - 0s 788us/step - loss: 0.1034 - accuracy: 0.9541 - mae: 0.1034 - pearson_correlation: 0.7264 - euclidean_distance: 0.1652
Epoch 139/300
227/227 [==============================] - 0s 787us/step - loss: 0.1017 - accuracy: 0.9541 - mae: 0.1017 - pearson_correlation: 0.7379 - euclidean_distance: 0.1619
Epoch 140/300
227/227 [==============================] - 0s 786us/step - loss: 0.0979 - accuracy: 0.9528 - mae: 0.0979 - pearson_correlation: 0.7458 - euclidean_distance: 0.1567
Epoch 141/300
227/227 [==============================] - 0s 777us/step - loss: 0.0988 - accuracy: 0.9537 - mae: 0.0988 - pearson_correlation: 0.7442 - euclidean_distance: 0.1576
Epoch 142/300
227/227 [==============================] - 0s 787us/step - loss: 0.0988 - accuracy: 0.9541 - mae: 0.0988 - pearson_correlation: 0.7371 - euclidean_distance: 0.1583
Epoch 143/300
227/227 [==============================] - 0s 789us/step - loss: 0.0995 - accuracy: 0.9550 - mae: 0.0995 - pearson_correlation: 0.7364 - euclidean_distance: 0.1595
Epoch 144/300
227/227 [==============================] - 0s 788us/step - loss: 0.0979 - accuracy: 0.9532 - mae: 0.0979 - pearson_correlation: 0.7430 - euclidean_distance: 0.1562
Epoch 145/300
227/227 [==============================] - 0s 786us/step - loss: 0.0975 - accuracy: 0.9541 - mae: 0.0975 - pearson_correlation: 0.7459 - euclidean_distance: 0.1557
Epoch 146/300
227/227 [==============================] - 0s 786us/step - loss: 0.0982 - accuracy: 0.9541 - mae: 0.0982 - pearson_correlation: 0.7450 - euclidean_distance: 0.1571
Epoch 147/300
227/227 [==============================] - 0s 785us/step - loss: 0.0955 - accuracy: 0.9537 - mae: 0.0955 - pearson_correlation: 0.7498 - euclidean_distance: 0.1532
Epoch 148/300
227/227 [==============================] - 0s 785us/step - loss: 0.0965 - accuracy: 0.9541 - mae: 0.0965 - pearson_correlation: 0.7538 - euclidean_distance: 0.1541
Epoch 149/300
227/227 [==============================] - 0s 786us/step - loss: 0.0979 - accuracy: 0.9546 - mae: 0.0979 - pearson_correlation: 0.7516 - euclidean_distance: 0.1564
Epoch 150/300
227/227 [==============================] - 0s 785us/step - loss: 0.0970 - accuracy: 0.9541 - mae: 0.0970 - pearson_correlation: 0.7456 - euclidean_distance: 0.1557
Epoch 151/300
227/227 [==============================] - 0s 786us/step - loss: 0.0970 - accuracy: 0.9537 - mae: 0.0970 - pearson_correlation: 0.7494 - euclidean_distance: 0.1546
Epoch 152/300
227/227 [==============================] - 0s 784us/step - loss: 0.0930 - accuracy: 0.9550 - mae: 0.0930 - pearson_correlation: 0.7540 - euclidean_distance: 0.1495
Epoch 153/300
227/227 [==============================] - 0s 786us/step - loss: 0.0991 - accuracy: 0.9541 - mae: 0.0991 - pearson_correlation: 0.7434 - euclidean_distance: 0.1583
Epoch 154/300
227/227 [==============================] - 0s 786us/step - loss: 0.0953 - accuracy: 0.9537 - mae: 0.0953 - pearson_correlation: 0.7465 - euclidean_distance: 0.1526
Epoch 155/300
227/227 [==============================] - 0s 789us/step - loss: 0.0939 - accuracy: 0.9532 - mae: 0.0939 - pearson_correlation: 0.7566 - euclidean_distance: 0.1509
Epoch 156/300
227/227 [==============================] - 0s 787us/step - loss: 0.0955 - accuracy: 0.9537 - mae: 0.0955 - pearson_correlation: 0.7505 - euclidean_distance: 0.1528
Epoch 157/300
227/227 [==============================] - 0s 786us/step - loss: 0.0982 - accuracy: 0.9554 - mae: 0.0982 - pearson_correlation: 0.7409 - euclidean_distance: 0.1575
Epoch 158/300
227/227 [==============================] - 0s 784us/step - loss: 0.0936 - accuracy: 0.9546 - mae: 0.0936 - pearson_correlation: 0.7526 - euclidean_distance: 0.1505
Epoch 159/300
227/227 [==============================] - 0s 785us/step - loss: 0.0956 - accuracy: 0.9541 - mae: 0.0956 - pearson_correlation: 0.7498 - euclidean_distance: 0.1533
Epoch 160/300
227/227 [==============================] - 0s 786us/step - loss: 0.0935 - accuracy: 0.9537 - mae: 0.0935 - pearson_correlation: 0.7532 - euclidean_distance: 0.1499
Epoch 161/300
227/227 [==============================] - 0s 785us/step - loss: 0.0948 - accuracy: 0.9554 - mae: 0.0948 - pearson_correlation: 0.7479 - euclidean_distance: 0.1522
Epoch 162/300
227/227 [==============================] - 0s 786us/step - loss: 0.0942 - accuracy: 0.9550 - mae: 0.0942 - pearson_correlation: 0.7542 - euclidean_distance: 0.1514
Epoch 163/300
227/227 [==============================] - 0s 787us/step - loss: 0.0931 - accuracy: 0.9550 - mae: 0.0931 - pearson_correlation: 0.7580 - euclidean_distance: 0.1496
Epoch 164/300
227/227 [==============================] - 0s 790us/step - loss: 0.0956 - accuracy: 0.9537 - mae: 0.0956 - pearson_correlation: 0.7525 - euclidean_distance: 0.1535
Epoch 165/300
227/227 [==============================] - 0s 788us/step - loss: 0.0954 - accuracy: 0.9541 - mae: 0.0954 - pearson_correlation: 0.7503 - euclidean_distance: 0.1530
Epoch 166/300
227/227 [==============================] - 0s 786us/step - loss: 0.0930 - accuracy: 0.9546 - mae: 0.0930 - pearson_correlation: 0.7548 - euclidean_distance: 0.1494
Epoch 167/300
227/227 [==============================] - 0s 784us/step - loss: 0.0931 - accuracy: 0.9550 - mae: 0.0931 - pearson_correlation: 0.7585 - euclidean_distance: 0.1495
Epoch 168/300
227/227 [==============================] - 0s 785us/step - loss: 0.0923 - accuracy: 0.9554 - mae: 0.0923 - pearson_correlation: 0.7592 - euclidean_distance: 0.1483
Epoch 169/300
227/227 [==============================] - 0s 786us/step - loss: 0.0927 - accuracy: 0.9550 - mae: 0.0927 - pearson_correlation: 0.7536 - euclidean_distance: 0.1488
Epoch 170/300
227/227 [==============================] - 0s 783us/step - loss: 0.0918 - accuracy: 0.9554 - mae: 0.0918 - pearson_correlation: 0.7587 - euclidean_distance: 0.1476
Epoch 171/300
227/227 [==============================] - 0s 784us/step - loss: 0.0950 - accuracy: 0.9541 - mae: 0.0950 - pearson_correlation: 0.7508 - euclidean_distance: 0.1523
Epoch 172/300
227/227 [==============================] - 0s 791us/step - loss: 0.0922 - accuracy: 0.9541 - mae: 0.0922 - pearson_correlation: 0.7575 - euclidean_distance: 0.1481
Epoch 173/300
227/227 [==============================] - 0s 787us/step - loss: 0.0905 - accuracy: 0.9550 - mae: 0.0905 - pearson_correlation: 0.7651 - euclidean_distance: 0.1452
Epoch 174/300
227/227 [==============================] - 0s 785us/step - loss: 0.0907 - accuracy: 0.9554 - mae: 0.0907 - pearson_correlation: 0.7622 - euclidean_distance: 0.1461
Epoch 175/300
227/227 [==============================] - 0s 787us/step - loss: 0.0909 - accuracy: 0.9546 - mae: 0.0909 - pearson_correlation: 0.7604 - euclidean_distance: 0.1468
Epoch 176/300
227/227 [==============================] - 0s 785us/step - loss: 0.0917 - accuracy: 0.9537 - mae: 0.0917 - pearson_correlation: 0.7601 - euclidean_distance: 0.1474
Epoch 177/300
227/227 [==============================] - 0s 812us/step - loss: 0.0929 - accuracy: 0.9541 - mae: 0.0929 - pearson_correlation: 0.7615 - euclidean_distance: 0.1492
Epoch 178/300
227/227 [==============================] - 0s 787us/step - loss: 0.0890 - accuracy: 0.9546 - mae: 0.0890 - pearson_correlation: 0.7681 - euclidean_distance: 0.1432
Epoch 179/300
227/227 [==============================] - 0s 789us/step - loss: 0.0904 - accuracy: 0.9554 - mae: 0.0904 - pearson_correlation: 0.7600 - euclidean_distance: 0.1459
Epoch 180/300
227/227 [==============================] - 0s 791us/step - loss: 0.0929 - accuracy: 0.9546 - mae: 0.0929 - pearson_correlation: 0.7615 - euclidean_distance: 0.1488
Epoch 181/300
227/227 [==============================] - 0s 792us/step - loss: 0.0898 - accuracy: 0.9546 - mae: 0.0898 - pearson_correlation: 0.7655 - euclidean_distance: 0.1449
Epoch 182/300
227/227 [==============================] - 0s 786us/step - loss: 0.0910 - accuracy: 0.9554 - mae: 0.0910 - pearson_correlation: 0.7605 - euclidean_distance: 0.1465
Epoch 183/300
227/227 [==============================] - 0s 786us/step - loss: 0.0904 - accuracy: 0.9541 - mae: 0.0904 - pearson_correlation: 0.7647 - euclidean_distance: 0.1451
Epoch 184/300
227/227 [==============================] - 0s 786us/step - loss: 0.0896 - accuracy: 0.9550 - mae: 0.0896 - pearson_correlation: 0.7690 - euclidean_distance: 0.1435
Epoch 185/300
227/227 [==============================] - 0s 786us/step - loss: 0.0911 - accuracy: 0.9554 - mae: 0.0911 - pearson_correlation: 0.7652 - euclidean_distance: 0.1461
Epoch 186/300
227/227 [==============================] - 0s 786us/step - loss: 0.0909 - accuracy: 0.9546 - mae: 0.0909 - pearson_correlation: 0.7621 - euclidean_distance: 0.1461
Epoch 187/300
227/227 [==============================] - 0s 784us/step - loss: 0.0900 - accuracy: 0.9546 - mae: 0.0900 - pearson_correlation: 0.7607 - euclidean_distance: 0.1451
Epoch 188/300
227/227 [==============================] - 0s 787us/step - loss: 0.0897 - accuracy: 0.9554 - mae: 0.0897 - pearson_correlation: 0.7643 - euclidean_distance: 0.1445
Epoch 189/300
227/227 [==============================] - 0s 786us/step - loss: 0.0907 - accuracy: 0.9537 - mae: 0.0907 - pearson_correlation: 0.7669 - euclidean_distance: 0.1455
Epoch 190/300
227/227 [==============================] - 0s 785us/step - loss: 0.0905 - accuracy: 0.9550 - mae: 0.0905 - pearson_correlation: 0.7626 - euclidean_distance: 0.1453
Epoch 191/300
227/227 [==============================] - 0s 784us/step - loss: 0.0902 - accuracy: 0.9546 - mae: 0.0902 - pearson_correlation: 0.7605 - euclidean_distance: 0.1454
Epoch 192/300
227/227 [==============================] - 0s 785us/step - loss: 0.0897 - accuracy: 0.9546 - mae: 0.0897 - pearson_correlation: 0.7608 - euclidean_distance: 0.1447
Epoch 193/300
227/227 [==============================] - 0s 784us/step - loss: 0.0875 - accuracy: 0.9554 - mae: 0.0875 - pearson_correlation: 0.7694 - euclidean_distance: 0.1406
Epoch 194/300
227/227 [==============================] - 0s 785us/step - loss: 0.0907 - accuracy: 0.9554 - mae: 0.0907 - pearson_correlation: 0.7652 - euclidean_distance: 0.1458
Epoch 195/300
227/227 [==============================] - 0s 785us/step - loss: 0.0875 - accuracy: 0.9546 - mae: 0.0875 - pearson_correlation: 0.7690 - euclidean_distance: 0.1410
Epoch 196/300
227/227 [==============================] - 0s 782us/step - loss: 0.0892 - accuracy: 0.9554 - mae: 0.0892 - pearson_correlation: 0.7623 - euclidean_distance: 0.1437
Epoch 197/300
227/227 [==============================] - 0s 797us/step - loss: 0.0889 - accuracy: 0.9537 - mae: 0.0889 - pearson_correlation: 0.7710 - euclidean_distance: 0.1433
Epoch 198/300
227/227 [==============================] - 0s 847us/step - loss: 0.0889 - accuracy: 0.9550 - mae: 0.0889 - pearson_correlation: 0.7667 - euclidean_distance: 0.1428
Epoch 199/300
227/227 [==============================] - 0s 909us/step - loss: 0.0876 - accuracy: 0.9550 - mae: 0.0876 - pearson_correlation: 0.7700 - euclidean_distance: 0.1410
Epoch 200/300
227/227 [==============================] - 0s 857us/step - loss: 0.0864 - accuracy: 0.9546 - mae: 0.0864 - pearson_correlation: 0.7729 - euclidean_distance: 0.1393
Epoch 201/300
227/227 [==============================] - 0s 788us/step - loss: 0.0896 - accuracy: 0.9554 - mae: 0.0896 - pearson_correlation: 0.7702 - euclidean_distance: 0.1438
Epoch 202/300
227/227 [==============================] - 0s 796us/step - loss: 0.0889 - accuracy: 0.9554 - mae: 0.0889 - pearson_correlation: 0.7686 - euclidean_distance: 0.1425
Epoch 203/300
227/227 [==============================] - 0s 791us/step - loss: 0.0870 - accuracy: 0.9546 - mae: 0.0870 - pearson_correlation: 0.7738 - euclidean_distance: 0.1404
Epoch 204/300
227/227 [==============================] - 0s 790us/step - loss: 0.0880 - accuracy: 0.9550 - mae: 0.0880 - pearson_correlation: 0.7751 - euclidean_distance: 0.1421
Epoch 205/300
227/227 [==============================] - 0s 791us/step - loss: 0.0861 - accuracy: 0.9550 - mae: 0.0861 - pearson_correlation: 0.7741 - euclidean_distance: 0.1388
Epoch 206/300
227/227 [==============================] - 0s 789us/step - loss: 0.0873 - accuracy: 0.9554 - mae: 0.0873 - pearson_correlation: 0.7714 - euclidean_distance: 0.1408
Epoch 207/300
227/227 [==============================] - 0s 788us/step - loss: 0.0879 - accuracy: 0.9550 - mae: 0.0879 - pearson_correlation: 0.7711 - euclidean_distance: 0.1416
Epoch 208/300
227/227 [==============================] - 0s 811us/step - loss: 0.0898 - accuracy: 0.9550 - mae: 0.0898 - pearson_correlation: 0.7628 - euclidean_distance: 0.1443
Epoch 209/300
227/227 [==============================] - 0s 793us/step - loss: 0.0864 - accuracy: 0.9550 - mae: 0.0864 - pearson_correlation: 0.7747 - euclidean_distance: 0.1394
Epoch 210/300
227/227 [==============================] - 0s 791us/step - loss: 0.0868 - accuracy: 0.9550 - mae: 0.0868 - pearson_correlation: 0.7773 - euclidean_distance: 0.1396
Epoch 211/300
227/227 [==============================] - 0s 789us/step - loss: 0.0873 - accuracy: 0.9546 - mae: 0.0873 - pearson_correlation: 0.7695 - euclidean_distance: 0.1405
Epoch 212/300
227/227 [==============================] - 0s 786us/step - loss: 0.0864 - accuracy: 0.9550 - mae: 0.0864 - pearson_correlation: 0.7772 - euclidean_distance: 0.1395
Epoch 213/300
227/227 [==============================] - 0s 787us/step - loss: 0.0843 - accuracy: 0.9559 - mae: 0.0843 - pearson_correlation: 0.7747 - euclidean_distance: 0.1368
Epoch 214/300
227/227 [==============================] - 0s 789us/step - loss: 0.0863 - accuracy: 0.9554 - mae: 0.0863 - pearson_correlation: 0.7743 - euclidean_distance: 0.1393
Epoch 215/300
227/227 [==============================] - 0s 787us/step - loss: 0.0873 - accuracy: 0.9554 - mae: 0.0873 - pearson_correlation: 0.7704 - euclidean_distance: 0.1403
Epoch 216/300
227/227 [==============================] - 0s 788us/step - loss: 0.0849 - accuracy: 0.9554 - mae: 0.0849 - pearson_correlation: 0.7783 - euclidean_distance: 0.1371
Epoch 217/300
227/227 [==============================] - 0s 784us/step - loss: 0.0876 - accuracy: 0.9554 - mae: 0.0876 - pearson_correlation: 0.7730 - euclidean_distance: 0.1413
Epoch 218/300
227/227 [==============================] - 0s 785us/step - loss: 0.0839 - accuracy: 0.9554 - mae: 0.0839 - pearson_correlation: 0.7785 - euclidean_distance: 0.1357
Epoch 219/300
227/227 [==============================] - 0s 784us/step - loss: 0.0868 - accuracy: 0.9546 - mae: 0.0868 - pearson_correlation: 0.7727 - euclidean_distance: 0.1401
Epoch 220/300
227/227 [==============================] - 0s 799us/step - loss: 0.0851 - accuracy: 0.9550 - mae: 0.0851 - pearson_correlation: 0.7792 - euclidean_distance: 0.1371
Epoch 221/300
227/227 [==============================] - 0s 788us/step - loss: 0.0839 - accuracy: 0.9550 - mae: 0.0839 - pearson_correlation: 0.7820 - euclidean_distance: 0.1359
Epoch 222/300
227/227 [==============================] - 0s 785us/step - loss: 0.0846 - accuracy: 0.9550 - mae: 0.0846 - pearson_correlation: 0.7730 - euclidean_distance: 0.1368
Epoch 223/300
227/227 [==============================] - 0s 785us/step - loss: 0.0868 - accuracy: 0.9546 - mae: 0.0868 - pearson_correlation: 0.7740 - euclidean_distance: 0.1401
Epoch 224/300
227/227 [==============================] - 0s 788us/step - loss: 0.0849 - accuracy: 0.9546 - mae: 0.0849 - pearson_correlation: 0.7772 - euclidean_distance: 0.1369
Epoch 225/300
227/227 [==============================] - 0s 786us/step - loss: 0.0852 - accuracy: 0.9550 - mae: 0.0852 - pearson_correlation: 0.7714 - euclidean_distance: 0.1376
Epoch 226/300
227/227 [==============================] - 0s 786us/step - loss: 0.0859 - accuracy: 0.9554 - mae: 0.0859 - pearson_correlation: 0.7752 - euclidean_distance: 0.1386
Epoch 227/300
227/227 [==============================] - 0s 792us/step - loss: 0.0826 - accuracy: 0.9554 - mae: 0.0826 - pearson_correlation: 0.7844 - euclidean_distance: 0.1337
Epoch 228/300
227/227 [==============================] - 0s 788us/step - loss: 0.0843 - accuracy: 0.9546 - mae: 0.0843 - pearson_correlation: 0.7775 - euclidean_distance: 0.1365
Epoch 229/300
227/227 [==============================] - 0s 791us/step - loss: 0.0863 - accuracy: 0.9550 - mae: 0.0863 - pearson_correlation: 0.7754 - euclidean_distance: 0.1396
Epoch 230/300
227/227 [==============================] - 0s 788us/step - loss: 0.0835 - accuracy: 0.9546 - mae: 0.0835 - pearson_correlation: 0.7740 - euclidean_distance: 0.1354
Epoch 231/300
227/227 [==============================] - 0s 788us/step - loss: 0.0820 - accuracy: 0.9550 - mae: 0.0820 - pearson_correlation: 0.7856 - euclidean_distance: 0.1330
Epoch 232/300
227/227 [==============================] - 0s 788us/step - loss: 0.0828 - accuracy: 0.9550 - mae: 0.0828 - pearson_correlation: 0.7826 - euclidean_distance: 0.1343
Epoch 233/300
227/227 [==============================] - 0s 787us/step - loss: 0.0843 - accuracy: 0.9554 - mae: 0.0843 - pearson_correlation: 0.7786 - euclidean_distance: 0.1365
Epoch 234/300
227/227 [==============================] - 0s 787us/step - loss: 0.0865 - accuracy: 0.9550 - mae: 0.0865 - pearson_correlation: 0.7740 - euclidean_distance: 0.1392
Epoch 235/300
227/227 [==============================] - 0s 786us/step - loss: 0.0849 - accuracy: 0.9550 - mae: 0.0849 - pearson_correlation: 0.7758 - euclidean_distance: 0.1370
Epoch 236/300
227/227 [==============================] - 0s 786us/step - loss: 0.0826 - accuracy: 0.9554 - mae: 0.0826 - pearson_correlation: 0.7818 - euclidean_distance: 0.1334
Epoch 237/300
227/227 [==============================] - 0s 785us/step - loss: 0.0830 - accuracy: 0.9554 - mae: 0.0830 - pearson_correlation: 0.7858 - euclidean_distance: 0.1341
Epoch 238/300
227/227 [==============================] - 0s 787us/step - loss: 0.0846 - accuracy: 0.9554 - mae: 0.0846 - pearson_correlation: 0.7818 - euclidean_distance: 0.1366
Epoch 239/300
227/227 [==============================] - 0s 786us/step - loss: 0.0827 - accuracy: 0.9541 - mae: 0.0827 - pearson_correlation: 0.7791 - euclidean_distance: 0.1336
Epoch 240/300
227/227 [==============================] - 0s 786us/step - loss: 0.0845 - accuracy: 0.9541 - mae: 0.0845 - pearson_correlation: 0.7805 - euclidean_distance: 0.1366
Epoch 241/300
227/227 [==============================] - 0s 787us/step - loss: 0.0842 - accuracy: 0.9554 - mae: 0.0842 - pearson_correlation: 0.7822 - euclidean_distance: 0.1358
Epoch 242/300
227/227 [==============================] - 0s 789us/step - loss: 0.0832 - accuracy: 0.9550 - mae: 0.0832 - pearson_correlation: 0.7766 - euclidean_distance: 0.1347
Epoch 243/300
227/227 [==============================] - 0s 788us/step - loss: 0.0814 - accuracy: 0.9550 - mae: 0.0814 - pearson_correlation: 0.7859 - euclidean_distance: 0.1316
Epoch 244/300
227/227 [==============================] - 0s 789us/step - loss: 0.0826 - accuracy: 0.9554 - mae: 0.0826 - pearson_correlation: 0.7818 - euclidean_distance: 0.1338
Epoch 245/300
227/227 [==============================] - 0s 797us/step - loss: 0.0826 - accuracy: 0.9550 - mae: 0.0826 - pearson_correlation: 0.7823 - euclidean_distance: 0.1338
Epoch 246/300
227/227 [==============================] - 0s 788us/step - loss: 0.0834 - accuracy: 0.9554 - mae: 0.0834 - pearson_correlation: 0.7821 - euclidean_distance: 0.1342
Epoch 247/300
227/227 [==============================] - 0s 784us/step - loss: 0.0813 - accuracy: 0.9554 - mae: 0.0813 - pearson_correlation: 0.7853 - euclidean_distance: 0.1314
Epoch 248/300
227/227 [==============================] - 0s 785us/step - loss: 0.0832 - accuracy: 0.9550 - mae: 0.0832 - pearson_correlation: 0.7777 - euclidean_distance: 0.1346
Epoch 249/300
227/227 [==============================] - 0s 788us/step - loss: 0.0809 - accuracy: 0.9550 - mae: 0.0809 - pearson_correlation: 0.7874 - euclidean_distance: 0.1309
Epoch 250/300
227/227 [==============================] - 0s 784us/step - loss: 0.0814 - accuracy: 0.9546 - mae: 0.0814 - pearson_correlation: 0.7874 - euclidean_distance: 0.1317
Epoch 251/300
227/227 [==============================] - 0s 784us/step - loss: 0.0807 - accuracy: 0.9550 - mae: 0.0807 - pearson_correlation: 0.7880 - euclidean_distance: 0.1306
Epoch 252/300
227/227 [==============================] - 0s 788us/step - loss: 0.0846 - accuracy: 0.9550 - mae: 0.0846 - pearson_correlation: 0.7814 - euclidean_distance: 0.1366
Epoch 253/300
227/227 [==============================] - 0s 790us/step - loss: 0.0811 - accuracy: 0.9559 - mae: 0.0811 - pearson_correlation: 0.7820 - euclidean_distance: 0.1319
Epoch 254/300
227/227 [==============================] - 0s 787us/step - loss: 0.0825 - accuracy: 0.9554 - mae: 0.0825 - pearson_correlation: 0.7811 - euclidean_distance: 0.1334
Epoch 255/300
227/227 [==============================] - 0s 788us/step - loss: 0.0820 - accuracy: 0.9554 - mae: 0.0820 - pearson_correlation: 0.7817 - euclidean_distance: 0.1330
Epoch 256/300
227/227 [==============================] - 0s 786us/step - loss: 0.0840 - accuracy: 0.9554 - mae: 0.0840 - pearson_correlation: 0.7797 - euclidean_distance: 0.1356
Epoch 257/300
227/227 [==============================] - 0s 786us/step - loss: 0.0802 - accuracy: 0.9550 - mae: 0.0802 - pearson_correlation: 0.7904 - euclidean_distance: 0.1302
Epoch 258/300
227/227 [==============================] - 0s 787us/step - loss: 0.0819 - accuracy: 0.9559 - mae: 0.0819 - pearson_correlation: 0.7812 - euclidean_distance: 0.1328
Epoch 259/300
227/227 [==============================] - 0s 785us/step - loss: 0.0805 - accuracy: 0.9554 - mae: 0.0805 - pearson_correlation: 0.7945 - euclidean_distance: 0.1303
Epoch 260/300
227/227 [==============================] - 0s 785us/step - loss: 0.0812 - accuracy: 0.9546 - mae: 0.0812 - pearson_correlation: 0.7856 - euclidean_distance: 0.1316
Epoch 261/300
227/227 [==============================] - 0s 786us/step - loss: 0.0807 - accuracy: 0.9550 - mae: 0.0807 - pearson_correlation: 0.7912 - euclidean_distance: 0.1307
Epoch 262/300
227/227 [==============================] - 0s 784us/step - loss: 0.0812 - accuracy: 0.9546 - mae: 0.0812 - pearson_correlation: 0.7865 - euclidean_distance: 0.1311
Epoch 263/300
227/227 [==============================] - 0s 786us/step - loss: 0.0825 - accuracy: 0.9554 - mae: 0.0825 - pearson_correlation: 0.7882 - euclidean_distance: 0.1336
Epoch 264/300
227/227 [==============================] - 0s 786us/step - loss: 0.0819 - accuracy: 0.9550 - mae: 0.0819 - pearson_correlation: 0.7839 - euclidean_distance: 0.1325
Epoch 265/300
227/227 [==============================] - 0s 783us/step - loss: 0.0815 - accuracy: 0.9554 - mae: 0.0815 - pearson_correlation: 0.7844 - euclidean_distance: 0.1319
Epoch 266/300
227/227 [==============================] - 0s 788us/step - loss: 0.0814 - accuracy: 0.9550 - mae: 0.0814 - pearson_correlation: 0.7871 - euclidean_distance: 0.1320
Epoch 267/300
227/227 [==============================] - 0s 783us/step - loss: 0.0810 - accuracy: 0.9554 - mae: 0.0810 - pearson_correlation: 0.7844 - euclidean_distance: 0.1315
Epoch 268/300
227/227 [==============================] - 0s 785us/step - loss: 0.0829 - accuracy: 0.9550 - mae: 0.0829 - pearson_correlation: 0.7786 - euclidean_distance: 0.1339
Epoch 269/300
227/227 [==============================] - 0s 797us/step - loss: 0.0818 - accuracy: 0.9554 - mae: 0.0818 - pearson_correlation: 0.7869 - euclidean_distance: 0.1320
Epoch 270/300
227/227 [==============================] - 0s 784us/step - loss: 0.0813 - accuracy: 0.9554 - mae: 0.0813 - pearson_correlation: 0.7919 - euclidean_distance: 0.1317
Epoch 271/300
227/227 [==============================] - 0s 780us/step - loss: 0.0824 - accuracy: 0.9546 - mae: 0.0824 - pearson_correlation: 0.7822 - euclidean_distance: 0.1337
Epoch 272/300
227/227 [==============================] - 0s 782us/step - loss: 0.0817 - accuracy: 0.9550 - mae: 0.0817 - pearson_correlation: 0.7842 - euclidean_distance: 0.1326
Epoch 273/300
227/227 [==============================] - 0s 783us/step - loss: 0.0802 - accuracy: 0.9550 - mae: 0.0802 - pearson_correlation: 0.7839 - euclidean_distance: 0.1303
Epoch 274/300
227/227 [==============================] - 0s 785us/step - loss: 0.0802 - accuracy: 0.9550 - mae: 0.0802 - pearson_correlation: 0.7895 - euclidean_distance: 0.1299
Epoch 275/300
227/227 [==============================] - 0s 789us/step - loss: 0.0801 - accuracy: 0.9550 - mae: 0.0801 - pearson_correlation: 0.7891 - euclidean_distance: 0.1297
Epoch 276/300
227/227 [==============================] - 0s 787us/step - loss: 0.0807 - accuracy: 0.9554 - mae: 0.0807 - pearson_correlation: 0.7896 - euclidean_distance: 0.1309
Epoch 277/300
227/227 [==============================] - 0s 788us/step - loss: 0.0821 - accuracy: 0.9554 - mae: 0.0821 - pearson_correlation: 0.7878 - euclidean_distance: 0.1328
Epoch 278/300
227/227 [==============================] - 0s 784us/step - loss: 0.0816 - accuracy: 0.9550 - mae: 0.0816 - pearson_correlation: 0.7851 - euclidean_distance: 0.1323
Epoch 279/300
227/227 [==============================] - 0s 787us/step - loss: 0.0793 - accuracy: 0.9554 - mae: 0.0793 - pearson_correlation: 0.7916 - euclidean_distance: 0.1281
Epoch 280/300
227/227 [==============================] - 0s 788us/step - loss: 0.0822 - accuracy: 0.9554 - mae: 0.0822 - pearson_correlation: 0.7806 - euclidean_distance: 0.1333
Epoch 281/300
227/227 [==============================] - 0s 791us/step - loss: 0.0805 - accuracy: 0.9554 - mae: 0.0805 - pearson_correlation: 0.7882 - euclidean_distance: 0.1304
Epoch 282/300
227/227 [==============================] - 0s 787us/step - loss: 0.0802 - accuracy: 0.9550 - mae: 0.0802 - pearson_correlation: 0.7892 - euclidean_distance: 0.1297
Epoch 283/300
227/227 [==============================] - 0s 788us/step - loss: 0.0805 - accuracy: 0.9550 - mae: 0.0805 - pearson_correlation: 0.7894 - euclidean_distance: 0.1305
Epoch 284/300
227/227 [==============================] - 0s 787us/step - loss: 0.0801 - accuracy: 0.9554 - mae: 0.0801 - pearson_correlation: 0.7897 - euclidean_distance: 0.1300
Epoch 285/300
227/227 [==============================] - 0s 786us/step - loss: 0.0787 - accuracy: 0.9550 - mae: 0.0787 - pearson_correlation: 0.7878 - euclidean_distance: 0.1279
Epoch 286/300
227/227 [==============================] - 0s 850us/step - loss: 0.0806 - accuracy: 0.9554 - mae: 0.0806 - pearson_correlation: 0.7851 - euclidean_distance: 0.1304
Epoch 287/300
227/227 [==============================] - 0s 857us/step - loss: 0.0776 - accuracy: 0.9554 - mae: 0.0776 - pearson_correlation: 0.7943 - euclidean_distance: 0.1261
Epoch 288/300
227/227 [==============================] - 0s 876us/step - loss: 0.0792 - accuracy: 0.9546 - mae: 0.0792 - pearson_correlation: 0.7922 - euclidean_distance: 0.1287
Epoch 289/300
227/227 [==============================] - 0s 794us/step - loss: 0.0773 - accuracy: 0.9554 - mae: 0.0773 - pearson_correlation: 0.8002 - euclidean_distance: 0.1253
Epoch 290/300
227/227 [==============================] - 0s 789us/step - loss: 0.0779 - accuracy: 0.9546 - mae: 0.0779 - pearson_correlation: 0.7959 - euclidean_distance: 0.1268
Epoch 291/300
227/227 [==============================] - 0s 787us/step - loss: 0.0793 - accuracy: 0.9546 - mae: 0.0793 - pearson_correlation: 0.7905 - euclidean_distance: 0.1282
Epoch 292/300
227/227 [==============================] - 0s 786us/step - loss: 0.0796 - accuracy: 0.9554 - mae: 0.0796 - pearson_correlation: 0.7908 - euclidean_distance: 0.1288
Epoch 293/300
227/227 [==============================] - 0s 784us/step - loss: 0.0781 - accuracy: 0.9554 - mae: 0.0781 - pearson_correlation: 0.7890 - euclidean_distance: 0.1270
Epoch 294/300
227/227 [==============================] - 0s 784us/step - loss: 0.0782 - accuracy: 0.9554 - mae: 0.0782 - pearson_correlation: 0.7891 - euclidean_distance: 0.1267
Epoch 295/300
227/227 [==============================] - 0s 783us/step - loss: 0.0766 - accuracy: 0.9554 - mae: 0.0766 - pearson_correlation: 0.7988 - euclidean_distance: 0.1246
Epoch 296/300
227/227 [==============================] - 0s 786us/step - loss: 0.0788 - accuracy: 0.9550 - mae: 0.0788 - pearson_correlation: 0.7917 - euclidean_distance: 0.1274
Epoch 297/300
227/227 [==============================] - 0s 786us/step - loss: 0.0783 - accuracy: 0.9554 - mae: 0.0783 - pearson_correlation: 0.7959 - euclidean_distance: 0.1269
Epoch 298/300
227/227 [==============================] - 0s 784us/step - loss: 0.0774 - accuracy: 0.9554 - mae: 0.0774 - pearson_correlation: 0.7935 - euclidean_distance: 0.1255
Epoch 299/300
227/227 [==============================] - 0s 787us/step - loss: 0.0767 - accuracy: 0.9550 - mae: 0.0767 - pearson_correlation: 0.7940 - euclidean_distance: 0.1250
Epoch 300/300
227/227 [==============================] - 0s 830us/step - loss: 0.0798 - accuracy: 0.9554 - mae: 0.0798 - pearson_correlation: 0.7933 - euclidean_distance: 0.1292
114/114 [==============================] - 0s 435us/step
Epoch 1/300
227/227 [==============================] - 1s 806us/step - loss: 0.6570 - accuracy: 0.0631 - mae: 0.6570 - pearson_correlation: -0.6497 - euclidean_distance: 1.1279
Epoch 2/300
227/227 [==============================] - 0s 783us/step - loss: 0.6406 - accuracy: 0.0626 - mae: 0.6406 - pearson_correlation: -0.6458 - euclidean_distance: 1.1017
Epoch 3/300
227/227 [==============================] - 0s 793us/step - loss: 0.6241 - accuracy: 0.0635 - mae: 0.6241 - pearson_correlation: -0.6470 - euclidean_distance: 1.0728
Epoch 4/300
227/227 [==============================] - 0s 790us/step - loss: 0.6107 - accuracy: 0.0697 - mae: 0.6107 - pearson_correlation: -0.6494 - euclidean_distance: 1.0527
Epoch 5/300
227/227 [==============================] - 0s 791us/step - loss: 0.5953 - accuracy: 0.0697 - mae: 0.5953 - pearson_correlation: -0.6476 - euclidean_distance: 1.0253
Epoch 6/300
227/227 [==============================] - 0s 796us/step - loss: 0.5814 - accuracy: 0.0754 - mae: 0.5814 - pearson_correlation: -0.6486 - euclidean_distance: 1.0009
Epoch 7/300
227/227 [==============================] - 0s 796us/step - loss: 0.5665 - accuracy: 0.0776 - mae: 0.5665 - pearson_correlation: -0.6475 - euclidean_distance: 0.9750
Epoch 8/300
227/227 [==============================] - 0s 800us/step - loss: 0.5554 - accuracy: 0.0807 - mae: 0.5554 - pearson_correlation: -0.6350 - euclidean_distance: 0.9539
Epoch 9/300
227/227 [==============================] - 0s 792us/step - loss: 0.5388 - accuracy: 0.0939 - mae: 0.5388 - pearson_correlation: -0.6282 - euclidean_distance: 0.9267
Epoch 10/300
227/227 [==============================] - 0s 790us/step - loss: 0.5246 - accuracy: 0.0983 - mae: 0.5246 - pearson_correlation: -0.6203 - euclidean_distance: 0.8998
Epoch 11/300
227/227 [==============================] - 0s 790us/step - loss: 0.5131 - accuracy: 0.1173 - mae: 0.5131 - pearson_correlation: -0.6063 - euclidean_distance: 0.8789
Epoch 12/300
227/227 [==============================] - 0s 794us/step - loss: 0.4979 - accuracy: 0.1213 - mae: 0.4979 - pearson_correlation: -0.5858 - euclidean_distance: 0.8511
Epoch 13/300
227/227 [==============================] - 0s 790us/step - loss: 0.4853 - accuracy: 0.1389 - mae: 0.4853 - pearson_correlation: -0.5842 - euclidean_distance: 0.8290
Epoch 14/300
227/227 [==============================] - 0s 792us/step - loss: 0.4703 - accuracy: 0.1521 - mae: 0.4703 - pearson_correlation: -0.5623 - euclidean_distance: 0.8017
Epoch 15/300
227/227 [==============================] - 0s 791us/step - loss: 0.4586 - accuracy: 0.1675 - mae: 0.4586 - pearson_correlation: -0.5413 - euclidean_distance: 0.7805
Epoch 16/300
227/227 [==============================] - 0s 792us/step - loss: 0.4489 - accuracy: 0.1777 - mae: 0.4489 - pearson_correlation: -0.5089 - euclidean_distance: 0.7607
Epoch 17/300
227/227 [==============================] - 0s 791us/step - loss: 0.4309 - accuracy: 0.1966 - mae: 0.4309 - pearson_correlation: -0.4777 - euclidean_distance: 0.7279
Epoch 18/300
227/227 [==============================] - 0s 791us/step - loss: 0.4163 - accuracy: 0.2169 - mae: 0.4163 - pearson_correlation: -0.4527 - euclidean_distance: 0.7024
Epoch 19/300
227/227 [==============================] - 0s 789us/step - loss: 0.4050 - accuracy: 0.2460 - mae: 0.4050 - pearson_correlation: -0.4131 - euclidean_distance: 0.6818
Epoch 20/300
227/227 [==============================] - 0s 792us/step - loss: 0.3929 - accuracy: 0.2729 - mae: 0.3929 - pearson_correlation: -0.3776 - euclidean_distance: 0.6584
Epoch 21/300
227/227 [==============================] - 0s 788us/step - loss: 0.3778 - accuracy: 0.3113 - mae: 0.3778 - pearson_correlation: -0.3122 - euclidean_distance: 0.6306
Epoch 22/300
227/227 [==============================] - 0s 789us/step - loss: 0.3641 - accuracy: 0.3338 - mae: 0.3641 - pearson_correlation: -0.2709 - euclidean_distance: 0.6068
Epoch 23/300
227/227 [==============================] - 0s 789us/step - loss: 0.3493 - accuracy: 0.3911 - mae: 0.3493 - pearson_correlation: -0.2109 - euclidean_distance: 0.5808
Epoch 24/300
227/227 [==============================] - 0s 788us/step - loss: 0.3379 - accuracy: 0.4162 - mae: 0.3379 - pearson_correlation: -0.1584 - euclidean_distance: 0.5590
Epoch 25/300
227/227 [==============================] - 0s 786us/step - loss: 0.3270 - accuracy: 0.4546 - mae: 0.3270 - pearson_correlation: -0.1000 - euclidean_distance: 0.5392
Epoch 26/300
227/227 [==============================] - 0s 785us/step - loss: 0.3126 - accuracy: 0.4974 - mae: 0.3126 - pearson_correlation: -0.0393 - euclidean_distance: 0.5132
Epoch 27/300
227/227 [==============================] - 0s 801us/step - loss: 0.2994 - accuracy: 0.5335 - mae: 0.2994 - pearson_correlation: 0.0137 - euclidean_distance: 0.4907
Epoch 28/300
227/227 [==============================] - 0s 787us/step - loss: 0.2894 - accuracy: 0.5635 - mae: 0.2894 - pearson_correlation: 0.0546 - euclidean_distance: 0.4736
Epoch 29/300
227/227 [==============================] - 0s 789us/step - loss: 0.2778 - accuracy: 0.6124 - mae: 0.2778 - pearson_correlation: 0.1098 - euclidean_distance: 0.4530
Epoch 30/300
227/227 [==============================] - 0s 784us/step - loss: 0.2666 - accuracy: 0.6473 - mae: 0.2666 - pearson_correlation: 0.1620 - euclidean_distance: 0.4341
Epoch 31/300
227/227 [==============================] - 0s 788us/step - loss: 0.2574 - accuracy: 0.6631 - mae: 0.2574 - pearson_correlation: 0.2090 - euclidean_distance: 0.4174
Epoch 32/300
227/227 [==============================] - 0s 787us/step - loss: 0.2485 - accuracy: 0.6922 - mae: 0.2485 - pearson_correlation: 0.2451 - euclidean_distance: 0.4010
Epoch 33/300
227/227 [==============================] - 0s 787us/step - loss: 0.2385 - accuracy: 0.7134 - mae: 0.2385 - pearson_correlation: 0.2915 - euclidean_distance: 0.3846
Epoch 34/300
227/227 [==============================] - 0s 795us/step - loss: 0.2339 - accuracy: 0.7429 - mae: 0.2339 - pearson_correlation: 0.3166 - euclidean_distance: 0.3752
Epoch 35/300
227/227 [==============================] - 0s 788us/step - loss: 0.2279 - accuracy: 0.7562 - mae: 0.2279 - pearson_correlation: 0.3333 - euclidean_distance: 0.3657
Epoch 36/300
227/227 [==============================] - 0s 789us/step - loss: 0.2212 - accuracy: 0.7879 - mae: 0.2212 - pearson_correlation: 0.3650 - euclidean_distance: 0.3535
Epoch 37/300
227/227 [==============================] - 0s 787us/step - loss: 0.2159 - accuracy: 0.7884 - mae: 0.2159 - pearson_correlation: 0.3836 - euclidean_distance: 0.3460
Epoch 38/300
227/227 [==============================] - 0s 792us/step - loss: 0.2091 - accuracy: 0.8161 - mae: 0.2091 - pearson_correlation: 0.4107 - euclidean_distance: 0.3340
Epoch 39/300
227/227 [==============================] - 0s 787us/step - loss: 0.2078 - accuracy: 0.8192 - mae: 0.2078 - pearson_correlation: 0.4110 - euclidean_distance: 0.3320
Epoch 40/300
227/227 [==============================] - 0s 790us/step - loss: 0.1985 - accuracy: 0.8369 - mae: 0.1985 - pearson_correlation: 0.4510 - euclidean_distance: 0.3154
Epoch 41/300
227/227 [==============================] - 0s 793us/step - loss: 0.1971 - accuracy: 0.8496 - mae: 0.1971 - pearson_correlation: 0.4585 - euclidean_distance: 0.3133
Epoch 42/300
227/227 [==============================] - 0s 793us/step - loss: 0.1896 - accuracy: 0.8585 - mae: 0.1896 - pearson_correlation: 0.4842 - euclidean_distance: 0.3016
Epoch 43/300
227/227 [==============================] - 0s 788us/step - loss: 0.1817 - accuracy: 0.8682 - mae: 0.1817 - pearson_correlation: 0.5073 - euclidean_distance: 0.2890
Epoch 44/300
227/227 [==============================] - 0s 788us/step - loss: 0.1847 - accuracy: 0.8735 - mae: 0.1847 - pearson_correlation: 0.4964 - euclidean_distance: 0.2940
Epoch 45/300
227/227 [==============================] - 0s 787us/step - loss: 0.1811 - accuracy: 0.8836 - mae: 0.1811 - pearson_correlation: 0.5204 - euclidean_distance: 0.2870
Epoch 46/300
227/227 [==============================] - 0s 790us/step - loss: 0.1795 - accuracy: 0.8845 - mae: 0.1795 - pearson_correlation: 0.5257 - euclidean_distance: 0.2840
Epoch 47/300
227/227 [==============================] - 0s 788us/step - loss: 0.1728 - accuracy: 0.8920 - mae: 0.1728 - pearson_correlation: 0.5494 - euclidean_distance: 0.2736
Epoch 48/300
227/227 [==============================] - 0s 784us/step - loss: 0.1720 - accuracy: 0.8981 - mae: 0.1720 - pearson_correlation: 0.5480 - euclidean_distance: 0.2727
Epoch 49/300
227/227 [==============================] - 0s 790us/step - loss: 0.1711 - accuracy: 0.8959 - mae: 0.1711 - pearson_correlation: 0.5507 - euclidean_distance: 0.2706
Epoch 50/300
227/227 [==============================] - 0s 787us/step - loss: 0.1676 - accuracy: 0.9004 - mae: 0.1676 - pearson_correlation: 0.5616 - euclidean_distance: 0.2658
Epoch 51/300
227/227 [==============================] - 0s 791us/step - loss: 0.1666 - accuracy: 0.9021 - mae: 0.1666 - pearson_correlation: 0.5612 - euclidean_distance: 0.2650
Epoch 52/300
227/227 [==============================] - 0s 788us/step - loss: 0.1652 - accuracy: 0.9061 - mae: 0.1652 - pearson_correlation: 0.5729 - euclidean_distance: 0.2612
Epoch 53/300
227/227 [==============================] - 0s 792us/step - loss: 0.1633 - accuracy: 0.9127 - mae: 0.1633 - pearson_correlation: 0.5838 - euclidean_distance: 0.2578
Epoch 54/300
227/227 [==============================] - 0s 793us/step - loss: 0.1635 - accuracy: 0.9074 - mae: 0.1635 - pearson_correlation: 0.5748 - euclidean_distance: 0.2592
Epoch 55/300
227/227 [==============================] - 0s 787us/step - loss: 0.1589 - accuracy: 0.9149 - mae: 0.1589 - pearson_correlation: 0.5888 - euclidean_distance: 0.2517
Epoch 56/300
227/227 [==============================] - 0s 790us/step - loss: 0.1565 - accuracy: 0.9131 - mae: 0.1565 - pearson_correlation: 0.5918 - euclidean_distance: 0.2484
Epoch 57/300
227/227 [==============================] - 0s 795us/step - loss: 0.1574 - accuracy: 0.9224 - mae: 0.1574 - pearson_correlation: 0.6076 - euclidean_distance: 0.2481
Epoch 58/300
227/227 [==============================] - 0s 788us/step - loss: 0.1525 - accuracy: 0.9180 - mae: 0.1525 - pearson_correlation: 0.6154 - euclidean_distance: 0.2419
Epoch 59/300
227/227 [==============================] - 0s 789us/step - loss: 0.1555 - accuracy: 0.9149 - mae: 0.1555 - pearson_correlation: 0.6004 - euclidean_distance: 0.2467
Epoch 60/300
227/227 [==============================] - 0s 792us/step - loss: 0.1528 - accuracy: 0.9233 - mae: 0.1528 - pearson_correlation: 0.6135 - euclidean_distance: 0.2416
Epoch 61/300
227/227 [==============================] - 0s 787us/step - loss: 0.1475 - accuracy: 0.9250 - mae: 0.1475 - pearson_correlation: 0.6305 - euclidean_distance: 0.2342
Epoch 62/300
227/227 [==============================] - 0s 788us/step - loss: 0.1472 - accuracy: 0.9325 - mae: 0.1472 - pearson_correlation: 0.6413 - euclidean_distance: 0.2322
Epoch 63/300
227/227 [==============================] - 0s 790us/step - loss: 0.1474 - accuracy: 0.9228 - mae: 0.1474 - pearson_correlation: 0.6254 - euclidean_distance: 0.2343
Epoch 64/300
227/227 [==============================] - 0s 789us/step - loss: 0.1509 - accuracy: 0.9312 - mae: 0.1509 - pearson_correlation: 0.6226 - euclidean_distance: 0.2379
Epoch 65/300
227/227 [==============================] - 0s 786us/step - loss: 0.1441 - accuracy: 0.9299 - mae: 0.1441 - pearson_correlation: 0.6378 - euclidean_distance: 0.2282
Epoch 66/300
227/227 [==============================] - 0s 786us/step - loss: 0.1424 - accuracy: 0.9295 - mae: 0.1424 - pearson_correlation: 0.6465 - euclidean_distance: 0.2257
Epoch 67/300
227/227 [==============================] - 0s 785us/step - loss: 0.1425 - accuracy: 0.9295 - mae: 0.1425 - pearson_correlation: 0.6392 - euclidean_distance: 0.2264
Epoch 68/300
227/227 [==============================] - 0s 792us/step - loss: 0.1392 - accuracy: 0.9303 - mae: 0.1392 - pearson_correlation: 0.6540 - euclidean_distance: 0.2202
Epoch 69/300
227/227 [==============================] - 0s 789us/step - loss: 0.1379 - accuracy: 0.9339 - mae: 0.1379 - pearson_correlation: 0.6544 - euclidean_distance: 0.2192
Epoch 70/300
227/227 [==============================] - 0s 848us/step - loss: 0.1409 - accuracy: 0.9317 - mae: 0.1409 - pearson_correlation: 0.6380 - euclidean_distance: 0.2237
Epoch 71/300
227/227 [==============================] - 0s 898us/step - loss: 0.1395 - accuracy: 0.9317 - mae: 0.1395 - pearson_correlation: 0.6425 - euclidean_distance: 0.2216
Epoch 72/300
227/227 [==============================] - 0s 892us/step - loss: 0.1402 - accuracy: 0.9303 - mae: 0.1402 - pearson_correlation: 0.6484 - euclidean_distance: 0.2213
Epoch 73/300
227/227 [==============================] - 0s 790us/step - loss: 0.1370 - accuracy: 0.9352 - mae: 0.1370 - pearson_correlation: 0.6576 - euclidean_distance: 0.2172
Epoch 74/300
227/227 [==============================] - 0s 793us/step - loss: 0.1354 - accuracy: 0.9356 - mae: 0.1354 - pearson_correlation: 0.6618 - euclidean_distance: 0.2147
Epoch 75/300
227/227 [==============================] - 0s 793us/step - loss: 0.1336 - accuracy: 0.9387 - mae: 0.1336 - pearson_correlation: 0.6726 - euclidean_distance: 0.2114
Epoch 76/300
227/227 [==============================] - 0s 790us/step - loss: 0.1336 - accuracy: 0.9392 - mae: 0.1336 - pearson_correlation: 0.6721 - euclidean_distance: 0.2115
Epoch 77/300
227/227 [==============================] - 0s 794us/step - loss: 0.1327 - accuracy: 0.9396 - mae: 0.1327 - pearson_correlation: 0.6713 - euclidean_distance: 0.2108
Epoch 78/300
227/227 [==============================] - 0s 866us/step - loss: 0.1354 - accuracy: 0.9361 - mae: 0.1354 - pearson_correlation: 0.6620 - euclidean_distance: 0.2136
Epoch 79/300
227/227 [==============================] - 0s 810us/step - loss: 0.1342 - accuracy: 0.9347 - mae: 0.1342 - pearson_correlation: 0.6630 - euclidean_distance: 0.2127
Epoch 80/300
227/227 [==============================] - 0s 790us/step - loss: 0.1314 - accuracy: 0.9400 - mae: 0.1314 - pearson_correlation: 0.6768 - euclidean_distance: 0.2077
Epoch 81/300
227/227 [==============================] - 0s 791us/step - loss: 0.1325 - accuracy: 0.9436 - mae: 0.1325 - pearson_correlation: 0.6732 - euclidean_distance: 0.2094
Epoch 82/300
227/227 [==============================] - 0s 802us/step - loss: 0.1326 - accuracy: 0.9343 - mae: 0.1326 - pearson_correlation: 0.6684 - euclidean_distance: 0.2100
Epoch 83/300
227/227 [==============================] - 0s 790us/step - loss: 0.1279 - accuracy: 0.9396 - mae: 0.1279 - pearson_correlation: 0.6845 - euclidean_distance: 0.2029
Epoch 84/300
227/227 [==============================] - 0s 789us/step - loss: 0.1279 - accuracy: 0.9422 - mae: 0.1279 - pearson_correlation: 0.6857 - euclidean_distance: 0.2031
Epoch 85/300
227/227 [==============================] - 0s 788us/step - loss: 0.1290 - accuracy: 0.9418 - mae: 0.1290 - pearson_correlation: 0.6732 - euclidean_distance: 0.2046
Epoch 86/300
227/227 [==============================] - 0s 783us/step - loss: 0.1241 - accuracy: 0.9414 - mae: 0.1241 - pearson_correlation: 0.6900 - euclidean_distance: 0.1975
Epoch 87/300
227/227 [==============================] - 0s 779us/step - loss: 0.1291 - accuracy: 0.9440 - mae: 0.1291 - pearson_correlation: 0.6790 - euclidean_distance: 0.2048
Epoch 88/300
227/227 [==============================] - 0s 779us/step - loss: 0.1296 - accuracy: 0.9356 - mae: 0.1296 - pearson_correlation: 0.6752 - euclidean_distance: 0.2061
Epoch 89/300
227/227 [==============================] - 0s 783us/step - loss: 0.1283 - accuracy: 0.9422 - mae: 0.1283 - pearson_correlation: 0.6832 - euclidean_distance: 0.2039
Epoch 90/300
227/227 [==============================] - 0s 772us/step - loss: 0.1276 - accuracy: 0.9418 - mae: 0.1276 - pearson_correlation: 0.6841 - euclidean_distance: 0.2024
Epoch 91/300
227/227 [==============================] - 0s 776us/step - loss: 0.1276 - accuracy: 0.9405 - mae: 0.1276 - pearson_correlation: 0.6887 - euclidean_distance: 0.2011
Epoch 92/300
227/227 [==============================] - 0s 788us/step - loss: 0.1249 - accuracy: 0.9431 - mae: 0.1249 - pearson_correlation: 0.6835 - euclidean_distance: 0.1983
Epoch 93/300
227/227 [==============================] - 0s 790us/step - loss: 0.1256 - accuracy: 0.9458 - mae: 0.1256 - pearson_correlation: 0.6877 - euclidean_distance: 0.1999
Epoch 94/300
227/227 [==============================] - 0s 791us/step - loss: 0.1245 - accuracy: 0.9444 - mae: 0.1245 - pearson_correlation: 0.6923 - euclidean_distance: 0.1973
Epoch 95/300
227/227 [==============================] - 0s 792us/step - loss: 0.1208 - accuracy: 0.9462 - mae: 0.1208 - pearson_correlation: 0.6981 - euclidean_distance: 0.1922
Epoch 96/300
227/227 [==============================] - 0s 793us/step - loss: 0.1193 - accuracy: 0.9475 - mae: 0.1193 - pearson_correlation: 0.7054 - euclidean_distance: 0.1891
Epoch 97/300
227/227 [==============================] - 0s 793us/step - loss: 0.1217 - accuracy: 0.9493 - mae: 0.1217 - pearson_correlation: 0.6922 - euclidean_distance: 0.1936
Epoch 98/300
227/227 [==============================] - 0s 786us/step - loss: 0.1183 - accuracy: 0.9440 - mae: 0.1183 - pearson_correlation: 0.7107 - euclidean_distance: 0.1885
Epoch 99/300
227/227 [==============================] - 0s 788us/step - loss: 0.1218 - accuracy: 0.9462 - mae: 0.1218 - pearson_correlation: 0.6985 - euclidean_distance: 0.1934
Epoch 100/300
227/227 [==============================] - 0s 791us/step - loss: 0.1178 - accuracy: 0.9475 - mae: 0.1178 - pearson_correlation: 0.7068 - euclidean_distance: 0.1873
Epoch 101/300
227/227 [==============================] - 0s 788us/step - loss: 0.1182 - accuracy: 0.9449 - mae: 0.1182 - pearson_correlation: 0.7065 - euclidean_distance: 0.1881
Epoch 102/300
227/227 [==============================] - 0s 790us/step - loss: 0.1182 - accuracy: 0.9418 - mae: 0.1182 - pearson_correlation: 0.7090 - euclidean_distance: 0.1878
Epoch 103/300
227/227 [==============================] - 0s 788us/step - loss: 0.1152 - accuracy: 0.9458 - mae: 0.1152 - pearson_correlation: 0.7163 - euclidean_distance: 0.1834
Epoch 104/300
227/227 [==============================] - 0s 786us/step - loss: 0.1160 - accuracy: 0.9484 - mae: 0.1160 - pearson_correlation: 0.7144 - euclidean_distance: 0.1845
Epoch 105/300
227/227 [==============================] - 0s 787us/step - loss: 0.1172 - accuracy: 0.9480 - mae: 0.1172 - pearson_correlation: 0.7087 - euclidean_distance: 0.1860
Epoch 106/300
227/227 [==============================] - 0s 786us/step - loss: 0.1172 - accuracy: 0.9453 - mae: 0.1172 - pearson_correlation: 0.7147 - euclidean_distance: 0.1858
Epoch 107/300
227/227 [==============================] - 0s 791us/step - loss: 0.1148 - accuracy: 0.9453 - mae: 0.1148 - pearson_correlation: 0.7139 - euclidean_distance: 0.1826
Epoch 108/300
227/227 [==============================] - 0s 787us/step - loss: 0.1158 - accuracy: 0.9502 - mae: 0.1158 - pearson_correlation: 0.7115 - euclidean_distance: 0.1842
Epoch 109/300
227/227 [==============================] - 0s 788us/step - loss: 0.1148 - accuracy: 0.9489 - mae: 0.1148 - pearson_correlation: 0.7110 - euclidean_distance: 0.1825
Epoch 110/300
227/227 [==============================] - 0s 785us/step - loss: 0.1180 - accuracy: 0.9444 - mae: 0.1180 - pearson_correlation: 0.7071 - euclidean_distance: 0.1869
Epoch 111/300
227/227 [==============================] - 0s 789us/step - loss: 0.1177 - accuracy: 0.9489 - mae: 0.1177 - pearson_correlation: 0.7082 - euclidean_distance: 0.1867
Epoch 112/300
227/227 [==============================] - 0s 791us/step - loss: 0.1157 - accuracy: 0.9489 - mae: 0.1157 - pearson_correlation: 0.7185 - euclidean_distance: 0.1835
Epoch 113/300
227/227 [==============================] - 0s 792us/step - loss: 0.1153 - accuracy: 0.9502 - mae: 0.1153 - pearson_correlation: 0.7166 - euclidean_distance: 0.1826
Epoch 114/300
227/227 [==============================] - 0s 790us/step - loss: 0.1165 - accuracy: 0.9511 - mae: 0.1165 - pearson_correlation: 0.7139 - euclidean_distance: 0.1844
Epoch 115/300
227/227 [==============================] - 0s 788us/step - loss: 0.1124 - accuracy: 0.9519 - mae: 0.1124 - pearson_correlation: 0.7209 - euclidean_distance: 0.1793
Epoch 116/300
227/227 [==============================] - 0s 786us/step - loss: 0.1118 - accuracy: 0.9444 - mae: 0.1118 - pearson_correlation: 0.7191 - euclidean_distance: 0.1790
Epoch 117/300
227/227 [==============================] - 0s 789us/step - loss: 0.1108 - accuracy: 0.9489 - mae: 0.1108 - pearson_correlation: 0.7246 - euclidean_distance: 0.1767
Epoch 118/300
227/227 [==============================] - 0s 789us/step - loss: 0.1144 - accuracy: 0.9484 - mae: 0.1144 - pearson_correlation: 0.7196 - euclidean_distance: 0.1816
Epoch 119/300
227/227 [==============================] - 0s 787us/step - loss: 0.1124 - accuracy: 0.9506 - mae: 0.1124 - pearson_correlation: 0.7208 - euclidean_distance: 0.1784
Epoch 120/300
227/227 [==============================] - 0s 790us/step - loss: 0.1120 - accuracy: 0.9497 - mae: 0.1120 - pearson_correlation: 0.7248 - euclidean_distance: 0.1774
Epoch 121/300
227/227 [==============================] - 0s 790us/step - loss: 0.1126 - accuracy: 0.9484 - mae: 0.1126 - pearson_correlation: 0.7150 - euclidean_distance: 0.1783
Epoch 122/300
227/227 [==============================] - 0s 790us/step - loss: 0.1113 - accuracy: 0.9484 - mae: 0.1113 - pearson_correlation: 0.7224 - euclidean_distance: 0.1770
Epoch 123/300
227/227 [==============================] - 0s 787us/step - loss: 0.1111 - accuracy: 0.9493 - mae: 0.1111 - pearson_correlation: 0.7269 - euclidean_distance: 0.1761
Epoch 124/300
227/227 [==============================] - 0s 787us/step - loss: 0.1099 - accuracy: 0.9515 - mae: 0.1099 - pearson_correlation: 0.7229 - euclidean_distance: 0.1746
Epoch 125/300
227/227 [==============================] - 0s 788us/step - loss: 0.1098 - accuracy: 0.9462 - mae: 0.1098 - pearson_correlation: 0.7303 - euclidean_distance: 0.1740
Epoch 126/300
227/227 [==============================] - 0s 826us/step - loss: 0.1096 - accuracy: 0.9515 - mae: 0.1096 - pearson_correlation: 0.7295 - euclidean_distance: 0.1742
Epoch 127/300
227/227 [==============================] - 0s 788us/step - loss: 0.1090 - accuracy: 0.9502 - mae: 0.1090 - pearson_correlation: 0.7280 - euclidean_distance: 0.1735
Epoch 128/300
227/227 [==============================] - 0s 791us/step - loss: 0.1090 - accuracy: 0.9515 - mae: 0.1090 - pearson_correlation: 0.7344 - euclidean_distance: 0.1727
Epoch 129/300
227/227 [==============================] - 0s 794us/step - loss: 0.1084 - accuracy: 0.9537 - mae: 0.1084 - pearson_correlation: 0.7331 - euclidean_distance: 0.1721
Epoch 130/300
227/227 [==============================] - 0s 789us/step - loss: 0.1065 - accuracy: 0.9506 - mae: 0.1065 - pearson_correlation: 0.7386 - euclidean_distance: 0.1694
Epoch 131/300
227/227 [==============================] - 0s 792us/step - loss: 0.1063 - accuracy: 0.9502 - mae: 0.1063 - pearson_correlation: 0.7338 - euclidean_distance: 0.1695
Epoch 132/300
227/227 [==============================] - 0s 790us/step - loss: 0.1082 - accuracy: 0.9541 - mae: 0.1082 - pearson_correlation: 0.7313 - euclidean_distance: 0.1720
Epoch 133/300
227/227 [==============================] - 0s 790us/step - loss: 0.1063 - accuracy: 0.9533 - mae: 0.1063 - pearson_correlation: 0.7339 - euclidean_distance: 0.1692
Epoch 134/300
227/227 [==============================] - 0s 786us/step - loss: 0.1087 - accuracy: 0.9533 - mae: 0.1087 - pearson_correlation: 0.7333 - euclidean_distance: 0.1727
Epoch 135/300
227/227 [==============================] - 0s 788us/step - loss: 0.1059 - accuracy: 0.9533 - mae: 0.1059 - pearson_correlation: 0.7422 - euclidean_distance: 0.1687
Epoch 136/300
227/227 [==============================] - 0s 791us/step - loss: 0.1081 - accuracy: 0.9497 - mae: 0.1081 - pearson_correlation: 0.7265 - euclidean_distance: 0.1724
Epoch 137/300
227/227 [==============================] - 0s 788us/step - loss: 0.1042 - accuracy: 0.9506 - mae: 0.1042 - pearson_correlation: 0.7425 - euclidean_distance: 0.1665
Epoch 138/300
227/227 [==============================] - 0s 800us/step - loss: 0.1067 - accuracy: 0.9524 - mae: 0.1067 - pearson_correlation: 0.7382 - euclidean_distance: 0.1696
Epoch 139/300
227/227 [==============================] - 0s 793us/step - loss: 0.1071 - accuracy: 0.9528 - mae: 0.1071 - pearson_correlation: 0.7371 - euclidean_distance: 0.1698
Epoch 140/300
227/227 [==============================] - 0s 787us/step - loss: 0.1020 - accuracy: 0.9502 - mae: 0.1020 - pearson_correlation: 0.7469 - euclidean_distance: 0.1632
Epoch 141/300
227/227 [==============================] - 0s 787us/step - loss: 0.1067 - accuracy: 0.9537 - mae: 0.1067 - pearson_correlation: 0.7348 - euclidean_distance: 0.1703
Epoch 142/300
227/227 [==============================] - 0s 792us/step - loss: 0.1057 - accuracy: 0.9533 - mae: 0.1057 - pearson_correlation: 0.7408 - euclidean_distance: 0.1677
Epoch 143/300
227/227 [==============================] - 0s 789us/step - loss: 0.1036 - accuracy: 0.9546 - mae: 0.1036 - pearson_correlation: 0.7471 - euclidean_distance: 0.1651
Epoch 144/300
227/227 [==============================] - 0s 787us/step - loss: 0.1073 - accuracy: 0.9519 - mae: 0.1073 - pearson_correlation: 0.7355 - euclidean_distance: 0.1705
Epoch 145/300
227/227 [==============================] - 0s 794us/step - loss: 0.1050 - accuracy: 0.9511 - mae: 0.1050 - pearson_correlation: 0.7367 - euclidean_distance: 0.1671
Epoch 146/300
227/227 [==============================] - 0s 794us/step - loss: 0.1054 - accuracy: 0.9533 - mae: 0.1054 - pearson_correlation: 0.7361 - euclidean_distance: 0.1682
Epoch 147/300
227/227 [==============================] - 0s 788us/step - loss: 0.1046 - accuracy: 0.9546 - mae: 0.1046 - pearson_correlation: 0.7384 - euclidean_distance: 0.1668
Epoch 148/300
227/227 [==============================] - 0s 786us/step - loss: 0.1021 - accuracy: 0.9533 - mae: 0.1021 - pearson_correlation: 0.7442 - euclidean_distance: 0.1633
Epoch 149/300
227/227 [==============================] - 0s 789us/step - loss: 0.1018 - accuracy: 0.9533 - mae: 0.1018 - pearson_correlation: 0.7486 - euclidean_distance: 0.1621
Epoch 150/300
227/227 [==============================] - 0s 787us/step - loss: 0.1054 - accuracy: 0.9559 - mae: 0.1054 - pearson_correlation: 0.7394 - euclidean_distance: 0.1669
Epoch 151/300
227/227 [==============================] - 0s 790us/step - loss: 0.1056 - accuracy: 0.9519 - mae: 0.1056 - pearson_correlation: 0.7382 - euclidean_distance: 0.1681
Epoch 152/300
227/227 [==============================] - 0s 788us/step - loss: 0.1025 - accuracy: 0.9515 - mae: 0.1025 - pearson_correlation: 0.7431 - euclidean_distance: 0.1638
Epoch 153/300
227/227 [==============================] - 0s 791us/step - loss: 0.1026 - accuracy: 0.9528 - mae: 0.1026 - pearson_correlation: 0.7491 - euclidean_distance: 0.1630
Epoch 154/300
227/227 [==============================] - 0s 789us/step - loss: 0.1011 - accuracy: 0.9537 - mae: 0.1011 - pearson_correlation: 0.7434 - euclidean_distance: 0.1613
Epoch 155/300
227/227 [==============================] - 0s 789us/step - loss: 0.1036 - accuracy: 0.9541 - mae: 0.1036 - pearson_correlation: 0.7469 - euclidean_distance: 0.1646
Epoch 156/300
227/227 [==============================] - 0s 789us/step - loss: 0.1039 - accuracy: 0.9546 - mae: 0.1039 - pearson_correlation: 0.7379 - euclidean_distance: 0.1660
Epoch 157/300
227/227 [==============================] - 0s 789us/step - loss: 0.1019 - accuracy: 0.9537 - mae: 0.1019 - pearson_correlation: 0.7492 - euclidean_distance: 0.1629
Epoch 158/300
227/227 [==============================] - 0s 871us/step - loss: 0.1015 - accuracy: 0.9550 - mae: 0.1015 - pearson_correlation: 0.7480 - euclidean_distance: 0.1620
Epoch 159/300
227/227 [==============================] - 0s 881us/step - loss: 0.1009 - accuracy: 0.9528 - mae: 0.1009 - pearson_correlation: 0.7497 - euclidean_distance: 0.1610
Epoch 160/300
227/227 [==============================] - 0s 881us/step - loss: 0.1014 - accuracy: 0.9550 - mae: 0.1014 - pearson_correlation: 0.7502 - euclidean_distance: 0.1615
Epoch 161/300
227/227 [==============================] - 0s 792us/step - loss: 0.1021 - accuracy: 0.9546 - mae: 0.1021 - pearson_correlation: 0.7516 - euclidean_distance: 0.1622
Epoch 162/300
227/227 [==============================] - 0s 790us/step - loss: 0.1017 - accuracy: 0.9546 - mae: 0.1017 - pearson_correlation: 0.7475 - euclidean_distance: 0.1614
Epoch 163/300
227/227 [==============================] - 0s 816us/step - loss: 0.1004 - accuracy: 0.9524 - mae: 0.1004 - pearson_correlation: 0.7495 - euclidean_distance: 0.1598
Epoch 164/300
227/227 [==============================] - 0s 803us/step - loss: 0.0995 - accuracy: 0.9511 - mae: 0.0995 - pearson_correlation: 0.7500 - euclidean_distance: 0.1591
Epoch 165/300
227/227 [==============================] - 0s 789us/step - loss: 0.1015 - accuracy: 0.9519 - mae: 0.1015 - pearson_correlation: 0.7476 - euclidean_distance: 0.1620
Epoch 166/300
227/227 [==============================] - 0s 792us/step - loss: 0.0979 - accuracy: 0.9528 - mae: 0.0979 - pearson_correlation: 0.7560 - euclidean_distance: 0.1559
Epoch 167/300
227/227 [==============================] - 0s 785us/step - loss: 0.0997 - accuracy: 0.9550 - mae: 0.0997 - pearson_correlation: 0.7492 - euclidean_distance: 0.1588
Epoch 168/300
227/227 [==============================] - 0s 790us/step - loss: 0.1012 - accuracy: 0.9528 - mae: 0.1012 - pearson_correlation: 0.7496 - euclidean_distance: 0.1609
Epoch 169/300
227/227 [==============================] - 0s 788us/step - loss: 0.1005 - accuracy: 0.9546 - mae: 0.1005 - pearson_correlation: 0.7541 - euclidean_distance: 0.1598
Epoch 170/300
227/227 [==============================] - 0s 787us/step - loss: 0.0990 - accuracy: 0.9533 - mae: 0.0990 - pearson_correlation: 0.7499 - euclidean_distance: 0.1574
Epoch 171/300
227/227 [==============================] - 0s 791us/step - loss: 0.0981 - accuracy: 0.9541 - mae: 0.0981 - pearson_correlation: 0.7566 - euclidean_distance: 0.1566
Epoch 172/300
227/227 [==============================] - 0s 787us/step - loss: 0.0990 - accuracy: 0.9528 - mae: 0.0990 - pearson_correlation: 0.7565 - euclidean_distance: 0.1576
Epoch 173/300
227/227 [==============================] - 0s 788us/step - loss: 0.1000 - accuracy: 0.9546 - mae: 0.1000 - pearson_correlation: 0.7512 - euclidean_distance: 0.1589
Epoch 174/300
227/227 [==============================] - 0s 788us/step - loss: 0.0973 - accuracy: 0.9528 - mae: 0.0973 - pearson_correlation: 0.7584 - euclidean_distance: 0.1553
Epoch 175/300
227/227 [==============================] - 0s 787us/step - loss: 0.1000 - accuracy: 0.9537 - mae: 0.1000 - pearson_correlation: 0.7586 - euclidean_distance: 0.1589
Epoch 176/300
227/227 [==============================] - 0s 788us/step - loss: 0.0939 - accuracy: 0.9537 - mae: 0.0939 - pearson_correlation: 0.7670 - euclidean_distance: 0.1504
Epoch 177/300
227/227 [==============================] - 0s 789us/step - loss: 0.1001 - accuracy: 0.9541 - mae: 0.1001 - pearson_correlation: 0.7548 - euclidean_distance: 0.1592
Epoch 178/300
227/227 [==============================] - 0s 787us/step - loss: 0.0970 - accuracy: 0.9537 - mae: 0.0970 - pearson_correlation: 0.7599 - euclidean_distance: 0.1548
Epoch 179/300
227/227 [==============================] - 0s 792us/step - loss: 0.0979 - accuracy: 0.9541 - mae: 0.0979 - pearson_correlation: 0.7581 - euclidean_distance: 0.1566
Epoch 180/300
227/227 [==============================] - 0s 785us/step - loss: 0.0994 - accuracy: 0.9533 - mae: 0.0994 - pearson_correlation: 0.7517 - euclidean_distance: 0.1591
Epoch 181/300
227/227 [==============================] - 0s 787us/step - loss: 0.0968 - accuracy: 0.9550 - mae: 0.0968 - pearson_correlation: 0.7637 - euclidean_distance: 0.1547
Epoch 182/300
227/227 [==============================] - 0s 784us/step - loss: 0.0971 - accuracy: 0.9537 - mae: 0.0971 - pearson_correlation: 0.7552 - euclidean_distance: 0.1556
Epoch 183/300
227/227 [==============================] - 0s 789us/step - loss: 0.0956 - accuracy: 0.9559 - mae: 0.0956 - pearson_correlation: 0.7606 - euclidean_distance: 0.1529
Epoch 184/300
227/227 [==============================] - 0s 787us/step - loss: 0.0945 - accuracy: 0.9546 - mae: 0.0945 - pearson_correlation: 0.7627 - euclidean_distance: 0.1513
Epoch 185/300
227/227 [==============================] - 0s 789us/step - loss: 0.0975 - accuracy: 0.9541 - mae: 0.0975 - pearson_correlation: 0.7630 - euclidean_distance: 0.1554
Epoch 186/300
227/227 [==============================] - 0s 792us/step - loss: 0.0973 - accuracy: 0.9524 - mae: 0.0973 - pearson_correlation: 0.7541 - euclidean_distance: 0.1552
Epoch 187/300
227/227 [==============================] - 0s 787us/step - loss: 0.0949 - accuracy: 0.9546 - mae: 0.0949 - pearson_correlation: 0.7617 - euclidean_distance: 0.1521
Epoch 188/300
227/227 [==============================] - 0s 787us/step - loss: 0.0984 - accuracy: 0.9550 - mae: 0.0984 - pearson_correlation: 0.7571 - euclidean_distance: 0.1573
Epoch 189/300
227/227 [==============================] - 0s 788us/step - loss: 0.0917 - accuracy: 0.9555 - mae: 0.0917 - pearson_correlation: 0.7790 - euclidean_distance: 0.1466
Epoch 190/300
227/227 [==============================] - 0s 792us/step - loss: 0.0938 - accuracy: 0.9537 - mae: 0.0938 - pearson_correlation: 0.7671 - euclidean_distance: 0.1499
Epoch 191/300
227/227 [==============================] - 0s 790us/step - loss: 0.0955 - accuracy: 0.9555 - mae: 0.0955 - pearson_correlation: 0.7659 - euclidean_distance: 0.1521
Epoch 192/300
227/227 [==============================] - 0s 788us/step - loss: 0.0948 - accuracy: 0.9541 - mae: 0.0948 - pearson_correlation: 0.7656 - euclidean_distance: 0.1520
Epoch 193/300
227/227 [==============================] - 0s 792us/step - loss: 0.0958 - accuracy: 0.9541 - mae: 0.0958 - pearson_correlation: 0.7654 - euclidean_distance: 0.1531
Epoch 194/300
227/227 [==============================] - 0s 786us/step - loss: 0.0933 - accuracy: 0.9533 - mae: 0.0933 - pearson_correlation: 0.7622 - euclidean_distance: 0.1495
Epoch 195/300
227/227 [==============================] - 0s 788us/step - loss: 0.0948 - accuracy: 0.9559 - mae: 0.0948 - pearson_correlation: 0.7621 - euclidean_distance: 0.1515
Epoch 196/300
227/227 [==============================] - 0s 789us/step - loss: 0.0920 - accuracy: 0.9546 - mae: 0.0920 - pearson_correlation: 0.7679 - euclidean_distance: 0.1475
Epoch 197/300
227/227 [==============================] - 0s 789us/step - loss: 0.0960 - accuracy: 0.9533 - mae: 0.0960 - pearson_correlation: 0.7607 - euclidean_distance: 0.1534
Epoch 198/300
227/227 [==============================] - 0s 789us/step - loss: 0.0915 - accuracy: 0.9550 - mae: 0.0915 - pearson_correlation: 0.7712 - euclidean_distance: 0.1466
Epoch 199/300
227/227 [==============================] - 0s 792us/step - loss: 0.0955 - accuracy: 0.9550 - mae: 0.0955 - pearson_correlation: 0.7519 - euclidean_distance: 0.1529
Epoch 200/300
227/227 [==============================] - 0s 799us/step - loss: 0.0928 - accuracy: 0.9537 - mae: 0.0928 - pearson_correlation: 0.7696 - euclidean_distance: 0.1486
Epoch 201/300
227/227 [==============================] - 0s 787us/step - loss: 0.0930 - accuracy: 0.9555 - mae: 0.0930 - pearson_correlation: 0.7683 - euclidean_distance: 0.1487
Epoch 202/300
227/227 [==============================] - 0s 789us/step - loss: 0.0911 - accuracy: 0.9546 - mae: 0.0911 - pearson_correlation: 0.7777 - euclidean_distance: 0.1461
Epoch 203/300
227/227 [==============================] - 0s 788us/step - loss: 0.0937 - accuracy: 0.9550 - mae: 0.0937 - pearson_correlation: 0.7700 - euclidean_distance: 0.1497
Epoch 204/300
227/227 [==============================] - 0s 792us/step - loss: 0.0918 - accuracy: 0.9550 - mae: 0.0918 - pearson_correlation: 0.7710 - euclidean_distance: 0.1470
Epoch 205/300
227/227 [==============================] - 0s 786us/step - loss: 0.0905 - accuracy: 0.9550 - mae: 0.0905 - pearson_correlation: 0.7708 - euclidean_distance: 0.1452
Epoch 206/300
227/227 [==============================] - 0s 786us/step - loss: 0.0932 - accuracy: 0.9546 - mae: 0.0932 - pearson_correlation: 0.7688 - euclidean_distance: 0.1490
Epoch 207/300
227/227 [==============================] - 0s 788us/step - loss: 0.0940 - accuracy: 0.9559 - mae: 0.0940 - pearson_correlation: 0.7637 - euclidean_distance: 0.1498
Epoch 208/300
227/227 [==============================] - 0s 790us/step - loss: 0.0924 - accuracy: 0.9555 - mae: 0.0924 - pearson_correlation: 0.7666 - euclidean_distance: 0.1477
Epoch 209/300
227/227 [==============================] - 0s 788us/step - loss: 0.0927 - accuracy: 0.9550 - mae: 0.0927 - pearson_correlation: 0.7679 - euclidean_distance: 0.1478
Epoch 210/300
227/227 [==============================] - 0s 786us/step - loss: 0.0914 - accuracy: 0.9546 - mae: 0.0914 - pearson_correlation: 0.7680 - euclidean_distance: 0.1464
Epoch 211/300
227/227 [==============================] - 0s 789us/step - loss: 0.0912 - accuracy: 0.9559 - mae: 0.0912 - pearson_correlation: 0.7728 - euclidean_distance: 0.1455
Epoch 212/300
227/227 [==============================] - 0s 788us/step - loss: 0.0931 - accuracy: 0.9555 - mae: 0.0931 - pearson_correlation: 0.7665 - euclidean_distance: 0.1486
Epoch 213/300
227/227 [==============================] - 0s 791us/step - loss: 0.0893 - accuracy: 0.9555 - mae: 0.0893 - pearson_correlation: 0.7754 - euclidean_distance: 0.1435
Epoch 214/300
227/227 [==============================] - 0s 785us/step - loss: 0.0882 - accuracy: 0.9541 - mae: 0.0882 - pearson_correlation: 0.7762 - euclidean_distance: 0.1416
Epoch 215/300
227/227 [==============================] - 0s 785us/step - loss: 0.0890 - accuracy: 0.9546 - mae: 0.0890 - pearson_correlation: 0.7782 - euclidean_distance: 0.1430
Epoch 216/300
227/227 [==============================] - 0s 787us/step - loss: 0.0917 - accuracy: 0.9537 - mae: 0.0917 - pearson_correlation: 0.7703 - euclidean_distance: 0.1461
Epoch 217/300
227/227 [==============================] - 0s 785us/step - loss: 0.0901 - accuracy: 0.9533 - mae: 0.0901 - pearson_correlation: 0.7747 - euclidean_distance: 0.1445
Epoch 218/300
227/227 [==============================] - 0s 789us/step - loss: 0.0892 - accuracy: 0.9550 - mae: 0.0892 - pearson_correlation: 0.7775 - euclidean_distance: 0.1432
Epoch 219/300
227/227 [==============================] - 0s 789us/step - loss: 0.0905 - accuracy: 0.9555 - mae: 0.0905 - pearson_correlation: 0.7741 - euclidean_distance: 0.1449
Epoch 220/300
227/227 [==============================] - 0s 789us/step - loss: 0.0909 - accuracy: 0.9541 - mae: 0.0909 - pearson_correlation: 0.7697 - euclidean_distance: 0.1457
Epoch 221/300
227/227 [==============================] - 0s 785us/step - loss: 0.0890 - accuracy: 0.9559 - mae: 0.0890 - pearson_correlation: 0.7775 - euclidean_distance: 0.1429
Epoch 222/300
227/227 [==============================] - 0s 789us/step - loss: 0.0916 - accuracy: 0.9555 - mae: 0.0916 - pearson_correlation: 0.7665 - euclidean_distance: 0.1468
Epoch 223/300
227/227 [==============================] - 0s 789us/step - loss: 0.0923 - accuracy: 0.9550 - mae: 0.0923 - pearson_correlation: 0.7690 - euclidean_distance: 0.1475
Epoch 224/300
227/227 [==============================] - 0s 789us/step - loss: 0.0878 - accuracy: 0.9546 - mae: 0.0878 - pearson_correlation: 0.7799 - euclidean_distance: 0.1406
Epoch 225/300
227/227 [==============================] - 0s 788us/step - loss: 0.0913 - accuracy: 0.9555 - mae: 0.0913 - pearson_correlation: 0.7735 - euclidean_distance: 0.1460
Epoch 226/300
227/227 [==============================] - 0s 788us/step - loss: 0.0884 - accuracy: 0.9550 - mae: 0.0884 - pearson_correlation: 0.7796 - euclidean_distance: 0.1414
Epoch 227/300
227/227 [==============================] - 0s 787us/step - loss: 0.0897 - accuracy: 0.9546 - mae: 0.0897 - pearson_correlation: 0.7705 - euclidean_distance: 0.1436
Epoch 228/300
227/227 [==============================] - 0s 788us/step - loss: 0.0883 - accuracy: 0.9550 - mae: 0.0883 - pearson_correlation: 0.7769 - euclidean_distance: 0.1414
Epoch 229/300
227/227 [==============================] - 0s 788us/step - loss: 0.0879 - accuracy: 0.9563 - mae: 0.0879 - pearson_correlation: 0.7779 - euclidean_distance: 0.1407
Epoch 230/300
227/227 [==============================] - 0s 787us/step - loss: 0.0908 - accuracy: 0.9546 - mae: 0.0908 - pearson_correlation: 0.7709 - euclidean_distance: 0.1454
Epoch 231/300
227/227 [==============================] - 0s 786us/step - loss: 0.0872 - accuracy: 0.9555 - mae: 0.0872 - pearson_correlation: 0.7793 - euclidean_distance: 0.1397
Epoch 232/300
227/227 [==============================] - 0s 788us/step - loss: 0.0891 - accuracy: 0.9541 - mae: 0.0891 - pearson_correlation: 0.7765 - euclidean_distance: 0.1427
Epoch 233/300
227/227 [==============================] - 0s 787us/step - loss: 0.0875 - accuracy: 0.9546 - mae: 0.0875 - pearson_correlation: 0.7848 - euclidean_distance: 0.1398
Epoch 234/300
227/227 [==============================] - 0s 785us/step - loss: 0.0882 - accuracy: 0.9546 - mae: 0.0882 - pearson_correlation: 0.7785 - euclidean_distance: 0.1416
Epoch 235/300
227/227 [==============================] - 0s 791us/step - loss: 0.0889 - accuracy: 0.9559 - mae: 0.0889 - pearson_correlation: 0.7735 - euclidean_distance: 0.1425
Epoch 236/300
227/227 [==============================] - 0s 790us/step - loss: 0.0892 - accuracy: 0.9546 - mae: 0.0892 - pearson_correlation: 0.7743 - euclidean_distance: 0.1429
Epoch 237/300
227/227 [==============================] - 0s 787us/step - loss: 0.0884 - accuracy: 0.9555 - mae: 0.0884 - pearson_correlation: 0.7791 - euclidean_distance: 0.1417
Epoch 238/300
227/227 [==============================] - 0s 784us/step - loss: 0.0881 - accuracy: 0.9541 - mae: 0.0881 - pearson_correlation: 0.7714 - euclidean_distance: 0.1416
Epoch 239/300
227/227 [==============================] - 0s 785us/step - loss: 0.0889 - accuracy: 0.9550 - mae: 0.0889 - pearson_correlation: 0.7824 - euclidean_distance: 0.1417
Epoch 240/300
227/227 [==============================] - 0s 786us/step - loss: 0.0878 - accuracy: 0.9555 - mae: 0.0878 - pearson_correlation: 0.7812 - euclidean_distance: 0.1406
Epoch 241/300
227/227 [==============================] - 0s 789us/step - loss: 0.0873 - accuracy: 0.9555 - mae: 0.0873 - pearson_correlation: 0.7758 - euclidean_distance: 0.1401
Epoch 242/300
227/227 [==============================] - 0s 785us/step - loss: 0.0890 - accuracy: 0.9555 - mae: 0.0890 - pearson_correlation: 0.7767 - euclidean_distance: 0.1425
Epoch 243/300
227/227 [==============================] - 0s 790us/step - loss: 0.0856 - accuracy: 0.9550 - mae: 0.0856 - pearson_correlation: 0.7817 - euclidean_distance: 0.1376
Epoch 244/300
227/227 [==============================] - 0s 785us/step - loss: 0.0880 - accuracy: 0.9555 - mae: 0.0880 - pearson_correlation: 0.7790 - euclidean_distance: 0.1408
Epoch 245/300
227/227 [==============================] - 0s 785us/step - loss: 0.0855 - accuracy: 0.9555 - mae: 0.0855 - pearson_correlation: 0.7830 - euclidean_distance: 0.1375
Epoch 246/300
227/227 [==============================] - 0s 863us/step - loss: 0.0876 - accuracy: 0.9550 - mae: 0.0876 - pearson_correlation: 0.7818 - euclidean_distance: 0.1403
Epoch 247/300
227/227 [==============================] - 0s 882us/step - loss: 0.0864 - accuracy: 0.9555 - mae: 0.0864 - pearson_correlation: 0.7763 - euclidean_distance: 0.1385
Epoch 248/300
227/227 [==============================] - 0s 890us/step - loss: 0.0856 - accuracy: 0.9559 - mae: 0.0856 - pearson_correlation: 0.7816 - euclidean_distance: 0.1371
Epoch 249/300
227/227 [==============================] - 0s 796us/step - loss: 0.0844 - accuracy: 0.9559 - mae: 0.0844 - pearson_correlation: 0.7868 - euclidean_distance: 0.1359
Epoch 250/300
227/227 [==============================] - 0s 789us/step - loss: 0.0857 - accuracy: 0.9555 - mae: 0.0857 - pearson_correlation: 0.7819 - euclidean_distance: 0.1373
Epoch 251/300
227/227 [==============================] - 0s 791us/step - loss: 0.0852 - accuracy: 0.9555 - mae: 0.0852 - pearson_correlation: 0.7877 - euclidean_distance: 0.1366
Epoch 252/300
227/227 [==============================] - 0s 791us/step - loss: 0.0868 - accuracy: 0.9559 - mae: 0.0868 - pearson_correlation: 0.7858 - euclidean_distance: 0.1384
Epoch 253/300
227/227 [==============================] - 0s 791us/step - loss: 0.0879 - accuracy: 0.9546 - mae: 0.0879 - pearson_correlation: 0.7752 - euclidean_distance: 0.1410
Epoch 254/300
227/227 [==============================] - 0s 801us/step - loss: 0.0855 - accuracy: 0.9555 - mae: 0.0855 - pearson_correlation: 0.7848 - euclidean_distance: 0.1369
Epoch 255/300
227/227 [==============================] - 0s 799us/step - loss: 0.0855 - accuracy: 0.9546 - mae: 0.0855 - pearson_correlation: 0.7848 - euclidean_distance: 0.1370
Epoch 256/300
227/227 [==============================] - 0s 789us/step - loss: 0.0862 - accuracy: 0.9555 - mae: 0.0862 - pearson_correlation: 0.7871 - euclidean_distance: 0.1379
Epoch 257/300
227/227 [==============================] - 0s 787us/step - loss: 0.0866 - accuracy: 0.9546 - mae: 0.0866 - pearson_correlation: 0.7817 - euclidean_distance: 0.1388
Epoch 258/300
227/227 [==============================] - 0s 786us/step - loss: 0.0861 - accuracy: 0.9550 - mae: 0.0861 - pearson_correlation: 0.7851 - euclidean_distance: 0.1377
Epoch 259/300
227/227 [==============================] - 0s 785us/step - loss: 0.0841 - accuracy: 0.9546 - mae: 0.0841 - pearson_correlation: 0.7906 - euclidean_distance: 0.1348
Epoch 260/300
227/227 [==============================] - 0s 786us/step - loss: 0.0883 - accuracy: 0.9546 - mae: 0.0883 - pearson_correlation: 0.7775 - euclidean_distance: 0.1415
Epoch 261/300
227/227 [==============================] - 0s 787us/step - loss: 0.0830 - accuracy: 0.9559 - mae: 0.0830 - pearson_correlation: 0.7947 - euclidean_distance: 0.1330
Epoch 262/300
227/227 [==============================] - 0s 790us/step - loss: 0.0850 - accuracy: 0.9541 - mae: 0.0850 - pearson_correlation: 0.7880 - euclidean_distance: 0.1360
Epoch 263/300
227/227 [==============================] - 0s 789us/step - loss: 0.0827 - accuracy: 0.9550 - mae: 0.0827 - pearson_correlation: 0.7919 - euclidean_distance: 0.1327
Epoch 264/300
227/227 [==============================] - 0s 785us/step - loss: 0.0842 - accuracy: 0.9550 - mae: 0.0842 - pearson_correlation: 0.7864 - euclidean_distance: 0.1350
Epoch 265/300
227/227 [==============================] - 0s 787us/step - loss: 0.0824 - accuracy: 0.9546 - mae: 0.0824 - pearson_correlation: 0.7964 - euclidean_distance: 0.1321
Epoch 266/300
227/227 [==============================] - 0s 790us/step - loss: 0.0849 - accuracy: 0.9563 - mae: 0.0849 - pearson_correlation: 0.7893 - euclidean_distance: 0.1361
Epoch 267/300
227/227 [==============================] - 0s 786us/step - loss: 0.0839 - accuracy: 0.9559 - mae: 0.0839 - pearson_correlation: 0.7898 - euclidean_distance: 0.1350
Epoch 268/300
227/227 [==============================] - 0s 787us/step - loss: 0.0851 - accuracy: 0.9550 - mae: 0.0851 - pearson_correlation: 0.7861 - euclidean_distance: 0.1363
Epoch 269/300
227/227 [==============================] - 0s 786us/step - loss: 0.0829 - accuracy: 0.9550 - mae: 0.0829 - pearson_correlation: 0.7907 - euclidean_distance: 0.1330
Epoch 270/300
227/227 [==============================] - 0s 787us/step - loss: 0.0843 - accuracy: 0.9550 - mae: 0.0843 - pearson_correlation: 0.7870 - euclidean_distance: 0.1353
Epoch 271/300
227/227 [==============================] - 0s 788us/step - loss: 0.0835 - accuracy: 0.9555 - mae: 0.0835 - pearson_correlation: 0.7861 - euclidean_distance: 0.1346
Epoch 272/300
227/227 [==============================] - 0s 787us/step - loss: 0.0818 - accuracy: 0.9550 - mae: 0.0818 - pearson_correlation: 0.7997 - euclidean_distance: 0.1314
Epoch 273/300
227/227 [==============================] - 0s 787us/step - loss: 0.0837 - accuracy: 0.9546 - mae: 0.0837 - pearson_correlation: 0.7879 - euclidean_distance: 0.1348
Epoch 274/300
227/227 [==============================] - 0s 790us/step - loss: 0.0847 - accuracy: 0.9555 - mae: 0.0847 - pearson_correlation: 0.7882 - euclidean_distance: 0.1359
Epoch 275/300
227/227 [==============================] - 0s 786us/step - loss: 0.0814 - accuracy: 0.9550 - mae: 0.0814 - pearson_correlation: 0.7919 - euclidean_distance: 0.1315
Epoch 276/300
227/227 [==============================] - 0s 788us/step - loss: 0.0838 - accuracy: 0.9555 - mae: 0.0838 - pearson_correlation: 0.7878 - euclidean_distance: 0.1346
Epoch 277/300
227/227 [==============================] - 0s 784us/step - loss: 0.0816 - accuracy: 0.9555 - mae: 0.0816 - pearson_correlation: 0.7918 - euclidean_distance: 0.1316
Epoch 278/300
227/227 [==============================] - 0s 788us/step - loss: 0.0826 - accuracy: 0.9537 - mae: 0.0826 - pearson_correlation: 0.7890 - euclidean_distance: 0.1324
Epoch 279/300
227/227 [==============================] - 0s 789us/step - loss: 0.0830 - accuracy: 0.9559 - mae: 0.0830 - pearson_correlation: 0.7899 - euclidean_distance: 0.1336
Epoch 280/300
227/227 [==============================] - 0s 790us/step - loss: 0.0815 - accuracy: 0.9559 - mae: 0.0815 - pearson_correlation: 0.7921 - euclidean_distance: 0.1310
Epoch 281/300
227/227 [==============================] - 0s 786us/step - loss: 0.0828 - accuracy: 0.9559 - mae: 0.0828 - pearson_correlation: 0.7887 - euclidean_distance: 0.1332
Epoch 282/300
227/227 [==============================] - 0s 784us/step - loss: 0.0814 - accuracy: 0.9559 - mae: 0.0814 - pearson_correlation: 0.7938 - euclidean_distance: 0.1306
Epoch 283/300
227/227 [==============================] - 0s 787us/step - loss: 0.0825 - accuracy: 0.9559 - mae: 0.0825 - pearson_correlation: 0.7953 - euclidean_distance: 0.1326
Epoch 284/300
227/227 [==============================] - 0s 789us/step - loss: 0.0810 - accuracy: 0.9550 - mae: 0.0810 - pearson_correlation: 0.7906 - euclidean_distance: 0.1304
Epoch 285/300
227/227 [==============================] - 0s 788us/step - loss: 0.0833 - accuracy: 0.9559 - mae: 0.0833 - pearson_correlation: 0.7892 - euclidean_distance: 0.1337
Epoch 286/300
227/227 [==============================] - 0s 788us/step - loss: 0.0814 - accuracy: 0.9546 - mae: 0.0814 - pearson_correlation: 0.7918 - euclidean_distance: 0.1313
Epoch 287/300
227/227 [==============================] - 0s 787us/step - loss: 0.0819 - accuracy: 0.9559 - mae: 0.0819 - pearson_correlation: 0.7919 - euclidean_distance: 0.1313
Epoch 288/300
227/227 [==============================] - 0s 789us/step - loss: 0.0821 - accuracy: 0.9559 - mae: 0.0821 - pearson_correlation: 0.7931 - euclidean_distance: 0.1318
Epoch 289/300
227/227 [==============================] - 0s 786us/step - loss: 0.0806 - accuracy: 0.9541 - mae: 0.0806 - pearson_correlation: 0.7941 - euclidean_distance: 0.1296
Epoch 290/300
227/227 [==============================] - 0s 785us/step - loss: 0.0816 - accuracy: 0.9559 - mae: 0.0816 - pearson_correlation: 0.7899 - euclidean_distance: 0.1316
Epoch 291/300
227/227 [==============================] - 0s 789us/step - loss: 0.0802 - accuracy: 0.9555 - mae: 0.0802 - pearson_correlation: 0.7919 - euclidean_distance: 0.1292
Epoch 292/300
227/227 [==============================] - 0s 785us/step - loss: 0.0804 - accuracy: 0.9555 - mae: 0.0804 - pearson_correlation: 0.7943 - euclidean_distance: 0.1296
Epoch 293/300
227/227 [==============================] - 0s 787us/step - loss: 0.0805 - accuracy: 0.9559 - mae: 0.0805 - pearson_correlation: 0.7930 - euclidean_distance: 0.1296
Epoch 294/300
227/227 [==============================] - 0s 785us/step - loss: 0.0811 - accuracy: 0.9559 - mae: 0.0811 - pearson_correlation: 0.7949 - euclidean_distance: 0.1304
Epoch 295/300
227/227 [==============================] - 0s 788us/step - loss: 0.0811 - accuracy: 0.9555 - mae: 0.0811 - pearson_correlation: 0.7954 - euclidean_distance: 0.1301
Epoch 296/300
227/227 [==============================] - 0s 787us/step - loss: 0.0794 - accuracy: 0.9559 - mae: 0.0794 - pearson_correlation: 0.7983 - euclidean_distance: 0.1280
Epoch 297/300
227/227 [==============================] - 0s 783us/step - loss: 0.0803 - accuracy: 0.9550 - mae: 0.0803 - pearson_correlation: 0.7919 - euclidean_distance: 0.1297
Epoch 298/300
227/227 [==============================] - 0s 787us/step - loss: 0.0808 - accuracy: 0.9555 - mae: 0.0808 - pearson_correlation: 0.7915 - euclidean_distance: 0.1297
Epoch 299/300
227/227 [==============================] - 0s 787us/step - loss: 0.0803 - accuracy: 0.9559 - mae: 0.0803 - pearson_correlation: 0.7962 - euclidean_distance: 0.1290
Epoch 300/300
227/227 [==============================] - 0s 786us/step - loss: 0.0806 - accuracy: 0.9559 - mae: 0.0806 - pearson_correlation: 0.7933 - euclidean_distance: 0.1296
114/114 [==============================] - 0s 455us/step
Epoch 1/350
227/227 [==============================] - 1s 821us/step - loss: 0.6376 - accuracy: 0.6383 - mae: 0.6376 - pearson_correlation: 0.2463 - euclidean_distance: 0.9435
Epoch 2/350
227/227 [==============================] - 0s 791us/step - loss: 0.6260 - accuracy: 0.6383 - mae: 0.6260 - pearson_correlation: 0.2498 - euclidean_distance: 0.9288
Epoch 3/350
227/227 [==============================] - 0s 785us/step - loss: 0.6130 - accuracy: 0.6559 - mae: 0.6130 - pearson_correlation: 0.2642 - euclidean_distance: 0.9107
Epoch 4/350
227/227 [==============================] - 0s 790us/step - loss: 0.6011 - accuracy: 0.6723 - mae: 0.6011 - pearson_correlation: 0.2745 - euclidean_distance: 0.8936
Epoch 5/350
227/227 [==============================] - 0s 786us/step - loss: 0.5890 - accuracy: 0.6700 - mae: 0.5890 - pearson_correlation: 0.2855 - euclidean_distance: 0.8767
Epoch 6/350
227/227 [==============================] - 0s 800us/step - loss: 0.5745 - accuracy: 0.6700 - mae: 0.5745 - pearson_correlation: 0.2952 - euclidean_distance: 0.8563
Epoch 7/350
227/227 [==============================] - 0s 792us/step - loss: 0.5626 - accuracy: 0.6727 - mae: 0.5626 - pearson_correlation: 0.3075 - euclidean_distance: 0.8402
Epoch 8/350
227/227 [==============================] - 0s 787us/step - loss: 0.5506 - accuracy: 0.6740 - mae: 0.5506 - pearson_correlation: 0.3098 - euclidean_distance: 0.8229
Epoch 9/350
227/227 [==============================] - 0s 790us/step - loss: 0.5375 - accuracy: 0.6820 - mae: 0.5375 - pearson_correlation: 0.3238 - euclidean_distance: 0.8035
Epoch 10/350
227/227 [==============================] - 0s 789us/step - loss: 0.5228 - accuracy: 0.6970 - mae: 0.5228 - pearson_correlation: 0.3454 - euclidean_distance: 0.7827
Epoch 11/350
227/227 [==============================] - 0s 786us/step - loss: 0.5112 - accuracy: 0.7089 - mae: 0.5112 - pearson_correlation: 0.3518 - euclidean_distance: 0.7666
Epoch 12/350
227/227 [==============================] - 0s 782us/step - loss: 0.4964 - accuracy: 0.7036 - mae: 0.4964 - pearson_correlation: 0.3533 - euclidean_distance: 0.7466
Epoch 13/350
227/227 [==============================] - 0s 784us/step - loss: 0.4854 - accuracy: 0.7181 - mae: 0.4854 - pearson_correlation: 0.3603 - euclidean_distance: 0.7307
Epoch 14/350
227/227 [==============================] - 0s 783us/step - loss: 0.4709 - accuracy: 0.7261 - mae: 0.4709 - pearson_correlation: 0.3836 - euclidean_distance: 0.7098
Epoch 15/350
227/227 [==============================] - 0s 787us/step - loss: 0.4590 - accuracy: 0.7142 - mae: 0.4590 - pearson_correlation: 0.3767 - euclidean_distance: 0.6944
Epoch 16/350
227/227 [==============================] - 0s 784us/step - loss: 0.4456 - accuracy: 0.7261 - mae: 0.4456 - pearson_correlation: 0.3922 - euclidean_distance: 0.6744
Epoch 17/350
227/227 [==============================] - 0s 783us/step - loss: 0.4352 - accuracy: 0.7345 - mae: 0.4352 - pearson_correlation: 0.3984 - euclidean_distance: 0.6590
Epoch 18/350
227/227 [==============================] - 0s 784us/step - loss: 0.4191 - accuracy: 0.7503 - mae: 0.4191 - pearson_correlation: 0.4172 - euclidean_distance: 0.6357
Epoch 19/350
227/227 [==============================] - 0s 787us/step - loss: 0.4090 - accuracy: 0.7455 - mae: 0.4090 - pearson_correlation: 0.4149 - euclidean_distance: 0.6234
Epoch 20/350
227/227 [==============================] - 0s 787us/step - loss: 0.3963 - accuracy: 0.7468 - mae: 0.3963 - pearson_correlation: 0.4243 - euclidean_distance: 0.6046
Epoch 21/350
227/227 [==============================] - 0s 784us/step - loss: 0.3843 - accuracy: 0.7587 - mae: 0.3843 - pearson_correlation: 0.4333 - euclidean_distance: 0.5881
Epoch 22/350
227/227 [==============================] - 0s 785us/step - loss: 0.3733 - accuracy: 0.7662 - mae: 0.3733 - pearson_correlation: 0.4310 - euclidean_distance: 0.5717
Epoch 23/350
227/227 [==============================] - 0s 785us/step - loss: 0.3630 - accuracy: 0.7609 - mae: 0.3630 - pearson_correlation: 0.4279 - euclidean_distance: 0.5582
Epoch 24/350
227/227 [==============================] - 0s 787us/step - loss: 0.3551 - accuracy: 0.7719 - mae: 0.3551 - pearson_correlation: 0.4377 - euclidean_distance: 0.5452
Epoch 25/350
227/227 [==============================] - 0s 784us/step - loss: 0.3433 - accuracy: 0.7781 - mae: 0.3433 - pearson_correlation: 0.4489 - euclidean_distance: 0.5281
Epoch 26/350
227/227 [==============================] - 0s 786us/step - loss: 0.3334 - accuracy: 0.7896 - mae: 0.3334 - pearson_correlation: 0.4484 - euclidean_distance: 0.5145
Epoch 27/350
227/227 [==============================] - 0s 784us/step - loss: 0.3234 - accuracy: 0.7989 - mae: 0.3234 - pearson_correlation: 0.4534 - euclidean_distance: 0.5005
Epoch 28/350
227/227 [==============================] - 0s 785us/step - loss: 0.3180 - accuracy: 0.8055 - mae: 0.3180 - pearson_correlation: 0.4576 - euclidean_distance: 0.4918
Epoch 29/350
227/227 [==============================] - 0s 776us/step - loss: 0.3112 - accuracy: 0.7980 - mae: 0.3112 - pearson_correlation: 0.4581 - euclidean_distance: 0.4827
Epoch 30/350
227/227 [==============================] - 0s 850us/step - loss: 0.3015 - accuracy: 0.8072 - mae: 0.3015 - pearson_correlation: 0.4690 - euclidean_distance: 0.4680
Epoch 31/350
227/227 [==============================] - 0s 886us/step - loss: 0.2952 - accuracy: 0.8094 - mae: 0.2952 - pearson_correlation: 0.4653 - euclidean_distance: 0.4587
Epoch 32/350
227/227 [==============================] - 0s 898us/step - loss: 0.2863 - accuracy: 0.8099 - mae: 0.2863 - pearson_correlation: 0.4761 - euclidean_distance: 0.4476
Epoch 33/350
227/227 [==============================] - 0s 807us/step - loss: 0.2820 - accuracy: 0.8174 - mae: 0.2820 - pearson_correlation: 0.4773 - euclidean_distance: 0.4404
Epoch 34/350
227/227 [==============================] - 0s 790us/step - loss: 0.2762 - accuracy: 0.8315 - mae: 0.2762 - pearson_correlation: 0.4923 - euclidean_distance: 0.4301
Epoch 35/350
227/227 [==============================] - 0s 789us/step - loss: 0.2716 - accuracy: 0.8337 - mae: 0.2716 - pearson_correlation: 0.4885 - euclidean_distance: 0.4255
Epoch 36/350
227/227 [==============================] - 0s 786us/step - loss: 0.2661 - accuracy: 0.8346 - mae: 0.2661 - pearson_correlation: 0.4807 - euclidean_distance: 0.4169
Epoch 37/350
227/227 [==============================] - 0s 791us/step - loss: 0.2576 - accuracy: 0.8421 - mae: 0.2576 - pearson_correlation: 0.5057 - euclidean_distance: 0.4039
Epoch 38/350
227/227 [==============================] - 0s 788us/step - loss: 0.2547 - accuracy: 0.8403 - mae: 0.2547 - pearson_correlation: 0.5039 - euclidean_distance: 0.4000
Epoch 39/350
227/227 [==============================] - 0s 786us/step - loss: 0.2499 - accuracy: 0.8465 - mae: 0.2499 - pearson_correlation: 0.5092 - euclidean_distance: 0.3928
Epoch 40/350
227/227 [==============================] - 0s 783us/step - loss: 0.2443 - accuracy: 0.8421 - mae: 0.2443 - pearson_correlation: 0.5006 - euclidean_distance: 0.3850
Epoch 41/350
227/227 [==============================] - 0s 781us/step - loss: 0.2359 - accuracy: 0.8505 - mae: 0.2359 - pearson_correlation: 0.5246 - euclidean_distance: 0.3736
Epoch 42/350
227/227 [==============================] - 0s 789us/step - loss: 0.2383 - accuracy: 0.8540 - mae: 0.2383 - pearson_correlation: 0.5149 - euclidean_distance: 0.3755
Epoch 43/350
227/227 [==============================] - 0s 785us/step - loss: 0.2302 - accuracy: 0.8588 - mae: 0.2302 - pearson_correlation: 0.5309 - euclidean_distance: 0.3642
Epoch 44/350
227/227 [==============================] - 0s 782us/step - loss: 0.2280 - accuracy: 0.8624 - mae: 0.2280 - pearson_correlation: 0.5369 - euclidean_distance: 0.3604
Epoch 45/350
227/227 [==============================] - 0s 785us/step - loss: 0.2221 - accuracy: 0.8756 - mae: 0.2221 - pearson_correlation: 0.5418 - euclidean_distance: 0.3505
Epoch 46/350
227/227 [==============================] - 0s 786us/step - loss: 0.2200 - accuracy: 0.8641 - mae: 0.2200 - pearson_correlation: 0.5416 - euclidean_distance: 0.3486
Epoch 47/350
227/227 [==============================] - 0s 785us/step - loss: 0.2153 - accuracy: 0.8756 - mae: 0.2153 - pearson_correlation: 0.5519 - euclidean_distance: 0.3409
Epoch 48/350
227/227 [==============================] - 0s 785us/step - loss: 0.2122 - accuracy: 0.8584 - mae: 0.2122 - pearson_correlation: 0.5453 - euclidean_distance: 0.3382
Epoch 49/350
227/227 [==============================] - 0s 784us/step - loss: 0.2065 - accuracy: 0.8752 - mae: 0.2065 - pearson_correlation: 0.5507 - euclidean_distance: 0.3295
Epoch 50/350
227/227 [==============================] - 0s 783us/step - loss: 0.2026 - accuracy: 0.8765 - mae: 0.2026 - pearson_correlation: 0.5583 - euclidean_distance: 0.3234
Epoch 51/350
227/227 [==============================] - 0s 787us/step - loss: 0.2003 - accuracy: 0.8752 - mae: 0.2003 - pearson_correlation: 0.5598 - euclidean_distance: 0.3200
Epoch 52/350
227/227 [==============================] - 0s 786us/step - loss: 0.1976 - accuracy: 0.8866 - mae: 0.1976 - pearson_correlation: 0.5712 - euclidean_distance: 0.3146
Epoch 53/350
227/227 [==============================] - 0s 782us/step - loss: 0.1922 - accuracy: 0.8946 - mae: 0.1922 - pearson_correlation: 0.5794 - euclidean_distance: 0.3076
Epoch 54/350
227/227 [==============================] - 0s 785us/step - loss: 0.1894 - accuracy: 0.8888 - mae: 0.1894 - pearson_correlation: 0.5756 - euclidean_distance: 0.3038
Epoch 55/350
227/227 [==============================] - 0s 784us/step - loss: 0.1854 - accuracy: 0.8959 - mae: 0.1854 - pearson_correlation: 0.5762 - euclidean_distance: 0.2967
Epoch 56/350
227/227 [==============================] - 0s 798us/step - loss: 0.1849 - accuracy: 0.8862 - mae: 0.1849 - pearson_correlation: 0.5770 - euclidean_distance: 0.2964
Epoch 57/350
227/227 [==============================] - 0s 788us/step - loss: 0.1806 - accuracy: 0.8937 - mae: 0.1806 - pearson_correlation: 0.5862 - euclidean_distance: 0.2908
Epoch 58/350
227/227 [==============================] - 0s 785us/step - loss: 0.1769 - accuracy: 0.8928 - mae: 0.1769 - pearson_correlation: 0.5925 - euclidean_distance: 0.2842
Epoch 59/350
227/227 [==============================] - 0s 787us/step - loss: 0.1724 - accuracy: 0.9082 - mae: 0.1724 - pearson_correlation: 0.6004 - euclidean_distance: 0.2767
Epoch 60/350
227/227 [==============================] - 0s 787us/step - loss: 0.1742 - accuracy: 0.9038 - mae: 0.1742 - pearson_correlation: 0.5906 - euclidean_distance: 0.2799
Epoch 61/350
227/227 [==============================] - 0s 782us/step - loss: 0.1683 - accuracy: 0.9034 - mae: 0.1683 - pearson_correlation: 0.6058 - euclidean_distance: 0.2697
Epoch 62/350
227/227 [==============================] - 0s 788us/step - loss: 0.1691 - accuracy: 0.9034 - mae: 0.1691 - pearson_correlation: 0.5946 - euclidean_distance: 0.2713
Epoch 63/350
227/227 [==============================] - 0s 784us/step - loss: 0.1644 - accuracy: 0.9030 - mae: 0.1644 - pearson_correlation: 0.6039 - euclidean_distance: 0.2654
Epoch 64/350
227/227 [==============================] - 0s 781us/step - loss: 0.1663 - accuracy: 0.8990 - mae: 0.1663 - pearson_correlation: 0.5931 - euclidean_distance: 0.2677
Epoch 65/350
227/227 [==============================] - 0s 785us/step - loss: 0.1600 - accuracy: 0.9127 - mae: 0.1600 - pearson_correlation: 0.6167 - euclidean_distance: 0.2564
Epoch 66/350
227/227 [==============================] - 0s 787us/step - loss: 0.1641 - accuracy: 0.9096 - mae: 0.1641 - pearson_correlation: 0.6020 - euclidean_distance: 0.2636
Epoch 67/350
227/227 [==============================] - 0s 785us/step - loss: 0.1587 - accuracy: 0.9215 - mae: 0.1587 - pearson_correlation: 0.6281 - euclidean_distance: 0.2535
Epoch 68/350
227/227 [==============================] - 0s 798us/step - loss: 0.1576 - accuracy: 0.9105 - mae: 0.1576 - pearson_correlation: 0.6127 - euclidean_distance: 0.2527
Epoch 69/350
227/227 [==============================] - 0s 783us/step - loss: 0.1559 - accuracy: 0.9105 - mae: 0.1559 - pearson_correlation: 0.6158 - euclidean_distance: 0.2505
Epoch 70/350
227/227 [==============================] - 0s 799us/step - loss: 0.1545 - accuracy: 0.9091 - mae: 0.1545 - pearson_correlation: 0.6168 - euclidean_distance: 0.2484
Epoch 71/350
227/227 [==============================] - 0s 789us/step - loss: 0.1546 - accuracy: 0.9069 - mae: 0.1546 - pearson_correlation: 0.6144 - euclidean_distance: 0.2480
Epoch 72/350
227/227 [==============================] - 0s 787us/step - loss: 0.1516 - accuracy: 0.9188 - mae: 0.1516 - pearson_correlation: 0.6254 - euclidean_distance: 0.2441
Epoch 73/350
227/227 [==============================] - 0s 789us/step - loss: 0.1501 - accuracy: 0.9197 - mae: 0.1501 - pearson_correlation: 0.6203 - euclidean_distance: 0.2411
Epoch 74/350
227/227 [==============================] - 0s 787us/step - loss: 0.1520 - accuracy: 0.9127 - mae: 0.1520 - pearson_correlation: 0.6154 - euclidean_distance: 0.2440
Epoch 75/350
227/227 [==============================] - 0s 786us/step - loss: 0.1455 - accuracy: 0.9171 - mae: 0.1455 - pearson_correlation: 0.6317 - euclidean_distance: 0.2340
Epoch 76/350
227/227 [==============================] - 0s 786us/step - loss: 0.1468 - accuracy: 0.9140 - mae: 0.1468 - pearson_correlation: 0.6316 - euclidean_distance: 0.2355
Epoch 77/350
227/227 [==============================] - 0s 782us/step - loss: 0.1464 - accuracy: 0.9122 - mae: 0.1464 - pearson_correlation: 0.6275 - euclidean_distance: 0.2348
Epoch 78/350
227/227 [==============================] - 0s 787us/step - loss: 0.1464 - accuracy: 0.9193 - mae: 0.1464 - pearson_correlation: 0.6362 - euclidean_distance: 0.2345
Epoch 79/350
227/227 [==============================] - 0s 786us/step - loss: 0.1434 - accuracy: 0.9131 - mae: 0.1434 - pearson_correlation: 0.6306 - euclidean_distance: 0.2303
Epoch 80/350
227/227 [==============================] - 0s 787us/step - loss: 0.1423 - accuracy: 0.9206 - mae: 0.1423 - pearson_correlation: 0.6361 - euclidean_distance: 0.2288
Epoch 81/350
227/227 [==============================] - 0s 784us/step - loss: 0.1420 - accuracy: 0.9180 - mae: 0.1420 - pearson_correlation: 0.6353 - euclidean_distance: 0.2280
Epoch 82/350
227/227 [==============================] - 0s 782us/step - loss: 0.1412 - accuracy: 0.9246 - mae: 0.1412 - pearson_correlation: 0.6416 - euclidean_distance: 0.2269
Epoch 83/350
227/227 [==============================] - 0s 783us/step - loss: 0.1401 - accuracy: 0.9224 - mae: 0.1401 - pearson_correlation: 0.6393 - euclidean_distance: 0.2257
Epoch 84/350
227/227 [==============================] - 0s 782us/step - loss: 0.1368 - accuracy: 0.9277 - mae: 0.1368 - pearson_correlation: 0.6457 - euclidean_distance: 0.2202
Epoch 85/350
227/227 [==============================] - 0s 784us/step - loss: 0.1373 - accuracy: 0.9228 - mae: 0.1373 - pearson_correlation: 0.6494 - euclidean_distance: 0.2200
Epoch 86/350
227/227 [==============================] - 0s 781us/step - loss: 0.1377 - accuracy: 0.9237 - mae: 0.1377 - pearson_correlation: 0.6421 - euclidean_distance: 0.2220
Epoch 87/350
227/227 [==============================] - 0s 784us/step - loss: 0.1360 - accuracy: 0.9334 - mae: 0.1360 - pearson_correlation: 0.6582 - euclidean_distance: 0.2180
Epoch 88/350
227/227 [==============================] - 0s 781us/step - loss: 0.1351 - accuracy: 0.9237 - mae: 0.1351 - pearson_correlation: 0.6568 - euclidean_distance: 0.2169
Epoch 89/350
227/227 [==============================] - 0s 782us/step - loss: 0.1360 - accuracy: 0.9215 - mae: 0.1360 - pearson_correlation: 0.6569 - euclidean_distance: 0.2196
Epoch 90/350
227/227 [==============================] - 0s 787us/step - loss: 0.1342 - accuracy: 0.9277 - mae: 0.1342 - pearson_correlation: 0.6577 - euclidean_distance: 0.2164
Epoch 91/350
227/227 [==============================] - 0s 786us/step - loss: 0.1295 - accuracy: 0.9268 - mae: 0.1295 - pearson_correlation: 0.6724 - euclidean_distance: 0.2084
Epoch 92/350
227/227 [==============================] - 0s 786us/step - loss: 0.1326 - accuracy: 0.9285 - mae: 0.1326 - pearson_correlation: 0.6523 - euclidean_distance: 0.2143
Epoch 93/350
227/227 [==============================] - 0s 784us/step - loss: 0.1305 - accuracy: 0.9272 - mae: 0.1305 - pearson_correlation: 0.6601 - euclidean_distance: 0.2103
Epoch 94/350
227/227 [==============================] - 0s 784us/step - loss: 0.1315 - accuracy: 0.9268 - mae: 0.1315 - pearson_correlation: 0.6574 - euclidean_distance: 0.2124
Epoch 95/350
227/227 [==============================] - 0s 784us/step - loss: 0.1345 - accuracy: 0.9294 - mae: 0.1345 - pearson_correlation: 0.6536 - euclidean_distance: 0.2163
Epoch 96/350
227/227 [==============================] - 0s 782us/step - loss: 0.1301 - accuracy: 0.9325 - mae: 0.1301 - pearson_correlation: 0.6552 - euclidean_distance: 0.2097
Epoch 97/350
227/227 [==============================] - 0s 785us/step - loss: 0.1297 - accuracy: 0.9290 - mae: 0.1297 - pearson_correlation: 0.6590 - euclidean_distance: 0.2082
Epoch 98/350
227/227 [==============================] - 0s 782us/step - loss: 0.1342 - accuracy: 0.9268 - mae: 0.1342 - pearson_correlation: 0.6500 - euclidean_distance: 0.2150
Epoch 99/350
227/227 [==============================] - 0s 785us/step - loss: 0.1283 - accuracy: 0.9347 - mae: 0.1283 - pearson_correlation: 0.6665 - euclidean_distance: 0.2069
Epoch 100/350
227/227 [==============================] - 0s 778us/step - loss: 0.1286 - accuracy: 0.9334 - mae: 0.1286 - pearson_correlation: 0.6615 - euclidean_distance: 0.2076
Epoch 101/350
227/227 [==============================] - 0s 783us/step - loss: 0.1291 - accuracy: 0.9325 - mae: 0.1291 - pearson_correlation: 0.6640 - euclidean_distance: 0.2082
Epoch 102/350
227/227 [==============================] - 0s 787us/step - loss: 0.1262 - accuracy: 0.9369 - mae: 0.1262 - pearson_correlation: 0.6749 - euclidean_distance: 0.2028
Epoch 103/350
227/227 [==============================] - 0s 781us/step - loss: 0.1282 - accuracy: 0.9365 - mae: 0.1282 - pearson_correlation: 0.6622 - euclidean_distance: 0.2064
Epoch 104/350
227/227 [==============================] - 0s 785us/step - loss: 0.1247 - accuracy: 0.9400 - mae: 0.1247 - pearson_correlation: 0.6774 - euclidean_distance: 0.2007
Epoch 105/350
227/227 [==============================] - 0s 784us/step - loss: 0.1268 - accuracy: 0.9356 - mae: 0.1268 - pearson_correlation: 0.6703 - euclidean_distance: 0.2041
Epoch 106/350
227/227 [==============================] - 0s 786us/step - loss: 0.1275 - accuracy: 0.9382 - mae: 0.1275 - pearson_correlation: 0.6668 - euclidean_distance: 0.2060
Epoch 107/350
227/227 [==============================] - 0s 783us/step - loss: 0.1258 - accuracy: 0.9338 - mae: 0.1258 - pearson_correlation: 0.6729 - euclidean_distance: 0.2031
Epoch 108/350
227/227 [==============================] - 0s 782us/step - loss: 0.1282 - accuracy: 0.9307 - mae: 0.1282 - pearson_correlation: 0.6619 - euclidean_distance: 0.2075
Epoch 109/350
227/227 [==============================] - 0s 781us/step - loss: 0.1229 - accuracy: 0.9374 - mae: 0.1229 - pearson_correlation: 0.6838 - euclidean_distance: 0.1981
Epoch 110/350
227/227 [==============================] - 0s 784us/step - loss: 0.1235 - accuracy: 0.9365 - mae: 0.1235 - pearson_correlation: 0.6837 - euclidean_distance: 0.1990
Epoch 111/350
227/227 [==============================] - 0s 785us/step - loss: 0.1257 - accuracy: 0.9360 - mae: 0.1257 - pearson_correlation: 0.6746 - euclidean_distance: 0.2030
Epoch 112/350
227/227 [==============================] - 0s 796us/step - loss: 0.1216 - accuracy: 0.9374 - mae: 0.1216 - pearson_correlation: 0.6852 - euclidean_distance: 0.1971
Epoch 113/350
227/227 [==============================] - 0s 784us/step - loss: 0.1212 - accuracy: 0.9400 - mae: 0.1212 - pearson_correlation: 0.6907 - euclidean_distance: 0.1959
Epoch 114/350
227/227 [==============================] - 0s 786us/step - loss: 0.1238 - accuracy: 0.9325 - mae: 0.1238 - pearson_correlation: 0.6710 - euclidean_distance: 0.2000
Epoch 115/350
227/227 [==============================] - 0s 785us/step - loss: 0.1202 - accuracy: 0.9400 - mae: 0.1202 - pearson_correlation: 0.6844 - euclidean_distance: 0.1944
Epoch 116/350
227/227 [==============================] - 0s 780us/step - loss: 0.1210 - accuracy: 0.9356 - mae: 0.1210 - pearson_correlation: 0.6820 - euclidean_distance: 0.1954
Epoch 117/350
227/227 [==============================] - 0s 781us/step - loss: 0.1242 - accuracy: 0.9343 - mae: 0.1242 - pearson_correlation: 0.6672 - euclidean_distance: 0.2009
Epoch 118/350
227/227 [==============================] - 0s 829us/step - loss: 0.1195 - accuracy: 0.9400 - mae: 0.1195 - pearson_correlation: 0.6889 - euclidean_distance: 0.1925
Epoch 119/350
227/227 [==============================] - 0s 865us/step - loss: 0.1193 - accuracy: 0.9413 - mae: 0.1193 - pearson_correlation: 0.6889 - euclidean_distance: 0.1927
Epoch 120/350
227/227 [==============================] - 0s 885us/step - loss: 0.1206 - accuracy: 0.9312 - mae: 0.1206 - pearson_correlation: 0.6824 - euclidean_distance: 0.1957
Epoch 121/350
227/227 [==============================] - 0s 870us/step - loss: 0.1201 - accuracy: 0.9422 - mae: 0.1201 - pearson_correlation: 0.6856 - euclidean_distance: 0.1936
Epoch 122/350
227/227 [==============================] - 0s 790us/step - loss: 0.1227 - accuracy: 0.9378 - mae: 0.1227 - pearson_correlation: 0.6768 - euclidean_distance: 0.1988
Epoch 123/350
227/227 [==============================] - 0s 785us/step - loss: 0.1194 - accuracy: 0.9427 - mae: 0.1194 - pearson_correlation: 0.6846 - euclidean_distance: 0.1931
Epoch 124/350
227/227 [==============================] - 0s 788us/step - loss: 0.1169 - accuracy: 0.9422 - mae: 0.1169 - pearson_correlation: 0.6960 - euclidean_distance: 0.1884
Epoch 125/350
227/227 [==============================] - 0s 789us/step - loss: 0.1192 - accuracy: 0.9391 - mae: 0.1192 - pearson_correlation: 0.6823 - euclidean_distance: 0.1931
Epoch 126/350
227/227 [==============================] - 0s 790us/step - loss: 0.1164 - accuracy: 0.9378 - mae: 0.1164 - pearson_correlation: 0.6959 - euclidean_distance: 0.1884
Epoch 127/350
227/227 [==============================] - 0s 785us/step - loss: 0.1183 - accuracy: 0.9418 - mae: 0.1183 - pearson_correlation: 0.6887 - euclidean_distance: 0.1909
Epoch 128/350
227/227 [==============================] - 0s 785us/step - loss: 0.1164 - accuracy: 0.9396 - mae: 0.1164 - pearson_correlation: 0.6900 - euclidean_distance: 0.1882
Epoch 129/350
227/227 [==============================] - 0s 784us/step - loss: 0.1168 - accuracy: 0.9391 - mae: 0.1168 - pearson_correlation: 0.6943 - euclidean_distance: 0.1891
Epoch 130/350
227/227 [==============================] - 0s 784us/step - loss: 0.1165 - accuracy: 0.9382 - mae: 0.1165 - pearson_correlation: 0.6947 - euclidean_distance: 0.1883
Epoch 131/350
227/227 [==============================] - 0s 787us/step - loss: 0.1149 - accuracy: 0.9418 - mae: 0.1149 - pearson_correlation: 0.6926 - euclidean_distance: 0.1857
Epoch 132/350
227/227 [==============================] - 0s 786us/step - loss: 0.1145 - accuracy: 0.9391 - mae: 0.1145 - pearson_correlation: 0.7020 - euclidean_distance: 0.1845
Epoch 133/350
227/227 [==============================] - 0s 781us/step - loss: 0.1123 - accuracy: 0.9418 - mae: 0.1123 - pearson_correlation: 0.7088 - euclidean_distance: 0.1816
Epoch 134/350
227/227 [==============================] - 0s 782us/step - loss: 0.1130 - accuracy: 0.9422 - mae: 0.1130 - pearson_correlation: 0.7041 - euclidean_distance: 0.1832
Epoch 135/350
227/227 [==============================] - 0s 785us/step - loss: 0.1145 - accuracy: 0.9444 - mae: 0.1145 - pearson_correlation: 0.7016 - euclidean_distance: 0.1847
Epoch 136/350
227/227 [==============================] - 0s 785us/step - loss: 0.1131 - accuracy: 0.9449 - mae: 0.1131 - pearson_correlation: 0.7067 - euclidean_distance: 0.1833
Epoch 137/350
227/227 [==============================] - 0s 787us/step - loss: 0.1144 - accuracy: 0.9444 - mae: 0.1144 - pearson_correlation: 0.7043 - euclidean_distance: 0.1853
Epoch 138/350
227/227 [==============================] - 0s 784us/step - loss: 0.1142 - accuracy: 0.9427 - mae: 0.1142 - pearson_correlation: 0.6952 - euclidean_distance: 0.1850
Epoch 139/350
227/227 [==============================] - 0s 784us/step - loss: 0.1126 - accuracy: 0.9449 - mae: 0.1126 - pearson_correlation: 0.7020 - euclidean_distance: 0.1827
Epoch 140/350
227/227 [==============================] - 0s 785us/step - loss: 0.1127 - accuracy: 0.9444 - mae: 0.1127 - pearson_correlation: 0.7048 - euclidean_distance: 0.1826
Epoch 141/350
227/227 [==============================] - 0s 787us/step - loss: 0.1125 - accuracy: 0.9444 - mae: 0.1125 - pearson_correlation: 0.7063 - euclidean_distance: 0.1819
Epoch 142/350
227/227 [==============================] - 0s 788us/step - loss: 0.1131 - accuracy: 0.9444 - mae: 0.1131 - pearson_correlation: 0.7021 - euclidean_distance: 0.1829
Epoch 143/350
227/227 [==============================] - 0s 785us/step - loss: 0.1119 - accuracy: 0.9431 - mae: 0.1119 - pearson_correlation: 0.7028 - euclidean_distance: 0.1818
Epoch 144/350
227/227 [==============================] - 0s 782us/step - loss: 0.1120 - accuracy: 0.9449 - mae: 0.1120 - pearson_correlation: 0.7047 - euclidean_distance: 0.1812
Epoch 145/350
227/227 [==============================] - 0s 782us/step - loss: 0.1106 - accuracy: 0.9471 - mae: 0.1106 - pearson_correlation: 0.7052 - euclidean_distance: 0.1790
Epoch 146/350
227/227 [==============================] - 0s 782us/step - loss: 0.1102 - accuracy: 0.9413 - mae: 0.1102 - pearson_correlation: 0.7078 - euclidean_distance: 0.1789
Epoch 147/350
227/227 [==============================] - 0s 784us/step - loss: 0.1142 - accuracy: 0.9374 - mae: 0.1142 - pearson_correlation: 0.6984 - euclidean_distance: 0.1849
Epoch 148/350
227/227 [==============================] - 0s 784us/step - loss: 0.1088 - accuracy: 0.9449 - mae: 0.1088 - pearson_correlation: 0.7105 - euclidean_distance: 0.1759
Epoch 149/350
227/227 [==============================] - 0s 784us/step - loss: 0.1100 - accuracy: 0.9431 - mae: 0.1100 - pearson_correlation: 0.7114 - euclidean_distance: 0.1776
Epoch 150/350
227/227 [==============================] - 0s 784us/step - loss: 0.1143 - accuracy: 0.9457 - mae: 0.1143 - pearson_correlation: 0.6961 - euclidean_distance: 0.1850
Epoch 151/350
227/227 [==============================] - 0s 782us/step - loss: 0.1084 - accuracy: 0.9488 - mae: 0.1084 - pearson_correlation: 0.7209 - euclidean_distance: 0.1751
Epoch 152/350
227/227 [==============================] - 0s 784us/step - loss: 0.1081 - accuracy: 0.9462 - mae: 0.1081 - pearson_correlation: 0.7170 - euclidean_distance: 0.1755
Epoch 153/350
227/227 [==============================] - 0s 785us/step - loss: 0.1095 - accuracy: 0.9431 - mae: 0.1095 - pearson_correlation: 0.7172 - euclidean_distance: 0.1774
Epoch 154/350
227/227 [==============================] - 0s 784us/step - loss: 0.1087 - accuracy: 0.9462 - mae: 0.1087 - pearson_correlation: 0.7077 - euclidean_distance: 0.1764
Epoch 155/350
227/227 [==============================] - 0s 781us/step - loss: 0.1118 - accuracy: 0.9457 - mae: 0.1118 - pearson_correlation: 0.7006 - euclidean_distance: 0.1821
Epoch 156/350
227/227 [==============================] - 0s 785us/step - loss: 0.1079 - accuracy: 0.9475 - mae: 0.1079 - pearson_correlation: 0.7129 - euclidean_distance: 0.1747
Epoch 157/350
227/227 [==============================] - 0s 786us/step - loss: 0.1089 - accuracy: 0.9506 - mae: 0.1089 - pearson_correlation: 0.7158 - euclidean_distance: 0.1771
Epoch 158/350
227/227 [==============================] - 0s 784us/step - loss: 0.1056 - accuracy: 0.9466 - mae: 0.1056 - pearson_correlation: 0.7270 - euclidean_distance: 0.1709
Epoch 159/350
227/227 [==============================] - 0s 781us/step - loss: 0.1084 - accuracy: 0.9484 - mae: 0.1084 - pearson_correlation: 0.7157 - euclidean_distance: 0.1758
Epoch 160/350
227/227 [==============================] - 0s 786us/step - loss: 0.1060 - accuracy: 0.9479 - mae: 0.1060 - pearson_correlation: 0.7257 - euclidean_distance: 0.1718
Epoch 161/350
227/227 [==============================] - 0s 782us/step - loss: 0.1059 - accuracy: 0.9471 - mae: 0.1059 - pearson_correlation: 0.7238 - euclidean_distance: 0.1714
Epoch 162/350
227/227 [==============================] - 0s 783us/step - loss: 0.1057 - accuracy: 0.9462 - mae: 0.1057 - pearson_correlation: 0.7215 - euclidean_distance: 0.1722
Epoch 163/350
227/227 [==============================] - 0s 781us/step - loss: 0.1073 - accuracy: 0.9475 - mae: 0.1073 - pearson_correlation: 0.7203 - euclidean_distance: 0.1738
Epoch 164/350
227/227 [==============================] - 0s 781us/step - loss: 0.1051 - accuracy: 0.9484 - mae: 0.1051 - pearson_correlation: 0.7251 - euclidean_distance: 0.1708
Epoch 165/350
227/227 [==============================] - 0s 783us/step - loss: 0.1068 - accuracy: 0.9462 - mae: 0.1068 - pearson_correlation: 0.7187 - euclidean_distance: 0.1730
Epoch 166/350
227/227 [==============================] - 0s 786us/step - loss: 0.1059 - accuracy: 0.9497 - mae: 0.1059 - pearson_correlation: 0.7221 - euclidean_distance: 0.1717
Epoch 167/350
227/227 [==============================] - 0s 781us/step - loss: 0.1053 - accuracy: 0.9519 - mae: 0.1053 - pearson_correlation: 0.7248 - euclidean_distance: 0.1708
Epoch 168/350
227/227 [==============================] - 0s 779us/step - loss: 0.1046 - accuracy: 0.9453 - mae: 0.1046 - pearson_correlation: 0.7260 - euclidean_distance: 0.1697
Epoch 169/350
227/227 [==============================] - 0s 782us/step - loss: 0.1044 - accuracy: 0.9502 - mae: 0.1044 - pearson_correlation: 0.7242 - euclidean_distance: 0.1702
Epoch 170/350
227/227 [==============================] - 0s 780us/step - loss: 0.1044 - accuracy: 0.9484 - mae: 0.1044 - pearson_correlation: 0.7243 - euclidean_distance: 0.1699
Epoch 171/350
227/227 [==============================] - 0s 784us/step - loss: 0.1069 - accuracy: 0.9449 - mae: 0.1069 - pearson_correlation: 0.7251 - euclidean_distance: 0.1734
Epoch 172/350
227/227 [==============================] - 0s 784us/step - loss: 0.1045 - accuracy: 0.9479 - mae: 0.1045 - pearson_correlation: 0.7328 - euclidean_distance: 0.1699
Epoch 173/350
227/227 [==============================] - 0s 800us/step - loss: 0.1029 - accuracy: 0.9479 - mae: 0.1029 - pearson_correlation: 0.7339 - euclidean_distance: 0.1671
Epoch 174/350
227/227 [==============================] - 0s 795us/step - loss: 0.1057 - accuracy: 0.9466 - mae: 0.1057 - pearson_correlation: 0.7246 - euclidean_distance: 0.1710
Epoch 175/350
227/227 [==============================] - 0s 784us/step - loss: 0.1020 - accuracy: 0.9479 - mae: 0.1020 - pearson_correlation: 0.7391 - euclidean_distance: 0.1650
Epoch 176/350
227/227 [==============================] - 0s 786us/step - loss: 0.1037 - accuracy: 0.9484 - mae: 0.1037 - pearson_correlation: 0.7299 - euclidean_distance: 0.1688
Epoch 177/350
227/227 [==============================] - 0s 783us/step - loss: 0.1060 - accuracy: 0.9475 - mae: 0.1060 - pearson_correlation: 0.7171 - euclidean_distance: 0.1718
Epoch 178/350
227/227 [==============================] - 0s 785us/step - loss: 0.1017 - accuracy: 0.9444 - mae: 0.1017 - pearson_correlation: 0.7278 - euclidean_distance: 0.1656
Epoch 179/350
227/227 [==============================] - 0s 786us/step - loss: 0.1028 - accuracy: 0.9524 - mae: 0.1028 - pearson_correlation: 0.7372 - euclidean_distance: 0.1670
Epoch 180/350
227/227 [==============================] - 0s 788us/step - loss: 0.1021 - accuracy: 0.9475 - mae: 0.1021 - pearson_correlation: 0.7353 - euclidean_distance: 0.1656
Epoch 181/350
227/227 [==============================] - 0s 785us/step - loss: 0.1011 - accuracy: 0.9471 - mae: 0.1011 - pearson_correlation: 0.7357 - euclidean_distance: 0.1648
Epoch 182/350
227/227 [==============================] - 0s 790us/step - loss: 0.1055 - accuracy: 0.9510 - mae: 0.1055 - pearson_correlation: 0.7239 - euclidean_distance: 0.1710
Epoch 183/350
227/227 [==============================] - 0s 788us/step - loss: 0.1005 - accuracy: 0.9519 - mae: 0.1005 - pearson_correlation: 0.7393 - euclidean_distance: 0.1641
Epoch 184/350
227/227 [==============================] - 0s 785us/step - loss: 0.1011 - accuracy: 0.9475 - mae: 0.1011 - pearson_correlation: 0.7327 - euclidean_distance: 0.1643
Epoch 185/350
227/227 [==============================] - 0s 784us/step - loss: 0.1049 - accuracy: 0.9475 - mae: 0.1049 - pearson_correlation: 0.7236 - euclidean_distance: 0.1706
Epoch 186/350
227/227 [==============================] - 0s 784us/step - loss: 0.1024 - accuracy: 0.9484 - mae: 0.1024 - pearson_correlation: 0.7335 - euclidean_distance: 0.1660
Epoch 187/350
227/227 [==============================] - 0s 782us/step - loss: 0.1012 - accuracy: 0.9497 - mae: 0.1012 - pearson_correlation: 0.7365 - euclidean_distance: 0.1646
Epoch 188/350
227/227 [==============================] - 0s 783us/step - loss: 0.1008 - accuracy: 0.9524 - mae: 0.1008 - pearson_correlation: 0.7419 - euclidean_distance: 0.1627
Epoch 189/350
227/227 [==============================] - 0s 784us/step - loss: 0.1010 - accuracy: 0.9497 - mae: 0.1010 - pearson_correlation: 0.7363 - euclidean_distance: 0.1643
Epoch 190/350
227/227 [==============================] - 0s 785us/step - loss: 0.1004 - accuracy: 0.9493 - mae: 0.1004 - pearson_correlation: 0.7373 - euclidean_distance: 0.1633
Epoch 191/350
227/227 [==============================] - 0s 783us/step - loss: 0.0981 - accuracy: 0.9524 - mae: 0.0981 - pearson_correlation: 0.7472 - euclidean_distance: 0.1599
Epoch 192/350
227/227 [==============================] - 0s 785us/step - loss: 0.0994 - accuracy: 0.9519 - mae: 0.0994 - pearson_correlation: 0.7431 - euclidean_distance: 0.1618
Epoch 193/350
227/227 [==============================] - 0s 784us/step - loss: 0.1013 - accuracy: 0.9488 - mae: 0.1013 - pearson_correlation: 0.7408 - euclidean_distance: 0.1648
Epoch 194/350
227/227 [==============================] - 0s 782us/step - loss: 0.0998 - accuracy: 0.9524 - mae: 0.0998 - pearson_correlation: 0.7391 - euclidean_distance: 0.1627
Epoch 195/350
227/227 [==============================] - 0s 781us/step - loss: 0.1013 - accuracy: 0.9510 - mae: 0.1013 - pearson_correlation: 0.7314 - euclidean_distance: 0.1649
Epoch 196/350
227/227 [==============================] - 0s 784us/step - loss: 0.0996 - accuracy: 0.9519 - mae: 0.0996 - pearson_correlation: 0.7310 - euclidean_distance: 0.1631
Epoch 197/350
227/227 [==============================] - 0s 787us/step - loss: 0.1003 - accuracy: 0.9515 - mae: 0.1003 - pearson_correlation: 0.7394 - euclidean_distance: 0.1633
Epoch 198/350
227/227 [==============================] - 0s 784us/step - loss: 0.0980 - accuracy: 0.9502 - mae: 0.0980 - pearson_correlation: 0.7444 - euclidean_distance: 0.1594
Epoch 199/350
227/227 [==============================] - 0s 785us/step - loss: 0.1005 - accuracy: 0.9519 - mae: 0.1005 - pearson_correlation: 0.7371 - euclidean_distance: 0.1632
Epoch 200/350
227/227 [==============================] - 0s 783us/step - loss: 0.1003 - accuracy: 0.9497 - mae: 0.1003 - pearson_correlation: 0.7371 - euclidean_distance: 0.1626
Epoch 201/350
227/227 [==============================] - 0s 783us/step - loss: 0.0997 - accuracy: 0.9502 - mae: 0.0997 - pearson_correlation: 0.7375 - euclidean_distance: 0.1625
Epoch 202/350
227/227 [==============================] - 0s 781us/step - loss: 0.0991 - accuracy: 0.9510 - mae: 0.0991 - pearson_correlation: 0.7421 - euclidean_distance: 0.1613
Epoch 203/350
227/227 [==============================] - 0s 781us/step - loss: 0.0976 - accuracy: 0.9506 - mae: 0.0976 - pearson_correlation: 0.7469 - euclidean_distance: 0.1584
Epoch 204/350
227/227 [==============================] - 0s 783us/step - loss: 0.0978 - accuracy: 0.9510 - mae: 0.0978 - pearson_correlation: 0.7511 - euclidean_distance: 0.1587
Epoch 205/350
227/227 [==============================] - 0s 788us/step - loss: 0.0956 - accuracy: 0.9532 - mae: 0.0956 - pearson_correlation: 0.7432 - euclidean_distance: 0.1561
Epoch 206/350
227/227 [==============================] - 0s 785us/step - loss: 0.0988 - accuracy: 0.9488 - mae: 0.0988 - pearson_correlation: 0.7393 - euclidean_distance: 0.1611
Epoch 207/350
227/227 [==============================] - 0s 859us/step - loss: 0.0990 - accuracy: 0.9506 - mae: 0.0990 - pearson_correlation: 0.7372 - euclidean_distance: 0.1608
Epoch 208/350
227/227 [==============================] - 0s 878us/step - loss: 0.0979 - accuracy: 0.9528 - mae: 0.0979 - pearson_correlation: 0.7478 - euclidean_distance: 0.1594
Epoch 209/350
227/227 [==============================] - 0s 886us/step - loss: 0.0965 - accuracy: 0.9506 - mae: 0.0965 - pearson_correlation: 0.7461 - euclidean_distance: 0.1571
Epoch 210/350
227/227 [==============================] - 0s 804us/step - loss: 0.0991 - accuracy: 0.9524 - mae: 0.0991 - pearson_correlation: 0.7422 - euclidean_distance: 0.1611
Epoch 211/350
227/227 [==============================] - 0s 787us/step - loss: 0.0973 - accuracy: 0.9532 - mae: 0.0973 - pearson_correlation: 0.7441 - euclidean_distance: 0.1587
Epoch 212/350
227/227 [==============================] - 0s 785us/step - loss: 0.0991 - accuracy: 0.9502 - mae: 0.0991 - pearson_correlation: 0.7410 - euclidean_distance: 0.1609
Epoch 213/350
227/227 [==============================] - 0s 782us/step - loss: 0.0953 - accuracy: 0.9537 - mae: 0.0953 - pearson_correlation: 0.7525 - euclidean_distance: 0.1554
Epoch 214/350
227/227 [==============================] - 0s 787us/step - loss: 0.0938 - accuracy: 0.9497 - mae: 0.0938 - pearson_correlation: 0.7526 - euclidean_distance: 0.1528
Epoch 215/350
227/227 [==============================] - 0s 784us/step - loss: 0.0970 - accuracy: 0.9524 - mae: 0.0970 - pearson_correlation: 0.7459 - euclidean_distance: 0.1583
Epoch 216/350
227/227 [==============================] - 0s 788us/step - loss: 0.0969 - accuracy: 0.9510 - mae: 0.0969 - pearson_correlation: 0.7430 - euclidean_distance: 0.1581
Epoch 217/350
227/227 [==============================] - 0s 789us/step - loss: 0.0983 - accuracy: 0.9502 - mae: 0.0983 - pearson_correlation: 0.7479 - euclidean_distance: 0.1596
Epoch 218/350
227/227 [==============================] - 0s 780us/step - loss: 0.0957 - accuracy: 0.9519 - mae: 0.0957 - pearson_correlation: 0.7520 - euclidean_distance: 0.1556
Epoch 219/350
227/227 [==============================] - 0s 786us/step - loss: 0.0976 - accuracy: 0.9502 - mae: 0.0976 - pearson_correlation: 0.7450 - euclidean_distance: 0.1587
Epoch 220/350
227/227 [==============================] - 0s 785us/step - loss: 0.0956 - accuracy: 0.9515 - mae: 0.0956 - pearson_correlation: 0.7554 - euclidean_distance: 0.1552
Epoch 221/350
227/227 [==============================] - 0s 781us/step - loss: 0.0956 - accuracy: 0.9546 - mae: 0.0956 - pearson_correlation: 0.7471 - euclidean_distance: 0.1559
Epoch 222/350
227/227 [==============================] - 0s 785us/step - loss: 0.0938 - accuracy: 0.9515 - mae: 0.0938 - pearson_correlation: 0.7546 - euclidean_distance: 0.1528
Epoch 223/350
227/227 [==============================] - 0s 785us/step - loss: 0.0938 - accuracy: 0.9506 - mae: 0.0938 - pearson_correlation: 0.7565 - euclidean_distance: 0.1530
Epoch 224/350
227/227 [==============================] - 0s 779us/step - loss: 0.0960 - accuracy: 0.9488 - mae: 0.0960 - pearson_correlation: 0.7464 - euclidean_distance: 0.1567
Epoch 225/350
227/227 [==============================] - 0s 783us/step - loss: 0.0947 - accuracy: 0.9506 - mae: 0.0947 - pearson_correlation: 0.7511 - euclidean_distance: 0.1549
Epoch 226/350
227/227 [==============================] - 0s 781us/step - loss: 0.0931 - accuracy: 0.9524 - mae: 0.0931 - pearson_correlation: 0.7576 - euclidean_distance: 0.1520
Epoch 227/350
227/227 [==============================] - 0s 783us/step - loss: 0.0965 - accuracy: 0.9506 - mae: 0.0965 - pearson_correlation: 0.7372 - euclidean_distance: 0.1576
Epoch 228/350
227/227 [==============================] - 0s 781us/step - loss: 0.0938 - accuracy: 0.9532 - mae: 0.0938 - pearson_correlation: 0.7569 - euclidean_distance: 0.1535
Epoch 229/350
227/227 [==============================] - 0s 795us/step - loss: 0.0944 - accuracy: 0.9502 - mae: 0.0944 - pearson_correlation: 0.7562 - euclidean_distance: 0.1530
Epoch 230/350
227/227 [==============================] - 0s 785us/step - loss: 0.0913 - accuracy: 0.9524 - mae: 0.0913 - pearson_correlation: 0.7619 - euclidean_distance: 0.1496
Epoch 231/350
227/227 [==============================] - 0s 776us/step - loss: 0.0932 - accuracy: 0.9532 - mae: 0.0932 - pearson_correlation: 0.7523 - euclidean_distance: 0.1525
Epoch 232/350
227/227 [==============================] - 0s 785us/step - loss: 0.0951 - accuracy: 0.9524 - mae: 0.0951 - pearson_correlation: 0.7547 - euclidean_distance: 0.1549
Epoch 233/350
227/227 [==============================] - 0s 784us/step - loss: 0.0913 - accuracy: 0.9541 - mae: 0.0913 - pearson_correlation: 0.7643 - euclidean_distance: 0.1488
Epoch 234/350
227/227 [==============================] - 0s 784us/step - loss: 0.0920 - accuracy: 0.9519 - mae: 0.0920 - pearson_correlation: 0.7610 - euclidean_distance: 0.1504
Epoch 235/350
227/227 [==============================] - 0s 789us/step - loss: 0.0947 - accuracy: 0.9532 - mae: 0.0947 - pearson_correlation: 0.7512 - euclidean_distance: 0.1547
Epoch 236/350
227/227 [==============================] - 0s 789us/step - loss: 0.0929 - accuracy: 0.9519 - mae: 0.0929 - pearson_correlation: 0.7564 - euclidean_distance: 0.1517
Epoch 237/350
227/227 [==============================] - 0s 783us/step - loss: 0.0927 - accuracy: 0.9541 - mae: 0.0927 - pearson_correlation: 0.7555 - euclidean_distance: 0.1512
Epoch 238/350
227/227 [==============================] - 0s 783us/step - loss: 0.0907 - accuracy: 0.9528 - mae: 0.0907 - pearson_correlation: 0.7649 - euclidean_distance: 0.1475
Epoch 239/350
227/227 [==============================] - 0s 787us/step - loss: 0.0903 - accuracy: 0.9537 - mae: 0.0903 - pearson_correlation: 0.7650 - euclidean_distance: 0.1477
Epoch 240/350
227/227 [==============================] - 0s 786us/step - loss: 0.0914 - accuracy: 0.9537 - mae: 0.0914 - pearson_correlation: 0.7582 - euclidean_distance: 0.1499
Epoch 241/350
227/227 [==============================] - 0s 785us/step - loss: 0.0899 - accuracy: 0.9563 - mae: 0.0899 - pearson_correlation: 0.7684 - euclidean_distance: 0.1467
Epoch 242/350
227/227 [==============================] - 0s 785us/step - loss: 0.0937 - accuracy: 0.9510 - mae: 0.0937 - pearson_correlation: 0.7535 - euclidean_distance: 0.1524
Epoch 243/350
227/227 [==============================] - 0s 782us/step - loss: 0.0925 - accuracy: 0.9537 - mae: 0.0925 - pearson_correlation: 0.7543 - euclidean_distance: 0.1515
Epoch 244/350
227/227 [==============================] - 0s 788us/step - loss: 0.0894 - accuracy: 0.9550 - mae: 0.0894 - pearson_correlation: 0.7664 - euclidean_distance: 0.1462
Epoch 245/350
227/227 [==============================] - 0s 785us/step - loss: 0.0934 - accuracy: 0.9537 - mae: 0.0934 - pearson_correlation: 0.7543 - euclidean_distance: 0.1524
Epoch 246/350
227/227 [==============================] - 0s 784us/step - loss: 0.0928 - accuracy: 0.9515 - mae: 0.0928 - pearson_correlation: 0.7524 - euclidean_distance: 0.1517
Epoch 247/350
227/227 [==============================] - 0s 785us/step - loss: 0.0919 - accuracy: 0.9537 - mae: 0.0919 - pearson_correlation: 0.7617 - euclidean_distance: 0.1502
Epoch 248/350
227/227 [==============================] - 0s 783us/step - loss: 0.0909 - accuracy: 0.9546 - mae: 0.0909 - pearson_correlation: 0.7672 - euclidean_distance: 0.1485
Epoch 249/350
227/227 [==============================] - 0s 781us/step - loss: 0.0904 - accuracy: 0.9532 - mae: 0.0904 - pearson_correlation: 0.7632 - euclidean_distance: 0.1474
Epoch 250/350
227/227 [==============================] - 0s 787us/step - loss: 0.0937 - accuracy: 0.9515 - mae: 0.0937 - pearson_correlation: 0.7562 - euclidean_distance: 0.1533
Epoch 251/350
227/227 [==============================] - 0s 785us/step - loss: 0.0920 - accuracy: 0.9537 - mae: 0.0920 - pearson_correlation: 0.7666 - euclidean_distance: 0.1504
Epoch 252/350
227/227 [==============================] - 0s 783us/step - loss: 0.0914 - accuracy: 0.9493 - mae: 0.0914 - pearson_correlation: 0.7556 - euclidean_distance: 0.1494
Epoch 253/350
227/227 [==============================] - 0s 784us/step - loss: 0.0912 - accuracy: 0.9532 - mae: 0.0912 - pearson_correlation: 0.7602 - euclidean_distance: 0.1490
Epoch 254/350
227/227 [==============================] - 0s 784us/step - loss: 0.0919 - accuracy: 0.9546 - mae: 0.0919 - pearson_correlation: 0.7553 - euclidean_distance: 0.1509
Epoch 255/350
227/227 [==============================] - 0s 784us/step - loss: 0.0900 - accuracy: 0.9554 - mae: 0.0900 - pearson_correlation: 0.7677 - euclidean_distance: 0.1479
Epoch 256/350
227/227 [==============================] - 0s 784us/step - loss: 0.0878 - accuracy: 0.9524 - mae: 0.0878 - pearson_correlation: 0.7709 - euclidean_distance: 0.1442
Epoch 257/350
227/227 [==============================] - 0s 781us/step - loss: 0.0902 - accuracy: 0.9537 - mae: 0.0902 - pearson_correlation: 0.7647 - euclidean_distance: 0.1473
Epoch 258/350
227/227 [==============================] - 0s 780us/step - loss: 0.0929 - accuracy: 0.9550 - mae: 0.0929 - pearson_correlation: 0.7540 - euclidean_distance: 0.1514
Epoch 259/350
227/227 [==============================] - 0s 781us/step - loss: 0.0908 - accuracy: 0.9537 - mae: 0.0908 - pearson_correlation: 0.7637 - euclidean_distance: 0.1483
Epoch 260/350
227/227 [==============================] - 0s 781us/step - loss: 0.0890 - accuracy: 0.9524 - mae: 0.0890 - pearson_correlation: 0.7661 - euclidean_distance: 0.1453
Epoch 261/350
227/227 [==============================] - 0s 785us/step - loss: 0.0910 - accuracy: 0.9554 - mae: 0.0910 - pearson_correlation: 0.7613 - euclidean_distance: 0.1488
Epoch 262/350
227/227 [==============================] - 0s 783us/step - loss: 0.0889 - accuracy: 0.9528 - mae: 0.0889 - pearson_correlation: 0.7684 - euclidean_distance: 0.1451
Epoch 263/350
227/227 [==============================] - 0s 781us/step - loss: 0.0885 - accuracy: 0.9524 - mae: 0.0885 - pearson_correlation: 0.7662 - euclidean_distance: 0.1452
Epoch 264/350
227/227 [==============================] - 0s 781us/step - loss: 0.0886 - accuracy: 0.9546 - mae: 0.0886 - pearson_correlation: 0.7732 - euclidean_distance: 0.1450
Epoch 265/350
227/227 [==============================] - 0s 780us/step - loss: 0.0899 - accuracy: 0.9537 - mae: 0.0899 - pearson_correlation: 0.7671 - euclidean_distance: 0.1463
Epoch 266/350
227/227 [==============================] - 0s 782us/step - loss: 0.0881 - accuracy: 0.9550 - mae: 0.0881 - pearson_correlation: 0.7675 - euclidean_distance: 0.1442
Epoch 267/350
227/227 [==============================] - 0s 783us/step - loss: 0.0907 - accuracy: 0.9546 - mae: 0.0907 - pearson_correlation: 0.7595 - euclidean_distance: 0.1484
Epoch 268/350
227/227 [==============================] - 0s 779us/step - loss: 0.0895 - accuracy: 0.9537 - mae: 0.0895 - pearson_correlation: 0.7711 - euclidean_distance: 0.1461
Epoch 269/350
227/227 [==============================] - 0s 778us/step - loss: 0.0871 - accuracy: 0.9528 - mae: 0.0871 - pearson_correlation: 0.7696 - euclidean_distance: 0.1426
Epoch 270/350
227/227 [==============================] - 0s 782us/step - loss: 0.0897 - accuracy: 0.9528 - mae: 0.0897 - pearson_correlation: 0.7682 - euclidean_distance: 0.1463
Epoch 271/350
227/227 [==============================] - 0s 780us/step - loss: 0.0898 - accuracy: 0.9532 - mae: 0.0898 - pearson_correlation: 0.7646 - euclidean_distance: 0.1468
Epoch 272/350
227/227 [==============================] - 0s 783us/step - loss: 0.0896 - accuracy: 0.9541 - mae: 0.0896 - pearson_correlation: 0.7691 - euclidean_distance: 0.1457
Epoch 273/350
227/227 [==============================] - 0s 786us/step - loss: 0.0890 - accuracy: 0.9559 - mae: 0.0890 - pearson_correlation: 0.7693 - euclidean_distance: 0.1454
Epoch 274/350
227/227 [==============================] - 0s 783us/step - loss: 0.0861 - accuracy: 0.9524 - mae: 0.0861 - pearson_correlation: 0.7738 - euclidean_distance: 0.1403
Epoch 275/350
227/227 [==============================] - 0s 788us/step - loss: 0.0876 - accuracy: 0.9537 - mae: 0.0876 - pearson_correlation: 0.7721 - euclidean_distance: 0.1443
Epoch 276/350
227/227 [==============================] - 0s 784us/step - loss: 0.0876 - accuracy: 0.9524 - mae: 0.0876 - pearson_correlation: 0.7694 - euclidean_distance: 0.1437
Epoch 277/350
227/227 [==============================] - 0s 783us/step - loss: 0.0885 - accuracy: 0.9537 - mae: 0.0885 - pearson_correlation: 0.7635 - euclidean_distance: 0.1451
Epoch 278/350
227/227 [==============================] - 0s 782us/step - loss: 0.0882 - accuracy: 0.9541 - mae: 0.0882 - pearson_correlation: 0.7682 - euclidean_distance: 0.1444
Epoch 279/350
227/227 [==============================] - 0s 782us/step - loss: 0.0888 - accuracy: 0.9524 - mae: 0.0888 - pearson_correlation: 0.7660 - euclidean_distance: 0.1454
Epoch 280/350
227/227 [==============================] - 0s 797us/step - loss: 0.0871 - accuracy: 0.9515 - mae: 0.0871 - pearson_correlation: 0.7738 - euclidean_distance: 0.1424
Epoch 281/350
227/227 [==============================] - 0s 786us/step - loss: 0.0855 - accuracy: 0.9554 - mae: 0.0855 - pearson_correlation: 0.7669 - euclidean_distance: 0.1410
Epoch 282/350
227/227 [==============================] - 0s 783us/step - loss: 0.0897 - accuracy: 0.9541 - mae: 0.0897 - pearson_correlation: 0.7665 - euclidean_distance: 0.1466
Epoch 283/350
227/227 [==============================] - 0s 784us/step - loss: 0.0868 - accuracy: 0.9546 - mae: 0.0868 - pearson_correlation: 0.7721 - euclidean_distance: 0.1425
Epoch 284/350
227/227 [==============================] - 0s 783us/step - loss: 0.0846 - accuracy: 0.9519 - mae: 0.0846 - pearson_correlation: 0.7763 - euclidean_distance: 0.1385
Epoch 285/350
227/227 [==============================] - 0s 832us/step - loss: 0.0872 - accuracy: 0.9528 - mae: 0.0872 - pearson_correlation: 0.7764 - euclidean_distance: 0.1422
Epoch 286/350
227/227 [==============================] - 0s 817us/step - loss: 0.0840 - accuracy: 0.9546 - mae: 0.0840 - pearson_correlation: 0.7806 - euclidean_distance: 0.1378
Epoch 287/350
227/227 [==============================] - 0s 789us/step - loss: 0.0878 - accuracy: 0.9528 - mae: 0.0878 - pearson_correlation: 0.7651 - euclidean_distance: 0.1435
Epoch 288/350
227/227 [==============================] - 0s 786us/step - loss: 0.0856 - accuracy: 0.9559 - mae: 0.0856 - pearson_correlation: 0.7786 - euclidean_distance: 0.1403
Epoch 289/350
227/227 [==============================] - 0s 785us/step - loss: 0.0857 - accuracy: 0.9546 - mae: 0.0857 - pearson_correlation: 0.7772 - euclidean_distance: 0.1400
Epoch 290/350
227/227 [==============================] - 0s 785us/step - loss: 0.0870 - accuracy: 0.9537 - mae: 0.0870 - pearson_correlation: 0.7687 - euclidean_distance: 0.1429
Epoch 291/350
227/227 [==============================] - 0s 783us/step - loss: 0.0880 - accuracy: 0.9532 - mae: 0.0880 - pearson_correlation: 0.7678 - euclidean_distance: 0.1443
Epoch 292/350
227/227 [==============================] - 0s 783us/step - loss: 0.0861 - accuracy: 0.9537 - mae: 0.0861 - pearson_correlation: 0.7738 - euclidean_distance: 0.1410
Epoch 293/350
227/227 [==============================] - 0s 781us/step - loss: 0.0856 - accuracy: 0.9537 - mae: 0.0856 - pearson_correlation: 0.7779 - euclidean_distance: 0.1394
Epoch 294/350
227/227 [==============================] - 0s 781us/step - loss: 0.0854 - accuracy: 0.9550 - mae: 0.0854 - pearson_correlation: 0.7736 - euclidean_distance: 0.1406
Epoch 295/350
227/227 [==============================] - 0s 809us/step - loss: 0.0846 - accuracy: 0.9550 - mae: 0.0846 - pearson_correlation: 0.7765 - euclidean_distance: 0.1390
Epoch 296/350
227/227 [==============================] - 0s 860us/step - loss: 0.0876 - accuracy: 0.9537 - mae: 0.0876 - pearson_correlation: 0.7661 - euclidean_distance: 0.1434
Epoch 297/350
227/227 [==============================] - 0s 887us/step - loss: 0.0849 - accuracy: 0.9528 - mae: 0.0849 - pearson_correlation: 0.7788 - euclidean_distance: 0.1388
Epoch 298/350
227/227 [==============================] - 0s 853us/step - loss: 0.0856 - accuracy: 0.9541 - mae: 0.0856 - pearson_correlation: 0.7760 - euclidean_distance: 0.1399
Epoch 299/350
227/227 [==============================] - 0s 787us/step - loss: 0.0855 - accuracy: 0.9550 - mae: 0.0855 - pearson_correlation: 0.7792 - euclidean_distance: 0.1407
Epoch 300/350
227/227 [==============================] - 0s 785us/step - loss: 0.0841 - accuracy: 0.9537 - mae: 0.0841 - pearson_correlation: 0.7785 - euclidean_distance: 0.1379
Epoch 301/350
227/227 [==============================] - 0s 786us/step - loss: 0.0856 - accuracy: 0.9554 - mae: 0.0856 - pearson_correlation: 0.7773 - euclidean_distance: 0.1404
Epoch 302/350
227/227 [==============================] - 0s 785us/step - loss: 0.0849 - accuracy: 0.9532 - mae: 0.0849 - pearson_correlation: 0.7766 - euclidean_distance: 0.1390
Epoch 303/350
227/227 [==============================] - 0s 784us/step - loss: 0.0855 - accuracy: 0.9524 - mae: 0.0855 - pearson_correlation: 0.7768 - euclidean_distance: 0.1396
Epoch 304/350
227/227 [==============================] - 0s 785us/step - loss: 0.0828 - accuracy: 0.9541 - mae: 0.0828 - pearson_correlation: 0.7894 - euclidean_distance: 0.1356
Epoch 305/350
227/227 [==============================] - 0s 784us/step - loss: 0.0844 - accuracy: 0.9550 - mae: 0.0844 - pearson_correlation: 0.7763 - euclidean_distance: 0.1384
Epoch 306/350
227/227 [==============================] - 0s 785us/step - loss: 0.0864 - accuracy: 0.9524 - mae: 0.0864 - pearson_correlation: 0.7717 - euclidean_distance: 0.1416
Epoch 307/350
227/227 [==============================] - 0s 786us/step - loss: 0.0853 - accuracy: 0.9546 - mae: 0.0853 - pearson_correlation: 0.7754 - euclidean_distance: 0.1394
Epoch 308/350
227/227 [==============================] - 0s 786us/step - loss: 0.0860 - accuracy: 0.9550 - mae: 0.0860 - pearson_correlation: 0.7752 - euclidean_distance: 0.1407
Epoch 309/350
227/227 [==============================] - 0s 786us/step - loss: 0.0839 - accuracy: 0.9537 - mae: 0.0839 - pearson_correlation: 0.7782 - euclidean_distance: 0.1378
Epoch 310/350
227/227 [==============================] - 0s 785us/step - loss: 0.0850 - accuracy: 0.9546 - mae: 0.0850 - pearson_correlation: 0.7775 - euclidean_distance: 0.1390
Epoch 311/350
227/227 [==============================] - 0s 782us/step - loss: 0.0863 - accuracy: 0.9550 - mae: 0.0863 - pearson_correlation: 0.7721 - euclidean_distance: 0.1413
Epoch 312/350
227/227 [==============================] - 0s 785us/step - loss: 0.0845 - accuracy: 0.9537 - mae: 0.0845 - pearson_correlation: 0.7770 - euclidean_distance: 0.1386
Epoch 313/350
227/227 [==============================] - 0s 785us/step - loss: 0.0848 - accuracy: 0.9546 - mae: 0.0848 - pearson_correlation: 0.7817 - euclidean_distance: 0.1385
Epoch 314/350
227/227 [==============================] - 0s 785us/step - loss: 0.0831 - accuracy: 0.9546 - mae: 0.0831 - pearson_correlation: 0.7782 - euclidean_distance: 0.1364
Epoch 315/350
227/227 [==============================] - 0s 783us/step - loss: 0.0853 - accuracy: 0.9532 - mae: 0.0853 - pearson_correlation: 0.7801 - euclidean_distance: 0.1400
Epoch 316/350
227/227 [==============================] - 0s 783us/step - loss: 0.0834 - accuracy: 0.9546 - mae: 0.0834 - pearson_correlation: 0.7825 - euclidean_distance: 0.1364
Epoch 317/350
227/227 [==============================] - 0s 786us/step - loss: 0.0849 - accuracy: 0.9550 - mae: 0.0849 - pearson_correlation: 0.7782 - euclidean_distance: 0.1390
Epoch 318/350
227/227 [==============================] - 0s 784us/step - loss: 0.0833 - accuracy: 0.9528 - mae: 0.0833 - pearson_correlation: 0.7807 - euclidean_distance: 0.1369
Epoch 319/350
227/227 [==============================] - 0s 428us/step - loss: 0.0820 - accuracy: 0.9554 - mae: 0.0820 - pearson_correlation: 0.7834 - euclidean_distance: 0.1345
Epoch 320/350
227/227 [==============================] - 0s 788us/step - loss: 0.0843 - accuracy: 0.9546 - mae: 0.0843 - pearson_correlation: 0.7802 - euclidean_distance: 0.1382
Epoch 321/350
227/227 [==============================] - 0s 782us/step - loss: 0.0841 - accuracy: 0.9546 - mae: 0.0841 - pearson_correlation: 0.7782 - euclidean_distance: 0.1377
Epoch 322/350
227/227 [==============================] - 0s 786us/step - loss: 0.0854 - accuracy: 0.9546 - mae: 0.0854 - pearson_correlation: 0.7756 - euclidean_distance: 0.1401
Epoch 323/350
227/227 [==============================] - 0s 784us/step - loss: 0.0826 - accuracy: 0.9550 - mae: 0.0826 - pearson_correlation: 0.7836 - euclidean_distance: 0.1356
Epoch 324/350
227/227 [==============================] - 0s 811us/step - loss: 0.0820 - accuracy: 0.9541 - mae: 0.0820 - pearson_correlation: 0.7862 - euclidean_distance: 0.1341
Epoch 325/350
227/227 [==============================] - 0s 1ms/step - loss: 0.0845 - accuracy: 0.9541 - mae: 0.0845 - pearson_correlation: 0.7799 - euclidean_distance: 0.1381
Epoch 326/350
227/227 [==============================] - 0s 821us/step - loss: 0.0836 - accuracy: 0.9541 - mae: 0.0836 - pearson_correlation: 0.7757 - euclidean_distance: 0.1376
Epoch 327/350
227/227 [==============================] - 0s 809us/step - loss: 0.0816 - accuracy: 0.9550 - mae: 0.0816 - pearson_correlation: 0.7838 - euclidean_distance: 0.1339
Epoch 328/350
227/227 [==============================] - 0s 784us/step - loss: 0.0843 - accuracy: 0.9528 - mae: 0.0843 - pearson_correlation: 0.7822 - euclidean_distance: 0.1381
Epoch 329/350
227/227 [==============================] - 0s 787us/step - loss: 0.0815 - accuracy: 0.9554 - mae: 0.0815 - pearson_correlation: 0.7821 - euclidean_distance: 0.1339
Epoch 330/350
227/227 [==============================] - 0s 785us/step - loss: 0.0817 - accuracy: 0.9550 - mae: 0.0817 - pearson_correlation: 0.7907 - euclidean_distance: 0.1339
Epoch 331/350
227/227 [==============================] - 0s 785us/step - loss: 0.0838 - accuracy: 0.9541 - mae: 0.0838 - pearson_correlation: 0.7794 - euclidean_distance: 0.1377
Epoch 332/350
227/227 [==============================] - 0s 783us/step - loss: 0.0817 - accuracy: 0.9546 - mae: 0.0817 - pearson_correlation: 0.7866 - euclidean_distance: 0.1337
Epoch 333/350
227/227 [==============================] - 0s 782us/step - loss: 0.0813 - accuracy: 0.9537 - mae: 0.0813 - pearson_correlation: 0.7859 - euclidean_distance: 0.1335
Epoch 334/350
227/227 [==============================] - 0s 787us/step - loss: 0.0812 - accuracy: 0.9537 - mae: 0.0812 - pearson_correlation: 0.7892 - euclidean_distance: 0.1331
Epoch 335/350
227/227 [==============================] - 0s 796us/step - loss: 0.0834 - accuracy: 0.9550 - mae: 0.0834 - pearson_correlation: 0.7845 - euclidean_distance: 0.1363
Epoch 336/350
227/227 [==============================] - 0s 784us/step - loss: 0.0817 - accuracy: 0.9559 - mae: 0.0817 - pearson_correlation: 0.7879 - euclidean_distance: 0.1340
Epoch 337/350
227/227 [==============================] - 0s 784us/step - loss: 0.0831 - accuracy: 0.9546 - mae: 0.0831 - pearson_correlation: 0.7788 - euclidean_distance: 0.1357
Epoch 338/350
227/227 [==============================] - 0s 783us/step - loss: 0.0812 - accuracy: 0.9546 - mae: 0.0812 - pearson_correlation: 0.7823 - euclidean_distance: 0.1337
Epoch 339/350
227/227 [==============================] - 0s 784us/step - loss: 0.0834 - accuracy: 0.9563 - mae: 0.0834 - pearson_correlation: 0.7815 - euclidean_distance: 0.1370
Epoch 340/350
227/227 [==============================] - 0s 782us/step - loss: 0.0833 - accuracy: 0.9559 - mae: 0.0833 - pearson_correlation: 0.7829 - euclidean_distance: 0.1365
Epoch 341/350
227/227 [==============================] - 0s 799us/step - loss: 0.0815 - accuracy: 0.9546 - mae: 0.0815 - pearson_correlation: 0.7833 - euclidean_distance: 0.1339
Epoch 342/350
227/227 [==============================] - 0s 781us/step - loss: 0.0826 - accuracy: 0.9532 - mae: 0.0826 - pearson_correlation: 0.7821 - euclidean_distance: 0.1350
Epoch 343/350
227/227 [==============================] - 0s 782us/step - loss: 0.0822 - accuracy: 0.9541 - mae: 0.0822 - pearson_correlation: 0.7808 - euclidean_distance: 0.1352
Epoch 344/350
227/227 [==============================] - 0s 779us/step - loss: 0.0811 - accuracy: 0.9546 - mae: 0.0811 - pearson_correlation: 0.7880 - euclidean_distance: 0.1325
Epoch 345/350
227/227 [==============================] - 0s 781us/step - loss: 0.0812 - accuracy: 0.9546 - mae: 0.0812 - pearson_correlation: 0.7911 - euclidean_distance: 0.1332
Epoch 346/350
227/227 [==============================] - 0s 786us/step - loss: 0.0812 - accuracy: 0.9541 - mae: 0.0812 - pearson_correlation: 0.7894 - euclidean_distance: 0.1335
Epoch 347/350
227/227 [==============================] - 0s 779us/step - loss: 0.0806 - accuracy: 0.9546 - mae: 0.0806 - pearson_correlation: 0.7888 - euclidean_distance: 0.1322
Epoch 348/350
227/227 [==============================] - 0s 780us/step - loss: 0.0807 - accuracy: 0.9550 - mae: 0.0807 - pearson_correlation: 0.7853 - euclidean_distance: 0.1331
Epoch 349/350
227/227 [==============================] - 0s 782us/step - loss: 0.0808 - accuracy: 0.9550 - mae: 0.0808 - pearson_correlation: 0.7875 - euclidean_distance: 0.1325
Epoch 350/350
227/227 [==============================] - 0s 781us/step - loss: 0.0793 - accuracy: 0.9541 - mae: 0.0793 - pearson_correlation: 0.7921 - euclidean_distance: 0.1305
114/114 [==============================] - 0s 461us/step
Epoch 1/350
227/227 [==============================] - 1s 794us/step - loss: 0.4602 - accuracy: 0.6458 - mae: 0.4602 - pearson_correlation: 0.2960 - euclidean_distance: 0.7047
Epoch 2/350
227/227 [==============================] - 0s 787us/step - loss: 0.4549 - accuracy: 0.6458 - mae: 0.4549 - pearson_correlation: 0.2932 - euclidean_distance: 0.6972
Epoch 3/350
227/227 [==============================] - 0s 785us/step - loss: 0.4475 - accuracy: 0.6462 - mae: 0.4475 - pearson_correlation: 0.2700 - euclidean_distance: 0.6890
Epoch 4/350
227/227 [==============================] - 0s 784us/step - loss: 0.4399 - accuracy: 0.6370 - mae: 0.4399 - pearson_correlation: 0.2802 - euclidean_distance: 0.6781
Epoch 5/350
227/227 [==============================] - 0s 792us/step - loss: 0.4338 - accuracy: 0.6343 - mae: 0.4338 - pearson_correlation: 0.2745 - euclidean_distance: 0.6691
Epoch 6/350
227/227 [==============================] - 0s 771us/step - loss: 0.4269 - accuracy: 0.6387 - mae: 0.4269 - pearson_correlation: 0.2552 - euclidean_distance: 0.6623
Epoch 7/350
227/227 [==============================] - 0s 786us/step - loss: 0.4205 - accuracy: 0.6277 - mae: 0.4205 - pearson_correlation: 0.2513 - euclidean_distance: 0.6527
Epoch 8/350
227/227 [==============================] - 0s 787us/step - loss: 0.4122 - accuracy: 0.6228 - mae: 0.4122 - pearson_correlation: 0.2544 - euclidean_distance: 0.6411
Epoch 9/350
227/227 [==============================] - 0s 784us/step - loss: 0.4065 - accuracy: 0.6277 - mae: 0.4065 - pearson_correlation: 0.2476 - euclidean_distance: 0.6326
Epoch 10/350
227/227 [==============================] - 0s 783us/step - loss: 0.3971 - accuracy: 0.6184 - mae: 0.3971 - pearson_correlation: 0.2454 - euclidean_distance: 0.6213
Epoch 11/350
227/227 [==============================] - 0s 781us/step - loss: 0.3893 - accuracy: 0.6087 - mae: 0.3893 - pearson_correlation: 0.2364 - euclidean_distance: 0.6103
Epoch 12/350
227/227 [==============================] - 0s 782us/step - loss: 0.3833 - accuracy: 0.6237 - mae: 0.3833 - pearson_correlation: 0.2545 - euclidean_distance: 0.6007
Epoch 13/350
227/227 [==============================] - 0s 787us/step - loss: 0.3745 - accuracy: 0.6079 - mae: 0.3745 - pearson_correlation: 0.2334 - euclidean_distance: 0.5900
Epoch 14/350
227/227 [==============================] - 0s 781us/step - loss: 0.3666 - accuracy: 0.6162 - mae: 0.3666 - pearson_correlation: 0.2331 - euclidean_distance: 0.5778
Epoch 15/350
227/227 [==============================] - 0s 782us/step - loss: 0.3602 - accuracy: 0.6228 - mae: 0.3602 - pearson_correlation: 0.2237 - euclidean_distance: 0.5693
Epoch 16/350
227/227 [==============================] - 0s 781us/step - loss: 0.3524 - accuracy: 0.6123 - mae: 0.3524 - pearson_correlation: 0.2461 - euclidean_distance: 0.5579
Epoch 17/350
227/227 [==============================] - 0s 782us/step - loss: 0.3439 - accuracy: 0.6096 - mae: 0.3439 - pearson_correlation: 0.2410 - euclidean_distance: 0.5458
Epoch 18/350
227/227 [==============================] - 0s 784us/step - loss: 0.3377 - accuracy: 0.6184 - mae: 0.3377 - pearson_correlation: 0.2382 - euclidean_distance: 0.5364
Epoch 19/350
227/227 [==============================] - 0s 786us/step - loss: 0.3301 - accuracy: 0.6083 - mae: 0.3301 - pearson_correlation: 0.2307 - euclidean_distance: 0.5264
Epoch 20/350
227/227 [==============================] - 0s 784us/step - loss: 0.3226 - accuracy: 0.6026 - mae: 0.3226 - pearson_correlation: 0.2267 - euclidean_distance: 0.5164
Epoch 21/350
227/227 [==============================] - 0s 779us/step - loss: 0.3165 - accuracy: 0.6215 - mae: 0.3165 - pearson_correlation: 0.2333 - euclidean_distance: 0.5056
Epoch 22/350
227/227 [==============================] - 0s 782us/step - loss: 0.3084 - accuracy: 0.6105 - mae: 0.3084 - pearson_correlation: 0.2335 - euclidean_distance: 0.4938
Epoch 23/350
227/227 [==============================] - 0s 779us/step - loss: 0.3031 - accuracy: 0.6162 - mae: 0.3031 - pearson_correlation: 0.2377 - euclidean_distance: 0.4854
Epoch 24/350
227/227 [==============================] - 0s 782us/step - loss: 0.2972 - accuracy: 0.6237 - mae: 0.2972 - pearson_correlation: 0.2498 - euclidean_distance: 0.4762
Epoch 25/350
227/227 [==============================] - 0s 782us/step - loss: 0.2894 - accuracy: 0.6145 - mae: 0.2894 - pearson_correlation: 0.2486 - euclidean_distance: 0.4649
Epoch 26/350
227/227 [==============================] - 0s 786us/step - loss: 0.2830 - accuracy: 0.6202 - mae: 0.2830 - pearson_correlation: 0.2521 - euclidean_distance: 0.4558
Epoch 27/350
227/227 [==============================] - 0s 781us/step - loss: 0.2803 - accuracy: 0.6255 - mae: 0.2803 - pearson_correlation: 0.2608 - euclidean_distance: 0.4496
Epoch 28/350
227/227 [==============================] - 0s 785us/step - loss: 0.2732 - accuracy: 0.6286 - mae: 0.2732 - pearson_correlation: 0.2612 - euclidean_distance: 0.4391
Epoch 29/350
227/227 [==============================] - 0s 831us/step - loss: 0.2673 - accuracy: 0.6431 - mae: 0.2673 - pearson_correlation: 0.2718 - euclidean_distance: 0.4294
Epoch 30/350
227/227 [==============================] - 0s 880us/step - loss: 0.2628 - accuracy: 0.6489 - mae: 0.2628 - pearson_correlation: 0.2749 - euclidean_distance: 0.4221
Epoch 31/350
227/227 [==============================] - 0s 869us/step - loss: 0.2591 - accuracy: 0.6546 - mae: 0.2591 - pearson_correlation: 0.2832 - euclidean_distance: 0.4166
Epoch 32/350
227/227 [==============================] - 0s 863us/step - loss: 0.2542 - accuracy: 0.6727 - mae: 0.2542 - pearson_correlation: 0.2973 - euclidean_distance: 0.4083
Epoch 33/350
227/227 [==============================] - 0s 783us/step - loss: 0.2495 - accuracy: 0.6771 - mae: 0.2495 - pearson_correlation: 0.3145 - euclidean_distance: 0.4001
Epoch 34/350
227/227 [==============================] - 0s 787us/step - loss: 0.2475 - accuracy: 0.6908 - mae: 0.2475 - pearson_correlation: 0.3108 - euclidean_distance: 0.3955
Epoch 35/350
227/227 [==============================] - 0s 787us/step - loss: 0.2418 - accuracy: 0.6956 - mae: 0.2418 - pearson_correlation: 0.3209 - euclidean_distance: 0.3883
Epoch 36/350
227/227 [==============================] - 0s 801us/step - loss: 0.2386 - accuracy: 0.6970 - mae: 0.2386 - pearson_correlation: 0.3326 - euclidean_distance: 0.3831
Epoch 37/350
227/227 [==============================] - 0s 785us/step - loss: 0.2355 - accuracy: 0.7097 - mae: 0.2355 - pearson_correlation: 0.3493 - euclidean_distance: 0.3767
Epoch 38/350
227/227 [==============================] - 0s 786us/step - loss: 0.2289 - accuracy: 0.7186 - mae: 0.2289 - pearson_correlation: 0.3558 - euclidean_distance: 0.3668
Epoch 39/350
227/227 [==============================] - 0s 785us/step - loss: 0.2269 - accuracy: 0.7168 - mae: 0.2269 - pearson_correlation: 0.3508 - euclidean_distance: 0.3649
Epoch 40/350
227/227 [==============================] - 0s 783us/step - loss: 0.2266 - accuracy: 0.7402 - mae: 0.2266 - pearson_correlation: 0.3602 - euclidean_distance: 0.3623
Epoch 41/350
227/227 [==============================] - 0s 787us/step - loss: 0.2221 - accuracy: 0.7433 - mae: 0.2221 - pearson_correlation: 0.3671 - euclidean_distance: 0.3546
Epoch 42/350
227/227 [==============================] - 0s 793us/step - loss: 0.2171 - accuracy: 0.7419 - mae: 0.2171 - pearson_correlation: 0.3844 - euclidean_distance: 0.3471
Epoch 43/350
227/227 [==============================] - 0s 785us/step - loss: 0.2142 - accuracy: 0.7574 - mae: 0.2142 - pearson_correlation: 0.3935 - euclidean_distance: 0.3421
Epoch 44/350
227/227 [==============================] - 0s 782us/step - loss: 0.2130 - accuracy: 0.7706 - mae: 0.2130 - pearson_correlation: 0.3997 - euclidean_distance: 0.3402
Epoch 45/350
227/227 [==============================] - 0s 795us/step - loss: 0.2085 - accuracy: 0.7715 - mae: 0.2085 - pearson_correlation: 0.4078 - euclidean_distance: 0.3346
Epoch 46/350
227/227 [==============================] - 0s 788us/step - loss: 0.2043 - accuracy: 0.7931 - mae: 0.2043 - pearson_correlation: 0.4210 - euclidean_distance: 0.3283
Epoch 47/350
227/227 [==============================] - 0s 785us/step - loss: 0.2035 - accuracy: 0.7931 - mae: 0.2035 - pearson_correlation: 0.4276 - euclidean_distance: 0.3256
Epoch 48/350
227/227 [==============================] - 0s 786us/step - loss: 0.2024 - accuracy: 0.7918 - mae: 0.2024 - pearson_correlation: 0.4265 - euclidean_distance: 0.3232
Epoch 49/350
227/227 [==============================] - 0s 783us/step - loss: 0.1982 - accuracy: 0.8050 - mae: 0.1982 - pearson_correlation: 0.4440 - euclidean_distance: 0.3170
Epoch 50/350
227/227 [==============================] - 0s 785us/step - loss: 0.1945 - accuracy: 0.8209 - mae: 0.1945 - pearson_correlation: 0.4630 - euclidean_distance: 0.3099
Epoch 51/350
227/227 [==============================] - 0s 784us/step - loss: 0.1945 - accuracy: 0.8275 - mae: 0.1945 - pearson_correlation: 0.4611 - euclidean_distance: 0.3102
Epoch 52/350
227/227 [==============================] - 0s 781us/step - loss: 0.1917 - accuracy: 0.8262 - mae: 0.1917 - pearson_correlation: 0.4647 - euclidean_distance: 0.3053
Epoch 53/350
227/227 [==============================] - 0s 787us/step - loss: 0.1892 - accuracy: 0.8244 - mae: 0.1892 - pearson_correlation: 0.4641 - euclidean_distance: 0.3024
Epoch 54/350
227/227 [==============================] - 0s 781us/step - loss: 0.1856 - accuracy: 0.8390 - mae: 0.1856 - pearson_correlation: 0.4826 - euclidean_distance: 0.2965
Epoch 55/350
227/227 [==============================] - 0s 785us/step - loss: 0.1822 - accuracy: 0.8386 - mae: 0.1822 - pearson_correlation: 0.4980 - euclidean_distance: 0.2911
Epoch 56/350
227/227 [==============================] - 0s 784us/step - loss: 0.1812 - accuracy: 0.8549 - mae: 0.1812 - pearson_correlation: 0.4920 - euclidean_distance: 0.2884
Epoch 57/350
227/227 [==============================] - 0s 783us/step - loss: 0.1810 - accuracy: 0.8633 - mae: 0.1810 - pearson_correlation: 0.5075 - euclidean_distance: 0.2877
Epoch 58/350
227/227 [==============================] - 0s 787us/step - loss: 0.1757 - accuracy: 0.8633 - mae: 0.1757 - pearson_correlation: 0.5113 - euclidean_distance: 0.2802
Epoch 59/350
227/227 [==============================] - 0s 785us/step - loss: 0.1741 - accuracy: 0.8778 - mae: 0.1741 - pearson_correlation: 0.5162 - euclidean_distance: 0.2776
Epoch 60/350
227/227 [==============================] - 0s 783us/step - loss: 0.1727 - accuracy: 0.8610 - mae: 0.1727 - pearson_correlation: 0.5102 - euclidean_distance: 0.2759
Epoch 61/350
227/227 [==============================] - 0s 784us/step - loss: 0.1710 - accuracy: 0.8725 - mae: 0.1710 - pearson_correlation: 0.5323 - euclidean_distance: 0.2721
Epoch 62/350
227/227 [==============================] - 0s 786us/step - loss: 0.1686 - accuracy: 0.8818 - mae: 0.1686 - pearson_correlation: 0.5430 - euclidean_distance: 0.2676
Epoch 63/350
227/227 [==============================] - 0s 786us/step - loss: 0.1677 - accuracy: 0.8827 - mae: 0.1677 - pearson_correlation: 0.5316 - euclidean_distance: 0.2675
Epoch 64/350
227/227 [==============================] - 0s 785us/step - loss: 0.1679 - accuracy: 0.8884 - mae: 0.1679 - pearson_correlation: 0.5327 - euclidean_distance: 0.2673
Epoch 65/350
227/227 [==============================] - 0s 785us/step - loss: 0.1620 - accuracy: 0.8871 - mae: 0.1620 - pearson_correlation: 0.5513 - euclidean_distance: 0.2580
Epoch 66/350
227/227 [==============================] - 0s 782us/step - loss: 0.1620 - accuracy: 0.8999 - mae: 0.1620 - pearson_correlation: 0.5631 - euclidean_distance: 0.2580
Epoch 67/350
227/227 [==============================] - 0s 787us/step - loss: 0.1595 - accuracy: 0.8977 - mae: 0.1595 - pearson_correlation: 0.5612 - euclidean_distance: 0.2533
Epoch 68/350
227/227 [==============================] - 0s 787us/step - loss: 0.1592 - accuracy: 0.9016 - mae: 0.1592 - pearson_correlation: 0.5630 - euclidean_distance: 0.2533
Epoch 69/350
227/227 [==============================] - 0s 786us/step - loss: 0.1564 - accuracy: 0.9012 - mae: 0.1564 - pearson_correlation: 0.5688 - euclidean_distance: 0.2493
Epoch 70/350
227/227 [==============================] - 0s 785us/step - loss: 0.1534 - accuracy: 0.8999 - mae: 0.1534 - pearson_correlation: 0.5776 - euclidean_distance: 0.2445
Epoch 71/350
227/227 [==============================] - 0s 781us/step - loss: 0.1548 - accuracy: 0.9109 - mae: 0.1548 - pearson_correlation: 0.5719 - euclidean_distance: 0.2468
Epoch 72/350
227/227 [==============================] - 0s 785us/step - loss: 0.1543 - accuracy: 0.9100 - mae: 0.1543 - pearson_correlation: 0.5759 - euclidean_distance: 0.2459
Epoch 73/350
227/227 [==============================] - 0s 781us/step - loss: 0.1504 - accuracy: 0.9162 - mae: 0.1504 - pearson_correlation: 0.5900 - euclidean_distance: 0.2395
Epoch 74/350
227/227 [==============================] - 0s 784us/step - loss: 0.1502 - accuracy: 0.9197 - mae: 0.1502 - pearson_correlation: 0.5876 - euclidean_distance: 0.2392
Epoch 75/350
227/227 [==============================] - 0s 784us/step - loss: 0.1480 - accuracy: 0.9197 - mae: 0.1480 - pearson_correlation: 0.6015 - euclidean_distance: 0.2358
Epoch 76/350
227/227 [==============================] - 0s 785us/step - loss: 0.1493 - accuracy: 0.9131 - mae: 0.1493 - pearson_correlation: 0.5970 - euclidean_distance: 0.2377
Epoch 77/350
227/227 [==============================] - 0s 782us/step - loss: 0.1454 - accuracy: 0.9100 - mae: 0.1454 - pearson_correlation: 0.6025 - euclidean_distance: 0.2325
Epoch 78/350
227/227 [==============================] - 0s 783us/step - loss: 0.1466 - accuracy: 0.9157 - mae: 0.1466 - pearson_correlation: 0.6022 - euclidean_distance: 0.2331
Epoch 79/350
227/227 [==============================] - 0s 783us/step - loss: 0.1423 - accuracy: 0.9237 - mae: 0.1423 - pearson_correlation: 0.6120 - euclidean_distance: 0.2277
Epoch 80/350
227/227 [==============================] - 0s 785us/step - loss: 0.1436 - accuracy: 0.9268 - mae: 0.1436 - pearson_correlation: 0.6078 - euclidean_distance: 0.2286
Epoch 81/350
227/227 [==============================] - 0s 782us/step - loss: 0.1445 - accuracy: 0.9259 - mae: 0.1445 - pearson_correlation: 0.6098 - euclidean_distance: 0.2298
Epoch 82/350
227/227 [==============================] - 0s 795us/step - loss: 0.1392 - accuracy: 0.9250 - mae: 0.1392 - pearson_correlation: 0.6178 - euclidean_distance: 0.2212
Epoch 83/350
227/227 [==============================] - 0s 819us/step - loss: 0.1401 - accuracy: 0.9206 - mae: 0.1401 - pearson_correlation: 0.6178 - euclidean_distance: 0.2232
Epoch 84/350
227/227 [==============================] - 0s 808us/step - loss: 0.1382 - accuracy: 0.9281 - mae: 0.1382 - pearson_correlation: 0.6284 - euclidean_distance: 0.2192
Epoch 85/350
227/227 [==============================] - 0s 826us/step - loss: 0.1380 - accuracy: 0.9316 - mae: 0.1380 - pearson_correlation: 0.6346 - euclidean_distance: 0.2199
Epoch 86/350
227/227 [==============================] - 0s 881us/step - loss: 0.1364 - accuracy: 0.9307 - mae: 0.1364 - pearson_correlation: 0.6309 - euclidean_distance: 0.2177
Epoch 87/350
227/227 [==============================] - 0s 809us/step - loss: 0.1354 - accuracy: 0.9281 - mae: 0.1354 - pearson_correlation: 0.6313 - euclidean_distance: 0.2164
Epoch 88/350
227/227 [==============================] - 0s 786us/step - loss: 0.1344 - accuracy: 0.9285 - mae: 0.1344 - pearson_correlation: 0.6326 - euclidean_distance: 0.2147
Epoch 89/350
227/227 [==============================] - 0s 784us/step - loss: 0.1345 - accuracy: 0.9338 - mae: 0.1345 - pearson_correlation: 0.6372 - euclidean_distance: 0.2134
Epoch 90/350
227/227 [==============================] - 0s 786us/step - loss: 0.1328 - accuracy: 0.9352 - mae: 0.1328 - pearson_correlation: 0.6413 - euclidean_distance: 0.2114
Epoch 91/350
227/227 [==============================] - 0s 786us/step - loss: 0.1323 - accuracy: 0.9334 - mae: 0.1323 - pearson_correlation: 0.6461 - euclidean_distance: 0.2110
Epoch 92/350
227/227 [==============================] - 0s 786us/step - loss: 0.1318 - accuracy: 0.9334 - mae: 0.1318 - pearson_correlation: 0.6480 - euclidean_distance: 0.2091
Epoch 93/350
227/227 [==============================] - 0s 770us/step - loss: 0.1306 - accuracy: 0.9316 - mae: 0.1306 - pearson_correlation: 0.6499 - euclidean_distance: 0.2079
Epoch 94/350
227/227 [==============================] - 0s 764us/step - loss: 0.1311 - accuracy: 0.9378 - mae: 0.1311 - pearson_correlation: 0.6495 - euclidean_distance: 0.2087
Epoch 95/350
227/227 [==============================] - 0s 765us/step - loss: 0.1289 - accuracy: 0.9365 - mae: 0.1289 - pearson_correlation: 0.6561 - euclidean_distance: 0.2048
Epoch 96/350
227/227 [==============================] - 0s 771us/step - loss: 0.1281 - accuracy: 0.9356 - mae: 0.1281 - pearson_correlation: 0.6570 - euclidean_distance: 0.2040
Epoch 97/350
227/227 [==============================] - 0s 768us/step - loss: 0.1281 - accuracy: 0.9404 - mae: 0.1281 - pearson_correlation: 0.6616 - euclidean_distance: 0.2042
Epoch 98/350
227/227 [==============================] - 0s 777us/step - loss: 0.1263 - accuracy: 0.9409 - mae: 0.1263 - pearson_correlation: 0.6547 - euclidean_distance: 0.2015
Epoch 99/350
227/227 [==============================] - 0s 785us/step - loss: 0.1270 - accuracy: 0.9400 - mae: 0.1270 - pearson_correlation: 0.6640 - euclidean_distance: 0.2026
Epoch 100/350
227/227 [==============================] - 0s 782us/step - loss: 0.1249 - accuracy: 0.9409 - mae: 0.1249 - pearson_correlation: 0.6702 - euclidean_distance: 0.1993
Epoch 101/350
227/227 [==============================] - 0s 810us/step - loss: 0.1241 - accuracy: 0.9382 - mae: 0.1241 - pearson_correlation: 0.6639 - euclidean_distance: 0.1988
Epoch 102/350
227/227 [==============================] - 0s 785us/step - loss: 0.1243 - accuracy: 0.9413 - mae: 0.1243 - pearson_correlation: 0.6683 - euclidean_distance: 0.1986
Epoch 103/350
227/227 [==============================] - 0s 784us/step - loss: 0.1251 - accuracy: 0.9427 - mae: 0.1251 - pearson_correlation: 0.6691 - euclidean_distance: 0.1991
Epoch 104/350
227/227 [==============================] - 0s 783us/step - loss: 0.1218 - accuracy: 0.9404 - mae: 0.1218 - pearson_correlation: 0.6763 - euclidean_distance: 0.1949
Epoch 105/350
227/227 [==============================] - 0s 781us/step - loss: 0.1195 - accuracy: 0.9387 - mae: 0.1195 - pearson_correlation: 0.6834 - euclidean_distance: 0.1907
Epoch 106/350
227/227 [==============================] - 0s 783us/step - loss: 0.1222 - accuracy: 0.9427 - mae: 0.1222 - pearson_correlation: 0.6790 - euclidean_distance: 0.1947
Epoch 107/350
227/227 [==============================] - 0s 781us/step - loss: 0.1235 - accuracy: 0.9422 - mae: 0.1235 - pearson_correlation: 0.6728 - euclidean_distance: 0.1969
Epoch 108/350
227/227 [==============================] - 0s 787us/step - loss: 0.1196 - accuracy: 0.9418 - mae: 0.1196 - pearson_correlation: 0.6842 - euclidean_distance: 0.1913
Epoch 109/350
227/227 [==============================] - 0s 784us/step - loss: 0.1197 - accuracy: 0.9422 - mae: 0.1197 - pearson_correlation: 0.6880 - euclidean_distance: 0.1913
Epoch 110/350
227/227 [==============================] - 0s 786us/step - loss: 0.1193 - accuracy: 0.9479 - mae: 0.1193 - pearson_correlation: 0.6914 - euclidean_distance: 0.1905
Epoch 111/350
227/227 [==============================] - 0s 786us/step - loss: 0.1188 - accuracy: 0.9466 - mae: 0.1188 - pearson_correlation: 0.6869 - euclidean_distance: 0.1898
Epoch 112/350
227/227 [==============================] - 0s 782us/step - loss: 0.1146 - accuracy: 0.9435 - mae: 0.1146 - pearson_correlation: 0.6967 - euclidean_distance: 0.1833
Epoch 113/350
227/227 [==============================] - 0s 781us/step - loss: 0.1174 - accuracy: 0.9435 - mae: 0.1174 - pearson_correlation: 0.6964 - euclidean_distance: 0.1880
Epoch 114/350
227/227 [==============================] - 0s 784us/step - loss: 0.1170 - accuracy: 0.9449 - mae: 0.1170 - pearson_correlation: 0.6896 - euclidean_distance: 0.1870
Epoch 115/350
227/227 [==============================] - 0s 785us/step - loss: 0.1154 - accuracy: 0.9435 - mae: 0.1154 - pearson_correlation: 0.6972 - euclidean_distance: 0.1844
Epoch 116/350
227/227 [==============================] - 0s 783us/step - loss: 0.1151 - accuracy: 0.9471 - mae: 0.1151 - pearson_correlation: 0.6949 - euclidean_distance: 0.1844
Epoch 117/350
227/227 [==============================] - 0s 797us/step - loss: 0.1167 - accuracy: 0.9427 - mae: 0.1167 - pearson_correlation: 0.6889 - euclidean_distance: 0.1866
Epoch 118/350
227/227 [==============================] - 0s 849us/step - loss: 0.1149 - accuracy: 0.9435 - mae: 0.1149 - pearson_correlation: 0.7017 - euclidean_distance: 0.1837
Epoch 119/350
227/227 [==============================] - 0s 878us/step - loss: 0.1176 - accuracy: 0.9435 - mae: 0.1176 - pearson_correlation: 0.6848 - euclidean_distance: 0.1882
Epoch 120/350
227/227 [==============================] - 0s 870us/step - loss: 0.1152 - accuracy: 0.9444 - mae: 0.1152 - pearson_correlation: 0.6976 - euclidean_distance: 0.1840
Epoch 121/350
227/227 [==============================] - 0s 783us/step - loss: 0.1118 - accuracy: 0.9431 - mae: 0.1118 - pearson_correlation: 0.7055 - euclidean_distance: 0.1790
Epoch 122/350
227/227 [==============================] - 0s 783us/step - loss: 0.1150 - accuracy: 0.9457 - mae: 0.1150 - pearson_correlation: 0.6969 - euclidean_distance: 0.1849
Epoch 123/350
227/227 [==============================] - 0s 775us/step - loss: 0.1138 - accuracy: 0.9475 - mae: 0.1138 - pearson_correlation: 0.7045 - euclidean_distance: 0.1820
Epoch 124/350
227/227 [==============================] - 0s 776us/step - loss: 0.1115 - accuracy: 0.9488 - mae: 0.1115 - pearson_correlation: 0.7006 - euclidean_distance: 0.1782
Epoch 125/350
227/227 [==============================] - 0s 773us/step - loss: 0.1124 - accuracy: 0.9479 - mae: 0.1124 - pearson_correlation: 0.7026 - euclidean_distance: 0.1804
Epoch 126/350
227/227 [==============================] - 0s 774us/step - loss: 0.1114 - accuracy: 0.9484 - mae: 0.1114 - pearson_correlation: 0.7084 - euclidean_distance: 0.1783
Epoch 127/350
227/227 [==============================] - 0s 776us/step - loss: 0.1117 - accuracy: 0.9484 - mae: 0.1117 - pearson_correlation: 0.6946 - euclidean_distance: 0.1793
Epoch 128/350
227/227 [==============================] - 0s 776us/step - loss: 0.1118 - accuracy: 0.9466 - mae: 0.1118 - pearson_correlation: 0.6983 - euclidean_distance: 0.1796
Epoch 129/350
227/227 [==============================] - 0s 775us/step - loss: 0.1124 - accuracy: 0.9488 - mae: 0.1124 - pearson_correlation: 0.7052 - euclidean_distance: 0.1792
Epoch 130/350
227/227 [==============================] - 0s 791us/step - loss: 0.1125 - accuracy: 0.9484 - mae: 0.1125 - pearson_correlation: 0.7012 - euclidean_distance: 0.1798
Epoch 131/350
227/227 [==============================] - 0s 796us/step - loss: 0.1118 - accuracy: 0.9488 - mae: 0.1118 - pearson_correlation: 0.7073 - euclidean_distance: 0.1792
Epoch 132/350
227/227 [==============================] - 0s 767us/step - loss: 0.1097 - accuracy: 0.9484 - mae: 0.1097 - pearson_correlation: 0.7115 - euclidean_distance: 0.1757
Epoch 133/350
227/227 [==============================] - 0s 772us/step - loss: 0.1098 - accuracy: 0.9484 - mae: 0.1098 - pearson_correlation: 0.7104 - euclidean_distance: 0.1763
Epoch 134/350
227/227 [==============================] - 0s 770us/step - loss: 0.1125 - accuracy: 0.9457 - mae: 0.1125 - pearson_correlation: 0.7090 - euclidean_distance: 0.1803
Epoch 135/350
227/227 [==============================] - 0s 771us/step - loss: 0.1073 - accuracy: 0.9475 - mae: 0.1073 - pearson_correlation: 0.7192 - euclidean_distance: 0.1720
Epoch 136/350
227/227 [==============================] - 0s 762us/step - loss: 0.1104 - accuracy: 0.9471 - mae: 0.1104 - pearson_correlation: 0.7032 - euclidean_distance: 0.1778
Epoch 137/350
227/227 [==============================] - 0s 770us/step - loss: 0.1084 - accuracy: 0.9493 - mae: 0.1084 - pearson_correlation: 0.7139 - euclidean_distance: 0.1738
Epoch 138/350
227/227 [==============================] - 0s 769us/step - loss: 0.1097 - accuracy: 0.9502 - mae: 0.1097 - pearson_correlation: 0.7156 - euclidean_distance: 0.1761
Epoch 139/350
227/227 [==============================] - 0s 773us/step - loss: 0.1065 - accuracy: 0.9479 - mae: 0.1065 - pearson_correlation: 0.7244 - euclidean_distance: 0.1710
Epoch 140/350
227/227 [==============================] - 0s 772us/step - loss: 0.1071 - accuracy: 0.9479 - mae: 0.1071 - pearson_correlation: 0.7210 - euclidean_distance: 0.1715
Epoch 141/350
227/227 [==============================] - 0s 768us/step - loss: 0.1076 - accuracy: 0.9497 - mae: 0.1076 - pearson_correlation: 0.7178 - euclidean_distance: 0.1723
Epoch 142/350
227/227 [==============================] - 0s 771us/step - loss: 0.1080 - accuracy: 0.9488 - mae: 0.1080 - pearson_correlation: 0.7178 - euclidean_distance: 0.1736
Epoch 143/350
227/227 [==============================] - 0s 768us/step - loss: 0.1060 - accuracy: 0.9457 - mae: 0.1060 - pearson_correlation: 0.7222 - euclidean_distance: 0.1702
Epoch 144/350
227/227 [==============================] - 0s 771us/step - loss: 0.1065 - accuracy: 0.9502 - mae: 0.1065 - pearson_correlation: 0.7201 - euclidean_distance: 0.1710
Epoch 145/350
227/227 [==============================] - 0s 777us/step - loss: 0.1033 - accuracy: 0.9537 - mae: 0.1033 - pearson_correlation: 0.7300 - euclidean_distance: 0.1663
Epoch 146/350
227/227 [==============================] - 0s 786us/step - loss: 0.1060 - accuracy: 0.9493 - mae: 0.1060 - pearson_correlation: 0.7242 - euclidean_distance: 0.1698
Epoch 147/350
227/227 [==============================] - 0s 787us/step - loss: 0.1062 - accuracy: 0.9506 - mae: 0.1062 - pearson_correlation: 0.7251 - euclidean_distance: 0.1704
Epoch 148/350
227/227 [==============================] - 0s 785us/step - loss: 0.1056 - accuracy: 0.9506 - mae: 0.1056 - pearson_correlation: 0.7219 - euclidean_distance: 0.1696
Epoch 149/350
227/227 [==============================] - 0s 781us/step - loss: 0.1059 - accuracy: 0.9510 - mae: 0.1059 - pearson_correlation: 0.7216 - euclidean_distance: 0.1696
Epoch 150/350
227/227 [==============================] - 0s 782us/step - loss: 0.1044 - accuracy: 0.9506 - mae: 0.1044 - pearson_correlation: 0.7268 - euclidean_distance: 0.1675
Epoch 151/350
227/227 [==============================] - 0s 785us/step - loss: 0.1044 - accuracy: 0.9519 - mae: 0.1044 - pearson_correlation: 0.7276 - euclidean_distance: 0.1675
Epoch 152/350
227/227 [==============================] - 0s 784us/step - loss: 0.1061 - accuracy: 0.9519 - mae: 0.1061 - pearson_correlation: 0.7277 - euclidean_distance: 0.1701
Epoch 153/350
227/227 [==============================] - 0s 790us/step - loss: 0.1040 - accuracy: 0.9528 - mae: 0.1040 - pearson_correlation: 0.7287 - euclidean_distance: 0.1667
Epoch 154/350
227/227 [==============================] - 0s 787us/step - loss: 0.1028 - accuracy: 0.9524 - mae: 0.1028 - pearson_correlation: 0.7321 - euclidean_distance: 0.1649
Epoch 155/350
227/227 [==============================] - 0s 783us/step - loss: 0.1030 - accuracy: 0.9510 - mae: 0.1030 - pearson_correlation: 0.7253 - euclidean_distance: 0.1658
Epoch 156/350
227/227 [==============================] - 0s 781us/step - loss: 0.1037 - accuracy: 0.9524 - mae: 0.1037 - pearson_correlation: 0.7254 - euclidean_distance: 0.1671
Epoch 157/350
227/227 [==============================] - 0s 783us/step - loss: 0.1039 - accuracy: 0.9519 - mae: 0.1039 - pearson_correlation: 0.7265 - euclidean_distance: 0.1675
Epoch 158/350
227/227 [==============================] - 0s 785us/step - loss: 0.1018 - accuracy: 0.9510 - mae: 0.1018 - pearson_correlation: 0.7266 - euclidean_distance: 0.1648
Epoch 159/350
227/227 [==============================] - 0s 786us/step - loss: 0.1007 - accuracy: 0.9546 - mae: 0.1007 - pearson_correlation: 0.7391 - euclidean_distance: 0.1619
Epoch 160/350
227/227 [==============================] - 0s 782us/step - loss: 0.1021 - accuracy: 0.9537 - mae: 0.1021 - pearson_correlation: 0.7357 - euclidean_distance: 0.1640
Epoch 161/350
227/227 [==============================] - 0s 782us/step - loss: 0.1012 - accuracy: 0.9515 - mae: 0.1012 - pearson_correlation: 0.7370 - euclidean_distance: 0.1630
Epoch 162/350
227/227 [==============================] - 0s 783us/step - loss: 0.1035 - accuracy: 0.9532 - mae: 0.1035 - pearson_correlation: 0.7325 - euclidean_distance: 0.1667
Epoch 163/350
227/227 [==============================] - 0s 783us/step - loss: 0.1007 - accuracy: 0.9537 - mae: 0.1007 - pearson_correlation: 0.7356 - euclidean_distance: 0.1620
Epoch 164/350
227/227 [==============================] - 0s 786us/step - loss: 0.1017 - accuracy: 0.9506 - mae: 0.1017 - pearson_correlation: 0.7323 - euclidean_distance: 0.1640
Epoch 165/350
227/227 [==============================] - 0s 789us/step - loss: 0.1013 - accuracy: 0.9502 - mae: 0.1013 - pearson_correlation: 0.7368 - euclidean_distance: 0.1630
Epoch 166/350
227/227 [==============================] - 0s 784us/step - loss: 0.1022 - accuracy: 0.9528 - mae: 0.1022 - pearson_correlation: 0.7336 - euclidean_distance: 0.1644
Epoch 167/350
227/227 [==============================] - 0s 785us/step - loss: 0.1005 - accuracy: 0.9515 - mae: 0.1005 - pearson_correlation: 0.7395 - euclidean_distance: 0.1619
Epoch 168/350
227/227 [==============================] - 0s 788us/step - loss: 0.1023 - accuracy: 0.9506 - mae: 0.1023 - pearson_correlation: 0.7357 - euclidean_distance: 0.1643
Epoch 169/350
227/227 [==============================] - 0s 785us/step - loss: 0.1017 - accuracy: 0.9532 - mae: 0.1017 - pearson_correlation: 0.7321 - euclidean_distance: 0.1634
Epoch 170/350
227/227 [==============================] - 0s 787us/step - loss: 0.0992 - accuracy: 0.9524 - mae: 0.0992 - pearson_correlation: 0.7419 - euclidean_distance: 0.1597
Epoch 171/350
227/227 [==============================] - 0s 785us/step - loss: 0.0984 - accuracy: 0.9532 - mae: 0.0984 - pearson_correlation: 0.7418 - euclidean_distance: 0.1586
Epoch 172/350
227/227 [==============================] - 0s 774us/step - loss: 0.0983 - accuracy: 0.9532 - mae: 0.0983 - pearson_correlation: 0.7453 - euclidean_distance: 0.1579
Epoch 173/350
227/227 [==============================] - 0s 786us/step - loss: 0.1001 - accuracy: 0.9541 - mae: 0.1001 - pearson_correlation: 0.7356 - euclidean_distance: 0.1614
Epoch 174/350
227/227 [==============================] - 0s 782us/step - loss: 0.0986 - accuracy: 0.9515 - mae: 0.0986 - pearson_correlation: 0.7425 - euclidean_distance: 0.1592
Epoch 175/350
227/227 [==============================] - 0s 785us/step - loss: 0.0984 - accuracy: 0.9524 - mae: 0.0984 - pearson_correlation: 0.7487 - euclidean_distance: 0.1584
Epoch 176/350
227/227 [==============================] - 0s 785us/step - loss: 0.0978 - accuracy: 0.9524 - mae: 0.0978 - pearson_correlation: 0.7481 - euclidean_distance: 0.1575
Epoch 177/350
227/227 [==============================] - 0s 782us/step - loss: 0.0999 - accuracy: 0.9550 - mae: 0.0999 - pearson_correlation: 0.7413 - euclidean_distance: 0.1602
Epoch 178/350
227/227 [==============================] - 0s 782us/step - loss: 0.0994 - accuracy: 0.9541 - mae: 0.0994 - pearson_correlation: 0.7403 - euclidean_distance: 0.1602
Epoch 179/350
227/227 [==============================] - 0s 783us/step - loss: 0.0985 - accuracy: 0.9537 - mae: 0.0985 - pearson_correlation: 0.7461 - euclidean_distance: 0.1591
Epoch 180/350
227/227 [==============================] - 0s 786us/step - loss: 0.0989 - accuracy: 0.9550 - mae: 0.0989 - pearson_correlation: 0.7440 - euclidean_distance: 0.1594
Epoch 181/350
227/227 [==============================] - 0s 785us/step - loss: 0.1000 - accuracy: 0.9515 - mae: 0.1000 - pearson_correlation: 0.7436 - euclidean_distance: 0.1608
Epoch 182/350
227/227 [==============================] - 0s 785us/step - loss: 0.0986 - accuracy: 0.9524 - mae: 0.0986 - pearson_correlation: 0.7426 - euclidean_distance: 0.1593
Epoch 183/350
227/227 [==============================] - 0s 783us/step - loss: 0.0974 - accuracy: 0.9519 - mae: 0.0974 - pearson_correlation: 0.7482 - euclidean_distance: 0.1573
Epoch 184/350
227/227 [==============================] - 0s 786us/step - loss: 0.0959 - accuracy: 0.9532 - mae: 0.0959 - pearson_correlation: 0.7535 - euclidean_distance: 0.1540
Epoch 185/350
227/227 [==============================] - 0s 784us/step - loss: 0.0974 - accuracy: 0.9537 - mae: 0.0974 - pearson_correlation: 0.7500 - euclidean_distance: 0.1570
Epoch 186/350
227/227 [==============================] - 0s 784us/step - loss: 0.0954 - accuracy: 0.9532 - mae: 0.0954 - pearson_correlation: 0.7474 - euclidean_distance: 0.1540
Epoch 187/350
227/227 [==============================] - 0s 786us/step - loss: 0.0981 - accuracy: 0.9524 - mae: 0.0981 - pearson_correlation: 0.7459 - euclidean_distance: 0.1576
Epoch 188/350
227/227 [==============================] - 0s 782us/step - loss: 0.0946 - accuracy: 0.9519 - mae: 0.0946 - pearson_correlation: 0.7511 - euclidean_distance: 0.1531
Epoch 189/350
227/227 [==============================] - 0s 786us/step - loss: 0.0940 - accuracy: 0.9541 - mae: 0.0940 - pearson_correlation: 0.7553 - euclidean_distance: 0.1517
Epoch 190/350
227/227 [==============================] - 0s 787us/step - loss: 0.0934 - accuracy: 0.9537 - mae: 0.0934 - pearson_correlation: 0.7587 - euclidean_distance: 0.1504
Epoch 191/350
227/227 [==============================] - 0s 784us/step - loss: 0.0959 - accuracy: 0.9541 - mae: 0.0959 - pearson_correlation: 0.7531 - euclidean_distance: 0.1543
Epoch 192/350
227/227 [==============================] - 0s 784us/step - loss: 0.0958 - accuracy: 0.9546 - mae: 0.0958 - pearson_correlation: 0.7519 - euclidean_distance: 0.1544
Epoch 193/350
227/227 [==============================] - 0s 784us/step - loss: 0.0956 - accuracy: 0.9546 - mae: 0.0956 - pearson_correlation: 0.7509 - euclidean_distance: 0.1545
Epoch 194/350
227/227 [==============================] - 0s 784us/step - loss: 0.0966 - accuracy: 0.9541 - mae: 0.0966 - pearson_correlation: 0.7459 - euclidean_distance: 0.1558
Epoch 195/350
227/227 [==============================] - 0s 787us/step - loss: 0.0952 - accuracy: 0.9541 - mae: 0.0952 - pearson_correlation: 0.7532 - euclidean_distance: 0.1544
Epoch 196/350
227/227 [==============================] - 0s 785us/step - loss: 0.0942 - accuracy: 0.9546 - mae: 0.0942 - pearson_correlation: 0.7596 - euclidean_distance: 0.1516
Epoch 197/350
227/227 [==============================] - 0s 784us/step - loss: 0.0967 - accuracy: 0.9537 - mae: 0.0967 - pearson_correlation: 0.7510 - euclidean_distance: 0.1556
Epoch 198/350
227/227 [==============================] - 0s 784us/step - loss: 0.0959 - accuracy: 0.9537 - mae: 0.0959 - pearson_correlation: 0.7494 - euclidean_distance: 0.1547
Epoch 199/350
227/227 [==============================] - 0s 785us/step - loss: 0.0937 - accuracy: 0.9550 - mae: 0.0937 - pearson_correlation: 0.7585 - euclidean_distance: 0.1514
Epoch 200/350
227/227 [==============================] - 0s 786us/step - loss: 0.0927 - accuracy: 0.9541 - mae: 0.0927 - pearson_correlation: 0.7622 - euclidean_distance: 0.1497
Epoch 201/350
227/227 [==============================] - 0s 783us/step - loss: 0.0951 - accuracy: 0.9541 - mae: 0.0951 - pearson_correlation: 0.7521 - euclidean_distance: 0.1537
Epoch 202/350
227/227 [==============================] - 0s 785us/step - loss: 0.0942 - accuracy: 0.9554 - mae: 0.0942 - pearson_correlation: 0.7536 - euclidean_distance: 0.1521
Epoch 203/350
227/227 [==============================] - 0s 784us/step - loss: 0.0958 - accuracy: 0.9550 - mae: 0.0958 - pearson_correlation: 0.7565 - euclidean_distance: 0.1548
Epoch 204/350
227/227 [==============================] - 0s 795us/step - loss: 0.0945 - accuracy: 0.9550 - mae: 0.0945 - pearson_correlation: 0.7556 - euclidean_distance: 0.1528
Epoch 205/350
227/227 [==============================] - 0s 785us/step - loss: 0.0934 - accuracy: 0.9541 - mae: 0.0934 - pearson_correlation: 0.7580 - euclidean_distance: 0.1509
Epoch 206/350
227/227 [==============================] - 0s 786us/step - loss: 0.0951 - accuracy: 0.9546 - mae: 0.0951 - pearson_correlation: 0.7547 - euclidean_distance: 0.1530
Epoch 207/350
227/227 [==============================] - 0s 848us/step - loss: 0.0940 - accuracy: 0.9532 - mae: 0.0940 - pearson_correlation: 0.7560 - euclidean_distance: 0.1518
Epoch 208/350
227/227 [==============================] - 0s 870us/step - loss: 0.0935 - accuracy: 0.9541 - mae: 0.0935 - pearson_correlation: 0.7586 - euclidean_distance: 0.1507
Epoch 209/350
227/227 [==============================] - 0s 871us/step - loss: 0.0933 - accuracy: 0.9541 - mae: 0.0933 - pearson_correlation: 0.7575 - euclidean_distance: 0.1512
Epoch 210/350
227/227 [==============================] - 0s 787us/step - loss: 0.0920 - accuracy: 0.9541 - mae: 0.0920 - pearson_correlation: 0.7606 - euclidean_distance: 0.1491
Epoch 211/350
227/227 [==============================] - 0s 785us/step - loss: 0.0921 - accuracy: 0.9554 - mae: 0.0921 - pearson_correlation: 0.7648 - euclidean_distance: 0.1487
Epoch 212/350
227/227 [==============================] - 0s 786us/step - loss: 0.0933 - accuracy: 0.9546 - mae: 0.0933 - pearson_correlation: 0.7625 - euclidean_distance: 0.1503
Epoch 213/350
227/227 [==============================] - 0s 786us/step - loss: 0.0932 - accuracy: 0.9546 - mae: 0.0932 - pearson_correlation: 0.7565 - euclidean_distance: 0.1507
Epoch 214/350
227/227 [==============================] - 0s 788us/step - loss: 0.0916 - accuracy: 0.9550 - mae: 0.0916 - pearson_correlation: 0.7608 - euclidean_distance: 0.1483
Epoch 215/350
227/227 [==============================] - 0s 786us/step - loss: 0.0924 - accuracy: 0.9524 - mae: 0.0924 - pearson_correlation: 0.7652 - euclidean_distance: 0.1489
Epoch 216/350
227/227 [==============================] - 0s 785us/step - loss: 0.0912 - accuracy: 0.9550 - mae: 0.0912 - pearson_correlation: 0.7657 - euclidean_distance: 0.1476
Epoch 217/350
227/227 [==============================] - 0s 784us/step - loss: 0.0917 - accuracy: 0.9550 - mae: 0.0917 - pearson_correlation: 0.7619 - euclidean_distance: 0.1481
Epoch 218/350
227/227 [==============================] - 0s 784us/step - loss: 0.0919 - accuracy: 0.9550 - mae: 0.0919 - pearson_correlation: 0.7656 - euclidean_distance: 0.1480
Epoch 219/350
227/227 [==============================] - 0s 784us/step - loss: 0.0905 - accuracy: 0.9550 - mae: 0.0905 - pearson_correlation: 0.7662 - euclidean_distance: 0.1470
Epoch 220/350
227/227 [==============================] - 0s 785us/step - loss: 0.0937 - accuracy: 0.9537 - mae: 0.0937 - pearson_correlation: 0.7595 - euclidean_distance: 0.1515
Epoch 221/350
227/227 [==============================] - 0s 785us/step - loss: 0.0899 - accuracy: 0.9537 - mae: 0.0899 - pearson_correlation: 0.7680 - euclidean_distance: 0.1460
Epoch 222/350
227/227 [==============================] - 0s 783us/step - loss: 0.0928 - accuracy: 0.9546 - mae: 0.0928 - pearson_correlation: 0.7647 - euclidean_distance: 0.1494
Epoch 223/350
227/227 [==============================] - 0s 786us/step - loss: 0.0918 - accuracy: 0.9541 - mae: 0.0918 - pearson_correlation: 0.7607 - euclidean_distance: 0.1482
Epoch 224/350
227/227 [==============================] - 0s 785us/step - loss: 0.0921 - accuracy: 0.9550 - mae: 0.0921 - pearson_correlation: 0.7604 - euclidean_distance: 0.1492
Epoch 225/350
227/227 [==============================] - 0s 786us/step - loss: 0.0915 - accuracy: 0.9546 - mae: 0.0915 - pearson_correlation: 0.7649 - euclidean_distance: 0.1481
Epoch 226/350
227/227 [==============================] - 0s 786us/step - loss: 0.0925 - accuracy: 0.9532 - mae: 0.0925 - pearson_correlation: 0.7607 - euclidean_distance: 0.1493
Epoch 227/350
227/227 [==============================] - 0s 783us/step - loss: 0.0896 - accuracy: 0.9550 - mae: 0.0896 - pearson_correlation: 0.7730 - euclidean_distance: 0.1456
Epoch 228/350
227/227 [==============================] - 0s 782us/step - loss: 0.0891 - accuracy: 0.9550 - mae: 0.0891 - pearson_correlation: 0.7737 - euclidean_distance: 0.1442
Epoch 229/350
227/227 [==============================] - 0s 785us/step - loss: 0.0914 - accuracy: 0.9550 - mae: 0.0914 - pearson_correlation: 0.7677 - euclidean_distance: 0.1475
Epoch 230/350
227/227 [==============================] - 0s 784us/step - loss: 0.0898 - accuracy: 0.9550 - mae: 0.0898 - pearson_correlation: 0.7741 - euclidean_distance: 0.1447
Epoch 231/350
227/227 [==============================] - 0s 784us/step - loss: 0.0899 - accuracy: 0.9554 - mae: 0.0899 - pearson_correlation: 0.7672 - euclidean_distance: 0.1456
Epoch 232/350
227/227 [==============================] - 0s 785us/step - loss: 0.0908 - accuracy: 0.9546 - mae: 0.0908 - pearson_correlation: 0.7688 - euclidean_distance: 0.1465
Epoch 233/350
227/227 [==============================] - 0s 781us/step - loss: 0.0899 - accuracy: 0.9541 - mae: 0.0899 - pearson_correlation: 0.7694 - euclidean_distance: 0.1452
Epoch 234/350
227/227 [==============================] - 0s 784us/step - loss: 0.0892 - accuracy: 0.9554 - mae: 0.0892 - pearson_correlation: 0.7721 - euclidean_distance: 0.1446
Epoch 235/350
227/227 [==============================] - 0s 785us/step - loss: 0.0895 - accuracy: 0.9554 - mae: 0.0895 - pearson_correlation: 0.7684 - euclidean_distance: 0.1451
Epoch 236/350
227/227 [==============================] - 0s 785us/step - loss: 0.0908 - accuracy: 0.9554 - mae: 0.0908 - pearson_correlation: 0.7693 - euclidean_distance: 0.1467
Epoch 237/350
227/227 [==============================] - 0s 783us/step - loss: 0.0906 - accuracy: 0.9554 - mae: 0.0906 - pearson_correlation: 0.7646 - euclidean_distance: 0.1469
Epoch 238/350
227/227 [==============================] - 0s 785us/step - loss: 0.0887 - accuracy: 0.9546 - mae: 0.0887 - pearson_correlation: 0.7733 - euclidean_distance: 0.1436
Epoch 239/350
227/227 [==============================] - 0s 786us/step - loss: 0.0907 - accuracy: 0.9546 - mae: 0.0907 - pearson_correlation: 0.7665 - euclidean_distance: 0.1470
Epoch 240/350
227/227 [==============================] - 0s 787us/step - loss: 0.0901 - accuracy: 0.9537 - mae: 0.0901 - pearson_correlation: 0.7649 - euclidean_distance: 0.1457
Epoch 241/350
227/227 [==============================] - 0s 784us/step - loss: 0.0885 - accuracy: 0.9554 - mae: 0.0885 - pearson_correlation: 0.7675 - euclidean_distance: 0.1438
Epoch 242/350
227/227 [==============================] - 0s 787us/step - loss: 0.0889 - accuracy: 0.9546 - mae: 0.0889 - pearson_correlation: 0.7716 - euclidean_distance: 0.1437
Epoch 243/350
227/227 [==============================] - 0s 781us/step - loss: 0.0879 - accuracy: 0.9541 - mae: 0.0879 - pearson_correlation: 0.7750 - euclidean_distance: 0.1422
Epoch 244/350
227/227 [==============================] - 0s 786us/step - loss: 0.0884 - accuracy: 0.9541 - mae: 0.0884 - pearson_correlation: 0.7715 - euclidean_distance: 0.1434
Epoch 245/350
227/227 [==============================] - 0s 784us/step - loss: 0.0895 - accuracy: 0.9541 - mae: 0.0895 - pearson_correlation: 0.7693 - euclidean_distance: 0.1447
Epoch 246/350
227/227 [==============================] - 0s 788us/step - loss: 0.0870 - accuracy: 0.9532 - mae: 0.0870 - pearson_correlation: 0.7741 - euclidean_distance: 0.1412
Epoch 247/350
227/227 [==============================] - 0s 785us/step - loss: 0.0878 - accuracy: 0.9546 - mae: 0.0878 - pearson_correlation: 0.7702 - euclidean_distance: 0.1430
Epoch 248/350
227/227 [==============================] - 0s 784us/step - loss: 0.0887 - accuracy: 0.9546 - mae: 0.0887 - pearson_correlation: 0.7713 - euclidean_distance: 0.1435
Epoch 249/350
227/227 [==============================] - 0s 784us/step - loss: 0.0884 - accuracy: 0.9554 - mae: 0.0884 - pearson_correlation: 0.7757 - euclidean_distance: 0.1431
Epoch 250/350
227/227 [==============================] - 0s 783us/step - loss: 0.0896 - accuracy: 0.9550 - mae: 0.0896 - pearson_correlation: 0.7712 - euclidean_distance: 0.1450
Epoch 251/350
227/227 [==============================] - 0s 784us/step - loss: 0.0893 - accuracy: 0.9550 - mae: 0.0893 - pearson_correlation: 0.7706 - euclidean_distance: 0.1447
Epoch 252/350
227/227 [==============================] - 0s 785us/step - loss: 0.0874 - accuracy: 0.9546 - mae: 0.0874 - pearson_correlation: 0.7749 - euclidean_distance: 0.1416
Epoch 253/350
227/227 [==============================] - 0s 781us/step - loss: 0.0885 - accuracy: 0.9550 - mae: 0.0885 - pearson_correlation: 0.7685 - euclidean_distance: 0.1433
Epoch 254/350
227/227 [==============================] - 0s 786us/step - loss: 0.0875 - accuracy: 0.9546 - mae: 0.0875 - pearson_correlation: 0.7747 - euclidean_distance: 0.1415
Epoch 255/350
227/227 [==============================] - 0s 781us/step - loss: 0.0866 - accuracy: 0.9546 - mae: 0.0866 - pearson_correlation: 0.7725 - euclidean_distance: 0.1406
Epoch 256/350
227/227 [==============================] - 0s 783us/step - loss: 0.0873 - accuracy: 0.9546 - mae: 0.0873 - pearson_correlation: 0.7757 - euclidean_distance: 0.1412
Epoch 257/350
227/227 [==============================] - 0s 785us/step - loss: 0.0891 - accuracy: 0.9550 - mae: 0.0891 - pearson_correlation: 0.7658 - euclidean_distance: 0.1446
Epoch 258/350
227/227 [==============================] - 0s 792us/step - loss: 0.0908 - accuracy: 0.9550 - mae: 0.0908 - pearson_correlation: 0.7681 - euclidean_distance: 0.1469
Epoch 259/350
227/227 [==============================] - 0s 788us/step - loss: 0.0875 - accuracy: 0.9550 - mae: 0.0875 - pearson_correlation: 0.7738 - euclidean_distance: 0.1422
Epoch 260/350
227/227 [==============================] - 0s 795us/step - loss: 0.0884 - accuracy: 0.9546 - mae: 0.0884 - pearson_correlation: 0.7700 - euclidean_distance: 0.1430
Epoch 261/350
227/227 [==============================] - 0s 786us/step - loss: 0.0868 - accuracy: 0.9550 - mae: 0.0868 - pearson_correlation: 0.7831 - euclidean_distance: 0.1400
Epoch 262/350
227/227 [==============================] - 0s 784us/step - loss: 0.0866 - accuracy: 0.9550 - mae: 0.0866 - pearson_correlation: 0.7761 - euclidean_distance: 0.1406
Epoch 263/350
227/227 [==============================] - 0s 787us/step - loss: 0.0878 - accuracy: 0.9550 - mae: 0.0878 - pearson_correlation: 0.7728 - euclidean_distance: 0.1431
Epoch 264/350
227/227 [==============================] - 0s 810us/step - loss: 0.0862 - accuracy: 0.9554 - mae: 0.0862 - pearson_correlation: 0.7790 - euclidean_distance: 0.1397
Epoch 265/350
227/227 [==============================] - 0s 791us/step - loss: 0.0887 - accuracy: 0.9554 - mae: 0.0887 - pearson_correlation: 0.7758 - euclidean_distance: 0.1436
Epoch 266/350
227/227 [==============================] - 0s 789us/step - loss: 0.0870 - accuracy: 0.9554 - mae: 0.0870 - pearson_correlation: 0.7785 - euclidean_distance: 0.1404
Epoch 267/350
227/227 [==============================] - 0s 785us/step - loss: 0.0876 - accuracy: 0.9554 - mae: 0.0876 - pearson_correlation: 0.7702 - euclidean_distance: 0.1415
Epoch 268/350
227/227 [==============================] - 0s 785us/step - loss: 0.0843 - accuracy: 0.9550 - mae: 0.0843 - pearson_correlation: 0.7819 - euclidean_distance: 0.1366
Epoch 269/350
227/227 [==============================] - 0s 786us/step - loss: 0.0877 - accuracy: 0.9546 - mae: 0.0877 - pearson_correlation: 0.7784 - euclidean_distance: 0.1419
Epoch 270/350
227/227 [==============================] - 0s 787us/step - loss: 0.0859 - accuracy: 0.9546 - mae: 0.0859 - pearson_correlation: 0.7776 - euclidean_distance: 0.1395
Epoch 271/350
227/227 [==============================] - 0s 783us/step - loss: 0.0870 - accuracy: 0.9550 - mae: 0.0870 - pearson_correlation: 0.7744 - euclidean_distance: 0.1413
Epoch 272/350
227/227 [==============================] - 0s 790us/step - loss: 0.0864 - accuracy: 0.9550 - mae: 0.0864 - pearson_correlation: 0.7775 - euclidean_distance: 0.1400
Epoch 273/350
227/227 [==============================] - 0s 784us/step - loss: 0.0863 - accuracy: 0.9546 - mae: 0.0863 - pearson_correlation: 0.7803 - euclidean_distance: 0.1398
Epoch 274/350
227/227 [==============================] - 0s 784us/step - loss: 0.0868 - accuracy: 0.9541 - mae: 0.0868 - pearson_correlation: 0.7761 - euclidean_distance: 0.1406
Epoch 275/350
227/227 [==============================] - 0s 785us/step - loss: 0.0863 - accuracy: 0.9550 - mae: 0.0863 - pearson_correlation: 0.7762 - euclidean_distance: 0.1397
Epoch 276/350
227/227 [==============================] - 0s 785us/step - loss: 0.0853 - accuracy: 0.9554 - mae: 0.0853 - pearson_correlation: 0.7783 - euclidean_distance: 0.1386
Epoch 277/350
227/227 [==============================] - 0s 784us/step - loss: 0.0882 - accuracy: 0.9546 - mae: 0.0882 - pearson_correlation: 0.7747 - euclidean_distance: 0.1427
Epoch 278/350
227/227 [==============================] - 0s 784us/step - loss: 0.0850 - accuracy: 0.9550 - mae: 0.0850 - pearson_correlation: 0.7797 - euclidean_distance: 0.1379
Epoch 279/350
227/227 [==============================] - 0s 783us/step - loss: 0.0864 - accuracy: 0.9550 - mae: 0.0864 - pearson_correlation: 0.7749 - euclidean_distance: 0.1404
Epoch 280/350
227/227 [==============================] - 0s 782us/step - loss: 0.0847 - accuracy: 0.9554 - mae: 0.0847 - pearson_correlation: 0.7819 - euclidean_distance: 0.1379
Epoch 281/350
227/227 [==============================] - 0s 783us/step - loss: 0.0851 - accuracy: 0.9554 - mae: 0.0851 - pearson_correlation: 0.7853 - euclidean_distance: 0.1376
Epoch 282/350
227/227 [==============================] - 0s 788us/step - loss: 0.0858 - accuracy: 0.9550 - mae: 0.0858 - pearson_correlation: 0.7766 - euclidean_distance: 0.1390
Epoch 283/350
227/227 [==============================] - 0s 784us/step - loss: 0.0828 - accuracy: 0.9554 - mae: 0.0828 - pearson_correlation: 0.7850 - euclidean_distance: 0.1348
Epoch 284/350
227/227 [==============================] - 0s 780us/step - loss: 0.0859 - accuracy: 0.9550 - mae: 0.0859 - pearson_correlation: 0.7785 - euclidean_distance: 0.1393
Epoch 285/350
227/227 [==============================] - 0s 785us/step - loss: 0.0857 - accuracy: 0.9554 - mae: 0.0857 - pearson_correlation: 0.7798 - euclidean_distance: 0.1388
Epoch 286/350
227/227 [==============================] - 0s 789us/step - loss: 0.0828 - accuracy: 0.9550 - mae: 0.0828 - pearson_correlation: 0.7882 - euclidean_distance: 0.1342
Epoch 287/350
227/227 [==============================] - 0s 787us/step - loss: 0.0849 - accuracy: 0.9546 - mae: 0.0849 - pearson_correlation: 0.7801 - euclidean_distance: 0.1377
Epoch 288/350
227/227 [==============================] - 0s 786us/step - loss: 0.0839 - accuracy: 0.9550 - mae: 0.0839 - pearson_correlation: 0.7809 - euclidean_distance: 0.1364
Epoch 289/350
227/227 [==============================] - 0s 785us/step - loss: 0.0841 - accuracy: 0.9563 - mae: 0.0841 - pearson_correlation: 0.7804 - euclidean_distance: 0.1366
Epoch 290/350
227/227 [==============================] - 0s 784us/step - loss: 0.0836 - accuracy: 0.9554 - mae: 0.0836 - pearson_correlation: 0.7799 - euclidean_distance: 0.1361
Epoch 291/350
227/227 [==============================] - 0s 785us/step - loss: 0.0833 - accuracy: 0.9550 - mae: 0.0833 - pearson_correlation: 0.7849 - euclidean_distance: 0.1352
Epoch 292/350
227/227 [==============================] - 0s 782us/step - loss: 0.0852 - accuracy: 0.9550 - mae: 0.0852 - pearson_correlation: 0.7792 - euclidean_distance: 0.1377
Epoch 293/350
227/227 [==============================] - 0s 784us/step - loss: 0.0836 - accuracy: 0.9550 - mae: 0.0836 - pearson_correlation: 0.7865 - euclidean_distance: 0.1356
Epoch 294/350
227/227 [==============================] - 0s 783us/step - loss: 0.0842 - accuracy: 0.9554 - mae: 0.0842 - pearson_correlation: 0.7825 - euclidean_distance: 0.1368
Epoch 295/350
227/227 [==============================] - 0s 817us/step - loss: 0.0842 - accuracy: 0.9554 - mae: 0.0842 - pearson_correlation: 0.7842 - euclidean_distance: 0.1367
Epoch 296/350
227/227 [==============================] - 0s 846us/step - loss: 0.0847 - accuracy: 0.9546 - mae: 0.0847 - pearson_correlation: 0.7804 - euclidean_distance: 0.1378
Epoch 297/350
227/227 [==============================] - 0s 871us/step - loss: 0.0815 - accuracy: 0.9554 - mae: 0.0815 - pearson_correlation: 0.7899 - euclidean_distance: 0.1325
Epoch 298/350
227/227 [==============================] - 0s 831us/step - loss: 0.0856 - accuracy: 0.9559 - mae: 0.0856 - pearson_correlation: 0.7775 - euclidean_distance: 0.1388
Epoch 299/350
227/227 [==============================] - 0s 786us/step - loss: 0.0845 - accuracy: 0.9550 - mae: 0.0845 - pearson_correlation: 0.7849 - euclidean_distance: 0.1372
Epoch 300/350
227/227 [==============================] - 0s 782us/step - loss: 0.0847 - accuracy: 0.9554 - mae: 0.0847 - pearson_correlation: 0.7813 - euclidean_distance: 0.1377
Epoch 301/350
227/227 [==============================] - 0s 784us/step - loss: 0.0863 - accuracy: 0.9550 - mae: 0.0863 - pearson_correlation: 0.7803 - euclidean_distance: 0.1395
Epoch 302/350
227/227 [==============================] - 0s 785us/step - loss: 0.0836 - accuracy: 0.9550 - mae: 0.0836 - pearson_correlation: 0.7835 - euclidean_distance: 0.1358
Epoch 303/350
227/227 [==============================] - 0s 784us/step - loss: 0.0839 - accuracy: 0.9550 - mae: 0.0839 - pearson_correlation: 0.7846 - euclidean_distance: 0.1358
Epoch 304/350
227/227 [==============================] - 0s 785us/step - loss: 0.0831 - accuracy: 0.9554 - mae: 0.0831 - pearson_correlation: 0.7867 - euclidean_distance: 0.1353
Epoch 305/350
227/227 [==============================] - 0s 787us/step - loss: 0.0839 - accuracy: 0.9550 - mae: 0.0839 - pearson_correlation: 0.7843 - euclidean_distance: 0.1364
Epoch 306/350
227/227 [==============================] - 0s 785us/step - loss: 0.0837 - accuracy: 0.9554 - mae: 0.0837 - pearson_correlation: 0.7830 - euclidean_distance: 0.1362
Epoch 307/350
227/227 [==============================] - 0s 783us/step - loss: 0.0816 - accuracy: 0.9554 - mae: 0.0816 - pearson_correlation: 0.7915 - euclidean_distance: 0.1329
Epoch 308/350
227/227 [==============================] - 0s 783us/step - loss: 0.0829 - accuracy: 0.9554 - mae: 0.0829 - pearson_correlation: 0.7875 - euclidean_distance: 0.1349
Epoch 309/350
227/227 [==============================] - 0s 783us/step - loss: 0.0818 - accuracy: 0.9554 - mae: 0.0818 - pearson_correlation: 0.7897 - euclidean_distance: 0.1332
Epoch 310/350
227/227 [==============================] - 0s 783us/step - loss: 0.0828 - accuracy: 0.9554 - mae: 0.0828 - pearson_correlation: 0.7894 - euclidean_distance: 0.1342
Epoch 311/350
227/227 [==============================] - 0s 781us/step - loss: 0.0846 - accuracy: 0.9554 - mae: 0.0846 - pearson_correlation: 0.7831 - euclidean_distance: 0.1372
Epoch 312/350
227/227 [==============================] - 0s 787us/step - loss: 0.0841 - accuracy: 0.9550 - mae: 0.0841 - pearson_correlation: 0.7826 - euclidean_distance: 0.1366
Epoch 313/350
227/227 [==============================] - 0s 787us/step - loss: 0.0812 - accuracy: 0.9554 - mae: 0.0812 - pearson_correlation: 0.7950 - euclidean_distance: 0.1323
Epoch 314/350
227/227 [==============================] - 0s 789us/step - loss: 0.0805 - accuracy: 0.9554 - mae: 0.0805 - pearson_correlation: 0.7940 - euclidean_distance: 0.1309
Epoch 315/350
227/227 [==============================] - 0s 789us/step - loss: 0.0817 - accuracy: 0.9554 - mae: 0.0817 - pearson_correlation: 0.7919 - euclidean_distance: 0.1327
Epoch 316/350
227/227 [==============================] - 0s 790us/step - loss: 0.0836 - accuracy: 0.9554 - mae: 0.0836 - pearson_correlation: 0.7847 - euclidean_distance: 0.1356
Epoch 317/350
227/227 [==============================] - 0s 783us/step - loss: 0.0826 - accuracy: 0.9554 - mae: 0.0826 - pearson_correlation: 0.7875 - euclidean_distance: 0.1344
Epoch 318/350
227/227 [==============================] - 0s 786us/step - loss: 0.0804 - accuracy: 0.9554 - mae: 0.0804 - pearson_correlation: 0.7929 - euclidean_distance: 0.1306
Epoch 319/350
227/227 [==============================] - 0s 785us/step - loss: 0.0821 - accuracy: 0.9554 - mae: 0.0821 - pearson_correlation: 0.7867 - euclidean_distance: 0.1330
Epoch 320/350
227/227 [==============================] - 0s 783us/step - loss: 0.0817 - accuracy: 0.9554 - mae: 0.0817 - pearson_correlation: 0.7861 - euclidean_distance: 0.1326
Epoch 321/350
227/227 [==============================] - 0s 789us/step - loss: 0.0816 - accuracy: 0.9546 - mae: 0.0816 - pearson_correlation: 0.7866 - euclidean_distance: 0.1326
Epoch 322/350
227/227 [==============================] - 0s 787us/step - loss: 0.0830 - accuracy: 0.9554 - mae: 0.0830 - pearson_correlation: 0.7830 - euclidean_distance: 0.1345
Epoch 323/350
227/227 [==============================] - 0s 786us/step - loss: 0.0820 - accuracy: 0.9546 - mae: 0.0820 - pearson_correlation: 0.7890 - euclidean_distance: 0.1333
Epoch 324/350
227/227 [==============================] - 0s 785us/step - loss: 0.0826 - accuracy: 0.9554 - mae: 0.0826 - pearson_correlation: 0.7876 - euclidean_distance: 0.1347
Epoch 325/350
227/227 [==============================] - 0s 784us/step - loss: 0.0828 - accuracy: 0.9554 - mae: 0.0828 - pearson_correlation: 0.7872 - euclidean_distance: 0.1345
Epoch 326/350
227/227 [==============================] - 0s 785us/step - loss: 0.0814 - accuracy: 0.9554 - mae: 0.0814 - pearson_correlation: 0.7878 - euclidean_distance: 0.1330
Epoch 327/350
227/227 [==============================] - 0s 786us/step - loss: 0.0828 - accuracy: 0.9550 - mae: 0.0828 - pearson_correlation: 0.7883 - euclidean_distance: 0.1345
Epoch 328/350
227/227 [==============================] - 0s 787us/step - loss: 0.0814 - accuracy: 0.9554 - mae: 0.0814 - pearson_correlation: 0.7897 - euclidean_distance: 0.1326
Epoch 329/350
227/227 [==============================] - 0s 788us/step - loss: 0.0817 - accuracy: 0.9554 - mae: 0.0817 - pearson_correlation: 0.7933 - euclidean_distance: 0.1327
Epoch 330/350
227/227 [==============================] - 0s 787us/step - loss: 0.0838 - accuracy: 0.9546 - mae: 0.0838 - pearson_correlation: 0.7853 - euclidean_distance: 0.1365
Epoch 331/350
227/227 [==============================] - 0s 785us/step - loss: 0.0825 - accuracy: 0.9550 - mae: 0.0825 - pearson_correlation: 0.7889 - euclidean_distance: 0.1338
Epoch 332/350
227/227 [==============================] - 0s 784us/step - loss: 0.0812 - accuracy: 0.9554 - mae: 0.0812 - pearson_correlation: 0.7913 - euclidean_distance: 0.1320
Epoch 333/350
227/227 [==============================] - 0s 782us/step - loss: 0.0815 - accuracy: 0.9554 - mae: 0.0815 - pearson_correlation: 0.7916 - euclidean_distance: 0.1327
Epoch 334/350
227/227 [==============================] - 0s 780us/step - loss: 0.0820 - accuracy: 0.9550 - mae: 0.0820 - pearson_correlation: 0.7860 - euclidean_distance: 0.1341
Epoch 335/350
227/227 [==============================] - 0s 784us/step - loss: 0.0817 - accuracy: 0.9550 - mae: 0.0817 - pearson_correlation: 0.7883 - euclidean_distance: 0.1331
Epoch 336/350
227/227 [==============================] - 0s 783us/step - loss: 0.0797 - accuracy: 0.9554 - mae: 0.0797 - pearson_correlation: 0.7953 - euclidean_distance: 0.1300
Epoch 337/350
227/227 [==============================] - 0s 784us/step - loss: 0.0812 - accuracy: 0.9554 - mae: 0.0812 - pearson_correlation: 0.7864 - euclidean_distance: 0.1327
Epoch 338/350
227/227 [==============================] - 0s 775us/step - loss: 0.0815 - accuracy: 0.9550 - mae: 0.0815 - pearson_correlation: 0.7902 - euclidean_distance: 0.1323
Epoch 339/350
227/227 [==============================] - 0s 776us/step - loss: 0.0844 - accuracy: 0.9554 - mae: 0.0844 - pearson_correlation: 0.7848 - euclidean_distance: 0.1371
Epoch 340/350
227/227 [==============================] - 0s 783us/step - loss: 0.0828 - accuracy: 0.9550 - mae: 0.0828 - pearson_correlation: 0.7869 - euclidean_distance: 0.1341
Epoch 341/350
227/227 [==============================] - 0s 783us/step - loss: 0.0822 - accuracy: 0.9554 - mae: 0.0822 - pearson_correlation: 0.7825 - euclidean_distance: 0.1338
Epoch 342/350
227/227 [==============================] - 0s 781us/step - loss: 0.0806 - accuracy: 0.9554 - mae: 0.0806 - pearson_correlation: 0.7877 - euclidean_distance: 0.1315
Epoch 343/350
227/227 [==============================] - 0s 783us/step - loss: 0.0805 - accuracy: 0.9554 - mae: 0.0805 - pearson_correlation: 0.7888 - euclidean_distance: 0.1310
Epoch 344/350
227/227 [==============================] - 0s 784us/step - loss: 0.0799 - accuracy: 0.9554 - mae: 0.0799 - pearson_correlation: 0.7910 - euclidean_distance: 0.1306
Epoch 345/350
227/227 [==============================] - 0s 784us/step - loss: 0.0806 - accuracy: 0.9554 - mae: 0.0806 - pearson_correlation: 0.7878 - euclidean_distance: 0.1310
Epoch 346/350
227/227 [==============================] - 0s 782us/step - loss: 0.0816 - accuracy: 0.9546 - mae: 0.0816 - pearson_correlation: 0.7893 - euclidean_distance: 0.1328
Epoch 347/350
227/227 [==============================] - 0s 786us/step - loss: 0.0812 - accuracy: 0.9554 - mae: 0.0812 - pearson_correlation: 0.7935 - euclidean_distance: 0.1321
Epoch 348/350
227/227 [==============================] - 0s 783us/step - loss: 0.0797 - accuracy: 0.9546 - mae: 0.0797 - pearson_correlation: 0.7903 - euclidean_distance: 0.1302
Epoch 349/350
227/227 [==============================] - 0s 783us/step - loss: 0.0819 - accuracy: 0.9554 - mae: 0.0819 - pearson_correlation: 0.7886 - euclidean_distance: 0.1328
Epoch 350/350
227/227 [==============================] - 0s 780us/step - loss: 0.0784 - accuracy: 0.9554 - mae: 0.0784 - pearson_correlation: 0.7932 - euclidean_distance: 0.1277
114/114 [==============================] - 0s 442us/step
Epoch 1/350
227/227 [==============================] - 1s 803us/step - loss: 0.7504 - accuracy: 0.0591 - mae: 0.7504 - pearson_correlation: -0.6353 - euclidean_distance: 1.2760
Epoch 2/350
227/227 [==============================] - 0s 793us/step - loss: 0.7306 - accuracy: 0.0622 - mae: 0.7306 - pearson_correlation: -0.6373 - euclidean_distance: 1.2434
Epoch 3/350
227/227 [==============================] - 0s 789us/step - loss: 0.7085 - accuracy: 0.0631 - mae: 0.7085 - pearson_correlation: -0.6311 - euclidean_distance: 1.2069
Epoch 4/350
227/227 [==============================] - 0s 793us/step - loss: 0.6881 - accuracy: 0.0683 - mae: 0.6881 - pearson_correlation: -0.6258 - euclidean_distance: 1.1709
Epoch 5/350
227/227 [==============================] - 0s 791us/step - loss: 0.6643 - accuracy: 0.0728 - mae: 0.6643 - pearson_correlation: -0.6254 - euclidean_distance: 1.1321
Epoch 6/350
227/227 [==============================] - 0s 788us/step - loss: 0.6458 - accuracy: 0.0736 - mae: 0.6458 - pearson_correlation: -0.6237 - euclidean_distance: 1.1008
Epoch 7/350
227/227 [==============================] - 0s 789us/step - loss: 0.6250 - accuracy: 0.0741 - mae: 0.6250 - pearson_correlation: -0.6152 - euclidean_distance: 1.0640
Epoch 8/350
227/227 [==============================] - 0s 788us/step - loss: 0.6037 - accuracy: 0.0820 - mae: 0.6037 - pearson_correlation: -0.6130 - euclidean_distance: 1.0265
Epoch 9/350
227/227 [==============================] - 0s 788us/step - loss: 0.5856 - accuracy: 0.0873 - mae: 0.5856 - pearson_correlation: -0.6113 - euclidean_distance: 0.9969
Epoch 10/350
227/227 [==============================] - 0s 786us/step - loss: 0.5658 - accuracy: 0.0944 - mae: 0.5658 - pearson_correlation: -0.5984 - euclidean_distance: 0.9618
Epoch 11/350
227/227 [==============================] - 0s 790us/step - loss: 0.5466 - accuracy: 0.0970 - mae: 0.5466 - pearson_correlation: -0.5946 - euclidean_distance: 0.9304
Epoch 12/350
227/227 [==============================] - 0s 789us/step - loss: 0.5258 - accuracy: 0.0983 - mae: 0.5258 - pearson_correlation: -0.5859 - euclidean_distance: 0.8935
Epoch 13/350
227/227 [==============================] - 0s 790us/step - loss: 0.5053 - accuracy: 0.1010 - mae: 0.5053 - pearson_correlation: -0.5839 - euclidean_distance: 0.8588
Epoch 14/350
227/227 [==============================] - 0s 787us/step - loss: 0.4875 - accuracy: 0.1168 - mae: 0.4875 - pearson_correlation: -0.5676 - euclidean_distance: 0.8264
Epoch 15/350
227/227 [==============================] - 0s 786us/step - loss: 0.4706 - accuracy: 0.1327 - mae: 0.4706 - pearson_correlation: -0.5602 - euclidean_distance: 0.7969
Epoch 16/350
227/227 [==============================] - 0s 789us/step - loss: 0.4554 - accuracy: 0.1424 - mae: 0.4554 - pearson_correlation: -0.5446 - euclidean_distance: 0.7693
Epoch 17/350
227/227 [==============================] - 0s 805us/step - loss: 0.4379 - accuracy: 0.1504 - mae: 0.4379 - pearson_correlation: -0.5258 - euclidean_distance: 0.7391
Epoch 18/350
227/227 [==============================] - 0s 796us/step - loss: 0.4180 - accuracy: 0.1667 - mae: 0.4180 - pearson_correlation: -0.5160 - euclidean_distance: 0.7051
Epoch 19/350
227/227 [==============================] - 0s 791us/step - loss: 0.4020 - accuracy: 0.1905 - mae: 0.4020 - pearson_correlation: -0.4906 - euclidean_distance: 0.6775
Epoch 20/350
227/227 [==============================] - 0s 793us/step - loss: 0.3849 - accuracy: 0.2169 - mae: 0.3849 - pearson_correlation: -0.4475 - euclidean_distance: 0.6461
Epoch 21/350
227/227 [==============================] - 0s 790us/step - loss: 0.3689 - accuracy: 0.2328 - mae: 0.3689 - pearson_correlation: -0.4198 - euclidean_distance: 0.6201
Epoch 22/350
227/227 [==============================] - 0s 788us/step - loss: 0.3509 - accuracy: 0.2769 - mae: 0.3509 - pearson_correlation: -0.3805 - euclidean_distance: 0.5870
Epoch 23/350
227/227 [==============================] - 0s 797us/step - loss: 0.3360 - accuracy: 0.3020 - mae: 0.3360 - pearson_correlation: -0.3350 - euclidean_distance: 0.5619
Epoch 24/350
227/227 [==============================] - 0s 787us/step - loss: 0.3213 - accuracy: 0.3347 - mae: 0.3213 - pearson_correlation: -0.2764 - euclidean_distance: 0.5329
Epoch 25/350
227/227 [==============================] - 0s 788us/step - loss: 0.3063 - accuracy: 0.3655 - mae: 0.3063 - pearson_correlation: -0.2322 - euclidean_distance: 0.5091
Epoch 26/350
227/227 [==============================] - 0s 785us/step - loss: 0.2939 - accuracy: 0.4096 - mae: 0.2939 - pearson_correlation: -0.1762 - euclidean_distance: 0.4861
Epoch 27/350
227/227 [==============================] - 0s 789us/step - loss: 0.2786 - accuracy: 0.4475 - mae: 0.2786 - pearson_correlation: -0.1084 - euclidean_distance: 0.4598
Epoch 28/350
227/227 [==============================] - 0s 788us/step - loss: 0.2690 - accuracy: 0.4797 - mae: 0.2690 - pearson_correlation: -0.0448 - euclidean_distance: 0.4416
Epoch 29/350
227/227 [==============================] - 0s 793us/step - loss: 0.2585 - accuracy: 0.5115 - mae: 0.2585 - pearson_correlation: -0.0030 - euclidean_distance: 0.4252
Epoch 30/350
227/227 [==============================] - 0s 856us/step - loss: 0.2460 - accuracy: 0.5542 - mae: 0.2460 - pearson_correlation: 0.0617 - euclidean_distance: 0.4025
Epoch 31/350
227/227 [==============================] - 0s 888us/step - loss: 0.2382 - accuracy: 0.5811 - mae: 0.2382 - pearson_correlation: 0.1018 - euclidean_distance: 0.3898
Epoch 32/350
227/227 [==============================] - 0s 882us/step - loss: 0.2295 - accuracy: 0.6107 - mae: 0.2295 - pearson_correlation: 0.1496 - euclidean_distance: 0.3744
Epoch 33/350
227/227 [==============================] - 0s 793us/step - loss: 0.2176 - accuracy: 0.6596 - mae: 0.2176 - pearson_correlation: 0.2055 - euclidean_distance: 0.3551
Epoch 34/350
227/227 [==============================] - 0s 790us/step - loss: 0.2123 - accuracy: 0.6662 - mae: 0.2123 - pearson_correlation: 0.2514 - euclidean_distance: 0.3462
Epoch 35/350
227/227 [==============================] - 0s 789us/step - loss: 0.2069 - accuracy: 0.6980 - mae: 0.2069 - pearson_correlation: 0.2669 - euclidean_distance: 0.3357
Epoch 36/350
227/227 [==============================] - 0s 785us/step - loss: 0.2013 - accuracy: 0.7183 - mae: 0.2013 - pearson_correlation: 0.3076 - euclidean_distance: 0.3261
Epoch 37/350
227/227 [==============================] - 0s 791us/step - loss: 0.1928 - accuracy: 0.7504 - mae: 0.1928 - pearson_correlation: 0.3428 - euclidean_distance: 0.3122
Epoch 38/350
227/227 [==============================] - 0s 789us/step - loss: 0.1849 - accuracy: 0.7685 - mae: 0.1849 - pearson_correlation: 0.3696 - euclidean_distance: 0.3015
Epoch 39/350
227/227 [==============================] - 0s 791us/step - loss: 0.1826 - accuracy: 0.7875 - mae: 0.1826 - pearson_correlation: 0.3975 - euclidean_distance: 0.2957
Epoch 40/350
227/227 [==============================] - 0s 791us/step - loss: 0.1775 - accuracy: 0.7972 - mae: 0.1775 - pearson_correlation: 0.4106 - euclidean_distance: 0.2876
Epoch 41/350
227/227 [==============================] - 0s 792us/step - loss: 0.1765 - accuracy: 0.8144 - mae: 0.1765 - pearson_correlation: 0.4202 - euclidean_distance: 0.2866
Epoch 42/350
227/227 [==============================] - 0s 789us/step - loss: 0.1747 - accuracy: 0.8272 - mae: 0.1747 - pearson_correlation: 0.4374 - euclidean_distance: 0.2823
Epoch 43/350
227/227 [==============================] - 0s 787us/step - loss: 0.1675 - accuracy: 0.8483 - mae: 0.1675 - pearson_correlation: 0.4658 - euclidean_distance: 0.2697
Epoch 44/350
227/227 [==============================] - 0s 787us/step - loss: 0.1663 - accuracy: 0.8558 - mae: 0.1663 - pearson_correlation: 0.4841 - euclidean_distance: 0.2679
Epoch 45/350
227/227 [==============================] - 0s 793us/step - loss: 0.1638 - accuracy: 0.8638 - mae: 0.1638 - pearson_correlation: 0.4953 - euclidean_distance: 0.2633
Epoch 46/350
227/227 [==============================] - 0s 789us/step - loss: 0.1610 - accuracy: 0.8708 - mae: 0.1610 - pearson_correlation: 0.5102 - euclidean_distance: 0.2587
Epoch 47/350
227/227 [==============================] - 0s 788us/step - loss: 0.1591 - accuracy: 0.8748 - mae: 0.1591 - pearson_correlation: 0.5131 - euclidean_distance: 0.2554
Epoch 48/350
227/227 [==============================] - 0s 787us/step - loss: 0.1565 - accuracy: 0.8818 - mae: 0.1565 - pearson_correlation: 0.5277 - euclidean_distance: 0.2517
Epoch 49/350
227/227 [==============================] - 0s 788us/step - loss: 0.1523 - accuracy: 0.8937 - mae: 0.1523 - pearson_correlation: 0.5500 - euclidean_distance: 0.2454
Epoch 50/350
227/227 [==============================] - 0s 788us/step - loss: 0.1488 - accuracy: 0.8986 - mae: 0.1488 - pearson_correlation: 0.5627 - euclidean_distance: 0.2391
Epoch 51/350
227/227 [==============================] - 0s 791us/step - loss: 0.1511 - accuracy: 0.9026 - mae: 0.1511 - pearson_correlation: 0.5541 - euclidean_distance: 0.2432
Epoch 52/350
227/227 [==============================] - 0s 788us/step - loss: 0.1493 - accuracy: 0.9056 - mae: 0.1493 - pearson_correlation: 0.5685 - euclidean_distance: 0.2401
Epoch 53/350
227/227 [==============================] - 0s 789us/step - loss: 0.1479 - accuracy: 0.9056 - mae: 0.1479 - pearson_correlation: 0.5692 - euclidean_distance: 0.2378
Epoch 54/350
227/227 [==============================] - 0s 786us/step - loss: 0.1475 - accuracy: 0.9131 - mae: 0.1475 - pearson_correlation: 0.5762 - euclidean_distance: 0.2369
Epoch 55/350
227/227 [==============================] - 0s 787us/step - loss: 0.1455 - accuracy: 0.9180 - mae: 0.1455 - pearson_correlation: 0.5905 - euclidean_distance: 0.2329
Epoch 56/350
227/227 [==============================] - 0s 788us/step - loss: 0.1439 - accuracy: 0.9237 - mae: 0.1439 - pearson_correlation: 0.5923 - euclidean_distance: 0.2305
Epoch 57/350
227/227 [==============================] - 0s 786us/step - loss: 0.1401 - accuracy: 0.9184 - mae: 0.1401 - pearson_correlation: 0.6042 - euclidean_distance: 0.2244
Epoch 58/350
227/227 [==============================] - 0s 787us/step - loss: 0.1401 - accuracy: 0.9189 - mae: 0.1401 - pearson_correlation: 0.6076 - euclidean_distance: 0.2242
Epoch 59/350
227/227 [==============================] - 0s 803us/step - loss: 0.1399 - accuracy: 0.9281 - mae: 0.1399 - pearson_correlation: 0.6165 - euclidean_distance: 0.2236
Epoch 60/350
227/227 [==============================] - 0s 785us/step - loss: 0.1378 - accuracy: 0.9277 - mae: 0.1378 - pearson_correlation: 0.6136 - euclidean_distance: 0.2214
Epoch 61/350
227/227 [==============================] - 0s 788us/step - loss: 0.1384 - accuracy: 0.9250 - mae: 0.1384 - pearson_correlation: 0.6173 - euclidean_distance: 0.2223
Epoch 62/350
227/227 [==============================] - 0s 788us/step - loss: 0.1394 - accuracy: 0.9299 - mae: 0.1394 - pearson_correlation: 0.6198 - euclidean_distance: 0.2233
Epoch 63/350
227/227 [==============================] - 0s 787us/step - loss: 0.1357 - accuracy: 0.9281 - mae: 0.1357 - pearson_correlation: 0.6291 - euclidean_distance: 0.2169
Epoch 64/350
227/227 [==============================] - 0s 788us/step - loss: 0.1365 - accuracy: 0.9330 - mae: 0.1365 - pearson_correlation: 0.6235 - euclidean_distance: 0.2185
Epoch 65/350
227/227 [==============================] - 0s 784us/step - loss: 0.1381 - accuracy: 0.9312 - mae: 0.1381 - pearson_correlation: 0.6249 - euclidean_distance: 0.2199
Epoch 66/350
227/227 [==============================] - 0s 786us/step - loss: 0.1352 - accuracy: 0.9347 - mae: 0.1352 - pearson_correlation: 0.6287 - euclidean_distance: 0.2166
Epoch 67/350
227/227 [==============================] - 0s 786us/step - loss: 0.1329 - accuracy: 0.9290 - mae: 0.1329 - pearson_correlation: 0.6348 - euclidean_distance: 0.2129
Epoch 68/350
227/227 [==============================] - 0s 784us/step - loss: 0.1339 - accuracy: 0.9369 - mae: 0.1339 - pearson_correlation: 0.6386 - euclidean_distance: 0.2137
Epoch 69/350
227/227 [==============================] - 0s 788us/step - loss: 0.1339 - accuracy: 0.9339 - mae: 0.1339 - pearson_correlation: 0.6331 - euclidean_distance: 0.2143
Epoch 70/350
227/227 [==============================] - 0s 787us/step - loss: 0.1306 - accuracy: 0.9374 - mae: 0.1306 - pearson_correlation: 0.6413 - euclidean_distance: 0.2096
Epoch 71/350
227/227 [==============================] - 0s 787us/step - loss: 0.1339 - accuracy: 0.9374 - mae: 0.1339 - pearson_correlation: 0.6407 - euclidean_distance: 0.2142
Epoch 72/350
227/227 [==============================] - 0s 799us/step - loss: 0.1300 - accuracy: 0.9365 - mae: 0.1300 - pearson_correlation: 0.6451 - euclidean_distance: 0.2082
Epoch 73/350
227/227 [==============================] - 0s 793us/step - loss: 0.1305 - accuracy: 0.9405 - mae: 0.1305 - pearson_correlation: 0.6499 - euclidean_distance: 0.2084
Epoch 74/350
227/227 [==============================] - 0s 789us/step - loss: 0.1291 - accuracy: 0.9383 - mae: 0.1291 - pearson_correlation: 0.6572 - euclidean_distance: 0.2063
Epoch 75/350
227/227 [==============================] - 0s 787us/step - loss: 0.1316 - accuracy: 0.9365 - mae: 0.1316 - pearson_correlation: 0.6505 - euclidean_distance: 0.2095
Epoch 76/350
227/227 [==============================] - 0s 789us/step - loss: 0.1259 - accuracy: 0.9422 - mae: 0.1259 - pearson_correlation: 0.6604 - euclidean_distance: 0.2022
Epoch 77/350
227/227 [==============================] - 0s 785us/step - loss: 0.1277 - accuracy: 0.9431 - mae: 0.1277 - pearson_correlation: 0.6622 - euclidean_distance: 0.2047
Epoch 78/350
227/227 [==============================] - 0s 792us/step - loss: 0.1257 - accuracy: 0.9414 - mae: 0.1257 - pearson_correlation: 0.6681 - euclidean_distance: 0.2007
Epoch 79/350
227/227 [==============================] - 0s 791us/step - loss: 0.1281 - accuracy: 0.9422 - mae: 0.1281 - pearson_correlation: 0.6614 - euclidean_distance: 0.2050
Epoch 80/350
227/227 [==============================] - 0s 787us/step - loss: 0.1283 - accuracy: 0.9409 - mae: 0.1283 - pearson_correlation: 0.6568 - euclidean_distance: 0.2040
Epoch 81/350
227/227 [==============================] - 0s 786us/step - loss: 0.1241 - accuracy: 0.9400 - mae: 0.1241 - pearson_correlation: 0.6694 - euclidean_distance: 0.1987
Epoch 82/350
227/227 [==============================] - 0s 786us/step - loss: 0.1246 - accuracy: 0.9449 - mae: 0.1246 - pearson_correlation: 0.6705 - euclidean_distance: 0.1985
Epoch 83/350
227/227 [==============================] - 0s 786us/step - loss: 0.1215 - accuracy: 0.9431 - mae: 0.1215 - pearson_correlation: 0.6735 - euclidean_distance: 0.1943
Epoch 84/350
227/227 [==============================] - 0s 787us/step - loss: 0.1250 - accuracy: 0.9458 - mae: 0.1250 - pearson_correlation: 0.6732 - euclidean_distance: 0.1992
Epoch 85/350
227/227 [==============================] - 0s 788us/step - loss: 0.1214 - accuracy: 0.9427 - mae: 0.1214 - pearson_correlation: 0.6754 - euclidean_distance: 0.1941
Epoch 86/350
227/227 [==============================] - 0s 789us/step - loss: 0.1235 - accuracy: 0.9466 - mae: 0.1235 - pearson_correlation: 0.6744 - euclidean_distance: 0.1972
Epoch 87/350
227/227 [==============================] - 0s 787us/step - loss: 0.1238 - accuracy: 0.9471 - mae: 0.1238 - pearson_correlation: 0.6716 - euclidean_distance: 0.1976
Epoch 88/350
227/227 [==============================] - 0s 788us/step - loss: 0.1209 - accuracy: 0.9466 - mae: 0.1209 - pearson_correlation: 0.6767 - euclidean_distance: 0.1935
Epoch 89/350
227/227 [==============================] - 0s 785us/step - loss: 0.1226 - accuracy: 0.9462 - mae: 0.1226 - pearson_correlation: 0.6772 - euclidean_distance: 0.1954
Epoch 90/350
227/227 [==============================] - 0s 791us/step - loss: 0.1210 - accuracy: 0.9453 - mae: 0.1210 - pearson_correlation: 0.6905 - euclidean_distance: 0.1924
Epoch 91/350
227/227 [==============================] - 0s 787us/step - loss: 0.1207 - accuracy: 0.9444 - mae: 0.1207 - pearson_correlation: 0.6784 - euclidean_distance: 0.1926
Epoch 92/350
227/227 [==============================] - 0s 787us/step - loss: 0.1185 - accuracy: 0.9480 - mae: 0.1185 - pearson_correlation: 0.6880 - euclidean_distance: 0.1894
Epoch 93/350
227/227 [==============================] - 0s 788us/step - loss: 0.1205 - accuracy: 0.9453 - mae: 0.1205 - pearson_correlation: 0.6862 - euclidean_distance: 0.1924
Epoch 94/350
227/227 [==============================] - 0s 789us/step - loss: 0.1188 - accuracy: 0.9484 - mae: 0.1188 - pearson_correlation: 0.6896 - euclidean_distance: 0.1895
Epoch 95/350
227/227 [==============================] - 0s 788us/step - loss: 0.1188 - accuracy: 0.9475 - mae: 0.1188 - pearson_correlation: 0.6882 - euclidean_distance: 0.1900
Epoch 96/350
227/227 [==============================] - 0s 790us/step - loss: 0.1196 - accuracy: 0.9475 - mae: 0.1196 - pearson_correlation: 0.6909 - euclidean_distance: 0.1901
Epoch 97/350
227/227 [==============================] - 0s 788us/step - loss: 0.1195 - accuracy: 0.9471 - mae: 0.1195 - pearson_correlation: 0.6865 - euclidean_distance: 0.1900
Epoch 98/350
227/227 [==============================] - 0s 786us/step - loss: 0.1174 - accuracy: 0.9489 - mae: 0.1174 - pearson_correlation: 0.6912 - euclidean_distance: 0.1872
Epoch 99/350
227/227 [==============================] - 0s 783us/step - loss: 0.1166 - accuracy: 0.9484 - mae: 0.1166 - pearson_correlation: 0.7002 - euclidean_distance: 0.1851
Epoch 100/350
227/227 [==============================] - 0s 786us/step - loss: 0.1168 - accuracy: 0.9480 - mae: 0.1168 - pearson_correlation: 0.7064 - euclidean_distance: 0.1865
Epoch 101/350
227/227 [==============================] - 0s 788us/step - loss: 0.1190 - accuracy: 0.9497 - mae: 0.1190 - pearson_correlation: 0.6939 - euclidean_distance: 0.1899
Epoch 102/350
227/227 [==============================] - 0s 786us/step - loss: 0.1185 - accuracy: 0.9511 - mae: 0.1185 - pearson_correlation: 0.6923 - euclidean_distance: 0.1887
Epoch 103/350
227/227 [==============================] - 0s 787us/step - loss: 0.1172 - accuracy: 0.9484 - mae: 0.1172 - pearson_correlation: 0.6924 - euclidean_distance: 0.1866
Epoch 104/350
227/227 [==============================] - 0s 784us/step - loss: 0.1129 - accuracy: 0.9502 - mae: 0.1129 - pearson_correlation: 0.7120 - euclidean_distance: 0.1805
Epoch 105/350
227/227 [==============================] - 0s 785us/step - loss: 0.1144 - accuracy: 0.9506 - mae: 0.1144 - pearson_correlation: 0.7056 - euclidean_distance: 0.1818
Epoch 106/350
227/227 [==============================] - 0s 784us/step - loss: 0.1139 - accuracy: 0.9506 - mae: 0.1139 - pearson_correlation: 0.7079 - euclidean_distance: 0.1817
Epoch 107/350
227/227 [==============================] - 0s 789us/step - loss: 0.1151 - accuracy: 0.9502 - mae: 0.1151 - pearson_correlation: 0.7097 - euclidean_distance: 0.1833
Epoch 108/350
227/227 [==============================] - 0s 787us/step - loss: 0.1163 - accuracy: 0.9497 - mae: 0.1163 - pearson_correlation: 0.7035 - euclidean_distance: 0.1855
Epoch 109/350
227/227 [==============================] - 0s 785us/step - loss: 0.1143 - accuracy: 0.9497 - mae: 0.1143 - pearson_correlation: 0.7072 - euclidean_distance: 0.1818
Epoch 110/350
227/227 [==============================] - 0s 787us/step - loss: 0.1145 - accuracy: 0.9511 - mae: 0.1145 - pearson_correlation: 0.7032 - euclidean_distance: 0.1831
Epoch 111/350
227/227 [==============================] - 0s 788us/step - loss: 0.1163 - accuracy: 0.9502 - mae: 0.1163 - pearson_correlation: 0.6991 - euclidean_distance: 0.1849
Epoch 112/350
227/227 [==============================] - 0s 785us/step - loss: 0.1145 - accuracy: 0.9497 - mae: 0.1145 - pearson_correlation: 0.7076 - euclidean_distance: 0.1822
Epoch 113/350
227/227 [==============================] - 0s 790us/step - loss: 0.1123 - accuracy: 0.9515 - mae: 0.1123 - pearson_correlation: 0.7094 - euclidean_distance: 0.1791
Epoch 114/350
227/227 [==============================] - 0s 786us/step - loss: 0.1129 - accuracy: 0.9497 - mae: 0.1129 - pearson_correlation: 0.7052 - euclidean_distance: 0.1803
Epoch 115/350
227/227 [==============================] - 0s 787us/step - loss: 0.1168 - accuracy: 0.9493 - mae: 0.1168 - pearson_correlation: 0.6977 - euclidean_distance: 0.1859
Epoch 116/350
227/227 [==============================] - 0s 785us/step - loss: 0.1119 - accuracy: 0.9506 - mae: 0.1119 - pearson_correlation: 0.7112 - euclidean_distance: 0.1783
Epoch 117/350
227/227 [==============================] - 0s 787us/step - loss: 0.1111 - accuracy: 0.9502 - mae: 0.1111 - pearson_correlation: 0.7079 - euclidean_distance: 0.1775
Epoch 118/350
227/227 [==============================] - 0s 854us/step - loss: 0.1117 - accuracy: 0.9497 - mae: 0.1117 - pearson_correlation: 0.7137 - euclidean_distance: 0.1786
Epoch 119/350
227/227 [==============================] - 0s 880us/step - loss: 0.1111 - accuracy: 0.9497 - mae: 0.1111 - pearson_correlation: 0.7156 - euclidean_distance: 0.1773
Epoch 120/350
227/227 [==============================] - 0s 889us/step - loss: 0.1114 - accuracy: 0.9519 - mae: 0.1114 - pearson_correlation: 0.7178 - euclidean_distance: 0.1769
Epoch 121/350
227/227 [==============================] - 0s 792us/step - loss: 0.1124 - accuracy: 0.9493 - mae: 0.1124 - pearson_correlation: 0.7139 - euclidean_distance: 0.1790
Epoch 122/350
227/227 [==============================] - 0s 790us/step - loss: 0.1100 - accuracy: 0.9533 - mae: 0.1100 - pearson_correlation: 0.7193 - euclidean_distance: 0.1755
Epoch 123/350
227/227 [==============================] - 0s 793us/step - loss: 0.1097 - accuracy: 0.9519 - mae: 0.1097 - pearson_correlation: 0.7164 - euclidean_distance: 0.1748
Epoch 124/350
227/227 [==============================] - 0s 790us/step - loss: 0.1110 - accuracy: 0.9524 - mae: 0.1110 - pearson_correlation: 0.7149 - euclidean_distance: 0.1771
Epoch 125/350
227/227 [==============================] - 0s 790us/step - loss: 0.1101 - accuracy: 0.9524 - mae: 0.1101 - pearson_correlation: 0.7146 - euclidean_distance: 0.1762
Epoch 126/350
227/227 [==============================] - 0s 787us/step - loss: 0.1098 - accuracy: 0.9515 - mae: 0.1098 - pearson_correlation: 0.7159 - euclidean_distance: 0.1755
Epoch 127/350
227/227 [==============================] - 0s 790us/step - loss: 0.1058 - accuracy: 0.9515 - mae: 0.1058 - pearson_correlation: 0.7338 - euclidean_distance: 0.1691
Epoch 128/350
227/227 [==============================] - 0s 789us/step - loss: 0.1082 - accuracy: 0.9502 - mae: 0.1082 - pearson_correlation: 0.7122 - euclidean_distance: 0.1729
Epoch 129/350
227/227 [==============================] - 0s 787us/step - loss: 0.1106 - accuracy: 0.9515 - mae: 0.1106 - pearson_correlation: 0.7105 - euclidean_distance: 0.1757
Epoch 130/350
227/227 [==============================] - 0s 787us/step - loss: 0.1096 - accuracy: 0.9515 - mae: 0.1096 - pearson_correlation: 0.7155 - euclidean_distance: 0.1746
Epoch 131/350
227/227 [==============================] - 0s 786us/step - loss: 0.1094 - accuracy: 0.9524 - mae: 0.1094 - pearson_correlation: 0.7198 - euclidean_distance: 0.1741
Epoch 132/350
227/227 [==============================] - 0s 788us/step - loss: 0.1085 - accuracy: 0.9515 - mae: 0.1085 - pearson_correlation: 0.7233 - euclidean_distance: 0.1730
Epoch 133/350
227/227 [==============================] - 0s 794us/step - loss: 0.1079 - accuracy: 0.9506 - mae: 0.1079 - pearson_correlation: 0.7274 - euclidean_distance: 0.1717
Epoch 134/350
227/227 [==============================] - 0s 792us/step - loss: 0.1089 - accuracy: 0.9519 - mae: 0.1089 - pearson_correlation: 0.7193 - euclidean_distance: 0.1729
Epoch 135/350
227/227 [==============================] - 0s 786us/step - loss: 0.1053 - accuracy: 0.9541 - mae: 0.1053 - pearson_correlation: 0.7319 - euclidean_distance: 0.1685
Epoch 136/350
227/227 [==============================] - 0s 789us/step - loss: 0.1071 - accuracy: 0.9537 - mae: 0.1071 - pearson_correlation: 0.7285 - euclidean_distance: 0.1709
Epoch 137/350
227/227 [==============================] - 0s 791us/step - loss: 0.1072 - accuracy: 0.9546 - mae: 0.1072 - pearson_correlation: 0.7223 - euclidean_distance: 0.1712
Epoch 138/350
227/227 [==============================] - 0s 789us/step - loss: 0.1063 - accuracy: 0.9533 - mae: 0.1063 - pearson_correlation: 0.7282 - euclidean_distance: 0.1695
Epoch 139/350
227/227 [==============================] - 0s 791us/step - loss: 0.1047 - accuracy: 0.9497 - mae: 0.1047 - pearson_correlation: 0.7341 - euclidean_distance: 0.1671
Epoch 140/350
227/227 [==============================] - 0s 792us/step - loss: 0.1070 - accuracy: 0.9497 - mae: 0.1070 - pearson_correlation: 0.7213 - euclidean_distance: 0.1704
Epoch 141/350
227/227 [==============================] - 0s 788us/step - loss: 0.1065 - accuracy: 0.9546 - mae: 0.1065 - pearson_correlation: 0.7260 - euclidean_distance: 0.1699
Epoch 142/350
227/227 [==============================] - 0s 789us/step - loss: 0.1039 - accuracy: 0.9546 - mae: 0.1039 - pearson_correlation: 0.7384 - euclidean_distance: 0.1653
Epoch 143/350
227/227 [==============================] - 0s 787us/step - loss: 0.1045 - accuracy: 0.9546 - mae: 0.1045 - pearson_correlation: 0.7339 - euclidean_distance: 0.1667
Epoch 144/350
227/227 [==============================] - 0s 786us/step - loss: 0.1060 - accuracy: 0.9550 - mae: 0.1060 - pearson_correlation: 0.7275 - euclidean_distance: 0.1692
Epoch 145/350
227/227 [==============================] - 0s 787us/step - loss: 0.1064 - accuracy: 0.9533 - mae: 0.1064 - pearson_correlation: 0.7288 - euclidean_distance: 0.1693
Epoch 146/350
227/227 [==============================] - 0s 787us/step - loss: 0.1040 - accuracy: 0.9533 - mae: 0.1040 - pearson_correlation: 0.7406 - euclidean_distance: 0.1648
Epoch 147/350
227/227 [==============================] - 0s 786us/step - loss: 0.1035 - accuracy: 0.9546 - mae: 0.1035 - pearson_correlation: 0.7375 - euclidean_distance: 0.1651
Epoch 148/350
227/227 [==============================] - 0s 788us/step - loss: 0.1037 - accuracy: 0.9537 - mae: 0.1037 - pearson_correlation: 0.7325 - euclidean_distance: 0.1657
Epoch 149/350
227/227 [==============================] - 0s 781us/step - loss: 0.1044 - accuracy: 0.9555 - mae: 0.1044 - pearson_correlation: 0.7324 - euclidean_distance: 0.1658
Epoch 150/350
227/227 [==============================] - 0s 787us/step - loss: 0.1064 - accuracy: 0.9533 - mae: 0.1064 - pearson_correlation: 0.7267 - euclidean_distance: 0.1695
Epoch 151/350
227/227 [==============================] - 0s 787us/step - loss: 0.1027 - accuracy: 0.9519 - mae: 0.1027 - pearson_correlation: 0.7360 - euclidean_distance: 0.1636
Epoch 152/350
227/227 [==============================] - 0s 787us/step - loss: 0.1032 - accuracy: 0.9546 - mae: 0.1032 - pearson_correlation: 0.7333 - euclidean_distance: 0.1646
Epoch 153/350
227/227 [==============================] - 0s 786us/step - loss: 0.0995 - accuracy: 0.9537 - mae: 0.0995 - pearson_correlation: 0.7480 - euclidean_distance: 0.1588
Epoch 154/350
227/227 [==============================] - 0s 787us/step - loss: 0.1040 - accuracy: 0.9537 - mae: 0.1040 - pearson_correlation: 0.7371 - euclidean_distance: 0.1664
Epoch 155/350
227/227 [==============================] - 0s 786us/step - loss: 0.1047 - accuracy: 0.9537 - mae: 0.1047 - pearson_correlation: 0.7425 - euclidean_distance: 0.1666
Epoch 156/350
227/227 [==============================] - 0s 787us/step - loss: 0.1033 - accuracy: 0.9515 - mae: 0.1033 - pearson_correlation: 0.7351 - euclidean_distance: 0.1650
Epoch 157/350
227/227 [==============================] - 0s 786us/step - loss: 0.1000 - accuracy: 0.9546 - mae: 0.1000 - pearson_correlation: 0.7462 - euclidean_distance: 0.1598
Epoch 158/350
227/227 [==============================] - 0s 787us/step - loss: 0.1003 - accuracy: 0.9546 - mae: 0.1003 - pearson_correlation: 0.7463 - euclidean_distance: 0.1601
Epoch 159/350
227/227 [==============================] - 0s 788us/step - loss: 0.1027 - accuracy: 0.9541 - mae: 0.1027 - pearson_correlation: 0.7369 - euclidean_distance: 0.1638
Epoch 160/350
227/227 [==============================] - 0s 785us/step - loss: 0.1028 - accuracy: 0.9541 - mae: 0.1028 - pearson_correlation: 0.7349 - euclidean_distance: 0.1638
Epoch 161/350
227/227 [==============================] - 0s 784us/step - loss: 0.1017 - accuracy: 0.9546 - mae: 0.1017 - pearson_correlation: 0.7435 - euclidean_distance: 0.1621
Epoch 162/350
227/227 [==============================] - 0s 789us/step - loss: 0.1011 - accuracy: 0.9546 - mae: 0.1011 - pearson_correlation: 0.7425 - euclidean_distance: 0.1610
Epoch 163/350
227/227 [==============================] - 0s 786us/step - loss: 0.1013 - accuracy: 0.9533 - mae: 0.1013 - pearson_correlation: 0.7414 - euclidean_distance: 0.1619
Epoch 164/350
227/227 [==============================] - 0s 788us/step - loss: 0.1011 - accuracy: 0.9541 - mae: 0.1011 - pearson_correlation: 0.7447 - euclidean_distance: 0.1613
Epoch 165/350
227/227 [==============================] - 0s 786us/step - loss: 0.1005 - accuracy: 0.9519 - mae: 0.1005 - pearson_correlation: 0.7471 - euclidean_distance: 0.1600
Epoch 166/350
227/227 [==============================] - 0s 786us/step - loss: 0.1026 - accuracy: 0.9541 - mae: 0.1026 - pearson_correlation: 0.7368 - euclidean_distance: 0.1640
Epoch 167/350
227/227 [==============================] - 0s 785us/step - loss: 0.0986 - accuracy: 0.9555 - mae: 0.0986 - pearson_correlation: 0.7445 - euclidean_distance: 0.1575
Epoch 168/350
227/227 [==============================] - 0s 786us/step - loss: 0.0997 - accuracy: 0.9541 - mae: 0.0997 - pearson_correlation: 0.7453 - euclidean_distance: 0.1591
Epoch 169/350
227/227 [==============================] - 0s 785us/step - loss: 0.0996 - accuracy: 0.9541 - mae: 0.0996 - pearson_correlation: 0.7474 - euclidean_distance: 0.1590
Epoch 170/350
227/227 [==============================] - 0s 786us/step - loss: 0.1018 - accuracy: 0.9541 - mae: 0.1018 - pearson_correlation: 0.7370 - euclidean_distance: 0.1623
Epoch 171/350
227/227 [==============================] - 0s 785us/step - loss: 0.1016 - accuracy: 0.9550 - mae: 0.1016 - pearson_correlation: 0.7422 - euclidean_distance: 0.1617
Epoch 172/350
227/227 [==============================] - 0s 787us/step - loss: 0.1002 - accuracy: 0.9550 - mae: 0.1002 - pearson_correlation: 0.7487 - euclidean_distance: 0.1599
Epoch 173/350
227/227 [==============================] - 0s 793us/step - loss: 0.1005 - accuracy: 0.9550 - mae: 0.1005 - pearson_correlation: 0.7492 - euclidean_distance: 0.1600
Epoch 174/350
227/227 [==============================] - 0s 790us/step - loss: 0.0996 - accuracy: 0.9559 - mae: 0.0996 - pearson_correlation: 0.7467 - euclidean_distance: 0.1591
Epoch 175/350
227/227 [==============================] - 0s 789us/step - loss: 0.0998 - accuracy: 0.9546 - mae: 0.0998 - pearson_correlation: 0.7456 - euclidean_distance: 0.1590
Epoch 176/350
227/227 [==============================] - 0s 789us/step - loss: 0.1008 - accuracy: 0.9541 - mae: 0.1008 - pearson_correlation: 0.7480 - euclidean_distance: 0.1602
Epoch 177/350
227/227 [==============================] - 0s 785us/step - loss: 0.1011 - accuracy: 0.9555 - mae: 0.1011 - pearson_correlation: 0.7395 - euclidean_distance: 0.1606
Epoch 178/350
227/227 [==============================] - 0s 787us/step - loss: 0.0993 - accuracy: 0.9537 - mae: 0.0993 - pearson_correlation: 0.7444 - euclidean_distance: 0.1584
Epoch 179/350
227/227 [==============================] - 0s 787us/step - loss: 0.0975 - accuracy: 0.9528 - mae: 0.0975 - pearson_correlation: 0.7527 - euclidean_distance: 0.1558
Epoch 180/350
227/227 [==============================] - 0s 788us/step - loss: 0.0974 - accuracy: 0.9550 - mae: 0.0974 - pearson_correlation: 0.7537 - euclidean_distance: 0.1560
Epoch 181/350
227/227 [==============================] - 0s 784us/step - loss: 0.0969 - accuracy: 0.9555 - mae: 0.0969 - pearson_correlation: 0.7484 - euclidean_distance: 0.1550
Epoch 182/350
227/227 [==============================] - 0s 788us/step - loss: 0.0991 - accuracy: 0.9550 - mae: 0.0991 - pearson_correlation: 0.7462 - euclidean_distance: 0.1584
Epoch 183/350
227/227 [==============================] - 0s 785us/step - loss: 0.0961 - accuracy: 0.9546 - mae: 0.0961 - pearson_correlation: 0.7590 - euclidean_distance: 0.1526
Epoch 184/350
227/227 [==============================] - 0s 801us/step - loss: 0.0974 - accuracy: 0.9546 - mae: 0.0974 - pearson_correlation: 0.7504 - euclidean_distance: 0.1553
Epoch 185/350
227/227 [==============================] - 0s 787us/step - loss: 0.0991 - accuracy: 0.9550 - mae: 0.0991 - pearson_correlation: 0.7442 - euclidean_distance: 0.1577
Epoch 186/350
227/227 [==============================] - 0s 786us/step - loss: 0.0977 - accuracy: 0.9555 - mae: 0.0977 - pearson_correlation: 0.7529 - euclidean_distance: 0.1562
Epoch 187/350
227/227 [==============================] - 0s 787us/step - loss: 0.0979 - accuracy: 0.9533 - mae: 0.0979 - pearson_correlation: 0.7528 - euclidean_distance: 0.1566
Epoch 188/350
227/227 [==============================] - 0s 786us/step - loss: 0.0968 - accuracy: 0.9559 - mae: 0.0968 - pearson_correlation: 0.7528 - euclidean_distance: 0.1540
Epoch 189/350
227/227 [==============================] - 0s 795us/step - loss: 0.0954 - accuracy: 0.9555 - mae: 0.0954 - pearson_correlation: 0.7616 - euclidean_distance: 0.1520
Epoch 190/350
227/227 [==============================] - 0s 790us/step - loss: 0.0965 - accuracy: 0.9555 - mae: 0.0965 - pearson_correlation: 0.7570 - euclidean_distance: 0.1537
Epoch 191/350
227/227 [==============================] - 0s 789us/step - loss: 0.0966 - accuracy: 0.9559 - mae: 0.0966 - pearson_correlation: 0.7580 - euclidean_distance: 0.1540
Epoch 192/350
227/227 [==============================] - 0s 787us/step - loss: 0.0970 - accuracy: 0.9550 - mae: 0.0970 - pearson_correlation: 0.7538 - euclidean_distance: 0.1546
Epoch 193/350
227/227 [==============================] - 0s 787us/step - loss: 0.0947 - accuracy: 0.9541 - mae: 0.0947 - pearson_correlation: 0.7587 - euclidean_distance: 0.1512
Epoch 194/350
227/227 [==============================] - 0s 785us/step - loss: 0.0964 - accuracy: 0.9528 - mae: 0.0964 - pearson_correlation: 0.7551 - euclidean_distance: 0.1539
Epoch 195/350
227/227 [==============================] - 0s 785us/step - loss: 0.0948 - accuracy: 0.9541 - mae: 0.0948 - pearson_correlation: 0.7648 - euclidean_distance: 0.1510
Epoch 196/350
227/227 [==============================] - 0s 790us/step - loss: 0.0962 - accuracy: 0.9555 - mae: 0.0962 - pearson_correlation: 0.7583 - euclidean_distance: 0.1535
Epoch 197/350
227/227 [==============================] - 0s 787us/step - loss: 0.0966 - accuracy: 0.9541 - mae: 0.0966 - pearson_correlation: 0.7548 - euclidean_distance: 0.1543
Epoch 198/350
227/227 [==============================] - 0s 788us/step - loss: 0.0948 - accuracy: 0.9550 - mae: 0.0948 - pearson_correlation: 0.7606 - euclidean_distance: 0.1511
Epoch 199/350
227/227 [==============================] - 0s 784us/step - loss: 0.0975 - accuracy: 0.9550 - mae: 0.0975 - pearson_correlation: 0.7481 - euclidean_distance: 0.1564
Epoch 200/350
227/227 [==============================] - 0s 785us/step - loss: 0.0947 - accuracy: 0.9550 - mae: 0.0947 - pearson_correlation: 0.7588 - euclidean_distance: 0.1510
Epoch 201/350
227/227 [==============================] - 0s 784us/step - loss: 0.0926 - accuracy: 0.9546 - mae: 0.0926 - pearson_correlation: 0.7607 - euclidean_distance: 0.1485
Epoch 202/350
227/227 [==============================] - 0s 787us/step - loss: 0.0950 - accuracy: 0.9559 - mae: 0.0950 - pearson_correlation: 0.7553 - euclidean_distance: 0.1515
Epoch 203/350
227/227 [==============================] - 0s 790us/step - loss: 0.0950 - accuracy: 0.9546 - mae: 0.0950 - pearson_correlation: 0.7650 - euclidean_distance: 0.1513
Epoch 204/350
227/227 [==============================] - 0s 785us/step - loss: 0.0945 - accuracy: 0.9550 - mae: 0.0945 - pearson_correlation: 0.7612 - euclidean_distance: 0.1508
Epoch 205/350
227/227 [==============================] - 0s 786us/step - loss: 0.0929 - accuracy: 0.9550 - mae: 0.0929 - pearson_correlation: 0.7693 - euclidean_distance: 0.1488
Epoch 206/350
227/227 [==============================] - 0s 840us/step - loss: 0.0948 - accuracy: 0.9546 - mae: 0.0948 - pearson_correlation: 0.7620 - euclidean_distance: 0.1513
Epoch 207/350
227/227 [==============================] - 0s 884us/step - loss: 0.0941 - accuracy: 0.9550 - mae: 0.0941 - pearson_correlation: 0.7618 - euclidean_distance: 0.1499
Epoch 208/350
227/227 [==============================] - 0s 899us/step - loss: 0.0935 - accuracy: 0.9550 - mae: 0.0935 - pearson_correlation: 0.7605 - euclidean_distance: 0.1490
Epoch 209/350
227/227 [==============================] - 0s 797us/step - loss: 0.0947 - accuracy: 0.9555 - mae: 0.0947 - pearson_correlation: 0.7626 - euclidean_distance: 0.1512
Epoch 210/350
227/227 [==============================] - 0s 788us/step - loss: 0.0930 - accuracy: 0.9555 - mae: 0.0930 - pearson_correlation: 0.7695 - euclidean_distance: 0.1480
Epoch 211/350
227/227 [==============================] - 0s 788us/step - loss: 0.0963 - accuracy: 0.9563 - mae: 0.0963 - pearson_correlation: 0.7590 - euclidean_distance: 0.1531
Epoch 212/350
227/227 [==============================] - 0s 789us/step - loss: 0.0912 - accuracy: 0.9559 - mae: 0.0912 - pearson_correlation: 0.7671 - euclidean_distance: 0.1455
Epoch 213/350
227/227 [==============================] - 0s 788us/step - loss: 0.0919 - accuracy: 0.9559 - mae: 0.0919 - pearson_correlation: 0.7637 - euclidean_distance: 0.1467
Epoch 214/350
227/227 [==============================] - 0s 785us/step - loss: 0.0942 - accuracy: 0.9550 - mae: 0.0942 - pearson_correlation: 0.7623 - euclidean_distance: 0.1499
Epoch 215/350
227/227 [==============================] - 0s 787us/step - loss: 0.0941 - accuracy: 0.9555 - mae: 0.0941 - pearson_correlation: 0.7633 - euclidean_distance: 0.1497
Epoch 216/350
227/227 [==============================] - 0s 784us/step - loss: 0.0943 - accuracy: 0.9550 - mae: 0.0943 - pearson_correlation: 0.7607 - euclidean_distance: 0.1499
Epoch 217/350
227/227 [==============================] - 0s 789us/step - loss: 0.0925 - accuracy: 0.9550 - mae: 0.0925 - pearson_correlation: 0.7694 - euclidean_distance: 0.1476
Epoch 218/350
227/227 [==============================] - 0s 791us/step - loss: 0.0912 - accuracy: 0.9550 - mae: 0.0912 - pearson_correlation: 0.7693 - euclidean_distance: 0.1456
Epoch 219/350
227/227 [==============================] - 0s 785us/step - loss: 0.0918 - accuracy: 0.9550 - mae: 0.0918 - pearson_correlation: 0.7736 - euclidean_distance: 0.1461
Epoch 220/350
227/227 [==============================] - 0s 789us/step - loss: 0.0924 - accuracy: 0.9537 - mae: 0.0924 - pearson_correlation: 0.7637 - euclidean_distance: 0.1475
Epoch 221/350
227/227 [==============================] - 0s 789us/step - loss: 0.0905 - accuracy: 0.9559 - mae: 0.0905 - pearson_correlation: 0.7737 - euclidean_distance: 0.1446
Epoch 222/350
227/227 [==============================] - 0s 790us/step - loss: 0.0917 - accuracy: 0.9559 - mae: 0.0917 - pearson_correlation: 0.7682 - euclidean_distance: 0.1465
Epoch 223/350
227/227 [==============================] - 0s 786us/step - loss: 0.0906 - accuracy: 0.9550 - mae: 0.0906 - pearson_correlation: 0.7744 - euclidean_distance: 0.1449
Epoch 224/350
227/227 [==============================] - 0s 790us/step - loss: 0.0927 - accuracy: 0.9555 - mae: 0.0927 - pearson_correlation: 0.7702 - euclidean_distance: 0.1480
Epoch 225/350
227/227 [==============================] - 0s 789us/step - loss: 0.0909 - accuracy: 0.9559 - mae: 0.0909 - pearson_correlation: 0.7715 - euclidean_distance: 0.1456
Epoch 226/350
227/227 [==============================] - 0s 785us/step - loss: 0.0903 - accuracy: 0.9550 - mae: 0.0903 - pearson_correlation: 0.7757 - euclidean_distance: 0.1442
Epoch 227/350
227/227 [==============================] - 0s 789us/step - loss: 0.0932 - accuracy: 0.9555 - mae: 0.0932 - pearson_correlation: 0.7655 - euclidean_distance: 0.1487
Epoch 228/350
227/227 [==============================] - 0s 786us/step - loss: 0.0902 - accuracy: 0.9550 - mae: 0.0902 - pearson_correlation: 0.7789 - euclidean_distance: 0.1439
Epoch 229/350
227/227 [==============================] - 0s 790us/step - loss: 0.0910 - accuracy: 0.9555 - mae: 0.0910 - pearson_correlation: 0.7726 - euclidean_distance: 0.1451
Epoch 230/350
227/227 [==============================] - 0s 788us/step - loss: 0.0918 - accuracy: 0.9559 - mae: 0.0918 - pearson_correlation: 0.7667 - euclidean_distance: 0.1463
Epoch 231/350
227/227 [==============================] - 0s 787us/step - loss: 0.0938 - accuracy: 0.9559 - mae: 0.0938 - pearson_correlation: 0.7641 - euclidean_distance: 0.1491
Epoch 232/350
227/227 [==============================] - 0s 786us/step - loss: 0.0919 - accuracy: 0.9559 - mae: 0.0919 - pearson_correlation: 0.7604 - euclidean_distance: 0.1469
Epoch 233/350
227/227 [==============================] - 0s 788us/step - loss: 0.0899 - accuracy: 0.9555 - mae: 0.0899 - pearson_correlation: 0.7726 - euclidean_distance: 0.1436
Epoch 234/350
227/227 [==============================] - 0s 789us/step - loss: 0.0895 - accuracy: 0.9550 - mae: 0.0895 - pearson_correlation: 0.7717 - euclidean_distance: 0.1433
Epoch 235/350
227/227 [==============================] - 0s 789us/step - loss: 0.0890 - accuracy: 0.9541 - mae: 0.0890 - pearson_correlation: 0.7770 - euclidean_distance: 0.1425
Epoch 236/350
227/227 [==============================] - 0s 801us/step - loss: 0.0908 - accuracy: 0.9559 - mae: 0.0908 - pearson_correlation: 0.7669 - euclidean_distance: 0.1448
Epoch 237/350
227/227 [==============================] - 0s 788us/step - loss: 0.0921 - accuracy: 0.9550 - mae: 0.0921 - pearson_correlation: 0.7708 - euclidean_distance: 0.1466
Epoch 238/350
227/227 [==============================] - 0s 787us/step - loss: 0.0901 - accuracy: 0.9559 - mae: 0.0901 - pearson_correlation: 0.7758 - euclidean_distance: 0.1439
Epoch 239/350
227/227 [==============================] - 0s 801us/step - loss: 0.0910 - accuracy: 0.9555 - mae: 0.0910 - pearson_correlation: 0.7682 - euclidean_distance: 0.1453
Epoch 240/350
227/227 [==============================] - 0s 787us/step - loss: 0.0909 - accuracy: 0.9555 - mae: 0.0909 - pearson_correlation: 0.7683 - euclidean_distance: 0.1454
Epoch 241/350
227/227 [==============================] - 0s 787us/step - loss: 0.0893 - accuracy: 0.9559 - mae: 0.0893 - pearson_correlation: 0.7705 - euclidean_distance: 0.1426
Epoch 242/350
227/227 [==============================] - 0s 820us/step - loss: 0.0898 - accuracy: 0.9550 - mae: 0.0898 - pearson_correlation: 0.7742 - euclidean_distance: 0.1433
Epoch 243/350
227/227 [==============================] - 0s 793us/step - loss: 0.0882 - accuracy: 0.9555 - mae: 0.0882 - pearson_correlation: 0.7752 - euclidean_distance: 0.1415
Epoch 244/350
227/227 [==============================] - 0s 788us/step - loss: 0.0893 - accuracy: 0.9555 - mae: 0.0893 - pearson_correlation: 0.7744 - euclidean_distance: 0.1424
Epoch 245/350
227/227 [==============================] - 0s 794us/step - loss: 0.0918 - accuracy: 0.9550 - mae: 0.0918 - pearson_correlation: 0.7714 - euclidean_distance: 0.1463
Epoch 246/350
227/227 [==============================] - 0s 786us/step - loss: 0.0925 - accuracy: 0.9546 - mae: 0.0925 - pearson_correlation: 0.7658 - euclidean_distance: 0.1471
Epoch 247/350
227/227 [==============================] - 0s 783us/step - loss: 0.0885 - accuracy: 0.9555 - mae: 0.0885 - pearson_correlation: 0.7728 - euclidean_distance: 0.1414
Epoch 248/350
227/227 [==============================] - 0s 788us/step - loss: 0.0901 - accuracy: 0.9559 - mae: 0.0901 - pearson_correlation: 0.7773 - euclidean_distance: 0.1434
Epoch 249/350
227/227 [==============================] - 0s 788us/step - loss: 0.0891 - accuracy: 0.9559 - mae: 0.0891 - pearson_correlation: 0.7766 - euclidean_distance: 0.1425
Epoch 250/350
227/227 [==============================] - 0s 788us/step - loss: 0.0907 - accuracy: 0.9555 - mae: 0.0907 - pearson_correlation: 0.7721 - euclidean_distance: 0.1443
Epoch 251/350
227/227 [==============================] - 0s 786us/step - loss: 0.0886 - accuracy: 0.9550 - mae: 0.0886 - pearson_correlation: 0.7785 - euclidean_distance: 0.1415
Epoch 252/350
227/227 [==============================] - 0s 788us/step - loss: 0.0876 - accuracy: 0.9555 - mae: 0.0876 - pearson_correlation: 0.7792 - euclidean_distance: 0.1400
Epoch 253/350
227/227 [==============================] - 0s 787us/step - loss: 0.0874 - accuracy: 0.9550 - mae: 0.0874 - pearson_correlation: 0.7794 - euclidean_distance: 0.1394
Epoch 254/350
227/227 [==============================] - 0s 785us/step - loss: 0.0898 - accuracy: 0.9559 - mae: 0.0898 - pearson_correlation: 0.7758 - euclidean_distance: 0.1430
Epoch 255/350
227/227 [==============================] - 0s 789us/step - loss: 0.0873 - accuracy: 0.9555 - mae: 0.0873 - pearson_correlation: 0.7804 - euclidean_distance: 0.1393
Epoch 256/350
227/227 [==============================] - 0s 784us/step - loss: 0.0872 - accuracy: 0.9555 - mae: 0.0872 - pearson_correlation: 0.7749 - euclidean_distance: 0.1394
Epoch 257/350
227/227 [==============================] - 0s 784us/step - loss: 0.0888 - accuracy: 0.9559 - mae: 0.0888 - pearson_correlation: 0.7791 - euclidean_distance: 0.1417
Epoch 258/350
227/227 [==============================] - 0s 784us/step - loss: 0.0894 - accuracy: 0.9555 - mae: 0.0894 - pearson_correlation: 0.7765 - euclidean_distance: 0.1425
Epoch 259/350
227/227 [==============================] - 0s 785us/step - loss: 0.0897 - accuracy: 0.9550 - mae: 0.0897 - pearson_correlation: 0.7711 - euclidean_distance: 0.1427
Epoch 260/350
227/227 [==============================] - 0s 787us/step - loss: 0.0867 - accuracy: 0.9559 - mae: 0.0867 - pearson_correlation: 0.7761 - euclidean_distance: 0.1387
Epoch 261/350
227/227 [==============================] - 0s 787us/step - loss: 0.0862 - accuracy: 0.9559 - mae: 0.0862 - pearson_correlation: 0.7795 - euclidean_distance: 0.1382
Epoch 262/350
227/227 [==============================] - 0s 786us/step - loss: 0.0869 - accuracy: 0.9555 - mae: 0.0869 - pearson_correlation: 0.7817 - euclidean_distance: 0.1383
Epoch 263/350
227/227 [==============================] - 0s 787us/step - loss: 0.0880 - accuracy: 0.9559 - mae: 0.0880 - pearson_correlation: 0.7831 - euclidean_distance: 0.1401
Epoch 264/350
227/227 [==============================] - 0s 786us/step - loss: 0.0862 - accuracy: 0.9555 - mae: 0.0862 - pearson_correlation: 0.7829 - euclidean_distance: 0.1379
Epoch 265/350
227/227 [==============================] - 0s 787us/step - loss: 0.0881 - accuracy: 0.9550 - mae: 0.0881 - pearson_correlation: 0.7867 - euclidean_distance: 0.1402
Epoch 266/350
227/227 [==============================] - 0s 786us/step - loss: 0.0878 - accuracy: 0.9555 - mae: 0.0878 - pearson_correlation: 0.7806 - euclidean_distance: 0.1405
Epoch 267/350
227/227 [==============================] - 0s 785us/step - loss: 0.0862 - accuracy: 0.9550 - mae: 0.0862 - pearson_correlation: 0.7848 - euclidean_distance: 0.1378
Epoch 268/350
227/227 [==============================] - 0s 787us/step - loss: 0.0864 - accuracy: 0.9550 - mae: 0.0864 - pearson_correlation: 0.7816 - euclidean_distance: 0.1381
Epoch 269/350
227/227 [==============================] - 0s 788us/step - loss: 0.0891 - accuracy: 0.9546 - mae: 0.0891 - pearson_correlation: 0.7750 - euclidean_distance: 0.1424
Epoch 270/350
227/227 [==============================] - 0s 785us/step - loss: 0.0868 - accuracy: 0.9555 - mae: 0.0868 - pearson_correlation: 0.7803 - euclidean_distance: 0.1387
Epoch 271/350
227/227 [==============================] - 0s 784us/step - loss: 0.0876 - accuracy: 0.9555 - mae: 0.0876 - pearson_correlation: 0.7799 - euclidean_distance: 0.1402
Epoch 272/350
227/227 [==============================] - 0s 786us/step - loss: 0.0875 - accuracy: 0.9550 - mae: 0.0875 - pearson_correlation: 0.7767 - euclidean_distance: 0.1398
Epoch 273/350
227/227 [==============================] - 0s 786us/step - loss: 0.0872 - accuracy: 0.9559 - mae: 0.0872 - pearson_correlation: 0.7754 - euclidean_distance: 0.1390
Epoch 274/350
227/227 [==============================] - 0s 788us/step - loss: 0.0864 - accuracy: 0.9559 - mae: 0.0864 - pearson_correlation: 0.7755 - euclidean_distance: 0.1387
Epoch 275/350
227/227 [==============================] - 0s 786us/step - loss: 0.0846 - accuracy: 0.9555 - mae: 0.0846 - pearson_correlation: 0.7835 - euclidean_distance: 0.1355
Epoch 276/350
227/227 [==============================] - 0s 787us/step - loss: 0.0882 - accuracy: 0.9559 - mae: 0.0882 - pearson_correlation: 0.7772 - euclidean_distance: 0.1405
Epoch 277/350
227/227 [==============================] - 0s 789us/step - loss: 0.0850 - accuracy: 0.9559 - mae: 0.0850 - pearson_correlation: 0.7858 - euclidean_distance: 0.1357
Epoch 278/350
227/227 [==============================] - 0s 783us/step - loss: 0.0844 - accuracy: 0.9555 - mae: 0.0844 - pearson_correlation: 0.7822 - euclidean_distance: 0.1356
Epoch 279/350
227/227 [==============================] - 0s 788us/step - loss: 0.0887 - accuracy: 0.9555 - mae: 0.0887 - pearson_correlation: 0.7777 - euclidean_distance: 0.1414
Epoch 280/350
227/227 [==============================] - 0s 786us/step - loss: 0.0851 - accuracy: 0.9555 - mae: 0.0851 - pearson_correlation: 0.7859 - euclidean_distance: 0.1360
Epoch 281/350
227/227 [==============================] - 0s 783us/step - loss: 0.0849 - accuracy: 0.9555 - mae: 0.0849 - pearson_correlation: 0.7887 - euclidean_distance: 0.1359
Epoch 282/350
227/227 [==============================] - 0s 789us/step - loss: 0.0852 - accuracy: 0.9555 - mae: 0.0852 - pearson_correlation: 0.7860 - euclidean_distance: 0.1363
Epoch 283/350
227/227 [==============================] - 0s 787us/step - loss: 0.0862 - accuracy: 0.9559 - mae: 0.0862 - pearson_correlation: 0.7846 - euclidean_distance: 0.1374
Epoch 284/350
227/227 [==============================] - 0s 785us/step - loss: 0.0852 - accuracy: 0.9559 - mae: 0.0852 - pearson_correlation: 0.7826 - euclidean_distance: 0.1363
Epoch 285/350
227/227 [==============================] - 0s 788us/step - loss: 0.0859 - accuracy: 0.9559 - mae: 0.0859 - pearson_correlation: 0.7824 - euclidean_distance: 0.1367
Epoch 286/350
227/227 [==============================] - 0s 787us/step - loss: 0.0872 - accuracy: 0.9555 - mae: 0.0872 - pearson_correlation: 0.7805 - euclidean_distance: 0.1390
Epoch 287/350
227/227 [==============================] - 0s 788us/step - loss: 0.0846 - accuracy: 0.9555 - mae: 0.0846 - pearson_correlation: 0.7896 - euclidean_distance: 0.1350
Epoch 288/350
227/227 [==============================] - 0s 787us/step - loss: 0.0848 - accuracy: 0.9559 - mae: 0.0848 - pearson_correlation: 0.7877 - euclidean_distance: 0.1358
Epoch 289/350
227/227 [==============================] - 0s 786us/step - loss: 0.0852 - accuracy: 0.9559 - mae: 0.0852 - pearson_correlation: 0.7852 - euclidean_distance: 0.1365
Epoch 290/350
227/227 [==============================] - 0s 786us/step - loss: 0.0853 - accuracy: 0.9555 - mae: 0.0853 - pearson_correlation: 0.7788 - euclidean_distance: 0.1366
Epoch 291/350
227/227 [==============================] - 0s 783us/step - loss: 0.0845 - accuracy: 0.9559 - mae: 0.0845 - pearson_correlation: 0.7828 - euclidean_distance: 0.1353
Epoch 292/350
227/227 [==============================] - 0s 787us/step - loss: 0.0858 - accuracy: 0.9559 - mae: 0.0858 - pearson_correlation: 0.7840 - euclidean_distance: 0.1371
Epoch 293/350
227/227 [==============================] - 0s 786us/step - loss: 0.0854 - accuracy: 0.9559 - mae: 0.0854 - pearson_correlation: 0.7867 - euclidean_distance: 0.1365
Epoch 294/350
227/227 [==============================] - 0s 827us/step - loss: 0.0837 - accuracy: 0.9559 - mae: 0.0837 - pearson_correlation: 0.7856 - euclidean_distance: 0.1341
Epoch 295/350
227/227 [==============================] - 0s 876us/step - loss: 0.0863 - accuracy: 0.9550 - mae: 0.0863 - pearson_correlation: 0.7802 - euclidean_distance: 0.1379
Epoch 296/350
227/227 [==============================] - 0s 895us/step - loss: 0.0822 - accuracy: 0.9559 - mae: 0.0822 - pearson_correlation: 0.7840 - euclidean_distance: 0.1324
Epoch 297/350
227/227 [==============================] - 0s 836us/step - loss: 0.0863 - accuracy: 0.9546 - mae: 0.0863 - pearson_correlation: 0.7832 - euclidean_distance: 0.1376
Epoch 298/350
227/227 [==============================] - 0s 788us/step - loss: 0.0870 - accuracy: 0.9555 - mae: 0.0870 - pearson_correlation: 0.7769 - euclidean_distance: 0.1385
Epoch 299/350
227/227 [==============================] - 0s 788us/step - loss: 0.0857 - accuracy: 0.9559 - mae: 0.0857 - pearson_correlation: 0.7848 - euclidean_distance: 0.1369
Epoch 300/350
227/227 [==============================] - 0s 797us/step - loss: 0.0837 - accuracy: 0.9555 - mae: 0.0837 - pearson_correlation: 0.7845 - euclidean_distance: 0.1346
Epoch 301/350
227/227 [==============================] - 0s 790us/step - loss: 0.0831 - accuracy: 0.9555 - mae: 0.0831 - pearson_correlation: 0.7862 - euclidean_distance: 0.1333
Epoch 302/350
227/227 [==============================] - 0s 788us/step - loss: 0.0842 - accuracy: 0.9555 - mae: 0.0842 - pearson_correlation: 0.7896 - euclidean_distance: 0.1342
Epoch 303/350
227/227 [==============================] - 0s 786us/step - loss: 0.0840 - accuracy: 0.9559 - mae: 0.0840 - pearson_correlation: 0.7897 - euclidean_distance: 0.1342
Epoch 304/350
227/227 [==============================] - 0s 790us/step - loss: 0.0837 - accuracy: 0.9559 - mae: 0.0837 - pearson_correlation: 0.7952 - euclidean_distance: 0.1335
Epoch 305/350
227/227 [==============================] - 0s 787us/step - loss: 0.0809 - accuracy: 0.9559 - mae: 0.0809 - pearson_correlation: 0.7935 - euclidean_distance: 0.1299
Epoch 306/350
227/227 [==============================] - 0s 788us/step - loss: 0.0827 - accuracy: 0.9555 - mae: 0.0827 - pearson_correlation: 0.7936 - euclidean_distance: 0.1325
Epoch 307/350
227/227 [==============================] - 0s 791us/step - loss: 0.0849 - accuracy: 0.9559 - mae: 0.0849 - pearson_correlation: 0.7890 - euclidean_distance: 0.1349
Epoch 308/350
227/227 [==============================] - 0s 788us/step - loss: 0.0827 - accuracy: 0.9559 - mae: 0.0827 - pearson_correlation: 0.7869 - euclidean_distance: 0.1327
Epoch 309/350
227/227 [==============================] - 0s 787us/step - loss: 0.0829 - accuracy: 0.9555 - mae: 0.0829 - pearson_correlation: 0.7924 - euclidean_distance: 0.1324
Epoch 310/350
227/227 [==============================] - 0s 785us/step - loss: 0.0825 - accuracy: 0.9559 - mae: 0.0825 - pearson_correlation: 0.7936 - euclidean_distance: 0.1330
Epoch 311/350
227/227 [==============================] - 0s 786us/step - loss: 0.0811 - accuracy: 0.9559 - mae: 0.0811 - pearson_correlation: 0.7941 - euclidean_distance: 0.1299
Epoch 312/350
227/227 [==============================] - 0s 790us/step - loss: 0.0847 - accuracy: 0.9563 - mae: 0.0847 - pearson_correlation: 0.7844 - euclidean_distance: 0.1356
Epoch 313/350
227/227 [==============================] - 0s 788us/step - loss: 0.0824 - accuracy: 0.9559 - mae: 0.0824 - pearson_correlation: 0.7879 - euclidean_distance: 0.1324
Epoch 314/350
227/227 [==============================] - 0s 782us/step - loss: 0.0833 - accuracy: 0.9559 - mae: 0.0833 - pearson_correlation: 0.7883 - euclidean_distance: 0.1334
Epoch 315/350
227/227 [==============================] - 0s 783us/step - loss: 0.0822 - accuracy: 0.9555 - mae: 0.0822 - pearson_correlation: 0.7944 - euclidean_distance: 0.1313
Epoch 316/350
227/227 [==============================] - 0s 787us/step - loss: 0.0806 - accuracy: 0.9559 - mae: 0.0806 - pearson_correlation: 0.7955 - euclidean_distance: 0.1294
Epoch 317/350
227/227 [==============================] - 0s 788us/step - loss: 0.0818 - accuracy: 0.9559 - mae: 0.0818 - pearson_correlation: 0.7956 - euclidean_distance: 0.1312
Epoch 318/350
227/227 [==============================] - 0s 787us/step - loss: 0.0831 - accuracy: 0.9559 - mae: 0.0831 - pearson_correlation: 0.7922 - euclidean_distance: 0.1331
Epoch 319/350
227/227 [==============================] - 0s 785us/step - loss: 0.0803 - accuracy: 0.9555 - mae: 0.0803 - pearson_correlation: 0.7943 - euclidean_distance: 0.1287
Epoch 320/350
227/227 [==============================] - 0s 788us/step - loss: 0.0808 - accuracy: 0.9559 - mae: 0.0808 - pearson_correlation: 0.7943 - euclidean_distance: 0.1294
Epoch 321/350
227/227 [==============================] - 0s 787us/step - loss: 0.0816 - accuracy: 0.9559 - mae: 0.0816 - pearson_correlation: 0.7910 - euclidean_distance: 0.1311
Epoch 322/350
227/227 [==============================] - 0s 791us/step - loss: 0.0821 - accuracy: 0.9559 - mae: 0.0821 - pearson_correlation: 0.7896 - euclidean_distance: 0.1313
Epoch 323/350
227/227 [==============================] - 0s 788us/step - loss: 0.0823 - accuracy: 0.9559 - mae: 0.0823 - pearson_correlation: 0.7833 - euclidean_distance: 0.1319
Epoch 324/350
227/227 [==============================] - 0s 787us/step - loss: 0.0807 - accuracy: 0.9559 - mae: 0.0807 - pearson_correlation: 0.7926 - euclidean_distance: 0.1297
Epoch 325/350
227/227 [==============================] - 0s 786us/step - loss: 0.0817 - accuracy: 0.9559 - mae: 0.0817 - pearson_correlation: 0.7993 - euclidean_distance: 0.1305
Epoch 326/350
227/227 [==============================] - 0s 787us/step - loss: 0.0800 - accuracy: 0.9559 - mae: 0.0800 - pearson_correlation: 0.7924 - euclidean_distance: 0.1284
Epoch 327/350
227/227 [==============================] - 0s 788us/step - loss: 0.0822 - accuracy: 0.9559 - mae: 0.0822 - pearson_correlation: 0.7886 - euclidean_distance: 0.1320
Epoch 328/350
227/227 [==============================] - 0s 786us/step - loss: 0.0829 - accuracy: 0.9559 - mae: 0.0829 - pearson_correlation: 0.7920 - euclidean_distance: 0.1323
Epoch 329/350
227/227 [==============================] - 0s 785us/step - loss: 0.0811 - accuracy: 0.9555 - mae: 0.0811 - pearson_correlation: 0.7923 - euclidean_distance: 0.1299
Epoch 330/350
227/227 [==============================] - 0s 788us/step - loss: 0.0812 - accuracy: 0.9559 - mae: 0.0812 - pearson_correlation: 0.7928 - euclidean_distance: 0.1304
Epoch 331/350
227/227 [==============================] - 0s 785us/step - loss: 0.0812 - accuracy: 0.9559 - mae: 0.0812 - pearson_correlation: 0.7915 - euclidean_distance: 0.1300
Epoch 332/350
227/227 [==============================] - 0s 786us/step - loss: 0.0817 - accuracy: 0.9559 - mae: 0.0817 - pearson_correlation: 0.7920 - euclidean_distance: 0.1309
Epoch 333/350
227/227 [==============================] - 0s 786us/step - loss: 0.0815 - accuracy: 0.9559 - mae: 0.0815 - pearson_correlation: 0.7890 - euclidean_distance: 0.1302
Epoch 334/350
227/227 [==============================] - 0s 786us/step - loss: 0.0810 - accuracy: 0.9559 - mae: 0.0810 - pearson_correlation: 0.7954 - euclidean_distance: 0.1301
Epoch 335/350
227/227 [==============================] - 0s 787us/step - loss: 0.0818 - accuracy: 0.9559 - mae: 0.0818 - pearson_correlation: 0.7922 - euclidean_distance: 0.1306
Epoch 336/350
227/227 [==============================] - 0s 786us/step - loss: 0.0808 - accuracy: 0.9555 - mae: 0.0808 - pearson_correlation: 0.7903 - euclidean_distance: 0.1302
Epoch 337/350
227/227 [==============================] - 0s 785us/step - loss: 0.0816 - accuracy: 0.9555 - mae: 0.0816 - pearson_correlation: 0.7922 - euclidean_distance: 0.1307
Epoch 338/350
227/227 [==============================] - 0s 788us/step - loss: 0.0801 - accuracy: 0.9559 - mae: 0.0801 - pearson_correlation: 0.7963 - euclidean_distance: 0.1285
Epoch 339/350
227/227 [==============================] - 0s 786us/step - loss: 0.0815 - accuracy: 0.9559 - mae: 0.0815 - pearson_correlation: 0.7929 - euclidean_distance: 0.1307
Epoch 340/350
227/227 [==============================] - 0s 787us/step - loss: 0.0818 - accuracy: 0.9559 - mae: 0.0818 - pearson_correlation: 0.7935 - euclidean_distance: 0.1314
Epoch 341/350
227/227 [==============================] - 0s 785us/step - loss: 0.0798 - accuracy: 0.9559 - mae: 0.0798 - pearson_correlation: 0.7924 - euclidean_distance: 0.1280
Epoch 342/350
227/227 [==============================] - 0s 784us/step - loss: 0.0813 - accuracy: 0.9559 - mae: 0.0813 - pearson_correlation: 0.7915 - euclidean_distance: 0.1304
Epoch 343/350
227/227 [==============================] - 0s 789us/step - loss: 0.0801 - accuracy: 0.9559 - mae: 0.0801 - pearson_correlation: 0.7983 - euclidean_distance: 0.1277
Epoch 344/350
227/227 [==============================] - 0s 786us/step - loss: 0.0799 - accuracy: 0.9559 - mae: 0.0799 - pearson_correlation: 0.7983 - euclidean_distance: 0.1282
Epoch 345/350
227/227 [==============================] - 0s 786us/step - loss: 0.0812 - accuracy: 0.9559 - mae: 0.0812 - pearson_correlation: 0.7898 - euclidean_distance: 0.1306
Epoch 346/350
227/227 [==============================] - 0s 787us/step - loss: 0.0821 - accuracy: 0.9559 - mae: 0.0821 - pearson_correlation: 0.7931 - euclidean_distance: 0.1317
Epoch 347/350
227/227 [==============================] - 0s 786us/step - loss: 0.0803 - accuracy: 0.9559 - mae: 0.0803 - pearson_correlation: 0.7974 - euclidean_distance: 0.1288
Epoch 348/350
227/227 [==============================] - 0s 789us/step - loss: 0.0813 - accuracy: 0.9559 - mae: 0.0813 - pearson_correlation: 0.7913 - euclidean_distance: 0.1301
Epoch 349/350
227/227 [==============================] - 0s 797us/step - loss: 0.0811 - accuracy: 0.9559 - mae: 0.0811 - pearson_correlation: 0.7944 - euclidean_distance: 0.1297
Epoch 350/350
227/227 [==============================] - 0s 791us/step - loss: 0.0792 - accuracy: 0.9559 - mae: 0.0792 - pearson_correlation: 0.8020 - euclidean_distance: 0.1269
114/114 [==============================] - 0s 454us/step
Epoch 1/100
152/152 [==============================] - 1s 816us/step - loss: 0.5318 - accuracy: 0.2179 - mae: 0.5318 - pearson_correlation: -0.4753 - euclidean_distance: 0.8456
Epoch 2/100
152/152 [==============================] - 0s 821us/step - loss: 0.5255 - accuracy: 0.2250 - mae: 0.5255 - pearson_correlation: -0.4625 - euclidean_distance: 0.8366
Epoch 3/100
152/152 [==============================] - 0s 807us/step - loss: 0.5199 - accuracy: 0.2329 - mae: 0.5199 - pearson_correlation: -0.4628 - euclidean_distance: 0.8297
Epoch 4/100
152/152 [==============================] - 0s 804us/step - loss: 0.5135 - accuracy: 0.2382 - mae: 0.5135 - pearson_correlation: -0.4568 - euclidean_distance: 0.8209
Epoch 5/100
152/152 [==============================] - 0s 811us/step - loss: 0.5068 - accuracy: 0.2629 - mae: 0.5068 - pearson_correlation: -0.4446 - euclidean_distance: 0.8110
Epoch 6/100
152/152 [==============================] - 0s 806us/step - loss: 0.4987 - accuracy: 0.2642 - mae: 0.4987 - pearson_correlation: -0.4463 - euclidean_distance: 0.8015
Epoch 7/100
152/152 [==============================] - 0s 805us/step - loss: 0.4930 - accuracy: 0.2629 - mae: 0.4930 - pearson_correlation: -0.4351 - euclidean_distance: 0.7928
Epoch 8/100
152/152 [==============================] - 0s 801us/step - loss: 0.4849 - accuracy: 0.2872 - mae: 0.4849 - pearson_correlation: -0.4260 - euclidean_distance: 0.7817
Epoch 9/100
152/152 [==============================] - 0s 798us/step - loss: 0.4780 - accuracy: 0.2845 - mae: 0.4780 - pearson_correlation: -0.4222 - euclidean_distance: 0.7727
Epoch 10/100
152/152 [==============================] - 0s 807us/step - loss: 0.4704 - accuracy: 0.2947 - mae: 0.4704 - pearson_correlation: -0.4184 - euclidean_distance: 0.7622
Epoch 11/100
152/152 [==============================] - 0s 809us/step - loss: 0.4619 - accuracy: 0.2960 - mae: 0.4619 - pearson_correlation: -0.4115 - euclidean_distance: 0.7500
Epoch 12/100
152/152 [==============================] - 0s 798us/step - loss: 0.4550 - accuracy: 0.3048 - mae: 0.4550 - pearson_correlation: -0.4084 - euclidean_distance: 0.7410
Epoch 13/100
152/152 [==============================] - 0s 802us/step - loss: 0.4477 - accuracy: 0.2978 - mae: 0.4477 - pearson_correlation: -0.4094 - euclidean_distance: 0.7313
Epoch 14/100
152/152 [==============================] - 0s 801us/step - loss: 0.4394 - accuracy: 0.3052 - mae: 0.4394 - pearson_correlation: -0.4005 - euclidean_distance: 0.7197
Epoch 15/100
152/152 [==============================] - 0s 796us/step - loss: 0.4322 - accuracy: 0.3088 - mae: 0.4322 - pearson_correlation: -0.3776 - euclidean_distance: 0.7086
Epoch 16/100
152/152 [==============================] - 0s 799us/step - loss: 0.4247 - accuracy: 0.3207 - mae: 0.4247 - pearson_correlation: -0.3765 - euclidean_distance: 0.6977
Epoch 17/100
152/152 [==============================] - 0s 800us/step - loss: 0.4165 - accuracy: 0.3211 - mae: 0.4165 - pearson_correlation: -0.3744 - euclidean_distance: 0.6866
Epoch 18/100
152/152 [==============================] - 0s 796us/step - loss: 0.4073 - accuracy: 0.3163 - mae: 0.4073 - pearson_correlation: -0.3746 - euclidean_distance: 0.6750
Epoch 19/100
152/152 [==============================] - 0s 800us/step - loss: 0.4013 - accuracy: 0.3282 - mae: 0.4013 - pearson_correlation: -0.3606 - euclidean_distance: 0.6639
Epoch 20/100
152/152 [==============================] - 0s 797us/step - loss: 0.3935 - accuracy: 0.3189 - mae: 0.3935 - pearson_correlation: -0.3534 - euclidean_distance: 0.6534
Epoch 21/100
152/152 [==============================] - 0s 801us/step - loss: 0.3845 - accuracy: 0.3180 - mae: 0.3845 - pearson_correlation: -0.3385 - euclidean_distance: 0.6401
Epoch 22/100
152/152 [==============================] - 0s 803us/step - loss: 0.3779 - accuracy: 0.3291 - mae: 0.3779 - pearson_correlation: -0.3297 - euclidean_distance: 0.6293
Epoch 23/100
152/152 [==============================] - 0s 792us/step - loss: 0.3702 - accuracy: 0.3322 - mae: 0.3702 - pearson_correlation: -0.3264 - euclidean_distance: 0.6184
Epoch 24/100
152/152 [==============================] - 0s 797us/step - loss: 0.3645 - accuracy: 0.3414 - mae: 0.3645 - pearson_correlation: -0.3116 - euclidean_distance: 0.6090
Epoch 25/100
152/152 [==============================] - 0s 802us/step - loss: 0.3552 - accuracy: 0.3494 - mae: 0.3552 - pearson_correlation: -0.2959 - euclidean_distance: 0.5945
Epoch 26/100
152/152 [==============================] - 0s 802us/step - loss: 0.3476 - accuracy: 0.3383 - mae: 0.3476 - pearson_correlation: -0.2860 - euclidean_distance: 0.5838
Epoch 27/100
152/152 [==============================] - 0s 800us/step - loss: 0.3410 - accuracy: 0.3445 - mae: 0.3410 - pearson_correlation: -0.2710 - euclidean_distance: 0.5728
Epoch 28/100
152/152 [==============================] - 0s 805us/step - loss: 0.3329 - accuracy: 0.3577 - mae: 0.3329 - pearson_correlation: -0.2557 - euclidean_distance: 0.5594
Epoch 29/100
152/152 [==============================] - 0s 805us/step - loss: 0.3259 - accuracy: 0.3564 - mae: 0.3259 - pearson_correlation: -0.2446 - euclidean_distance: 0.5486
Epoch 30/100
152/152 [==============================] - 0s 799us/step - loss: 0.3202 - accuracy: 0.3582 - mae: 0.3202 - pearson_correlation: -0.2230 - euclidean_distance: 0.5383
Epoch 31/100
152/152 [==============================] - 0s 804us/step - loss: 0.3161 - accuracy: 0.3780 - mae: 0.3161 - pearson_correlation: -0.2092 - euclidean_distance: 0.5302
Epoch 32/100
152/152 [==============================] - 0s 797us/step - loss: 0.3077 - accuracy: 0.3798 - mae: 0.3077 - pearson_correlation: -0.1889 - euclidean_distance: 0.5175
Epoch 33/100
152/152 [==============================] - 0s 798us/step - loss: 0.2990 - accuracy: 0.3891 - mae: 0.2990 - pearson_correlation: -0.1694 - euclidean_distance: 0.5035
Epoch 34/100
152/152 [==============================] - 0s 807us/step - loss: 0.2949 - accuracy: 0.3882 - mae: 0.2949 - pearson_correlation: -0.1450 - euclidean_distance: 0.4955
Epoch 35/100
152/152 [==============================] - 0s 794us/step - loss: 0.2878 - accuracy: 0.4076 - mae: 0.2878 - pearson_correlation: -0.1322 - euclidean_distance: 0.4842
Epoch 36/100
152/152 [==============================] - 0s 793us/step - loss: 0.2843 - accuracy: 0.3992 - mae: 0.2843 - pearson_correlation: -0.1197 - euclidean_distance: 0.4770
Epoch 37/100
152/152 [==============================] - 0s 799us/step - loss: 0.2768 - accuracy: 0.4067 - mae: 0.2768 - pearson_correlation: -0.0912 - euclidean_distance: 0.4647
Epoch 38/100
152/152 [==============================] - 0s 797us/step - loss: 0.2721 - accuracy: 0.4098 - mae: 0.2721 - pearson_correlation: -0.0737 - euclidean_distance: 0.4566
Epoch 39/100
152/152 [==============================] - 0s 803us/step - loss: 0.2656 - accuracy: 0.4266 - mae: 0.2656 - pearson_correlation: -0.0527 - euclidean_distance: 0.4462
Epoch 40/100
152/152 [==============================] - 0s 792us/step - loss: 0.2605 - accuracy: 0.4283 - mae: 0.2605 - pearson_correlation: -0.0303 - euclidean_distance: 0.4368
Epoch 41/100
152/152 [==============================] - 0s 845us/step - loss: 0.2570 - accuracy: 0.4305 - mae: 0.2570 - pearson_correlation: -0.0194 - euclidean_distance: 0.4310
Epoch 42/100
152/152 [==============================] - 0s 880us/step - loss: 0.2513 - accuracy: 0.4416 - mae: 0.2513 - pearson_correlation: -0.0038 - euclidean_distance: 0.4208
Epoch 43/100
152/152 [==============================] - 0s 910us/step - loss: 0.2473 - accuracy: 0.4543 - mae: 0.2473 - pearson_correlation: 0.0299 - euclidean_distance: 0.4137
Epoch 44/100
152/152 [==============================] - 0s 908us/step - loss: 0.2417 - accuracy: 0.4557 - mae: 0.2417 - pearson_correlation: 0.0401 - euclidean_distance: 0.4051
Epoch 45/100
152/152 [==============================] - 0s 911us/step - loss: 0.2394 - accuracy: 0.4693 - mae: 0.2394 - pearson_correlation: 0.0549 - euclidean_distance: 0.3992
Epoch 46/100
152/152 [==============================] - 0s 802us/step - loss: 0.2377 - accuracy: 0.4676 - mae: 0.2377 - pearson_correlation: 0.0775 - euclidean_distance: 0.3952
Epoch 47/100
152/152 [==============================] - 0s 802us/step - loss: 0.2317 - accuracy: 0.4777 - mae: 0.2317 - pearson_correlation: 0.0975 - euclidean_distance: 0.3861
Epoch 48/100
152/152 [==============================] - 0s 800us/step - loss: 0.2289 - accuracy: 0.4742 - mae: 0.2289 - pearson_correlation: 0.1021 - euclidean_distance: 0.3823
Epoch 49/100
152/152 [==============================] - 0s 803us/step - loss: 0.2254 - accuracy: 0.4927 - mae: 0.2254 - pearson_correlation: 0.1275 - euclidean_distance: 0.3751
Epoch 50/100
152/152 [==============================] - 0s 798us/step - loss: 0.2213 - accuracy: 0.4958 - mae: 0.2213 - pearson_correlation: 0.1514 - euclidean_distance: 0.3673
Epoch 51/100
152/152 [==============================] - 0s 806us/step - loss: 0.2172 - accuracy: 0.5135 - mae: 0.2172 - pearson_correlation: 0.1682 - euclidean_distance: 0.3606
Epoch 52/100
152/152 [==============================] - 0s 796us/step - loss: 0.2160 - accuracy: 0.5258 - mae: 0.2160 - pearson_correlation: 0.1692 - euclidean_distance: 0.3585
Epoch 53/100
152/152 [==============================] - 0s 807us/step - loss: 0.2124 - accuracy: 0.5346 - mae: 0.2124 - pearson_correlation: 0.1896 - euclidean_distance: 0.3527
Epoch 54/100
152/152 [==============================] - 0s 801us/step - loss: 0.2099 - accuracy: 0.5298 - mae: 0.2099 - pearson_correlation: 0.2136 - euclidean_distance: 0.3484
Epoch 55/100
152/152 [==============================] - 0s 799us/step - loss: 0.2084 - accuracy: 0.5523 - mae: 0.2084 - pearson_correlation: 0.2172 - euclidean_distance: 0.3454
Epoch 56/100
152/152 [==============================] - 0s 797us/step - loss: 0.2039 - accuracy: 0.5527 - mae: 0.2039 - pearson_correlation: 0.2300 - euclidean_distance: 0.3385
Epoch 57/100
152/152 [==============================] - 0s 799us/step - loss: 0.2018 - accuracy: 0.5659 - mae: 0.2018 - pearson_correlation: 0.2459 - euclidean_distance: 0.3329
Epoch 58/100
152/152 [==============================] - 0s 800us/step - loss: 0.1993 - accuracy: 0.5748 - mae: 0.1993 - pearson_correlation: 0.2577 - euclidean_distance: 0.3293
Epoch 59/100
152/152 [==============================] - 0s 801us/step - loss: 0.1973 - accuracy: 0.5990 - mae: 0.1973 - pearson_correlation: 0.2723 - euclidean_distance: 0.3259
Epoch 60/100
152/152 [==============================] - 0s 796us/step - loss: 0.1944 - accuracy: 0.6070 - mae: 0.1944 - pearson_correlation: 0.2809 - euclidean_distance: 0.3209
Epoch 61/100
152/152 [==============================] - 0s 800us/step - loss: 0.1921 - accuracy: 0.6114 - mae: 0.1921 - pearson_correlation: 0.2984 - euclidean_distance: 0.3166
Epoch 62/100
152/152 [==============================] - 0s 805us/step - loss: 0.1893 - accuracy: 0.6109 - mae: 0.1893 - pearson_correlation: 0.3034 - euclidean_distance: 0.3116
Epoch 63/100
152/152 [==============================] - 0s 799us/step - loss: 0.1895 - accuracy: 0.6374 - mae: 0.1895 - pearson_correlation: 0.3149 - euclidean_distance: 0.3117
Epoch 64/100
152/152 [==============================] - 0s 798us/step - loss: 0.1846 - accuracy: 0.6462 - mae: 0.1846 - pearson_correlation: 0.3319 - euclidean_distance: 0.3038
Epoch 65/100
152/152 [==============================] - 0s 795us/step - loss: 0.1827 - accuracy: 0.6555 - mae: 0.1827 - pearson_correlation: 0.3341 - euclidean_distance: 0.3003
Epoch 66/100
152/152 [==============================] - 0s 798us/step - loss: 0.1814 - accuracy: 0.6577 - mae: 0.1814 - pearson_correlation: 0.3421 - euclidean_distance: 0.2975
Epoch 67/100
152/152 [==============================] - 0s 978us/step - loss: 0.1797 - accuracy: 0.6745 - mae: 0.1797 - pearson_correlation: 0.3636 - euclidean_distance: 0.2953
Epoch 68/100
152/152 [==============================] - 0s 853us/step - loss: 0.1773 - accuracy: 0.6767 - mae: 0.1773 - pearson_correlation: 0.3641 - euclidean_distance: 0.2920
Epoch 69/100
152/152 [==============================] - 0s 801us/step - loss: 0.1727 - accuracy: 0.6873 - mae: 0.1727 - pearson_correlation: 0.3797 - euclidean_distance: 0.2840
Epoch 70/100
152/152 [==============================] - 0s 807us/step - loss: 0.1741 - accuracy: 0.6943 - mae: 0.1741 - pearson_correlation: 0.3805 - euclidean_distance: 0.2858
Epoch 71/100
152/152 [==============================] - 0s 805us/step - loss: 0.1710 - accuracy: 0.7018 - mae: 0.1710 - pearson_correlation: 0.4016 - euclidean_distance: 0.2804
Epoch 72/100
152/152 [==============================] - 0s 803us/step - loss: 0.1689 - accuracy: 0.7128 - mae: 0.1689 - pearson_correlation: 0.4139 - euclidean_distance: 0.2769
Epoch 73/100
152/152 [==============================] - 0s 808us/step - loss: 0.1686 - accuracy: 0.7159 - mae: 0.1686 - pearson_correlation: 0.4176 - euclidean_distance: 0.2765
Epoch 74/100
152/152 [==============================] - 0s 799us/step - loss: 0.1641 - accuracy: 0.7274 - mae: 0.1641 - pearson_correlation: 0.4401 - euclidean_distance: 0.2696
Epoch 75/100
152/152 [==============================] - 0s 823us/step - loss: 0.1636 - accuracy: 0.7318 - mae: 0.1636 - pearson_correlation: 0.4446 - euclidean_distance: 0.2675
Epoch 76/100
152/152 [==============================] - 0s 807us/step - loss: 0.1620 - accuracy: 0.7481 - mae: 0.1620 - pearson_correlation: 0.4507 - euclidean_distance: 0.2656
Epoch 77/100
152/152 [==============================] - 0s 798us/step - loss: 0.1611 - accuracy: 0.7574 - mae: 0.1611 - pearson_correlation: 0.4562 - euclidean_distance: 0.2637
Epoch 78/100
152/152 [==============================] - 0s 805us/step - loss: 0.1593 - accuracy: 0.7636 - mae: 0.1593 - pearson_correlation: 0.4654 - euclidean_distance: 0.2600
Epoch 79/100
152/152 [==============================] - 0s 808us/step - loss: 0.1573 - accuracy: 0.7680 - mae: 0.1573 - pearson_correlation: 0.4702 - euclidean_distance: 0.2579
Epoch 80/100
152/152 [==============================] - 0s 806us/step - loss: 0.1575 - accuracy: 0.7706 - mae: 0.1575 - pearson_correlation: 0.4754 - euclidean_distance: 0.2566
Epoch 81/100
152/152 [==============================] - 0s 841us/step - loss: 0.1537 - accuracy: 0.7794 - mae: 0.1537 - pearson_correlation: 0.4848 - euclidean_distance: 0.2517
Epoch 82/100
152/152 [==============================] - 0s 805us/step - loss: 0.1524 - accuracy: 0.7883 - mae: 0.1524 - pearson_correlation: 0.5020 - euclidean_distance: 0.2490
Epoch 83/100
152/152 [==============================] - 0s 830us/step - loss: 0.1514 - accuracy: 0.7918 - mae: 0.1514 - pearson_correlation: 0.5013 - euclidean_distance: 0.2469
Epoch 84/100
152/152 [==============================] - 0s 802us/step - loss: 0.1477 - accuracy: 0.8125 - mae: 0.1477 - pearson_correlation: 0.5241 - euclidean_distance: 0.2408
Epoch 85/100
152/152 [==============================] - 0s 797us/step - loss: 0.1464 - accuracy: 0.8103 - mae: 0.1464 - pearson_correlation: 0.5184 - euclidean_distance: 0.2400
Epoch 86/100
152/152 [==============================] - 0s 800us/step - loss: 0.1470 - accuracy: 0.8231 - mae: 0.1470 - pearson_correlation: 0.5162 - euclidean_distance: 0.2387
Epoch 87/100
152/152 [==============================] - 0s 798us/step - loss: 0.1433 - accuracy: 0.8293 - mae: 0.1433 - pearson_correlation: 0.5339 - euclidean_distance: 0.2339
Epoch 88/100
152/152 [==============================] - 0s 797us/step - loss: 0.1434 - accuracy: 0.8302 - mae: 0.1434 - pearson_correlation: 0.5407 - euclidean_distance: 0.2336
Epoch 89/100
152/152 [==============================] - 0s 802us/step - loss: 0.1406 - accuracy: 0.8452 - mae: 0.1406 - pearson_correlation: 0.5556 - euclidean_distance: 0.2298
Epoch 90/100
152/152 [==============================] - 0s 793us/step - loss: 0.1412 - accuracy: 0.8368 - mae: 0.1412 - pearson_correlation: 0.5510 - euclidean_distance: 0.2298
Epoch 91/100
152/152 [==============================] - 0s 802us/step - loss: 0.1372 - accuracy: 0.8624 - mae: 0.1372 - pearson_correlation: 0.5656 - euclidean_distance: 0.2240
Epoch 92/100
152/152 [==============================] - 0s 794us/step - loss: 0.1372 - accuracy: 0.8615 - mae: 0.1372 - pearson_correlation: 0.5694 - euclidean_distance: 0.2232
Epoch 93/100
152/152 [==============================] - 0s 798us/step - loss: 0.1354 - accuracy: 0.8650 - mae: 0.1354 - pearson_correlation: 0.5709 - euclidean_distance: 0.2208
Epoch 94/100
152/152 [==============================] - 0s 799us/step - loss: 0.1357 - accuracy: 0.8725 - mae: 0.1357 - pearson_correlation: 0.5737 - euclidean_distance: 0.2208
Epoch 95/100
152/152 [==============================] - 0s 793us/step - loss: 0.1341 - accuracy: 0.8756 - mae: 0.1341 - pearson_correlation: 0.5817 - euclidean_distance: 0.2183
Epoch 96/100
152/152 [==============================] - 0s 800us/step - loss: 0.1323 - accuracy: 0.8787 - mae: 0.1323 - pearson_correlation: 0.5764 - euclidean_distance: 0.2148
Epoch 97/100
152/152 [==============================] - 0s 798us/step - loss: 0.1318 - accuracy: 0.8937 - mae: 0.1318 - pearson_correlation: 0.5925 - euclidean_distance: 0.2145
Epoch 98/100
152/152 [==============================] - 0s 800us/step - loss: 0.1310 - accuracy: 0.8902 - mae: 0.1310 - pearson_correlation: 0.5925 - euclidean_distance: 0.2127
Epoch 99/100
152/152 [==============================] - 0s 798us/step - loss: 0.1260 - accuracy: 0.9007 - mae: 0.1260 - pearson_correlation: 0.6132 - euclidean_distance: 0.2055
Epoch 100/100
152/152 [==============================] - 0s 801us/step - loss: 0.1295 - accuracy: 0.9025 - mae: 0.1295 - pearson_correlation: 0.6013 - euclidean_distance: 0.2101
76/76 [==============================] - 0s 444us/step
Epoch 1/100
152/152 [==============================] - 1s 861us/step - loss: 0.7928 - accuracy: 0.5452 - mae: 0.7928 - pearson_correlation: 0.2209 - euclidean_distance: 1.1708
Epoch 2/100
152/152 [==============================] - 0s 804us/step - loss: 0.7808 - accuracy: 0.5571 - mae: 0.7808 - pearson_correlation: 0.2388 - euclidean_distance: 1.1516
Epoch 3/100
152/152 [==============================] - 0s 796us/step - loss: 0.7707 - accuracy: 0.5651 - mae: 0.7707 - pearson_correlation: 0.2438 - euclidean_distance: 1.1375
Epoch 4/100
152/152 [==============================] - 0s 799us/step - loss: 0.7608 - accuracy: 0.5651 - mae: 0.7608 - pearson_correlation: 0.2488 - euclidean_distance: 1.1224
Epoch 5/100
152/152 [==============================] - 0s 808us/step - loss: 0.7493 - accuracy: 0.5743 - mae: 0.7493 - pearson_correlation: 0.2607 - euclidean_distance: 1.1049
Epoch 6/100
152/152 [==============================] - 0s 806us/step - loss: 0.7406 - accuracy: 0.5862 - mae: 0.7406 - pearson_correlation: 0.2767 - euclidean_distance: 1.0921
Epoch 7/100
152/152 [==============================] - 0s 807us/step - loss: 0.7294 - accuracy: 0.5831 - mae: 0.7294 - pearson_correlation: 0.2754 - euclidean_distance: 1.0754
Epoch 8/100
152/152 [==============================] - 0s 806us/step - loss: 0.7189 - accuracy: 0.6034 - mae: 0.7189 - pearson_correlation: 0.2850 - euclidean_distance: 1.0592
Epoch 9/100
152/152 [==============================] - 0s 801us/step - loss: 0.7088 - accuracy: 0.6048 - mae: 0.7088 - pearson_correlation: 0.2882 - euclidean_distance: 1.0445
Epoch 10/100
152/152 [==============================] - 0s 799us/step - loss: 0.6990 - accuracy: 0.6246 - mae: 0.6990 - pearson_correlation: 0.3082 - euclidean_distance: 1.0293
Epoch 11/100
152/152 [==============================] - 0s 796us/step - loss: 0.6892 - accuracy: 0.6061 - mae: 0.6892 - pearson_correlation: 0.3104 - euclidean_distance: 1.0155
Epoch 12/100
152/152 [==============================] - 0s 796us/step - loss: 0.6815 - accuracy: 0.6198 - mae: 0.6815 - pearson_correlation: 0.3042 - euclidean_distance: 1.0043
Epoch 13/100
152/152 [==============================] - 0s 797us/step - loss: 0.6715 - accuracy: 0.6255 - mae: 0.6715 - pearson_correlation: 0.3134 - euclidean_distance: 0.9898
Epoch 14/100
152/152 [==============================] - 0s 795us/step - loss: 0.6620 - accuracy: 0.6458 - mae: 0.6620 - pearson_correlation: 0.3279 - euclidean_distance: 0.9754
Epoch 15/100
152/152 [==============================] - 0s 795us/step - loss: 0.6535 - accuracy: 0.6361 - mae: 0.6535 - pearson_correlation: 0.3193 - euclidean_distance: 0.9632
Epoch 16/100
152/152 [==============================] - 0s 794us/step - loss: 0.6436 - accuracy: 0.6511 - mae: 0.6436 - pearson_correlation: 0.3394 - euclidean_distance: 0.9481
Epoch 17/100
152/152 [==============================] - 0s 800us/step - loss: 0.6371 - accuracy: 0.6546 - mae: 0.6371 - pearson_correlation: 0.3399 - euclidean_distance: 0.9385
Epoch 18/100
152/152 [==============================] - 0s 799us/step - loss: 0.6261 - accuracy: 0.6617 - mae: 0.6261 - pearson_correlation: 0.3445 - euclidean_distance: 0.9224
Epoch 19/100
152/152 [==============================] - 0s 850us/step - loss: 0.6213 - accuracy: 0.6599 - mae: 0.6213 - pearson_correlation: 0.3504 - euclidean_distance: 0.9154
Epoch 20/100
152/152 [==============================] - 0s 799us/step - loss: 0.6108 - accuracy: 0.6696 - mae: 0.6108 - pearson_correlation: 0.3538 - euclidean_distance: 0.8996
Epoch 21/100
152/152 [==============================] - 0s 800us/step - loss: 0.6045 - accuracy: 0.6692 - mae: 0.6045 - pearson_correlation: 0.3607 - euclidean_distance: 0.8908
Epoch 22/100
152/152 [==============================] - 0s 791us/step - loss: 0.5974 - accuracy: 0.6577 - mae: 0.5974 - pearson_correlation: 0.3530 - euclidean_distance: 0.8813
Epoch 23/100
152/152 [==============================] - 0s 797us/step - loss: 0.5906 - accuracy: 0.6723 - mae: 0.5906 - pearson_correlation: 0.3568 - euclidean_distance: 0.8713
Epoch 24/100
152/152 [==============================] - 0s 798us/step - loss: 0.5815 - accuracy: 0.6727 - mae: 0.5815 - pearson_correlation: 0.3594 - euclidean_distance: 0.8583
Epoch 25/100
152/152 [==============================] - 0s 793us/step - loss: 0.5749 - accuracy: 0.6921 - mae: 0.5749 - pearson_correlation: 0.3611 - euclidean_distance: 0.8486
Epoch 26/100
152/152 [==============================] - 0s 792us/step - loss: 0.5671 - accuracy: 0.6789 - mae: 0.5671 - pearson_correlation: 0.3709 - euclidean_distance: 0.8372
Epoch 27/100
152/152 [==============================] - 0s 793us/step - loss: 0.5600 - accuracy: 0.6736 - mae: 0.5600 - pearson_correlation: 0.3577 - euclidean_distance: 0.8271
Epoch 28/100
152/152 [==============================] - 0s 795us/step - loss: 0.5525 - accuracy: 0.6873 - mae: 0.5525 - pearson_correlation: 0.3681 - euclidean_distance: 0.8164
Epoch 29/100
152/152 [==============================] - 0s 798us/step - loss: 0.5456 - accuracy: 0.6767 - mae: 0.5456 - pearson_correlation: 0.3585 - euclidean_distance: 0.8078
Epoch 30/100
152/152 [==============================] - 0s 797us/step - loss: 0.5384 - accuracy: 0.6846 - mae: 0.5384 - pearson_correlation: 0.3592 - euclidean_distance: 0.7960
Epoch 31/100
152/152 [==============================] - 0s 795us/step - loss: 0.5313 - accuracy: 0.6705 - mae: 0.5313 - pearson_correlation: 0.3606 - euclidean_distance: 0.7874
Epoch 32/100
152/152 [==============================] - 0s 794us/step - loss: 0.5252 - accuracy: 0.6850 - mae: 0.5252 - pearson_correlation: 0.3611 - euclidean_distance: 0.7780
Epoch 33/100
152/152 [==============================] - 0s 795us/step - loss: 0.5180 - accuracy: 0.6802 - mae: 0.5180 - pearson_correlation: 0.3455 - euclidean_distance: 0.7686
Epoch 34/100
152/152 [==============================] - 0s 795us/step - loss: 0.5101 - accuracy: 0.6806 - mae: 0.5101 - pearson_correlation: 0.3515 - euclidean_distance: 0.7576
Epoch 35/100
152/152 [==============================] - 0s 799us/step - loss: 0.5037 - accuracy: 0.6709 - mae: 0.5037 - pearson_correlation: 0.3464 - euclidean_distance: 0.7492
Epoch 36/100
152/152 [==============================] - 0s 800us/step - loss: 0.4966 - accuracy: 0.6802 - mae: 0.4966 - pearson_correlation: 0.3546 - euclidean_distance: 0.7387
Epoch 37/100
152/152 [==============================] - 0s 796us/step - loss: 0.4888 - accuracy: 0.6833 - mae: 0.4888 - pearson_correlation: 0.3359 - euclidean_distance: 0.7283
Epoch 38/100
152/152 [==============================] - 0s 801us/step - loss: 0.4828 - accuracy: 0.6674 - mae: 0.4828 - pearson_correlation: 0.3262 - euclidean_distance: 0.7206
Epoch 39/100
152/152 [==============================] - 0s 792us/step - loss: 0.4743 - accuracy: 0.6678 - mae: 0.4743 - pearson_correlation: 0.3296 - euclidean_distance: 0.7092
Epoch 40/100
152/152 [==============================] - 0s 798us/step - loss: 0.4683 - accuracy: 0.6670 - mae: 0.4683 - pearson_correlation: 0.3118 - euclidean_distance: 0.7015
Epoch 41/100
152/152 [==============================] - 0s 793us/step - loss: 0.4599 - accuracy: 0.6674 - mae: 0.4599 - pearson_correlation: 0.3193 - euclidean_distance: 0.6897
Epoch 42/100
152/152 [==============================] - 0s 797us/step - loss: 0.4523 - accuracy: 0.6683 - mae: 0.4523 - pearson_correlation: 0.3056 - euclidean_distance: 0.6798
Epoch 43/100
152/152 [==============================] - 0s 797us/step - loss: 0.4450 - accuracy: 0.6573 - mae: 0.4450 - pearson_correlation: 0.2913 - euclidean_distance: 0.6701
Epoch 44/100
152/152 [==============================] - 0s 790us/step - loss: 0.4372 - accuracy: 0.6533 - mae: 0.4372 - pearson_correlation: 0.2766 - euclidean_distance: 0.6602
Epoch 45/100
152/152 [==============================] - 0s 792us/step - loss: 0.4304 - accuracy: 0.6431 - mae: 0.4304 - pearson_correlation: 0.2657 - euclidean_distance: 0.6514
Epoch 46/100
152/152 [==============================] - 0s 801us/step - loss: 0.4213 - accuracy: 0.6387 - mae: 0.4213 - pearson_correlation: 0.2582 - euclidean_distance: 0.6396
Epoch 47/100
152/152 [==============================] - 0s 789us/step - loss: 0.4136 - accuracy: 0.6515 - mae: 0.4136 - pearson_correlation: 0.2511 - euclidean_distance: 0.6292
Epoch 48/100
152/152 [==============================] - 0s 787us/step - loss: 0.4042 - accuracy: 0.6414 - mae: 0.4042 - pearson_correlation: 0.2407 - euclidean_distance: 0.6173
Epoch 49/100
152/152 [==============================] - 0s 788us/step - loss: 0.3959 - accuracy: 0.6286 - mae: 0.3959 - pearson_correlation: 0.2327 - euclidean_distance: 0.6072
Epoch 50/100
152/152 [==============================] - 0s 793us/step - loss: 0.3877 - accuracy: 0.6224 - mae: 0.3877 - pearson_correlation: 0.2101 - euclidean_distance: 0.5969
Epoch 51/100
152/152 [==============================] - 0s 817us/step - loss: 0.3782 - accuracy: 0.6176 - mae: 0.3782 - pearson_correlation: 0.1979 - euclidean_distance: 0.5852
Epoch 52/100
152/152 [==============================] - 0s 800us/step - loss: 0.3695 - accuracy: 0.6004 - mae: 0.3695 - pearson_correlation: 0.1872 - euclidean_distance: 0.5747
Epoch 53/100
152/152 [==============================] - 0s 792us/step - loss: 0.3612 - accuracy: 0.6043 - mae: 0.3612 - pearson_correlation: 0.1650 - euclidean_distance: 0.5638
Epoch 54/100
152/152 [==============================] - 0s 798us/step - loss: 0.3529 - accuracy: 0.5867 - mae: 0.3529 - pearson_correlation: 0.1618 - euclidean_distance: 0.5534
Epoch 55/100
152/152 [==============================] - 0s 791us/step - loss: 0.3428 - accuracy: 0.5929 - mae: 0.3428 - pearson_correlation: 0.1660 - euclidean_distance: 0.5400
Epoch 56/100
152/152 [==============================] - 0s 789us/step - loss: 0.3361 - accuracy: 0.5933 - mae: 0.3361 - pearson_correlation: 0.1601 - euclidean_distance: 0.5305
Epoch 57/100
152/152 [==============================] - 0s 793us/step - loss: 0.3280 - accuracy: 0.5977 - mae: 0.3280 - pearson_correlation: 0.1648 - euclidean_distance: 0.5193
Epoch 58/100
152/152 [==============================] - 0s 790us/step - loss: 0.3195 - accuracy: 0.5867 - mae: 0.3195 - pearson_correlation: 0.1528 - euclidean_distance: 0.5077
Epoch 59/100
152/152 [==============================] - 0s 815us/step - loss: 0.3135 - accuracy: 0.6154 - mae: 0.3135 - pearson_correlation: 0.1550 - euclidean_distance: 0.4993
Epoch 60/100
152/152 [==============================] - 0s 787us/step - loss: 0.3053 - accuracy: 0.6114 - mae: 0.3053 - pearson_correlation: 0.1633 - euclidean_distance: 0.4869
Epoch 61/100
152/152 [==============================] - 0s 791us/step - loss: 0.2989 - accuracy: 0.6246 - mae: 0.2989 - pearson_correlation: 0.1728 - euclidean_distance: 0.4776
Epoch 62/100
152/152 [==============================] - 0s 786us/step - loss: 0.2929 - accuracy: 0.6308 - mae: 0.2929 - pearson_correlation: 0.1777 - euclidean_distance: 0.4680
Epoch 63/100
152/152 [==============================] - 0s 793us/step - loss: 0.2842 - accuracy: 0.6370 - mae: 0.2842 - pearson_correlation: 0.1985 - euclidean_distance: 0.4560
Epoch 64/100
152/152 [==============================] - 0s 842us/step - loss: 0.2782 - accuracy: 0.6608 - mae: 0.2782 - pearson_correlation: 0.2026 - euclidean_distance: 0.4477
Epoch 65/100
152/152 [==============================] - 0s 885us/step - loss: 0.2725 - accuracy: 0.6714 - mae: 0.2725 - pearson_correlation: 0.2096 - euclidean_distance: 0.4391
Epoch 66/100
152/152 [==============================] - 0s 885us/step - loss: 0.2653 - accuracy: 0.6771 - mae: 0.2653 - pearson_correlation: 0.2196 - euclidean_distance: 0.4277
Epoch 67/100
152/152 [==============================] - 0s 900us/step - loss: 0.2583 - accuracy: 0.6956 - mae: 0.2583 - pearson_correlation: 0.2389 - euclidean_distance: 0.4178
Epoch 68/100
152/152 [==============================] - 0s 914us/step - loss: 0.2527 - accuracy: 0.7133 - mae: 0.2527 - pearson_correlation: 0.2406 - euclidean_distance: 0.4086
Epoch 69/100
152/152 [==============================] - 0s 806us/step - loss: 0.2486 - accuracy: 0.7203 - mae: 0.2486 - pearson_correlation: 0.2645 - euclidean_distance: 0.4037
Epoch 70/100
152/152 [==============================] - 0s 804us/step - loss: 0.2395 - accuracy: 0.7305 - mae: 0.2395 - pearson_correlation: 0.2827 - euclidean_distance: 0.3898
Epoch 71/100
152/152 [==============================] - 0s 791us/step - loss: 0.2334 - accuracy: 0.7530 - mae: 0.2334 - pearson_correlation: 0.2973 - euclidean_distance: 0.3814
Epoch 72/100
152/152 [==============================] - 0s 795us/step - loss: 0.2286 - accuracy: 0.7587 - mae: 0.2286 - pearson_correlation: 0.3017 - euclidean_distance: 0.3729
Epoch 73/100
152/152 [==============================] - 0s 796us/step - loss: 0.2247 - accuracy: 0.7636 - mae: 0.2247 - pearson_correlation: 0.3128 - euclidean_distance: 0.3679
Epoch 74/100
152/152 [==============================] - 0s 788us/step - loss: 0.2193 - accuracy: 0.7874 - mae: 0.2193 - pearson_correlation: 0.3161 - euclidean_distance: 0.3594
Epoch 75/100
152/152 [==============================] - 0s 798us/step - loss: 0.2141 - accuracy: 0.7914 - mae: 0.2141 - pearson_correlation: 0.3374 - euclidean_distance: 0.3524
Epoch 76/100
152/152 [==============================] - 0s 793us/step - loss: 0.2080 - accuracy: 0.8086 - mae: 0.2080 - pearson_correlation: 0.3476 - euclidean_distance: 0.3432
Epoch 77/100
152/152 [==============================] - 0s 790us/step - loss: 0.2042 - accuracy: 0.8072 - mae: 0.2042 - pearson_correlation: 0.3578 - euclidean_distance: 0.3375
Epoch 78/100
152/152 [==============================] - 0s 799us/step - loss: 0.1993 - accuracy: 0.8249 - mae: 0.1993 - pearson_correlation: 0.3703 - euclidean_distance: 0.3305
Epoch 79/100
152/152 [==============================] - 0s 803us/step - loss: 0.1953 - accuracy: 0.8253 - mae: 0.1953 - pearson_correlation: 0.3683 - euclidean_distance: 0.3253
Epoch 80/100
152/152 [==============================] - 0s 805us/step - loss: 0.1903 - accuracy: 0.8328 - mae: 0.1903 - pearson_correlation: 0.3863 - euclidean_distance: 0.3171
Epoch 81/100
152/152 [==============================] - 0s 794us/step - loss: 0.1891 - accuracy: 0.8346 - mae: 0.1891 - pearson_correlation: 0.3887 - euclidean_distance: 0.3148
Epoch 82/100
152/152 [==============================] - 0s 791us/step - loss: 0.1832 - accuracy: 0.8509 - mae: 0.1832 - pearson_correlation: 0.4132 - euclidean_distance: 0.3054
Epoch 83/100
152/152 [==============================] - 0s 800us/step - loss: 0.1783 - accuracy: 0.8615 - mae: 0.1783 - pearson_correlation: 0.4253 - euclidean_distance: 0.2989
Epoch 84/100
152/152 [==============================] - 0s 800us/step - loss: 0.1769 - accuracy: 0.8743 - mae: 0.1769 - pearson_correlation: 0.4306 - euclidean_distance: 0.2961
Epoch 85/100
152/152 [==============================] - 0s 792us/step - loss: 0.1746 - accuracy: 0.8699 - mae: 0.1746 - pearson_correlation: 0.4336 - euclidean_distance: 0.2920
Epoch 86/100
152/152 [==============================] - 0s 790us/step - loss: 0.1702 - accuracy: 0.8756 - mae: 0.1702 - pearson_correlation: 0.4427 - euclidean_distance: 0.2855
Epoch 87/100
152/152 [==============================] - 0s 794us/step - loss: 0.1659 - accuracy: 0.8791 - mae: 0.1659 - pearson_correlation: 0.4570 - euclidean_distance: 0.2790
Epoch 88/100
152/152 [==============================] - 0s 795us/step - loss: 0.1637 - accuracy: 0.8928 - mae: 0.1637 - pearson_correlation: 0.4731 - euclidean_distance: 0.2753
Epoch 89/100
152/152 [==============================] - 0s 800us/step - loss: 0.1607 - accuracy: 0.9030 - mae: 0.1607 - pearson_correlation: 0.4859 - euclidean_distance: 0.2701
Epoch 90/100
152/152 [==============================] - 0s 797us/step - loss: 0.1594 - accuracy: 0.8968 - mae: 0.1594 - pearson_correlation: 0.4883 - euclidean_distance: 0.2682
Epoch 91/100
152/152 [==============================] - 0s 793us/step - loss: 0.1518 - accuracy: 0.9122 - mae: 0.1518 - pearson_correlation: 0.5137 - euclidean_distance: 0.2558
Epoch 92/100
152/152 [==============================] - 0s 788us/step - loss: 0.1511 - accuracy: 0.9162 - mae: 0.1511 - pearson_correlation: 0.5132 - euclidean_distance: 0.2549
Epoch 93/100
152/152 [==============================] - 0s 795us/step - loss: 0.1520 - accuracy: 0.9096 - mae: 0.1520 - pearson_correlation: 0.5104 - euclidean_distance: 0.2560
Epoch 94/100
152/152 [==============================] - 0s 784us/step - loss: 0.1507 - accuracy: 0.9162 - mae: 0.1507 - pearson_correlation: 0.5161 - euclidean_distance: 0.2531
Epoch 95/100
152/152 [==============================] - 0s 800us/step - loss: 0.1462 - accuracy: 0.9255 - mae: 0.1462 - pearson_correlation: 0.5318 - euclidean_distance: 0.2455
Epoch 96/100
152/152 [==============================] - 0s 788us/step - loss: 0.1447 - accuracy: 0.9285 - mae: 0.1447 - pearson_correlation: 0.5419 - euclidean_distance: 0.2427
Epoch 97/100
152/152 [==============================] - 0s 795us/step - loss: 0.1424 - accuracy: 0.9316 - mae: 0.1424 - pearson_correlation: 0.5490 - euclidean_distance: 0.2389
Epoch 98/100
152/152 [==============================] - 0s 792us/step - loss: 0.1391 - accuracy: 0.9330 - mae: 0.1391 - pearson_correlation: 0.5580 - euclidean_distance: 0.2341
Epoch 99/100
152/152 [==============================] - 0s 801us/step - loss: 0.1407 - accuracy: 0.9374 - mae: 0.1407 - pearson_correlation: 0.5591 - euclidean_distance: 0.2357
Epoch 100/100
152/152 [==============================] - 0s 792us/step - loss: 0.1348 - accuracy: 0.9374 - mae: 0.1348 - pearson_correlation: 0.5797 - euclidean_distance: 0.2263
76/76 [==============================] - 0s 444us/step
Epoch 1/100
152/152 [==============================] - 1s 815us/step - loss: 0.5359 - accuracy: 0.9497 - mae: 0.5359 - pearson_correlation: 0.6602 - euclidean_distance: 0.7885
Epoch 2/100
152/152 [==============================] - 0s 811us/step - loss: 0.5285 - accuracy: 0.9493 - mae: 0.5285 - pearson_correlation: 0.6567 - euclidean_distance: 0.7770
Epoch 3/100
152/152 [==============================] - 0s 800us/step - loss: 0.5222 - accuracy: 0.9511 - mae: 0.5222 - pearson_correlation: 0.6561 - euclidean_distance: 0.7679
Epoch 4/100
152/152 [==============================] - 0s 799us/step - loss: 0.5156 - accuracy: 0.9519 - mae: 0.5156 - pearson_correlation: 0.6529 - euclidean_distance: 0.7585
Epoch 5/100
152/152 [==============================] - 0s 791us/step - loss: 0.5089 - accuracy: 0.9502 - mae: 0.5089 - pearson_correlation: 0.6573 - euclidean_distance: 0.7497
Epoch 6/100
152/152 [==============================] - 0s 800us/step - loss: 0.5034 - accuracy: 0.9533 - mae: 0.5034 - pearson_correlation: 0.6567 - euclidean_distance: 0.7404
Epoch 7/100
152/152 [==============================] - 0s 812us/step - loss: 0.4948 - accuracy: 0.9533 - mae: 0.4948 - pearson_correlation: 0.6582 - euclidean_distance: 0.7293
Epoch 8/100
152/152 [==============================] - 0s 799us/step - loss: 0.4881 - accuracy: 0.9528 - mae: 0.4881 - pearson_correlation: 0.6575 - euclidean_distance: 0.7193
Epoch 9/100
152/152 [==============================] - 0s 795us/step - loss: 0.4802 - accuracy: 0.9506 - mae: 0.4802 - pearson_correlation: 0.6579 - euclidean_distance: 0.7085
Epoch 10/100
152/152 [==============================] - 0s 798us/step - loss: 0.4758 - accuracy: 0.9515 - mae: 0.4758 - pearson_correlation: 0.6519 - euclidean_distance: 0.7020
Epoch 11/100
152/152 [==============================] - 0s 787us/step - loss: 0.4676 - accuracy: 0.9528 - mae: 0.4676 - pearson_correlation: 0.6565 - euclidean_distance: 0.6911
Epoch 12/100
152/152 [==============================] - 0s 796us/step - loss: 0.4601 - accuracy: 0.9506 - mae: 0.4601 - pearson_correlation: 0.6579 - euclidean_distance: 0.6799
Epoch 13/100
152/152 [==============================] - 0s 797us/step - loss: 0.4536 - accuracy: 0.9524 - mae: 0.4536 - pearson_correlation: 0.6600 - euclidean_distance: 0.6706
Epoch 14/100
152/152 [==============================] - 0s 797us/step - loss: 0.4479 - accuracy: 0.9533 - mae: 0.4479 - pearson_correlation: 0.6538 - euclidean_distance: 0.6622
Epoch 15/100
152/152 [==============================] - 0s 794us/step - loss: 0.4419 - accuracy: 0.9537 - mae: 0.4419 - pearson_correlation: 0.6532 - euclidean_distance: 0.6533
Epoch 16/100
152/152 [==============================] - 0s 789us/step - loss: 0.4340 - accuracy: 0.9537 - mae: 0.4340 - pearson_correlation: 0.6617 - euclidean_distance: 0.6412
Epoch 17/100
152/152 [==============================] - 0s 792us/step - loss: 0.4277 - accuracy: 0.9519 - mae: 0.4277 - pearson_correlation: 0.6594 - euclidean_distance: 0.6318
Epoch 18/100
152/152 [==============================] - 0s 792us/step - loss: 0.4200 - accuracy: 0.9519 - mae: 0.4200 - pearson_correlation: 0.6595 - euclidean_distance: 0.6220
Epoch 19/100
152/152 [==============================] - 0s 791us/step - loss: 0.4135 - accuracy: 0.9515 - mae: 0.4135 - pearson_correlation: 0.6609 - euclidean_distance: 0.6126
Epoch 20/100
152/152 [==============================] - 0s 791us/step - loss: 0.4092 - accuracy: 0.9519 - mae: 0.4092 - pearson_correlation: 0.6500 - euclidean_distance: 0.6065
Epoch 21/100
152/152 [==============================] - 0s 789us/step - loss: 0.4017 - accuracy: 0.9533 - mae: 0.4017 - pearson_correlation: 0.6538 - euclidean_distance: 0.5948
Epoch 22/100
152/152 [==============================] - 0s 792us/step - loss: 0.3952 - accuracy: 0.9537 - mae: 0.3952 - pearson_correlation: 0.6559 - euclidean_distance: 0.5859
Epoch 23/100
152/152 [==============================] - 0s 800us/step - loss: 0.3871 - accuracy: 0.9515 - mae: 0.3871 - pearson_correlation: 0.6584 - euclidean_distance: 0.5751
Epoch 24/100
152/152 [==============================] - 0s 792us/step - loss: 0.3815 - accuracy: 0.9563 - mae: 0.3815 - pearson_correlation: 0.6546 - euclidean_distance: 0.5663
Epoch 25/100
152/152 [==============================] - 0s 800us/step - loss: 0.3738 - accuracy: 0.9524 - mae: 0.3738 - pearson_correlation: 0.6621 - euclidean_distance: 0.5554
Epoch 26/100
152/152 [==============================] - 0s 793us/step - loss: 0.3700 - accuracy: 0.9537 - mae: 0.3700 - pearson_correlation: 0.6583 - euclidean_distance: 0.5493
Epoch 27/100
152/152 [==============================] - 0s 792us/step - loss: 0.3641 - accuracy: 0.9519 - mae: 0.3641 - pearson_correlation: 0.6548 - euclidean_distance: 0.5418
Epoch 28/100
152/152 [==============================] - 0s 785us/step - loss: 0.3577 - accuracy: 0.9528 - mae: 0.3577 - pearson_correlation: 0.6525 - euclidean_distance: 0.5318
Epoch 29/100
152/152 [==============================] - 0s 792us/step - loss: 0.3525 - accuracy: 0.9546 - mae: 0.3525 - pearson_correlation: 0.6567 - euclidean_distance: 0.5239
Epoch 30/100
152/152 [==============================] - 0s 790us/step - loss: 0.3455 - accuracy: 0.9537 - mae: 0.3455 - pearson_correlation: 0.6509 - euclidean_distance: 0.5146
Epoch 31/100
152/152 [==============================] - 0s 794us/step - loss: 0.3396 - accuracy: 0.9524 - mae: 0.3396 - pearson_correlation: 0.6472 - euclidean_distance: 0.5067
Epoch 32/100
152/152 [==============================] - 0s 786us/step - loss: 0.3320 - accuracy: 0.9533 - mae: 0.3320 - pearson_correlation: 0.6518 - euclidean_distance: 0.4957
Epoch 33/100
152/152 [==============================] - 0s 790us/step - loss: 0.3300 - accuracy: 0.9537 - mae: 0.3300 - pearson_correlation: 0.6459 - euclidean_distance: 0.4910
Epoch 34/100
152/152 [==============================] - 0s 794us/step - loss: 0.3218 - accuracy: 0.9541 - mae: 0.3218 - pearson_correlation: 0.6551 - euclidean_distance: 0.4804
Epoch 35/100
152/152 [==============================] - 0s 832us/step - loss: 0.3162 - accuracy: 0.9533 - mae: 0.3162 - pearson_correlation: 0.6501 - euclidean_distance: 0.4726
Epoch 36/100
152/152 [==============================] - 0s 797us/step - loss: 0.3124 - accuracy: 0.9533 - mae: 0.3124 - pearson_correlation: 0.6497 - euclidean_distance: 0.4667
Epoch 37/100
152/152 [==============================] - 0s 795us/step - loss: 0.3051 - accuracy: 0.9559 - mae: 0.3051 - pearson_correlation: 0.6503 - euclidean_distance: 0.4566
Epoch 38/100
152/152 [==============================] - 0s 796us/step - loss: 0.3011 - accuracy: 0.9528 - mae: 0.3011 - pearson_correlation: 0.6458 - euclidean_distance: 0.4509
Epoch 39/100
152/152 [==============================] - 0s 798us/step - loss: 0.2944 - accuracy: 0.9537 - mae: 0.2944 - pearson_correlation: 0.6516 - euclidean_distance: 0.4413
Epoch 40/100
152/152 [==============================] - 0s 790us/step - loss: 0.2915 - accuracy: 0.9533 - mae: 0.2915 - pearson_correlation: 0.6440 - euclidean_distance: 0.4375
Epoch 41/100
152/152 [==============================] - 0s 786us/step - loss: 0.2836 - accuracy: 0.9555 - mae: 0.2836 - pearson_correlation: 0.6490 - euclidean_distance: 0.4263
Epoch 42/100
152/152 [==============================] - 0s 787us/step - loss: 0.2802 - accuracy: 0.9519 - mae: 0.2802 - pearson_correlation: 0.6487 - euclidean_distance: 0.4205
Epoch 43/100
152/152 [==============================] - 0s 794us/step - loss: 0.2737 - accuracy: 0.9524 - mae: 0.2737 - pearson_correlation: 0.6495 - euclidean_distance: 0.4121
Epoch 44/100
152/152 [==============================] - 0s 796us/step - loss: 0.2706 - accuracy: 0.9537 - mae: 0.2706 - pearson_correlation: 0.6462 - euclidean_distance: 0.4066
Epoch 45/100
152/152 [==============================] - 0s 790us/step - loss: 0.2655 - accuracy: 0.9541 - mae: 0.2655 - pearson_correlation: 0.6453 - euclidean_distance: 0.3997
Epoch 46/100
152/152 [==============================] - 0s 785us/step - loss: 0.2609 - accuracy: 0.9519 - mae: 0.2609 - pearson_correlation: 0.6454 - euclidean_distance: 0.3932
Epoch 47/100
152/152 [==============================] - 0s 796us/step - loss: 0.2584 - accuracy: 0.9533 - mae: 0.2584 - pearson_correlation: 0.6432 - euclidean_distance: 0.3898
Epoch 48/100
152/152 [==============================] - 0s 788us/step - loss: 0.2527 - accuracy: 0.9533 - mae: 0.2527 - pearson_correlation: 0.6446 - euclidean_distance: 0.3812
Epoch 49/100
152/152 [==============================] - 0s 793us/step - loss: 0.2490 - accuracy: 0.9533 - mae: 0.2490 - pearson_correlation: 0.6475 - euclidean_distance: 0.3759
Epoch 50/100
152/152 [==============================] - 0s 790us/step - loss: 0.2428 - accuracy: 0.9550 - mae: 0.2428 - pearson_correlation: 0.6500 - euclidean_distance: 0.3668
Epoch 51/100
152/152 [==============================] - 0s 787us/step - loss: 0.2424 - accuracy: 0.9533 - mae: 0.2424 - pearson_correlation: 0.6464 - euclidean_distance: 0.3666
Epoch 52/100
152/152 [==============================] - 0s 795us/step - loss: 0.2379 - accuracy: 0.9546 - mae: 0.2379 - pearson_correlation: 0.6463 - euclidean_distance: 0.3606
Epoch 53/100
152/152 [==============================] - 0s 790us/step - loss: 0.2336 - accuracy: 0.9541 - mae: 0.2336 - pearson_correlation: 0.6463 - euclidean_distance: 0.3540
Epoch 54/100
152/152 [==============================] - 0s 791us/step - loss: 0.2288 - accuracy: 0.9537 - mae: 0.2288 - pearson_correlation: 0.6461 - euclidean_distance: 0.3473
Epoch 55/100
152/152 [==============================] - 0s 791us/step - loss: 0.2270 - accuracy: 0.9541 - mae: 0.2270 - pearson_correlation: 0.6467 - euclidean_distance: 0.3447
Epoch 56/100
152/152 [==============================] - 0s 786us/step - loss: 0.2217 - accuracy: 0.9541 - mae: 0.2217 - pearson_correlation: 0.6502 - euclidean_distance: 0.3373
Epoch 57/100
152/152 [==============================] - 0s 795us/step - loss: 0.2189 - accuracy: 0.9528 - mae: 0.2189 - pearson_correlation: 0.6539 - euclidean_distance: 0.3327
Epoch 58/100
152/152 [==============================] - 0s 788us/step - loss: 0.2124 - accuracy: 0.9541 - mae: 0.2124 - pearson_correlation: 0.6546 - euclidean_distance: 0.3238
Epoch 59/100
152/152 [==============================] - 0s 792us/step - loss: 0.2102 - accuracy: 0.9546 - mae: 0.2102 - pearson_correlation: 0.6547 - euclidean_distance: 0.3204
Epoch 60/100
152/152 [==============================] - 0s 788us/step - loss: 0.2101 - accuracy: 0.9537 - mae: 0.2101 - pearson_correlation: 0.6517 - euclidean_distance: 0.3204
Epoch 61/100
152/152 [==============================] - 0s 791us/step - loss: 0.2052 - accuracy: 0.9541 - mae: 0.2052 - pearson_correlation: 0.6584 - euclidean_distance: 0.3138
Epoch 62/100
152/152 [==============================] - 0s 793us/step - loss: 0.2037 - accuracy: 0.9541 - mae: 0.2037 - pearson_correlation: 0.6526 - euclidean_distance: 0.3122
Epoch 63/100
152/152 [==============================] - 0s 798us/step - loss: 0.1994 - accuracy: 0.9537 - mae: 0.1994 - pearson_correlation: 0.6551 - euclidean_distance: 0.3057
Epoch 64/100
152/152 [==============================] - 0s 823us/step - loss: 0.1969 - accuracy: 0.9537 - mae: 0.1969 - pearson_correlation: 0.6549 - euclidean_distance: 0.3004
Epoch 65/100
152/152 [==============================] - 0s 794us/step - loss: 0.1961 - accuracy: 0.9546 - mae: 0.1961 - pearson_correlation: 0.6587 - euclidean_distance: 0.3017
Epoch 66/100
152/152 [==============================] - 0s 791us/step - loss: 0.1909 - accuracy: 0.9533 - mae: 0.1909 - pearson_correlation: 0.6577 - euclidean_distance: 0.2941
Epoch 67/100
152/152 [==============================] - 0s 788us/step - loss: 0.1881 - accuracy: 0.9533 - mae: 0.1881 - pearson_correlation: 0.6598 - euclidean_distance: 0.2901
Epoch 68/100
152/152 [==============================] - 0s 790us/step - loss: 0.1881 - accuracy: 0.9528 - mae: 0.1881 - pearson_correlation: 0.6579 - euclidean_distance: 0.2900
Epoch 69/100
152/152 [==============================] - 0s 790us/step - loss: 0.1838 - accuracy: 0.9537 - mae: 0.1838 - pearson_correlation: 0.6659 - euclidean_distance: 0.2840
Epoch 70/100
152/152 [==============================] - 0s 797us/step - loss: 0.1837 - accuracy: 0.9541 - mae: 0.1837 - pearson_correlation: 0.6620 - euclidean_distance: 0.2843
Epoch 71/100
152/152 [==============================] - 0s 797us/step - loss: 0.1804 - accuracy: 0.9519 - mae: 0.1804 - pearson_correlation: 0.6647 - euclidean_distance: 0.2795
Epoch 72/100
152/152 [==============================] - 0s 821us/step - loss: 0.1740 - accuracy: 0.9537 - mae: 0.1740 - pearson_correlation: 0.6764 - euclidean_distance: 0.2705
Epoch 73/100
152/152 [==============================] - 0s 813us/step - loss: 0.1733 - accuracy: 0.9541 - mae: 0.1733 - pearson_correlation: 0.6641 - euclidean_distance: 0.2696
Epoch 74/100
152/152 [==============================] - 0s 792us/step - loss: 0.1714 - accuracy: 0.9550 - mae: 0.1714 - pearson_correlation: 0.6697 - euclidean_distance: 0.2673
Epoch 75/100
152/152 [==============================] - 0s 787us/step - loss: 0.1718 - accuracy: 0.9550 - mae: 0.1718 - pearson_correlation: 0.6710 - euclidean_distance: 0.2672
Epoch 76/100
152/152 [==============================] - 0s 786us/step - loss: 0.1667 - accuracy: 0.9533 - mae: 0.1667 - pearson_correlation: 0.6759 - euclidean_distance: 0.2603
Epoch 77/100
152/152 [==============================] - 0s 788us/step - loss: 0.1650 - accuracy: 0.9533 - mae: 0.1650 - pearson_correlation: 0.6739 - euclidean_distance: 0.2585
Epoch 78/100
152/152 [==============================] - 0s 792us/step - loss: 0.1643 - accuracy: 0.9541 - mae: 0.1643 - pearson_correlation: 0.6765 - euclidean_distance: 0.2571
Epoch 79/100
152/152 [==============================] - 0s 792us/step - loss: 0.1592 - accuracy: 0.9541 - mae: 0.1592 - pearson_correlation: 0.6835 - euclidean_distance: 0.2492
Epoch 80/100
152/152 [==============================] - 0s 793us/step - loss: 0.1613 - accuracy: 0.9541 - mae: 0.1613 - pearson_correlation: 0.6756 - euclidean_distance: 0.2541
Epoch 81/100
152/152 [==============================] - 0s 791us/step - loss: 0.1601 - accuracy: 0.9537 - mae: 0.1601 - pearson_correlation: 0.6791 - euclidean_distance: 0.2512
Epoch 82/100
152/152 [==============================] - 0s 786us/step - loss: 0.1579 - accuracy: 0.9524 - mae: 0.1579 - pearson_correlation: 0.6744 - euclidean_distance: 0.2495
Epoch 83/100
152/152 [==============================] - 0s 787us/step - loss: 0.1547 - accuracy: 0.9528 - mae: 0.1547 - pearson_correlation: 0.6833 - euclidean_distance: 0.2441
Epoch 84/100
152/152 [==============================] - 0s 793us/step - loss: 0.1501 - accuracy: 0.9541 - mae: 0.1501 - pearson_correlation: 0.6856 - euclidean_distance: 0.2380
Epoch 85/100
152/152 [==============================] - 0s 791us/step - loss: 0.1532 - accuracy: 0.9528 - mae: 0.1532 - pearson_correlation: 0.6849 - euclidean_distance: 0.2418
Epoch 86/100
152/152 [==============================] - 0s 788us/step - loss: 0.1510 - accuracy: 0.9533 - mae: 0.1510 - pearson_correlation: 0.6856 - euclidean_distance: 0.2393
Epoch 87/100
152/152 [==============================] - 0s 788us/step - loss: 0.1483 - accuracy: 0.9528 - mae: 0.1483 - pearson_correlation: 0.6892 - euclidean_distance: 0.2361
Epoch 88/100
152/152 [==============================] - 0s 808us/step - loss: 0.1443 - accuracy: 0.9537 - mae: 0.1443 - pearson_correlation: 0.6948 - euclidean_distance: 0.2292
Epoch 89/100
152/152 [==============================] - 0s 865us/step - loss: 0.1442 - accuracy: 0.9528 - mae: 0.1442 - pearson_correlation: 0.6951 - euclidean_distance: 0.2286
Epoch 90/100
152/152 [==============================] - 0s 875us/step - loss: 0.1425 - accuracy: 0.9528 - mae: 0.1425 - pearson_correlation: 0.6940 - euclidean_distance: 0.2265
Epoch 91/100
152/152 [==============================] - 0s 929us/step - loss: 0.1451 - accuracy: 0.9533 - mae: 0.1451 - pearson_correlation: 0.6842 - euclidean_distance: 0.2304
Epoch 92/100
152/152 [==============================] - 0s 920us/step - loss: 0.1409 - accuracy: 0.9537 - mae: 0.1409 - pearson_correlation: 0.6970 - euclidean_distance: 0.2236
Epoch 93/100
152/152 [==============================] - 0s 825us/step - loss: 0.1417 - accuracy: 0.9524 - mae: 0.1417 - pearson_correlation: 0.6929 - euclidean_distance: 0.2259
Epoch 94/100
152/152 [==============================] - 0s 806us/step - loss: 0.1351 - accuracy: 0.9533 - mae: 0.1351 - pearson_correlation: 0.6996 - euclidean_distance: 0.2156
Epoch 95/100
152/152 [==============================] - 0s 799us/step - loss: 0.1355 - accuracy: 0.9515 - mae: 0.1355 - pearson_correlation: 0.6982 - euclidean_distance: 0.2172
Epoch 96/100
152/152 [==============================] - 0s 801us/step - loss: 0.1371 - accuracy: 0.9537 - mae: 0.1371 - pearson_correlation: 0.6967 - euclidean_distance: 0.2188
Epoch 97/100
152/152 [==============================] - 0s 790us/step - loss: 0.1361 - accuracy: 0.9537 - mae: 0.1361 - pearson_correlation: 0.6942 - euclidean_distance: 0.2176
Epoch 98/100
152/152 [==============================] - 0s 793us/step - loss: 0.1331 - accuracy: 0.9511 - mae: 0.1331 - pearson_correlation: 0.6991 - euclidean_distance: 0.2140
Epoch 99/100
152/152 [==============================] - 0s 794us/step - loss: 0.1341 - accuracy: 0.9533 - mae: 0.1341 - pearson_correlation: 0.6990 - euclidean_distance: 0.2151
Epoch 100/100
152/152 [==============================] - 0s 802us/step - loss: 0.1318 - accuracy: 0.9533 - mae: 0.1318 - pearson_correlation: 0.6972 - euclidean_distance: 0.2107
76/76 [==============================] - 0s 436us/step
Epoch 1/150
152/152 [==============================] - 1s 818us/step - loss: 0.7211 - accuracy: 0.6802 - mae: 0.7211 - pearson_correlation: 0.3488 - euclidean_distance: 1.0631
Epoch 2/150
152/152 [==============================] - 0s 812us/step - loss: 0.7151 - accuracy: 0.6683 - mae: 0.7151 - pearson_correlation: 0.3438 - euclidean_distance: 1.0550
Epoch 3/150
152/152 [==============================] - 0s 801us/step - loss: 0.7077 - accuracy: 0.6687 - mae: 0.7077 - pearson_correlation: 0.3272 - euclidean_distance: 1.0456
Epoch 4/150
152/152 [==============================] - 0s 805us/step - loss: 0.7016 - accuracy: 0.6586 - mae: 0.7016 - pearson_correlation: 0.3180 - euclidean_distance: 1.0375
Epoch 5/150
152/152 [==============================] - 0s 802us/step - loss: 0.6960 - accuracy: 0.6630 - mae: 0.6960 - pearson_correlation: 0.3071 - euclidean_distance: 1.0296
Epoch 6/150
152/152 [==============================] - 0s 804us/step - loss: 0.6881 - accuracy: 0.6595 - mae: 0.6881 - pearson_correlation: 0.2941 - euclidean_distance: 1.0197
Epoch 7/150
152/152 [==============================] - 0s 805us/step - loss: 0.6811 - accuracy: 0.6502 - mae: 0.6811 - pearson_correlation: 0.2754 - euclidean_distance: 1.0112
Epoch 8/150
152/152 [==============================] - 0s 804us/step - loss: 0.6755 - accuracy: 0.6317 - mae: 0.6755 - pearson_correlation: 0.2633 - euclidean_distance: 1.0041
Epoch 9/150
152/152 [==============================] - 0s 802us/step - loss: 0.6702 - accuracy: 0.6467 - mae: 0.6702 - pearson_correlation: 0.2614 - euclidean_distance: 0.9960
Epoch 10/150
152/152 [==============================] - 0s 815us/step - loss: 0.6620 - accuracy: 0.6176 - mae: 0.6620 - pearson_correlation: 0.2261 - euclidean_distance: 0.9875
Epoch 11/150
152/152 [==============================] - 0s 811us/step - loss: 0.6580 - accuracy: 0.6242 - mae: 0.6580 - pearson_correlation: 0.2179 - euclidean_distance: 0.9818
Epoch 12/150
152/152 [==============================] - 0s 820us/step - loss: 0.6512 - accuracy: 0.6118 - mae: 0.6512 - pearson_correlation: 0.2109 - euclidean_distance: 0.9727
Epoch 13/150
152/152 [==============================] - 0s 807us/step - loss: 0.6450 - accuracy: 0.6083 - mae: 0.6450 - pearson_correlation: 0.1835 - euclidean_distance: 0.9650
Epoch 14/150
152/152 [==============================] - 0s 803us/step - loss: 0.6405 - accuracy: 0.6118 - mae: 0.6405 - pearson_correlation: 0.1875 - euclidean_distance: 0.9591
Epoch 15/150
152/152 [==============================] - 0s 809us/step - loss: 0.6336 - accuracy: 0.5955 - mae: 0.6336 - pearson_correlation: 0.1655 - euclidean_distance: 0.9497
Epoch 16/150
152/152 [==============================] - 0s 804us/step - loss: 0.6269 - accuracy: 0.5876 - mae: 0.6269 - pearson_correlation: 0.1411 - euclidean_distance: 0.9420
Epoch 17/150
152/152 [==============================] - 0s 799us/step - loss: 0.6226 - accuracy: 0.5831 - mae: 0.6226 - pearson_correlation: 0.1303 - euclidean_distance: 0.9365
Epoch 18/150
152/152 [==============================] - 0s 798us/step - loss: 0.6166 - accuracy: 0.5752 - mae: 0.6166 - pearson_correlation: 0.1149 - euclidean_distance: 0.9301
Epoch 19/150
152/152 [==============================] - 0s 800us/step - loss: 0.6119 - accuracy: 0.5809 - mae: 0.6119 - pearson_correlation: 0.0972 - euclidean_distance: 0.9238
Epoch 20/150
152/152 [==============================] - 0s 802us/step - loss: 0.6060 - accuracy: 0.5686 - mae: 0.6060 - pearson_correlation: 0.0842 - euclidean_distance: 0.9168
Epoch 21/150
152/152 [==============================] - 0s 804us/step - loss: 0.6004 - accuracy: 0.5637 - mae: 0.6004 - pearson_correlation: 0.0559 - euclidean_distance: 0.9095
Epoch 22/150
152/152 [==============================] - 0s 804us/step - loss: 0.5959 - accuracy: 0.5461 - mae: 0.5959 - pearson_correlation: 0.0508 - euclidean_distance: 0.9043
Epoch 23/150
152/152 [==============================] - 0s 805us/step - loss: 0.5909 - accuracy: 0.5558 - mae: 0.5909 - pearson_correlation: 0.0328 - euclidean_distance: 0.8974
Epoch 24/150
152/152 [==============================] - 0s 797us/step - loss: 0.5845 - accuracy: 0.5421 - mae: 0.5845 - pearson_correlation: 0.0116 - euclidean_distance: 0.8903
Epoch 25/150
152/152 [==============================] - 0s 798us/step - loss: 0.5800 - accuracy: 0.5227 - mae: 0.5800 - pearson_correlation: -0.0071 - euclidean_distance: 0.8846
Epoch 26/150
152/152 [==============================] - 0s 795us/step - loss: 0.5759 - accuracy: 0.5214 - mae: 0.5759 - pearson_correlation: -0.0199 - euclidean_distance: 0.8796
Epoch 27/150
152/152 [==============================] - 0s 799us/step - loss: 0.5695 - accuracy: 0.5117 - mae: 0.5695 - pearson_correlation: -0.0490 - euclidean_distance: 0.8720
Epoch 28/150
152/152 [==============================] - 0s 801us/step - loss: 0.5658 - accuracy: 0.5121 - mae: 0.5658 - pearson_correlation: -0.0559 - euclidean_distance: 0.8677
Epoch 29/150
152/152 [==============================] - 0s 794us/step - loss: 0.5602 - accuracy: 0.4874 - mae: 0.5602 - pearson_correlation: -0.0795 - euclidean_distance: 0.8617
Epoch 30/150
152/152 [==============================] - 0s 803us/step - loss: 0.5564 - accuracy: 0.4905 - mae: 0.5564 - pearson_correlation: -0.1001 - euclidean_distance: 0.8571
Epoch 31/150
152/152 [==============================] - 0s 798us/step - loss: 0.5501 - accuracy: 0.4817 - mae: 0.5501 - pearson_correlation: -0.1130 - euclidean_distance: 0.8506
Epoch 32/150
152/152 [==============================] - 0s 802us/step - loss: 0.5456 - accuracy: 0.4499 - mae: 0.5456 - pearson_correlation: -0.1440 - euclidean_distance: 0.8450
Epoch 33/150
152/152 [==============================] - 0s 797us/step - loss: 0.5414 - accuracy: 0.4376 - mae: 0.5414 - pearson_correlation: -0.1585 - euclidean_distance: 0.8396
Epoch 34/150
152/152 [==============================] - 0s 799us/step - loss: 0.5356 - accuracy: 0.4376 - mae: 0.5356 - pearson_correlation: -0.1836 - euclidean_distance: 0.8332
Epoch 35/150
152/152 [==============================] - 0s 793us/step - loss: 0.5313 - accuracy: 0.4243 - mae: 0.5313 - pearson_correlation: -0.1995 - euclidean_distance: 0.8286
Epoch 36/150
152/152 [==============================] - 0s 799us/step - loss: 0.5266 - accuracy: 0.3983 - mae: 0.5266 - pearson_correlation: -0.2243 - euclidean_distance: 0.8229
Epoch 37/150
152/152 [==============================] - 0s 800us/step - loss: 0.5218 - accuracy: 0.4032 - mae: 0.5218 - pearson_correlation: -0.2404 - euclidean_distance: 0.8180
Epoch 38/150
152/152 [==============================] - 0s 797us/step - loss: 0.5185 - accuracy: 0.3913 - mae: 0.5185 - pearson_correlation: -0.2469 - euclidean_distance: 0.8145
Epoch 39/150
152/152 [==============================] - 0s 798us/step - loss: 0.5122 - accuracy: 0.3723 - mae: 0.5122 - pearson_correlation: -0.2817 - euclidean_distance: 0.8070
Epoch 40/150
152/152 [==============================] - 0s 795us/step - loss: 0.5078 - accuracy: 0.3555 - mae: 0.5078 - pearson_correlation: -0.2952 - euclidean_distance: 0.8030
Epoch 41/150
152/152 [==============================] - 0s 796us/step - loss: 0.5035 - accuracy: 0.3467 - mae: 0.5035 - pearson_correlation: -0.3286 - euclidean_distance: 0.7981
Epoch 42/150
152/152 [==============================] - 0s 799us/step - loss: 0.4990 - accuracy: 0.3251 - mae: 0.4990 - pearson_correlation: -0.3394 - euclidean_distance: 0.7927
Epoch 43/150
152/152 [==============================] - 0s 795us/step - loss: 0.4943 - accuracy: 0.3075 - mae: 0.4943 - pearson_correlation: -0.3547 - euclidean_distance: 0.7877
Epoch 44/150
152/152 [==============================] - 0s 800us/step - loss: 0.4883 - accuracy: 0.3154 - mae: 0.4883 - pearson_correlation: -0.3794 - euclidean_distance: 0.7825
Epoch 45/150
152/152 [==============================] - 0s 791us/step - loss: 0.4831 - accuracy: 0.2942 - mae: 0.4831 - pearson_correlation: -0.3911 - euclidean_distance: 0.7764
Epoch 46/150
152/152 [==============================] - 0s 798us/step - loss: 0.4786 - accuracy: 0.2682 - mae: 0.4786 - pearson_correlation: -0.4213 - euclidean_distance: 0.7727
Epoch 47/150
152/152 [==============================] - 0s 794us/step - loss: 0.4754 - accuracy: 0.2708 - mae: 0.4754 - pearson_correlation: -0.4177 - euclidean_distance: 0.7679
Epoch 48/150
152/152 [==============================] - 0s 802us/step - loss: 0.4693 - accuracy: 0.2488 - mae: 0.4693 - pearson_correlation: -0.4595 - euclidean_distance: 0.7644
Epoch 49/150
152/152 [==============================] - 0s 798us/step - loss: 0.4657 - accuracy: 0.2448 - mae: 0.4657 - pearson_correlation: -0.4614 - euclidean_distance: 0.7593
Epoch 50/150
152/152 [==============================] - 0s 797us/step - loss: 0.4624 - accuracy: 0.2373 - mae: 0.4624 - pearson_correlation: -0.4710 - euclidean_distance: 0.7566
Epoch 51/150
152/152 [==============================] - 0s 796us/step - loss: 0.4547 - accuracy: 0.2219 - mae: 0.4547 - pearson_correlation: -0.4933 - euclidean_distance: 0.7494
Epoch 52/150
152/152 [==============================] - 0s 802us/step - loss: 0.4514 - accuracy: 0.2148 - mae: 0.4514 - pearson_correlation: -0.5126 - euclidean_distance: 0.7458
Epoch 53/150
152/152 [==============================] - 0s 793us/step - loss: 0.4463 - accuracy: 0.1963 - mae: 0.4463 - pearson_correlation: -0.5299 - euclidean_distance: 0.7406
Epoch 54/150
152/152 [==============================] - 0s 801us/step - loss: 0.4440 - accuracy: 0.1936 - mae: 0.4440 - pearson_correlation: -0.5265 - euclidean_distance: 0.7380
Epoch 55/150
152/152 [==============================] - 0s 798us/step - loss: 0.4393 - accuracy: 0.1822 - mae: 0.4393 - pearson_correlation: -0.5543 - euclidean_distance: 0.7339
Epoch 56/150
152/152 [==============================] - 0s 802us/step - loss: 0.4371 - accuracy: 0.1844 - mae: 0.4371 - pearson_correlation: -0.5533 - euclidean_distance: 0.7303
Epoch 57/150
152/152 [==============================] - 0s 792us/step - loss: 0.4326 - accuracy: 0.1698 - mae: 0.4326 - pearson_correlation: -0.5608 - euclidean_distance: 0.7256
Epoch 58/150
152/152 [==============================] - 0s 798us/step - loss: 0.4280 - accuracy: 0.1694 - mae: 0.4280 - pearson_correlation: -0.5784 - euclidean_distance: 0.7203
Epoch 59/150
152/152 [==============================] - 0s 796us/step - loss: 0.4239 - accuracy: 0.1663 - mae: 0.4239 - pearson_correlation: -0.5753 - euclidean_distance: 0.7160
Epoch 60/150
152/152 [==============================] - 0s 794us/step - loss: 0.4217 - accuracy: 0.1566 - mae: 0.4217 - pearson_correlation: -0.5910 - euclidean_distance: 0.7128
Epoch 61/150
152/152 [==============================] - 0s 802us/step - loss: 0.4172 - accuracy: 0.1544 - mae: 0.4172 - pearson_correlation: -0.5938 - euclidean_distance: 0.7079
Epoch 62/150
152/152 [==============================] - 0s 796us/step - loss: 0.4146 - accuracy: 0.1531 - mae: 0.4146 - pearson_correlation: -0.6037 - euclidean_distance: 0.7049
Epoch 63/150
152/152 [==============================] - 0s 796us/step - loss: 0.4124 - accuracy: 0.1491 - mae: 0.4124 - pearson_correlation: -0.6001 - euclidean_distance: 0.7019
Epoch 64/150
152/152 [==============================] - 0s 800us/step - loss: 0.4092 - accuracy: 0.1434 - mae: 0.4092 - pearson_correlation: -0.6090 - euclidean_distance: 0.6977
Epoch 65/150
152/152 [==============================] - 0s 802us/step - loss: 0.4058 - accuracy: 0.1350 - mae: 0.4058 - pearson_correlation: -0.6187 - euclidean_distance: 0.6932
Epoch 66/150
152/152 [==============================] - 0s 789us/step - loss: 0.4033 - accuracy: 0.1478 - mae: 0.4033 - pearson_correlation: -0.6145 - euclidean_distance: 0.6897
Epoch 67/150
152/152 [==============================] - 0s 795us/step - loss: 0.3993 - accuracy: 0.1301 - mae: 0.3993 - pearson_correlation: -0.6234 - euclidean_distance: 0.6845
Epoch 68/150
152/152 [==============================] - 0s 793us/step - loss: 0.3964 - accuracy: 0.1337 - mae: 0.3964 - pearson_correlation: -0.6326 - euclidean_distance: 0.6823
Epoch 69/150
152/152 [==============================] - 0s 802us/step - loss: 0.3929 - accuracy: 0.1248 - mae: 0.3929 - pearson_correlation: -0.6267 - euclidean_distance: 0.6774
Epoch 70/150
152/152 [==============================] - 0s 800us/step - loss: 0.3906 - accuracy: 0.1288 - mae: 0.3906 - pearson_correlation: -0.6278 - euclidean_distance: 0.6732
Epoch 71/150
152/152 [==============================] - 0s 796us/step - loss: 0.3898 - accuracy: 0.1240 - mae: 0.3898 - pearson_correlation: -0.6224 - euclidean_distance: 0.6703
Epoch 72/150
152/152 [==============================] - 0s 797us/step - loss: 0.3869 - accuracy: 0.1222 - mae: 0.3869 - pearson_correlation: -0.6240 - euclidean_distance: 0.6668
Epoch 73/150
152/152 [==============================] - 0s 798us/step - loss: 0.3835 - accuracy: 0.1257 - mae: 0.3835 - pearson_correlation: -0.6307 - euclidean_distance: 0.6630
Epoch 74/150
152/152 [==============================] - 0s 793us/step - loss: 0.3805 - accuracy: 0.1191 - mae: 0.3805 - pearson_correlation: -0.6370 - euclidean_distance: 0.6594
Epoch 75/150
152/152 [==============================] - 0s 792us/step - loss: 0.3794 - accuracy: 0.1226 - mae: 0.3794 - pearson_correlation: -0.6265 - euclidean_distance: 0.6557
Epoch 76/150
152/152 [==============================] - 0s 802us/step - loss: 0.3761 - accuracy: 0.1191 - mae: 0.3761 - pearson_correlation: -0.6304 - euclidean_distance: 0.6519
Epoch 77/150
152/152 [==============================] - 0s 799us/step - loss: 0.3731 - accuracy: 0.1217 - mae: 0.3731 - pearson_correlation: -0.6333 - euclidean_distance: 0.6475
Epoch 78/150
152/152 [==============================] - 0s 797us/step - loss: 0.3715 - accuracy: 0.1222 - mae: 0.3715 - pearson_correlation: -0.6349 - euclidean_distance: 0.6449
Epoch 79/150
152/152 [==============================] - 0s 797us/step - loss: 0.3685 - accuracy: 0.1315 - mae: 0.3685 - pearson_correlation: -0.6260 - euclidean_distance: 0.6395
Epoch 80/150
152/152 [==============================] - 0s 800us/step - loss: 0.3656 - accuracy: 0.1209 - mae: 0.3656 - pearson_correlation: -0.6140 - euclidean_distance: 0.6352
Epoch 81/150
152/152 [==============================] - 0s 805us/step - loss: 0.3629 - accuracy: 0.1169 - mae: 0.3629 - pearson_correlation: -0.6357 - euclidean_distance: 0.6328
Epoch 82/150
152/152 [==============================] - 0s 797us/step - loss: 0.3622 - accuracy: 0.1226 - mae: 0.3622 - pearson_correlation: -0.6106 - euclidean_distance: 0.6295
Epoch 83/150
152/152 [==============================] - 0s 801us/step - loss: 0.3585 - accuracy: 0.1226 - mae: 0.3585 - pearson_correlation: -0.6266 - euclidean_distance: 0.6241
Epoch 84/150
152/152 [==============================] - 0s 802us/step - loss: 0.3556 - accuracy: 0.1182 - mae: 0.3556 - pearson_correlation: -0.6148 - euclidean_distance: 0.6200
Epoch 85/150
152/152 [==============================] - 0s 801us/step - loss: 0.3528 - accuracy: 0.1222 - mae: 0.3528 - pearson_correlation: -0.6207 - euclidean_distance: 0.6161
Epoch 86/150
152/152 [==============================] - 0s 796us/step - loss: 0.3517 - accuracy: 0.1165 - mae: 0.3517 - pearson_correlation: -0.6243 - euclidean_distance: 0.6128
Epoch 87/150
152/152 [==============================] - 0s 795us/step - loss: 0.3513 - accuracy: 0.1306 - mae: 0.3513 - pearson_correlation: -0.6110 - euclidean_distance: 0.6100
Epoch 88/150
152/152 [==============================] - 0s 793us/step - loss: 0.3457 - accuracy: 0.1138 - mae: 0.3457 - pearson_correlation: -0.6213 - euclidean_distance: 0.6039
Epoch 89/150
152/152 [==============================] - 0s 801us/step - loss: 0.3445 - accuracy: 0.1226 - mae: 0.3445 - pearson_correlation: -0.6014 - euclidean_distance: 0.6002
Epoch 90/150
152/152 [==============================] - 0s 794us/step - loss: 0.3416 - accuracy: 0.1266 - mae: 0.3416 - pearson_correlation: -0.6009 - euclidean_distance: 0.5961
Epoch 91/150
152/152 [==============================] - 0s 800us/step - loss: 0.3401 - accuracy: 0.1323 - mae: 0.3401 - pearson_correlation: -0.6020 - euclidean_distance: 0.5928
Epoch 92/150
152/152 [==============================] - 0s 825us/step - loss: 0.3377 - accuracy: 0.1301 - mae: 0.3377 - pearson_correlation: -0.5992 - euclidean_distance: 0.5893
Epoch 93/150
152/152 [==============================] - 0s 805us/step - loss: 0.3339 - accuracy: 0.1262 - mae: 0.3339 - pearson_correlation: -0.5961 - euclidean_distance: 0.5836
Epoch 94/150
152/152 [==============================] - 0s 819us/step - loss: 0.3332 - accuracy: 0.1363 - mae: 0.3332 - pearson_correlation: -0.5826 - euclidean_distance: 0.5808
Epoch 95/150
152/152 [==============================] - 0s 801us/step - loss: 0.3290 - accuracy: 0.1337 - mae: 0.3290 - pearson_correlation: -0.5882 - euclidean_distance: 0.5756
Epoch 96/150
152/152 [==============================] - 0s 803us/step - loss: 0.3258 - accuracy: 0.1350 - mae: 0.3258 - pearson_correlation: -0.5728 - euclidean_distance: 0.5701
Epoch 97/150
152/152 [==============================] - 0s 802us/step - loss: 0.3247 - accuracy: 0.1434 - mae: 0.3247 - pearson_correlation: -0.5553 - euclidean_distance: 0.5665
Epoch 98/150
152/152 [==============================] - 0s 796us/step - loss: 0.3223 - accuracy: 0.1442 - mae: 0.3223 - pearson_correlation: -0.5626 - euclidean_distance: 0.5628
Epoch 99/150
152/152 [==============================] - 0s 803us/step - loss: 0.3196 - accuracy: 0.1434 - mae: 0.3196 - pearson_correlation: -0.5471 - euclidean_distance: 0.5582
Epoch 100/150
152/152 [==============================] - 0s 804us/step - loss: 0.3170 - accuracy: 0.1456 - mae: 0.3170 - pearson_correlation: -0.5456 - euclidean_distance: 0.5543
Epoch 101/150
152/152 [==============================] - 0s 800us/step - loss: 0.3132 - accuracy: 0.1447 - mae: 0.3132 - pearson_correlation: -0.5448 - euclidean_distance: 0.5485
Epoch 102/150
152/152 [==============================] - 0s 800us/step - loss: 0.3117 - accuracy: 0.1553 - mae: 0.3117 - pearson_correlation: -0.5305 - euclidean_distance: 0.5451
Epoch 103/150
152/152 [==============================] - 0s 799us/step - loss: 0.3113 - accuracy: 0.1641 - mae: 0.3113 - pearson_correlation: -0.5258 - euclidean_distance: 0.5425
Epoch 104/150
152/152 [==============================] - 0s 803us/step - loss: 0.3077 - accuracy: 0.1712 - mae: 0.3077 - pearson_correlation: -0.5045 - euclidean_distance: 0.5363
Epoch 105/150
152/152 [==============================] - 0s 798us/step - loss: 0.3068 - accuracy: 0.1729 - mae: 0.3068 - pearson_correlation: -0.4975 - euclidean_distance: 0.5339
Epoch 106/150
152/152 [==============================] - 0s 795us/step - loss: 0.3028 - accuracy: 0.1734 - mae: 0.3028 - pearson_correlation: -0.4915 - euclidean_distance: 0.5281
Epoch 107/150
152/152 [==============================] - 0s 798us/step - loss: 0.2987 - accuracy: 0.1795 - mae: 0.2987 - pearson_correlation: -0.4860 - euclidean_distance: 0.5226
Epoch 108/150
152/152 [==============================] - 0s 795us/step - loss: 0.2975 - accuracy: 0.1857 - mae: 0.2975 - pearson_correlation: -0.4624 - euclidean_distance: 0.5183
Epoch 109/150
152/152 [==============================] - 0s 799us/step - loss: 0.2955 - accuracy: 0.1928 - mae: 0.2955 - pearson_correlation: -0.4415 - euclidean_distance: 0.5142
Epoch 110/150
152/152 [==============================] - 0s 788us/step - loss: 0.2927 - accuracy: 0.1941 - mae: 0.2927 - pearson_correlation: -0.4428 - euclidean_distance: 0.5099
Epoch 111/150
152/152 [==============================] - 0s 794us/step - loss: 0.2896 - accuracy: 0.2144 - mae: 0.2896 - pearson_correlation: -0.4276 - euclidean_distance: 0.5038
Epoch 112/150
152/152 [==============================] - 0s 859us/step - loss: 0.2872 - accuracy: 0.2060 - mae: 0.2872 - pearson_correlation: -0.4166 - euclidean_distance: 0.5000
Epoch 113/150
152/152 [==============================] - 0s 890us/step - loss: 0.2842 - accuracy: 0.2161 - mae: 0.2842 - pearson_correlation: -0.4025 - euclidean_distance: 0.4939
Epoch 114/150
152/152 [==============================] - 0s 913us/step - loss: 0.2831 - accuracy: 0.2285 - mae: 0.2831 - pearson_correlation: -0.3762 - euclidean_distance: 0.4914
Epoch 115/150
152/152 [==============================] - 0s 914us/step - loss: 0.2789 - accuracy: 0.2395 - mae: 0.2789 - pearson_correlation: -0.3605 - euclidean_distance: 0.4848
Epoch 116/150
152/152 [==============================] - 0s 867us/step - loss: 0.2774 - accuracy: 0.2435 - mae: 0.2774 - pearson_correlation: -0.3416 - euclidean_distance: 0.4812
Epoch 117/150
152/152 [==============================] - 0s 811us/step - loss: 0.2759 - accuracy: 0.2550 - mae: 0.2759 - pearson_correlation: -0.3331 - euclidean_distance: 0.4769
Epoch 118/150
152/152 [==============================] - 0s 804us/step - loss: 0.2704 - accuracy: 0.2620 - mae: 0.2704 - pearson_correlation: -0.3256 - euclidean_distance: 0.4699
Epoch 119/150
152/152 [==============================] - 0s 802us/step - loss: 0.2685 - accuracy: 0.2691 - mae: 0.2685 - pearson_correlation: -0.2963 - euclidean_distance: 0.4650
Epoch 120/150
152/152 [==============================] - 0s 805us/step - loss: 0.2657 - accuracy: 0.2889 - mae: 0.2657 - pearson_correlation: -0.2876 - euclidean_distance: 0.4605
Epoch 121/150
152/152 [==============================] - 0s 803us/step - loss: 0.2622 - accuracy: 0.2894 - mae: 0.2622 - pearson_correlation: -0.2585 - euclidean_distance: 0.4541
Epoch 122/150
152/152 [==============================] - 0s 804us/step - loss: 0.2608 - accuracy: 0.3017 - mae: 0.2608 - pearson_correlation: -0.2354 - euclidean_distance: 0.4519
Epoch 123/150
152/152 [==============================] - 0s 799us/step - loss: 0.2573 - accuracy: 0.3361 - mae: 0.2573 - pearson_correlation: -0.1837 - euclidean_distance: 0.4442
Epoch 124/150
152/152 [==============================] - 0s 801us/step - loss: 0.2536 - accuracy: 0.3277 - mae: 0.2536 - pearson_correlation: -0.1888 - euclidean_distance: 0.4388
Epoch 125/150
152/152 [==============================] - 0s 798us/step - loss: 0.2502 - accuracy: 0.3480 - mae: 0.2502 - pearson_correlation: -0.1678 - euclidean_distance: 0.4322
Epoch 126/150
152/152 [==============================] - 0s 806us/step - loss: 0.2472 - accuracy: 0.3494 - mae: 0.2472 - pearson_correlation: -0.1452 - euclidean_distance: 0.4275
Epoch 127/150
152/152 [==============================] - 0s 797us/step - loss: 0.2464 - accuracy: 0.3719 - mae: 0.2464 - pearson_correlation: -0.1442 - euclidean_distance: 0.4252
Epoch 128/150
152/152 [==============================] - 0s 804us/step - loss: 0.2433 - accuracy: 0.3899 - mae: 0.2433 - pearson_correlation: -0.1017 - euclidean_distance: 0.4187
Epoch 129/150
152/152 [==============================] - 0s 800us/step - loss: 0.2391 - accuracy: 0.3988 - mae: 0.2391 - pearson_correlation: -0.0752 - euclidean_distance: 0.4121
Epoch 130/150
152/152 [==============================] - 0s 802us/step - loss: 0.2366 - accuracy: 0.4058 - mae: 0.2366 - pearson_correlation: -0.0688 - euclidean_distance: 0.4073
Epoch 131/150
152/152 [==============================] - 0s 789us/step - loss: 0.2338 - accuracy: 0.4305 - mae: 0.2338 - pearson_correlation: -0.0292 - euclidean_distance: 0.4009
Epoch 132/150
152/152 [==============================] - 0s 803us/step - loss: 0.2300 - accuracy: 0.4508 - mae: 0.2300 - pearson_correlation: -0.0039 - euclidean_distance: 0.3959
Epoch 133/150
152/152 [==============================] - 0s 796us/step - loss: 0.2275 - accuracy: 0.4623 - mae: 0.2275 - pearson_correlation: 0.0114 - euclidean_distance: 0.3891
Epoch 134/150
152/152 [==============================] - 0s 802us/step - loss: 0.2242 - accuracy: 0.4755 - mae: 0.2242 - pearson_correlation: 0.0470 - euclidean_distance: 0.3837
Epoch 135/150
152/152 [==============================] - 0s 803us/step - loss: 0.2230 - accuracy: 0.4940 - mae: 0.2230 - pearson_correlation: 0.0592 - euclidean_distance: 0.3809
Epoch 136/150
152/152 [==============================] - 0s 799us/step - loss: 0.2177 - accuracy: 0.5157 - mae: 0.2177 - pearson_correlation: 0.0784 - euclidean_distance: 0.3724
Epoch 137/150
152/152 [==============================] - 0s 801us/step - loss: 0.2154 - accuracy: 0.5240 - mae: 0.2154 - pearson_correlation: 0.1008 - euclidean_distance: 0.3685
Epoch 138/150
152/152 [==============================] - 0s 797us/step - loss: 0.2119 - accuracy: 0.5196 - mae: 0.2119 - pearson_correlation: 0.1289 - euclidean_distance: 0.3627
Epoch 139/150
152/152 [==============================] - 0s 792us/step - loss: 0.2115 - accuracy: 0.5479 - mae: 0.2115 - pearson_correlation: 0.1552 - euclidean_distance: 0.3591
Epoch 140/150
152/152 [==============================] - 0s 792us/step - loss: 0.2090 - accuracy: 0.5704 - mae: 0.2090 - pearson_correlation: 0.1784 - euclidean_distance: 0.3546
Epoch 141/150
152/152 [==============================] - 0s 799us/step - loss: 0.2033 - accuracy: 0.5915 - mae: 0.2033 - pearson_correlation: 0.1960 - euclidean_distance: 0.3455
Epoch 142/150
152/152 [==============================] - 0s 791us/step - loss: 0.2010 - accuracy: 0.5854 - mae: 0.2010 - pearson_correlation: 0.2051 - euclidean_distance: 0.3412
Epoch 143/150
152/152 [==============================] - 0s 794us/step - loss: 0.1979 - accuracy: 0.6193 - mae: 0.1979 - pearson_correlation: 0.2435 - euclidean_distance: 0.3357
Epoch 144/150
152/152 [==============================] - 0s 798us/step - loss: 0.1940 - accuracy: 0.6299 - mae: 0.1940 - pearson_correlation: 0.2623 - euclidean_distance: 0.3296
Epoch 145/150
152/152 [==============================] - 0s 797us/step - loss: 0.1901 - accuracy: 0.6537 - mae: 0.1901 - pearson_correlation: 0.2973 - euclidean_distance: 0.3227
Epoch 146/150
152/152 [==============================] - 0s 805us/step - loss: 0.1891 - accuracy: 0.6683 - mae: 0.1891 - pearson_correlation: 0.3098 - euclidean_distance: 0.3192
Epoch 147/150
152/152 [==============================] - 0s 799us/step - loss: 0.1852 - accuracy: 0.6855 - mae: 0.1852 - pearson_correlation: 0.3215 - euclidean_distance: 0.3131
Epoch 148/150
152/152 [==============================] - 0s 795us/step - loss: 0.1831 - accuracy: 0.7027 - mae: 0.1831 - pearson_correlation: 0.3272 - euclidean_distance: 0.3096
Epoch 149/150
152/152 [==============================] - 0s 795us/step - loss: 0.1798 - accuracy: 0.7155 - mae: 0.1798 - pearson_correlation: 0.3519 - euclidean_distance: 0.3037
Epoch 150/150
152/152 [==============================] - 0s 794us/step - loss: 0.1780 - accuracy: 0.7287 - mae: 0.1780 - pearson_correlation: 0.3672 - euclidean_distance: 0.2996
76/76 [==============================] - 0s 435us/step
Epoch 1/150
152/152 [==============================] - 1s 808us/step - loss: 0.6694 - accuracy: 0.9294 - mae: 0.6694 - pearson_correlation: 0.5872 - euclidean_distance: 0.9663
Epoch 2/150
152/152 [==============================] - 0s 804us/step - loss: 0.6584 - accuracy: 0.9303 - mae: 0.6584 - pearson_correlation: 0.5870 - euclidean_distance: 0.9516
Epoch 3/150
152/152 [==============================] - 0s 800us/step - loss: 0.6481 - accuracy: 0.9343 - mae: 0.6481 - pearson_correlation: 0.5909 - euclidean_distance: 0.9374
Epoch 4/150
152/152 [==============================] - 0s 813us/step - loss: 0.6378 - accuracy: 0.9334 - mae: 0.6378 - pearson_correlation: 0.6001 - euclidean_distance: 0.9237
Epoch 5/150
152/152 [==============================] - 0s 810us/step - loss: 0.6258 - accuracy: 0.9343 - mae: 0.6258 - pearson_correlation: 0.6043 - euclidean_distance: 0.9080
Epoch 6/150
152/152 [==============================] - 0s 798us/step - loss: 0.6149 - accuracy: 0.9290 - mae: 0.6149 - pearson_correlation: 0.6069 - euclidean_distance: 0.8937
Epoch 7/150
152/152 [==============================] - 0s 797us/step - loss: 0.6036 - accuracy: 0.9356 - mae: 0.6036 - pearson_correlation: 0.6086 - euclidean_distance: 0.8794
Epoch 8/150
152/152 [==============================] - 0s 800us/step - loss: 0.5912 - accuracy: 0.9290 - mae: 0.5912 - pearson_correlation: 0.6141 - euclidean_distance: 0.8624
Epoch 9/150
152/152 [==============================] - 0s 795us/step - loss: 0.5806 - accuracy: 0.9281 - mae: 0.5806 - pearson_correlation: 0.6158 - euclidean_distance: 0.8495
Epoch 10/150
152/152 [==============================] - 0s 790us/step - loss: 0.5708 - accuracy: 0.9299 - mae: 0.5708 - pearson_correlation: 0.6179 - euclidean_distance: 0.8374
Epoch 11/150
152/152 [==============================] - 0s 797us/step - loss: 0.5600 - accuracy: 0.9316 - mae: 0.5600 - pearson_correlation: 0.6127 - euclidean_distance: 0.8248
Epoch 12/150
152/152 [==============================] - 0s 790us/step - loss: 0.5472 - accuracy: 0.9285 - mae: 0.5472 - pearson_correlation: 0.6217 - euclidean_distance: 0.8073
Epoch 13/150
152/152 [==============================] - 0s 795us/step - loss: 0.5375 - accuracy: 0.9312 - mae: 0.5375 - pearson_correlation: 0.6319 - euclidean_distance: 0.7951
Epoch 14/150
152/152 [==============================] - 0s 787us/step - loss: 0.5273 - accuracy: 0.9360 - mae: 0.5273 - pearson_correlation: 0.6256 - euclidean_distance: 0.7818
Epoch 15/150
152/152 [==============================] - 0s 797us/step - loss: 0.5195 - accuracy: 0.9303 - mae: 0.5195 - pearson_correlation: 0.6303 - euclidean_distance: 0.7735
Epoch 16/150
152/152 [==============================] - 0s 799us/step - loss: 0.5097 - accuracy: 0.9316 - mae: 0.5097 - pearson_correlation: 0.6299 - euclidean_distance: 0.7590
Epoch 17/150
152/152 [==============================] - 0s 808us/step - loss: 0.5011 - accuracy: 0.9312 - mae: 0.5011 - pearson_correlation: 0.6325 - euclidean_distance: 0.7486
Epoch 18/150
152/152 [==============================] - 0s 797us/step - loss: 0.4916 - accuracy: 0.9316 - mae: 0.4916 - pearson_correlation: 0.6381 - euclidean_distance: 0.7357
Epoch 19/150
152/152 [==============================] - 0s 824us/step - loss: 0.4839 - accuracy: 0.9334 - mae: 0.4839 - pearson_correlation: 0.6429 - euclidean_distance: 0.7244
Epoch 20/150
152/152 [==============================] - 0s 796us/step - loss: 0.4731 - accuracy: 0.9290 - mae: 0.4731 - pearson_correlation: 0.6372 - euclidean_distance: 0.7098
Epoch 21/150
152/152 [==============================] - 0s 788us/step - loss: 0.4657 - accuracy: 0.9321 - mae: 0.4657 - pearson_correlation: 0.6449 - euclidean_distance: 0.6999
Epoch 22/150
152/152 [==============================] - 0s 791us/step - loss: 0.4586 - accuracy: 0.9321 - mae: 0.4586 - pearson_correlation: 0.6446 - euclidean_distance: 0.6892
Epoch 23/150
152/152 [==============================] - 0s 793us/step - loss: 0.4498 - accuracy: 0.9290 - mae: 0.4498 - pearson_correlation: 0.6447 - euclidean_distance: 0.6770
Epoch 24/150
152/152 [==============================] - 0s 800us/step - loss: 0.4434 - accuracy: 0.9299 - mae: 0.4434 - pearson_correlation: 0.6476 - euclidean_distance: 0.6670
Epoch 25/150
152/152 [==============================] - 0s 794us/step - loss: 0.4328 - accuracy: 0.9334 - mae: 0.4328 - pearson_correlation: 0.6498 - euclidean_distance: 0.6532
Epoch 26/150
152/152 [==============================] - 0s 793us/step - loss: 0.4268 - accuracy: 0.9343 - mae: 0.4268 - pearson_correlation: 0.6517 - euclidean_distance: 0.6436
Epoch 27/150
152/152 [==============================] - 0s 792us/step - loss: 0.4192 - accuracy: 0.9330 - mae: 0.4192 - pearson_correlation: 0.6539 - euclidean_distance: 0.6334
Epoch 28/150
152/152 [==============================] - 0s 793us/step - loss: 0.4087 - accuracy: 0.9334 - mae: 0.4087 - pearson_correlation: 0.6624 - euclidean_distance: 0.6186
Epoch 29/150
152/152 [==============================] - 0s 793us/step - loss: 0.4036 - accuracy: 0.9321 - mae: 0.4036 - pearson_correlation: 0.6629 - euclidean_distance: 0.6111
Epoch 30/150
152/152 [==============================] - 0s 793us/step - loss: 0.3948 - accuracy: 0.9422 - mae: 0.3948 - pearson_correlation: 0.6725 - euclidean_distance: 0.5970
Epoch 31/150
152/152 [==============================] - 0s 798us/step - loss: 0.3892 - accuracy: 0.9352 - mae: 0.3892 - pearson_correlation: 0.6685 - euclidean_distance: 0.5886
Epoch 32/150
152/152 [==============================] - 0s 790us/step - loss: 0.3797 - accuracy: 0.9387 - mae: 0.3797 - pearson_correlation: 0.6718 - euclidean_distance: 0.5755
Epoch 33/150
152/152 [==============================] - 0s 792us/step - loss: 0.3720 - accuracy: 0.9409 - mae: 0.3720 - pearson_correlation: 0.6763 - euclidean_distance: 0.5634
Epoch 34/150
152/152 [==============================] - 0s 789us/step - loss: 0.3681 - accuracy: 0.9374 - mae: 0.3681 - pearson_correlation: 0.6735 - euclidean_distance: 0.5577
Epoch 35/150
152/152 [==============================] - 0s 790us/step - loss: 0.3582 - accuracy: 0.9400 - mae: 0.3582 - pearson_correlation: 0.6775 - euclidean_distance: 0.5434
Epoch 36/150
152/152 [==============================] - 0s 793us/step - loss: 0.3526 - accuracy: 0.9427 - mae: 0.3526 - pearson_correlation: 0.6731 - euclidean_distance: 0.5343
Epoch 37/150
152/152 [==============================] - 0s 792us/step - loss: 0.3466 - accuracy: 0.9409 - mae: 0.3466 - pearson_correlation: 0.6773 - euclidean_distance: 0.5250
Epoch 38/150
152/152 [==============================] - 0s 796us/step - loss: 0.3383 - accuracy: 0.9453 - mae: 0.3383 - pearson_correlation: 0.6823 - euclidean_distance: 0.5125
Epoch 39/150
152/152 [==============================] - 0s 789us/step - loss: 0.3333 - accuracy: 0.9457 - mae: 0.3333 - pearson_correlation: 0.6812 - euclidean_distance: 0.5049
Epoch 40/150
152/152 [==============================] - 0s 801us/step - loss: 0.3254 - accuracy: 0.9440 - mae: 0.3254 - pearson_correlation: 0.6865 - euclidean_distance: 0.4934
Epoch 41/150
152/152 [==============================] - 0s 802us/step - loss: 0.3177 - accuracy: 0.9466 - mae: 0.3177 - pearson_correlation: 0.6866 - euclidean_distance: 0.4829
Epoch 42/150
152/152 [==============================] - 0s 793us/step - loss: 0.3130 - accuracy: 0.9453 - mae: 0.3130 - pearson_correlation: 0.6814 - euclidean_distance: 0.4751
Epoch 43/150
152/152 [==============================] - 0s 793us/step - loss: 0.3053 - accuracy: 0.9457 - mae: 0.3053 - pearson_correlation: 0.6837 - euclidean_distance: 0.4637
Epoch 44/150
152/152 [==============================] - 0s 795us/step - loss: 0.3012 - accuracy: 0.9497 - mae: 0.3012 - pearson_correlation: 0.6800 - euclidean_distance: 0.4582
Epoch 45/150
152/152 [==============================] - 0s 786us/step - loss: 0.2915 - accuracy: 0.9519 - mae: 0.2915 - pearson_correlation: 0.6867 - euclidean_distance: 0.4433
Epoch 46/150
152/152 [==============================] - 0s 792us/step - loss: 0.2876 - accuracy: 0.9475 - mae: 0.2876 - pearson_correlation: 0.6910 - euclidean_distance: 0.4359
Epoch 47/150
152/152 [==============================] - 0s 795us/step - loss: 0.2808 - accuracy: 0.9475 - mae: 0.2808 - pearson_correlation: 0.6887 - euclidean_distance: 0.4270
Epoch 48/150
152/152 [==============================] - 0s 801us/step - loss: 0.2729 - accuracy: 0.9510 - mae: 0.2729 - pearson_correlation: 0.6835 - euclidean_distance: 0.4154
Epoch 49/150
152/152 [==============================] - 0s 794us/step - loss: 0.2668 - accuracy: 0.9515 - mae: 0.2668 - pearson_correlation: 0.6855 - euclidean_distance: 0.4064
Epoch 50/150
152/152 [==============================] - 0s 798us/step - loss: 0.2618 - accuracy: 0.9497 - mae: 0.2618 - pearson_correlation: 0.6875 - euclidean_distance: 0.3992
Epoch 51/150
152/152 [==============================] - 0s 798us/step - loss: 0.2554 - accuracy: 0.9497 - mae: 0.2554 - pearson_correlation: 0.6858 - euclidean_distance: 0.3895
Epoch 52/150
152/152 [==============================] - 0s 795us/step - loss: 0.2482 - accuracy: 0.9510 - mae: 0.2482 - pearson_correlation: 0.6907 - euclidean_distance: 0.3793
Epoch 53/150
152/152 [==============================] - 0s 795us/step - loss: 0.2458 - accuracy: 0.9532 - mae: 0.2458 - pearson_correlation: 0.6860 - euclidean_distance: 0.3747
Epoch 54/150
152/152 [==============================] - 0s 795us/step - loss: 0.2406 - accuracy: 0.9510 - mae: 0.2406 - pearson_correlation: 0.6852 - euclidean_distance: 0.3678
Epoch 55/150
152/152 [==============================] - 0s 784us/step - loss: 0.2357 - accuracy: 0.9546 - mae: 0.2357 - pearson_correlation: 0.6899 - euclidean_distance: 0.3602
Epoch 56/150
152/152 [==============================] - 0s 786us/step - loss: 0.2288 - accuracy: 0.9528 - mae: 0.2288 - pearson_correlation: 0.6882 - euclidean_distance: 0.3507
Epoch 57/150
152/152 [==============================] - 0s 783us/step - loss: 0.2241 - accuracy: 0.9524 - mae: 0.2241 - pearson_correlation: 0.6899 - euclidean_distance: 0.3435
Epoch 58/150
152/152 [==============================] - 0s 793us/step - loss: 0.2223 - accuracy: 0.9541 - mae: 0.2223 - pearson_correlation: 0.6864 - euclidean_distance: 0.3413
Epoch 59/150
152/152 [==============================] - 0s 788us/step - loss: 0.2149 - accuracy: 0.9546 - mae: 0.2149 - pearson_correlation: 0.6927 - euclidean_distance: 0.3300
Epoch 60/150
152/152 [==============================] - 0s 792us/step - loss: 0.2107 - accuracy: 0.9532 - mae: 0.2107 - pearson_correlation: 0.6862 - euclidean_distance: 0.3239
Epoch 61/150
152/152 [==============================] - 0s 790us/step - loss: 0.2073 - accuracy: 0.9537 - mae: 0.2073 - pearson_correlation: 0.6919 - euclidean_distance: 0.3192
Epoch 62/150
152/152 [==============================] - 0s 786us/step - loss: 0.2032 - accuracy: 0.9541 - mae: 0.2032 - pearson_correlation: 0.6943 - euclidean_distance: 0.3130
Epoch 63/150
152/152 [==============================] - 0s 786us/step - loss: 0.1990 - accuracy: 0.9550 - mae: 0.1990 - pearson_correlation: 0.6952 - euclidean_distance: 0.3067
Epoch 64/150
152/152 [==============================] - 0s 792us/step - loss: 0.1967 - accuracy: 0.9546 - mae: 0.1967 - pearson_correlation: 0.6936 - euclidean_distance: 0.3034
Epoch 65/150
152/152 [==============================] - 0s 790us/step - loss: 0.1933 - accuracy: 0.9550 - mae: 0.1933 - pearson_correlation: 0.6927 - euclidean_distance: 0.2983
Epoch 66/150
152/152 [==============================] - 0s 794us/step - loss: 0.1894 - accuracy: 0.9550 - mae: 0.1894 - pearson_correlation: 0.6945 - euclidean_distance: 0.2923
Epoch 67/150
152/152 [==============================] - 0s 783us/step - loss: 0.1827 - accuracy: 0.9546 - mae: 0.1827 - pearson_correlation: 0.7096 - euclidean_distance: 0.2823
Epoch 68/150
152/152 [==============================] - 0s 794us/step - loss: 0.1849 - accuracy: 0.9554 - mae: 0.1849 - pearson_correlation: 0.6976 - euclidean_distance: 0.2855
Epoch 69/150
152/152 [==============================] - 0s 790us/step - loss: 0.1804 - accuracy: 0.9554 - mae: 0.1804 - pearson_correlation: 0.7002 - euclidean_distance: 0.2796
Epoch 70/150
152/152 [==============================] - 0s 787us/step - loss: 0.1763 - accuracy: 0.9550 - mae: 0.1763 - pearson_correlation: 0.6999 - euclidean_distance: 0.2730
Epoch 71/150
152/152 [==============================] - 0s 789us/step - loss: 0.1766 - accuracy: 0.9550 - mae: 0.1766 - pearson_correlation: 0.6986 - euclidean_distance: 0.2726
Epoch 72/150
152/152 [==============================] - 0s 793us/step - loss: 0.1713 - accuracy: 0.9550 - mae: 0.1713 - pearson_correlation: 0.7072 - euclidean_distance: 0.2658
Epoch 73/150
152/152 [==============================] - 0s 797us/step - loss: 0.1715 - accuracy: 0.9546 - mae: 0.1715 - pearson_correlation: 0.6990 - euclidean_distance: 0.2657
Epoch 74/150
152/152 [==============================] - 0s 791us/step - loss: 0.1707 - accuracy: 0.9554 - mae: 0.1707 - pearson_correlation: 0.7058 - euclidean_distance: 0.2651
Epoch 75/150
152/152 [==============================] - 0s 787us/step - loss: 0.1657 - accuracy: 0.9550 - mae: 0.1657 - pearson_correlation: 0.7066 - euclidean_distance: 0.2576
Epoch 76/150
152/152 [==============================] - 0s 794us/step - loss: 0.1672 - accuracy: 0.9541 - mae: 0.1672 - pearson_correlation: 0.7048 - euclidean_distance: 0.2601
Epoch 77/150
152/152 [==============================] - 0s 793us/step - loss: 0.1608 - accuracy: 0.9554 - mae: 0.1608 - pearson_correlation: 0.7121 - euclidean_distance: 0.2502
Epoch 78/150
152/152 [==============================] - 0s 785us/step - loss: 0.1610 - accuracy: 0.9554 - mae: 0.1610 - pearson_correlation: 0.7053 - euclidean_distance: 0.2504
Epoch 79/150
152/152 [==============================] - 0s 790us/step - loss: 0.1578 - accuracy: 0.9550 - mae: 0.1578 - pearson_correlation: 0.7109 - euclidean_distance: 0.2460
Epoch 80/150
152/152 [==============================] - 0s 795us/step - loss: 0.1567 - accuracy: 0.9550 - mae: 0.1567 - pearson_correlation: 0.7132 - euclidean_distance: 0.2441
Epoch 81/150
152/152 [==============================] - 0s 795us/step - loss: 0.1539 - accuracy: 0.9554 - mae: 0.1539 - pearson_correlation: 0.7140 - euclidean_distance: 0.2398
Epoch 82/150
152/152 [==============================] - 0s 828us/step - loss: 0.1534 - accuracy: 0.9550 - mae: 0.1534 - pearson_correlation: 0.7136 - euclidean_distance: 0.2394
Epoch 83/150
152/152 [==============================] - 0s 811us/step - loss: 0.1494 - accuracy: 0.9554 - mae: 0.1494 - pearson_correlation: 0.7231 - euclidean_distance: 0.2330
Epoch 84/150
152/152 [==============================] - 0s 796us/step - loss: 0.1489 - accuracy: 0.9554 - mae: 0.1489 - pearson_correlation: 0.7202 - euclidean_distance: 0.2327
Epoch 85/150
152/152 [==============================] - 0s 797us/step - loss: 0.1479 - accuracy: 0.9554 - mae: 0.1479 - pearson_correlation: 0.7193 - euclidean_distance: 0.2310
Epoch 86/150
152/152 [==============================] - 0s 836us/step - loss: 0.1462 - accuracy: 0.9554 - mae: 0.1462 - pearson_correlation: 0.7181 - euclidean_distance: 0.2286
Epoch 87/150
152/152 [==============================] - 0s 867us/step - loss: 0.1434 - accuracy: 0.9550 - mae: 0.1434 - pearson_correlation: 0.7251 - euclidean_distance: 0.2244
Epoch 88/150
152/152 [==============================] - 0s 926us/step - loss: 0.1418 - accuracy: 0.9554 - mae: 0.1418 - pearson_correlation: 0.7217 - euclidean_distance: 0.2223
Epoch 89/150
152/152 [==============================] - 0s 919us/step - loss: 0.1416 - accuracy: 0.9554 - mae: 0.1416 - pearson_correlation: 0.7260 - euclidean_distance: 0.2220
Epoch 90/150
152/152 [==============================] - 0s 873us/step - loss: 0.1419 - accuracy: 0.9546 - mae: 0.1419 - pearson_correlation: 0.7225 - euclidean_distance: 0.2223
Epoch 91/150
152/152 [==============================] - 0s 801us/step - loss: 0.1409 - accuracy: 0.9550 - mae: 0.1409 - pearson_correlation: 0.7209 - euclidean_distance: 0.2214
Epoch 92/150
152/152 [==============================] - 0s 796us/step - loss: 0.1357 - accuracy: 0.9554 - mae: 0.1357 - pearson_correlation: 0.7291 - euclidean_distance: 0.2130
Epoch 93/150
152/152 [==============================] - 0s 806us/step - loss: 0.1358 - accuracy: 0.9554 - mae: 0.1358 - pearson_correlation: 0.7295 - euclidean_distance: 0.2131
Epoch 94/150
152/152 [==============================] - 0s 799us/step - loss: 0.1375 - accuracy: 0.9546 - mae: 0.1375 - pearson_correlation: 0.7261 - euclidean_distance: 0.2150
Epoch 95/150
152/152 [==============================] - 0s 794us/step - loss: 0.1352 - accuracy: 0.9554 - mae: 0.1352 - pearson_correlation: 0.7239 - euclidean_distance: 0.2121
Epoch 96/150
152/152 [==============================] - 0s 798us/step - loss: 0.1322 - accuracy: 0.9554 - mae: 0.1322 - pearson_correlation: 0.7258 - euclidean_distance: 0.2076
Epoch 97/150
152/152 [==============================] - 0s 801us/step - loss: 0.1336 - accuracy: 0.9554 - mae: 0.1336 - pearson_correlation: 0.7283 - euclidean_distance: 0.2095
Epoch 98/150
152/152 [==============================] - 0s 799us/step - loss: 0.1305 - accuracy: 0.9550 - mae: 0.1305 - pearson_correlation: 0.7223 - euclidean_distance: 0.2056
Epoch 99/150
152/152 [==============================] - 0s 832us/step - loss: 0.1325 - accuracy: 0.9554 - mae: 0.1325 - pearson_correlation: 0.7263 - euclidean_distance: 0.2073
Epoch 100/150
152/152 [==============================] - 0s 802us/step - loss: 0.1286 - accuracy: 0.9550 - mae: 0.1286 - pearson_correlation: 0.7302 - euclidean_distance: 0.2020
Epoch 101/150
152/152 [==============================] - 0s 794us/step - loss: 0.1278 - accuracy: 0.9554 - mae: 0.1278 - pearson_correlation: 0.7333 - euclidean_distance: 0.2015
Epoch 102/150
152/152 [==============================] - 0s 792us/step - loss: 0.1264 - accuracy: 0.9554 - mae: 0.1264 - pearson_correlation: 0.7342 - euclidean_distance: 0.1989
Epoch 103/150
152/152 [==============================] - 0s 800us/step - loss: 0.1228 - accuracy: 0.9554 - mae: 0.1228 - pearson_correlation: 0.7394 - euclidean_distance: 0.1940
Epoch 104/150
152/152 [==============================] - 0s 791us/step - loss: 0.1252 - accuracy: 0.9554 - mae: 0.1252 - pearson_correlation: 0.7304 - euclidean_distance: 0.1975
Epoch 105/150
152/152 [==============================] - 0s 804us/step - loss: 0.1237 - accuracy: 0.9554 - mae: 0.1237 - pearson_correlation: 0.7340 - euclidean_distance: 0.1951
Epoch 106/150
152/152 [==============================] - 0s 793us/step - loss: 0.1229 - accuracy: 0.9554 - mae: 0.1229 - pearson_correlation: 0.7255 - euclidean_distance: 0.1935
Epoch 107/150
152/152 [==============================] - 0s 795us/step - loss: 0.1198 - accuracy: 0.9550 - mae: 0.1198 - pearson_correlation: 0.7331 - euclidean_distance: 0.1896
Epoch 108/150
152/152 [==============================] - 0s 796us/step - loss: 0.1200 - accuracy: 0.9554 - mae: 0.1200 - pearson_correlation: 0.7414 - euclidean_distance: 0.1888
Epoch 109/150
152/152 [==============================] - 0s 800us/step - loss: 0.1173 - accuracy: 0.9546 - mae: 0.1173 - pearson_correlation: 0.7352 - euclidean_distance: 0.1859
Epoch 110/150
152/152 [==============================] - 0s 792us/step - loss: 0.1186 - accuracy: 0.9554 - mae: 0.1186 - pearson_correlation: 0.7435 - euclidean_distance: 0.1866
Epoch 111/150
152/152 [==============================] - 0s 791us/step - loss: 0.1173 - accuracy: 0.9554 - mae: 0.1173 - pearson_correlation: 0.7405 - euclidean_distance: 0.1858
Epoch 112/150
152/152 [==============================] - 0s 796us/step - loss: 0.1171 - accuracy: 0.9550 - mae: 0.1171 - pearson_correlation: 0.7365 - euclidean_distance: 0.1854
Epoch 113/150
152/152 [==============================] - 0s 799us/step - loss: 0.1156 - accuracy: 0.9550 - mae: 0.1156 - pearson_correlation: 0.7384 - euclidean_distance: 0.1829
Epoch 114/150
152/152 [==============================] - 0s 794us/step - loss: 0.1169 - accuracy: 0.9541 - mae: 0.1169 - pearson_correlation: 0.7404 - euclidean_distance: 0.1849
Epoch 115/150
152/152 [==============================] - 0s 798us/step - loss: 0.1151 - accuracy: 0.9554 - mae: 0.1151 - pearson_correlation: 0.7389 - euclidean_distance: 0.1816
Epoch 116/150
152/152 [==============================] - 0s 791us/step - loss: 0.1125 - accuracy: 0.9554 - mae: 0.1125 - pearson_correlation: 0.7376 - euclidean_distance: 0.1784
Epoch 117/150
152/152 [==============================] - 0s 793us/step - loss: 0.1125 - accuracy: 0.9554 - mae: 0.1125 - pearson_correlation: 0.7403 - euclidean_distance: 0.1782
Epoch 118/150
152/152 [==============================] - 0s 797us/step - loss: 0.1105 - accuracy: 0.9554 - mae: 0.1105 - pearson_correlation: 0.7447 - euclidean_distance: 0.1759
Epoch 119/150
152/152 [==============================] - 0s 801us/step - loss: 0.1096 - accuracy: 0.9554 - mae: 0.1096 - pearson_correlation: 0.7484 - euclidean_distance: 0.1745
Epoch 120/150
152/152 [==============================] - 0s 794us/step - loss: 0.1113 - accuracy: 0.9554 - mae: 0.1113 - pearson_correlation: 0.7390 - euclidean_distance: 0.1766
Epoch 121/150
152/152 [==============================] - 0s 795us/step - loss: 0.1094 - accuracy: 0.9554 - mae: 0.1094 - pearson_correlation: 0.7441 - euclidean_distance: 0.1745
Epoch 122/150
152/152 [==============================] - 0s 784us/step - loss: 0.1092 - accuracy: 0.9554 - mae: 0.1092 - pearson_correlation: 0.7450 - euclidean_distance: 0.1740
Epoch 123/150
152/152 [==============================] - 0s 791us/step - loss: 0.1067 - accuracy: 0.9554 - mae: 0.1067 - pearson_correlation: 0.7503 - euclidean_distance: 0.1699
Epoch 124/150
152/152 [==============================] - 0s 788us/step - loss: 0.1071 - accuracy: 0.9554 - mae: 0.1071 - pearson_correlation: 0.7390 - euclidean_distance: 0.1705
Epoch 125/150
152/152 [==============================] - 0s 794us/step - loss: 0.1095 - accuracy: 0.9550 - mae: 0.1095 - pearson_correlation: 0.7384 - euclidean_distance: 0.1745
Epoch 126/150
152/152 [==============================] - 0s 799us/step - loss: 0.1055 - accuracy: 0.9554 - mae: 0.1055 - pearson_correlation: 0.7455 - euclidean_distance: 0.1680
Epoch 127/150
152/152 [==============================] - 0s 792us/step - loss: 0.1039 - accuracy: 0.9554 - mae: 0.1039 - pearson_correlation: 0.7464 - euclidean_distance: 0.1662
Epoch 128/150
152/152 [==============================] - 0s 796us/step - loss: 0.1035 - accuracy: 0.9550 - mae: 0.1035 - pearson_correlation: 0.7448 - euclidean_distance: 0.1660
Epoch 129/150
152/152 [==============================] - 0s 793us/step - loss: 0.1036 - accuracy: 0.9554 - mae: 0.1036 - pearson_correlation: 0.7479 - euclidean_distance: 0.1657
Epoch 130/150
152/152 [==============================] - 0s 793us/step - loss: 0.1032 - accuracy: 0.9546 - mae: 0.1032 - pearson_correlation: 0.7474 - euclidean_distance: 0.1649
Epoch 131/150
152/152 [==============================] - 0s 794us/step - loss: 0.1020 - accuracy: 0.9554 - mae: 0.1020 - pearson_correlation: 0.7414 - euclidean_distance: 0.1632
Epoch 132/150
152/152 [==============================] - 0s 789us/step - loss: 0.1005 - accuracy: 0.9554 - mae: 0.1005 - pearson_correlation: 0.7500 - euclidean_distance: 0.1609
Epoch 133/150
152/152 [==============================] - 0s 784us/step - loss: 0.1009 - accuracy: 0.9554 - mae: 0.1009 - pearson_correlation: 0.7499 - euclidean_distance: 0.1620
Epoch 134/150
152/152 [==============================] - 0s 797us/step - loss: 0.0998 - accuracy: 0.9554 - mae: 0.0998 - pearson_correlation: 0.7466 - euclidean_distance: 0.1604
Epoch 135/150
152/152 [==============================] - 0s 782us/step - loss: 0.0983 - accuracy: 0.9554 - mae: 0.0983 - pearson_correlation: 0.7560 - euclidean_distance: 0.1580
Epoch 136/150
152/152 [==============================] - 0s 788us/step - loss: 0.1003 - accuracy: 0.9550 - mae: 0.1003 - pearson_correlation: 0.7465 - euclidean_distance: 0.1612
Epoch 137/150
152/152 [==============================] - 0s 786us/step - loss: 0.0988 - accuracy: 0.9554 - mae: 0.0988 - pearson_correlation: 0.7541 - euclidean_distance: 0.1594
Epoch 138/150
152/152 [==============================] - 0s 797us/step - loss: 0.0977 - accuracy: 0.9554 - mae: 0.0977 - pearson_correlation: 0.7545 - euclidean_distance: 0.1571
Epoch 139/150
152/152 [==============================] - 0s 788us/step - loss: 0.0984 - accuracy: 0.9546 - mae: 0.0984 - pearson_correlation: 0.7390 - euclidean_distance: 0.1580
Epoch 140/150
152/152 [==============================] - 0s 802us/step - loss: 0.0997 - accuracy: 0.9554 - mae: 0.0997 - pearson_correlation: 0.7477 - euclidean_distance: 0.1598
Epoch 141/150
152/152 [==============================] - 0s 798us/step - loss: 0.0967 - accuracy: 0.9546 - mae: 0.0967 - pearson_correlation: 0.7559 - euclidean_distance: 0.1564
Epoch 142/150
152/152 [==============================] - 0s 800us/step - loss: 0.0968 - accuracy: 0.9554 - mae: 0.0968 - pearson_correlation: 0.7503 - euclidean_distance: 0.1567
Epoch 143/150
152/152 [==============================] - 0s 799us/step - loss: 0.0976 - accuracy: 0.9550 - mae: 0.0976 - pearson_correlation: 0.7485 - euclidean_distance: 0.1578
Epoch 144/150
152/152 [==============================] - 0s 795us/step - loss: 0.0960 - accuracy: 0.9550 - mae: 0.0960 - pearson_correlation: 0.7518 - euclidean_distance: 0.1553
Epoch 145/150
152/152 [==============================] - 0s 789us/step - loss: 0.0956 - accuracy: 0.9546 - mae: 0.0956 - pearson_correlation: 0.7538 - euclidean_distance: 0.1543
Epoch 146/150
152/152 [==============================] - 0s 791us/step - loss: 0.0944 - accuracy: 0.9550 - mae: 0.0944 - pearson_correlation: 0.7557 - euclidean_distance: 0.1526
Epoch 147/150
152/152 [==============================] - 0s 788us/step - loss: 0.0957 - accuracy: 0.9554 - mae: 0.0957 - pearson_correlation: 0.7573 - euclidean_distance: 0.1545
Epoch 148/150
152/152 [==============================] - 0s 783us/step - loss: 0.0956 - accuracy: 0.9554 - mae: 0.0956 - pearson_correlation: 0.7558 - euclidean_distance: 0.1553
Epoch 149/150
152/152 [==============================] - 0s 793us/step - loss: 0.0943 - accuracy: 0.9546 - mae: 0.0943 - pearson_correlation: 0.7481 - euclidean_distance: 0.1532
Epoch 150/150
152/152 [==============================] - 0s 795us/step - loss: 0.0942 - accuracy: 0.9550 - mae: 0.0942 - pearson_correlation: 0.7595 - euclidean_distance: 0.1523
76/76 [==============================] - 0s 427us/step
Epoch 1/150
152/152 [==============================] - 1s 805us/step - loss: 0.4985 - accuracy: 0.8430 - mae: 0.4985 - pearson_correlation: 0.4976 - euclidean_distance: 0.7322
Epoch 2/150
152/152 [==============================] - 0s 811us/step - loss: 0.4912 - accuracy: 0.8347 - mae: 0.4912 - pearson_correlation: 0.4891 - euclidean_distance: 0.7228
Epoch 3/150
152/152 [==============================] - 0s 810us/step - loss: 0.4876 - accuracy: 0.8426 - mae: 0.4876 - pearson_correlation: 0.4955 - euclidean_distance: 0.7171
Epoch 4/150
152/152 [==============================] - 0s 805us/step - loss: 0.4824 - accuracy: 0.8316 - mae: 0.4824 - pearson_correlation: 0.4949 - euclidean_distance: 0.7106
Epoch 5/150
152/152 [==============================] - 0s 804us/step - loss: 0.4756 - accuracy: 0.8307 - mae: 0.4756 - pearson_correlation: 0.4994 - euclidean_distance: 0.7012
Epoch 6/150
152/152 [==============================] - 0s 806us/step - loss: 0.4685 - accuracy: 0.8311 - mae: 0.4685 - pearson_correlation: 0.5025 - euclidean_distance: 0.6926
Epoch 7/150
152/152 [==============================] - 0s 801us/step - loss: 0.4625 - accuracy: 0.8329 - mae: 0.4625 - pearson_correlation: 0.5145 - euclidean_distance: 0.6838
Epoch 8/150
152/152 [==============================] - 0s 823us/step - loss: 0.4568 - accuracy: 0.8232 - mae: 0.4568 - pearson_correlation: 0.5078 - euclidean_distance: 0.6766
Epoch 9/150
152/152 [==============================] - 0s 802us/step - loss: 0.4499 - accuracy: 0.8254 - mae: 0.4499 - pearson_correlation: 0.5143 - euclidean_distance: 0.6678
Epoch 10/150
152/152 [==============================] - 0s 807us/step - loss: 0.4450 - accuracy: 0.8241 - mae: 0.4450 - pearson_correlation: 0.5077 - euclidean_distance: 0.6620
Epoch 11/150
152/152 [==============================] - 0s 801us/step - loss: 0.4394 - accuracy: 0.8205 - mae: 0.4394 - pearson_correlation: 0.5027 - euclidean_distance: 0.6541
Epoch 12/150
152/152 [==============================] - 0s 802us/step - loss: 0.4317 - accuracy: 0.8285 - mae: 0.4317 - pearson_correlation: 0.5153 - euclidean_distance: 0.6444
Epoch 13/150
152/152 [==============================] - 0s 800us/step - loss: 0.4245 - accuracy: 0.8183 - mae: 0.4245 - pearson_correlation: 0.5156 - euclidean_distance: 0.6361
Epoch 14/150
152/152 [==============================] - 0s 807us/step - loss: 0.4183 - accuracy: 0.8192 - mae: 0.4183 - pearson_correlation: 0.5261 - euclidean_distance: 0.6274
Epoch 15/150
152/152 [==============================] - 0s 806us/step - loss: 0.4142 - accuracy: 0.8201 - mae: 0.4142 - pearson_correlation: 0.5200 - euclidean_distance: 0.6224
Epoch 16/150
152/152 [==============================] - 0s 805us/step - loss: 0.4071 - accuracy: 0.8122 - mae: 0.4071 - pearson_correlation: 0.5205 - euclidean_distance: 0.6138
Epoch 17/150
152/152 [==============================] - 0s 799us/step - loss: 0.4030 - accuracy: 0.8179 - mae: 0.4030 - pearson_correlation: 0.5181 - euclidean_distance: 0.6075
Epoch 18/150
152/152 [==============================] - 0s 798us/step - loss: 0.3970 - accuracy: 0.8025 - mae: 0.3970 - pearson_correlation: 0.5124 - euclidean_distance: 0.6010
Epoch 19/150
152/152 [==============================] - 0s 804us/step - loss: 0.3902 - accuracy: 0.8157 - mae: 0.3902 - pearson_correlation: 0.5189 - euclidean_distance: 0.5918
Epoch 20/150
152/152 [==============================] - 0s 794us/step - loss: 0.3862 - accuracy: 0.8025 - mae: 0.3862 - pearson_correlation: 0.5194 - euclidean_distance: 0.5867
Epoch 21/150
152/152 [==============================] - 0s 799us/step - loss: 0.3812 - accuracy: 0.8082 - mae: 0.3812 - pearson_correlation: 0.5093 - euclidean_distance: 0.5804
Epoch 22/150
152/152 [==============================] - 0s 804us/step - loss: 0.3751 - accuracy: 0.7994 - mae: 0.3751 - pearson_correlation: 0.5173 - euclidean_distance: 0.5704
Epoch 23/150
152/152 [==============================] - 0s 806us/step - loss: 0.3723 - accuracy: 0.7932 - mae: 0.3723 - pearson_correlation: 0.5042 - euclidean_distance: 0.5692
Epoch 24/150
152/152 [==============================] - 0s 795us/step - loss: 0.3654 - accuracy: 0.7981 - mae: 0.3654 - pearson_correlation: 0.5174 - euclidean_distance: 0.5596
Epoch 25/150
152/152 [==============================] - 0s 826us/step - loss: 0.3615 - accuracy: 0.7950 - mae: 0.3615 - pearson_correlation: 0.5050 - euclidean_distance: 0.5543
Epoch 26/150
152/152 [==============================] - 0s 801us/step - loss: 0.3569 - accuracy: 0.7945 - mae: 0.3569 - pearson_correlation: 0.5101 - euclidean_distance: 0.5478
Epoch 27/150
152/152 [==============================] - 0s 808us/step - loss: 0.3535 - accuracy: 0.7884 - mae: 0.3535 - pearson_correlation: 0.5065 - euclidean_distance: 0.5431
Epoch 28/150
152/152 [==============================] - 0s 842us/step - loss: 0.3485 - accuracy: 0.7800 - mae: 0.3485 - pearson_correlation: 0.5016 - euclidean_distance: 0.5377
Epoch 29/150
152/152 [==============================] - 0s 803us/step - loss: 0.3433 - accuracy: 0.7773 - mae: 0.3433 - pearson_correlation: 0.5056 - euclidean_distance: 0.5307
Epoch 30/150
152/152 [==============================] - 0s 805us/step - loss: 0.3389 - accuracy: 0.7751 - mae: 0.3389 - pearson_correlation: 0.5073 - euclidean_distance: 0.5241
Epoch 31/150
152/152 [==============================] - 0s 802us/step - loss: 0.3325 - accuracy: 0.7707 - mae: 0.3325 - pearson_correlation: 0.5107 - euclidean_distance: 0.5164
Epoch 32/150
152/152 [==============================] - 0s 800us/step - loss: 0.3296 - accuracy: 0.7862 - mae: 0.3296 - pearson_correlation: 0.5053 - euclidean_distance: 0.5129
Epoch 33/150
152/152 [==============================] - 0s 803us/step - loss: 0.3282 - accuracy: 0.7782 - mae: 0.3282 - pearson_correlation: 0.4992 - euclidean_distance: 0.5103
Epoch 34/150
152/152 [==============================] - 0s 805us/step - loss: 0.3220 - accuracy: 0.7751 - mae: 0.3220 - pearson_correlation: 0.5038 - euclidean_distance: 0.5010
Epoch 35/150
152/152 [==============================] - 0s 800us/step - loss: 0.3194 - accuracy: 0.7773 - mae: 0.3194 - pearson_correlation: 0.4981 - euclidean_distance: 0.4974
Epoch 36/150
152/152 [==============================] - 0s 813us/step - loss: 0.3172 - accuracy: 0.7813 - mae: 0.3172 - pearson_correlation: 0.5063 - euclidean_distance: 0.4933
Epoch 37/150
152/152 [==============================] - 0s 841us/step - loss: 0.3102 - accuracy: 0.7765 - mae: 0.3102 - pearson_correlation: 0.5052 - euclidean_distance: 0.4854
Epoch 38/150
152/152 [==============================] - 0s 810us/step - loss: 0.3086 - accuracy: 0.7795 - mae: 0.3086 - pearson_correlation: 0.5025 - euclidean_distance: 0.4823
Epoch 39/150
152/152 [==============================] - 0s 806us/step - loss: 0.3039 - accuracy: 0.7756 - mae: 0.3039 - pearson_correlation: 0.5025 - euclidean_distance: 0.4763
Epoch 40/150
152/152 [==============================] - 0s 800us/step - loss: 0.3018 - accuracy: 0.7712 - mae: 0.3018 - pearson_correlation: 0.5010 - euclidean_distance: 0.4738
Epoch 41/150
152/152 [==============================] - 0s 803us/step - loss: 0.2978 - accuracy: 0.7725 - mae: 0.2978 - pearson_correlation: 0.5072 - euclidean_distance: 0.4665
Epoch 42/150
152/152 [==============================] - 0s 798us/step - loss: 0.2966 - accuracy: 0.7822 - mae: 0.2966 - pearson_correlation: 0.4979 - euclidean_distance: 0.4646
Epoch 43/150
152/152 [==============================] - 0s 804us/step - loss: 0.2909 - accuracy: 0.7707 - mae: 0.2909 - pearson_correlation: 0.4993 - euclidean_distance: 0.4577
Epoch 44/150
152/152 [==============================] - 0s 802us/step - loss: 0.2875 - accuracy: 0.7787 - mae: 0.2875 - pearson_correlation: 0.5084 - euclidean_distance: 0.4523
Epoch 45/150
152/152 [==============================] - 0s 800us/step - loss: 0.2837 - accuracy: 0.7756 - mae: 0.2837 - pearson_correlation: 0.5017 - euclidean_distance: 0.4479
Epoch 46/150
152/152 [==============================] - 0s 794us/step - loss: 0.2818 - accuracy: 0.7804 - mae: 0.2818 - pearson_correlation: 0.5110 - euclidean_distance: 0.4433
Epoch 47/150
152/152 [==============================] - 0s 799us/step - loss: 0.2796 - accuracy: 0.7875 - mae: 0.2796 - pearson_correlation: 0.5037 - euclidean_distance: 0.4398
Epoch 48/150
152/152 [==============================] - 0s 807us/step - loss: 0.2785 - accuracy: 0.7844 - mae: 0.2785 - pearson_correlation: 0.5053 - euclidean_distance: 0.4372
Epoch 49/150
152/152 [==============================] - 0s 801us/step - loss: 0.2703 - accuracy: 0.7840 - mae: 0.2703 - pearson_correlation: 0.5126 - euclidean_distance: 0.4275
Epoch 50/150
152/152 [==============================] - 0s 802us/step - loss: 0.2686 - accuracy: 0.7813 - mae: 0.2686 - pearson_correlation: 0.5139 - euclidean_distance: 0.4242
Epoch 51/150
152/152 [==============================] - 0s 801us/step - loss: 0.2663 - accuracy: 0.7875 - mae: 0.2663 - pearson_correlation: 0.5165 - euclidean_distance: 0.4204
Epoch 52/150
152/152 [==============================] - 0s 800us/step - loss: 0.2636 - accuracy: 0.7866 - mae: 0.2636 - pearson_correlation: 0.5150 - euclidean_distance: 0.4159
Epoch 53/150
152/152 [==============================] - 0s 801us/step - loss: 0.2607 - accuracy: 0.7994 - mae: 0.2607 - pearson_correlation: 0.5130 - euclidean_distance: 0.4107
Epoch 54/150
152/152 [==============================] - 0s 800us/step - loss: 0.2562 - accuracy: 0.7919 - mae: 0.2562 - pearson_correlation: 0.5122 - euclidean_distance: 0.4065
Epoch 55/150
152/152 [==============================] - 0s 795us/step - loss: 0.2531 - accuracy: 0.8038 - mae: 0.2531 - pearson_correlation: 0.5276 - euclidean_distance: 0.4002
Epoch 56/150
152/152 [==============================] - 0s 797us/step - loss: 0.2534 - accuracy: 0.7932 - mae: 0.2534 - pearson_correlation: 0.5160 - euclidean_distance: 0.4000
Epoch 57/150
152/152 [==============================] - 0s 797us/step - loss: 0.2503 - accuracy: 0.8038 - mae: 0.2503 - pearson_correlation: 0.5283 - euclidean_distance: 0.3940
Epoch 58/150
152/152 [==============================] - 0s 797us/step - loss: 0.2445 - accuracy: 0.7981 - mae: 0.2445 - pearson_correlation: 0.5313 - euclidean_distance: 0.3858
Epoch 59/150
152/152 [==============================] - 0s 805us/step - loss: 0.2399 - accuracy: 0.8003 - mae: 0.2399 - pearson_correlation: 0.5319 - euclidean_distance: 0.3802
Epoch 60/150
152/152 [==============================] - 0s 896us/step - loss: 0.2415 - accuracy: 0.7998 - mae: 0.2415 - pearson_correlation: 0.5271 - euclidean_distance: 0.3819
Epoch 61/150
152/152 [==============================] - 0s 882us/step - loss: 0.2367 - accuracy: 0.8113 - mae: 0.2367 - pearson_correlation: 0.5344 - euclidean_distance: 0.3747
Epoch 62/150
152/152 [==============================] - 0s 933us/step - loss: 0.2348 - accuracy: 0.8175 - mae: 0.2348 - pearson_correlation: 0.5405 - euclidean_distance: 0.3710
Epoch 63/150
152/152 [==============================] - 0s 948us/step - loss: 0.2323 - accuracy: 0.8210 - mae: 0.2323 - pearson_correlation: 0.5434 - euclidean_distance: 0.3669
Epoch 64/150
152/152 [==============================] - 0s 813us/step - loss: 0.2269 - accuracy: 0.8347 - mae: 0.2269 - pearson_correlation: 0.5513 - euclidean_distance: 0.3581
Epoch 65/150
152/152 [==============================] - 0s 812us/step - loss: 0.2214 - accuracy: 0.8342 - mae: 0.2214 - pearson_correlation: 0.5524 - euclidean_distance: 0.3497
Epoch 66/150
152/152 [==============================] - 0s 811us/step - loss: 0.2208 - accuracy: 0.8413 - mae: 0.2208 - pearson_correlation: 0.5596 - euclidean_distance: 0.3481
Epoch 67/150
152/152 [==============================] - 0s 806us/step - loss: 0.2164 - accuracy: 0.8514 - mae: 0.2164 - pearson_correlation: 0.5644 - euclidean_distance: 0.3415
Epoch 68/150
152/152 [==============================] - 0s 812us/step - loss: 0.2155 - accuracy: 0.8571 - mae: 0.2155 - pearson_correlation: 0.5640 - euclidean_distance: 0.3401
Epoch 69/150
152/152 [==============================] - 0s 805us/step - loss: 0.2111 - accuracy: 0.8523 - mae: 0.2111 - pearson_correlation: 0.5708 - euclidean_distance: 0.3331
Epoch 70/150
152/152 [==============================] - 0s 806us/step - loss: 0.2084 - accuracy: 0.8677 - mae: 0.2084 - pearson_correlation: 0.5742 - euclidean_distance: 0.3281
Epoch 71/150
152/152 [==============================] - 0s 805us/step - loss: 0.2067 - accuracy: 0.8730 - mae: 0.2067 - pearson_correlation: 0.5734 - euclidean_distance: 0.3255
Epoch 72/150
152/152 [==============================] - 0s 809us/step - loss: 0.2047 - accuracy: 0.8792 - mae: 0.2047 - pearson_correlation: 0.5735 - euclidean_distance: 0.3227
Epoch 73/150
152/152 [==============================] - 0s 812us/step - loss: 0.2020 - accuracy: 0.8876 - mae: 0.2020 - pearson_correlation: 0.5801 - euclidean_distance: 0.3183
Epoch 74/150
152/152 [==============================] - 0s 803us/step - loss: 0.1955 - accuracy: 0.8902 - mae: 0.1955 - pearson_correlation: 0.5931 - euclidean_distance: 0.3077
Epoch 75/150
152/152 [==============================] - 0s 817us/step - loss: 0.1948 - accuracy: 0.8946 - mae: 0.1948 - pearson_correlation: 0.5924 - euclidean_distance: 0.3059
Epoch 76/150
152/152 [==============================] - 0s 807us/step - loss: 0.1913 - accuracy: 0.8995 - mae: 0.1913 - pearson_correlation: 0.5993 - euclidean_distance: 0.3015
Epoch 77/150
152/152 [==============================] - 0s 805us/step - loss: 0.1919 - accuracy: 0.9008 - mae: 0.1919 - pearson_correlation: 0.5807 - euclidean_distance: 0.3023
Epoch 78/150
152/152 [==============================] - 0s 801us/step - loss: 0.1885 - accuracy: 0.9039 - mae: 0.1885 - pearson_correlation: 0.5942 - euclidean_distance: 0.2973
Epoch 79/150
152/152 [==============================] - 0s 806us/step - loss: 0.1822 - accuracy: 0.9184 - mae: 0.1822 - pearson_correlation: 0.6084 - euclidean_distance: 0.2866
Epoch 80/150
152/152 [==============================] - 0s 801us/step - loss: 0.1794 - accuracy: 0.9171 - mae: 0.1794 - pearson_correlation: 0.6093 - euclidean_distance: 0.2828
Epoch 81/150
152/152 [==============================] - 0s 802us/step - loss: 0.1787 - accuracy: 0.9242 - mae: 0.1787 - pearson_correlation: 0.6095 - euclidean_distance: 0.2812
Epoch 82/150
152/152 [==============================] - 0s 803us/step - loss: 0.1748 - accuracy: 0.9277 - mae: 0.1748 - pearson_correlation: 0.6217 - euclidean_distance: 0.2748
Epoch 83/150
152/152 [==============================] - 0s 799us/step - loss: 0.1742 - accuracy: 0.9286 - mae: 0.1742 - pearson_correlation: 0.6095 - euclidean_distance: 0.2753
Epoch 84/150
152/152 [==============================] - 0s 795us/step - loss: 0.1698 - accuracy: 0.9365 - mae: 0.1698 - pearson_correlation: 0.6267 - euclidean_distance: 0.2670
Epoch 85/150
152/152 [==============================] - 0s 803us/step - loss: 0.1715 - accuracy: 0.9330 - mae: 0.1715 - pearson_correlation: 0.6195 - euclidean_distance: 0.2704
Epoch 86/150
152/152 [==============================] - 0s 794us/step - loss: 0.1649 - accuracy: 0.9400 - mae: 0.1649 - pearson_correlation: 0.6306 - euclidean_distance: 0.2600
Epoch 87/150
152/152 [==============================] - 0s 797us/step - loss: 0.1637 - accuracy: 0.9365 - mae: 0.1637 - pearson_correlation: 0.6260 - euclidean_distance: 0.2588
Epoch 88/150
152/152 [==============================] - 0s 802us/step - loss: 0.1595 - accuracy: 0.9462 - mae: 0.1595 - pearson_correlation: 0.6387 - euclidean_distance: 0.2508
Epoch 89/150
152/152 [==============================] - 0s 801us/step - loss: 0.1566 - accuracy: 0.9418 - mae: 0.1566 - pearson_correlation: 0.6408 - euclidean_distance: 0.2469
Epoch 90/150
152/152 [==============================] - 0s 803us/step - loss: 0.1532 - accuracy: 0.9436 - mae: 0.1532 - pearson_correlation: 0.6515 - euclidean_distance: 0.2420
Epoch 91/150
152/152 [==============================] - 0s 801us/step - loss: 0.1519 - accuracy: 0.9440 - mae: 0.1519 - pearson_correlation: 0.6487 - euclidean_distance: 0.2400
Epoch 92/150
152/152 [==============================] - 0s 803us/step - loss: 0.1498 - accuracy: 0.9440 - mae: 0.1498 - pearson_correlation: 0.6493 - euclidean_distance: 0.2367
Epoch 93/150
152/152 [==============================] - 0s 803us/step - loss: 0.1469 - accuracy: 0.9466 - mae: 0.1469 - pearson_correlation: 0.6465 - euclidean_distance: 0.2326
Epoch 94/150
152/152 [==============================] - 0s 803us/step - loss: 0.1446 - accuracy: 0.9449 - mae: 0.1446 - pearson_correlation: 0.6494 - euclidean_distance: 0.2302
Epoch 95/150
152/152 [==============================] - 0s 795us/step - loss: 0.1441 - accuracy: 0.9480 - mae: 0.1441 - pearson_correlation: 0.6564 - euclidean_distance: 0.2284
Epoch 96/150
152/152 [==============================] - 0s 793us/step - loss: 0.1401 - accuracy: 0.9484 - mae: 0.1401 - pearson_correlation: 0.6649 - euclidean_distance: 0.2224
Epoch 97/150
152/152 [==============================] - 0s 802us/step - loss: 0.1391 - accuracy: 0.9466 - mae: 0.1391 - pearson_correlation: 0.6566 - euclidean_distance: 0.2204
Epoch 98/150
152/152 [==============================] - 0s 798us/step - loss: 0.1403 - accuracy: 0.9466 - mae: 0.1403 - pearson_correlation: 0.6672 - euclidean_distance: 0.2225
Epoch 99/150
152/152 [==============================] - 0s 795us/step - loss: 0.1372 - accuracy: 0.9466 - mae: 0.1372 - pearson_correlation: 0.6673 - euclidean_distance: 0.2185
Epoch 100/150
152/152 [==============================] - 0s 828us/step - loss: 0.1373 - accuracy: 0.9489 - mae: 0.1373 - pearson_correlation: 0.6745 - euclidean_distance: 0.2178
Epoch 101/150
152/152 [==============================] - 0s 808us/step - loss: 0.1361 - accuracy: 0.9480 - mae: 0.1361 - pearson_correlation: 0.6726 - euclidean_distance: 0.2160
Epoch 102/150
152/152 [==============================] - 0s 803us/step - loss: 0.1324 - accuracy: 0.9480 - mae: 0.1324 - pearson_correlation: 0.6772 - euclidean_distance: 0.2108
Epoch 103/150
152/152 [==============================] - 0s 805us/step - loss: 0.1307 - accuracy: 0.9489 - mae: 0.1307 - pearson_correlation: 0.6804 - euclidean_distance: 0.2079
Epoch 104/150
152/152 [==============================] - 0s 802us/step - loss: 0.1331 - accuracy: 0.9489 - mae: 0.1331 - pearson_correlation: 0.6737 - euclidean_distance: 0.2117
Epoch 105/150
152/152 [==============================] - 0s 814us/step - loss: 0.1293 - accuracy: 0.9489 - mae: 0.1293 - pearson_correlation: 0.6812 - euclidean_distance: 0.2064
Epoch 106/150
152/152 [==============================] - 0s 803us/step - loss: 0.1277 - accuracy: 0.9493 - mae: 0.1277 - pearson_correlation: 0.6881 - euclidean_distance: 0.2034
Epoch 107/150
152/152 [==============================] - 0s 798us/step - loss: 0.1261 - accuracy: 0.9511 - mae: 0.1261 - pearson_correlation: 0.6816 - euclidean_distance: 0.2020
Epoch 108/150
152/152 [==============================] - 0s 799us/step - loss: 0.1259 - accuracy: 0.9511 - mae: 0.1259 - pearson_correlation: 0.6876 - euclidean_distance: 0.2010
Epoch 109/150
152/152 [==============================] - 0s 789us/step - loss: 0.1282 - accuracy: 0.9506 - mae: 0.1282 - pearson_correlation: 0.6747 - euclidean_distance: 0.2048
Epoch 110/150
152/152 [==============================] - 0s 798us/step - loss: 0.1245 - accuracy: 0.9515 - mae: 0.1245 - pearson_correlation: 0.6889 - euclidean_distance: 0.1993
Epoch 111/150
152/152 [==============================] - 0s 802us/step - loss: 0.1288 - accuracy: 0.9497 - mae: 0.1288 - pearson_correlation: 0.6780 - euclidean_distance: 0.2058
Epoch 112/150
152/152 [==============================] - 0s 796us/step - loss: 0.1223 - accuracy: 0.9524 - mae: 0.1223 - pearson_correlation: 0.6994 - euclidean_distance: 0.1954
Epoch 113/150
152/152 [==============================] - 0s 799us/step - loss: 0.1193 - accuracy: 0.9489 - mae: 0.1193 - pearson_correlation: 0.6996 - euclidean_distance: 0.1907
Epoch 114/150
152/152 [==============================] - 0s 804us/step - loss: 0.1250 - accuracy: 0.9511 - mae: 0.1250 - pearson_correlation: 0.6848 - euclidean_distance: 0.2000
Epoch 115/150
152/152 [==============================] - 0s 801us/step - loss: 0.1210 - accuracy: 0.9502 - mae: 0.1210 - pearson_correlation: 0.6928 - euclidean_distance: 0.1939
Epoch 116/150
152/152 [==============================] - 0s 797us/step - loss: 0.1233 - accuracy: 0.9506 - mae: 0.1233 - pearson_correlation: 0.6868 - euclidean_distance: 0.1980
Epoch 117/150
152/152 [==============================] - 0s 797us/step - loss: 0.1205 - accuracy: 0.9541 - mae: 0.1205 - pearson_correlation: 0.6960 - euclidean_distance: 0.1928
Epoch 118/150
152/152 [==============================] - 0s 801us/step - loss: 0.1220 - accuracy: 0.9497 - mae: 0.1220 - pearson_correlation: 0.6870 - euclidean_distance: 0.1951
Epoch 119/150
152/152 [==============================] - 0s 802us/step - loss: 0.1144 - accuracy: 0.9497 - mae: 0.1144 - pearson_correlation: 0.7043 - euclidean_distance: 0.1835
Epoch 120/150
152/152 [==============================] - 0s 791us/step - loss: 0.1182 - accuracy: 0.9515 - mae: 0.1182 - pearson_correlation: 0.6999 - euclidean_distance: 0.1897
Epoch 121/150
152/152 [==============================] - 0s 804us/step - loss: 0.1207 - accuracy: 0.9489 - mae: 0.1207 - pearson_correlation: 0.6915 - euclidean_distance: 0.1940
Epoch 122/150
152/152 [==============================] - 0s 805us/step - loss: 0.1163 - accuracy: 0.9528 - mae: 0.1163 - pearson_correlation: 0.7058 - euclidean_distance: 0.1862
Epoch 123/150
152/152 [==============================] - 0s 799us/step - loss: 0.1164 - accuracy: 0.9511 - mae: 0.1164 - pearson_correlation: 0.7074 - euclidean_distance: 0.1870
Epoch 124/150
152/152 [==============================] - 0s 802us/step - loss: 0.1163 - accuracy: 0.9497 - mae: 0.1163 - pearson_correlation: 0.7023 - euclidean_distance: 0.1869
Epoch 125/150
152/152 [==============================] - 0s 803us/step - loss: 0.1163 - accuracy: 0.9497 - mae: 0.1163 - pearson_correlation: 0.6986 - euclidean_distance: 0.1872
Epoch 126/150
152/152 [==============================] - 0s 798us/step - loss: 0.1163 - accuracy: 0.9528 - mae: 0.1163 - pearson_correlation: 0.7025 - euclidean_distance: 0.1867
Epoch 127/150
152/152 [==============================] - 0s 795us/step - loss: 0.1138 - accuracy: 0.9541 - mae: 0.1138 - pearson_correlation: 0.7097 - euclidean_distance: 0.1834
Epoch 128/150
152/152 [==============================] - 0s 796us/step - loss: 0.1155 - accuracy: 0.9480 - mae: 0.1155 - pearson_correlation: 0.6963 - euclidean_distance: 0.1859
Epoch 129/150
152/152 [==============================] - 0s 805us/step - loss: 0.1136 - accuracy: 0.9515 - mae: 0.1136 - pearson_correlation: 0.7103 - euclidean_distance: 0.1835
Epoch 130/150
152/152 [==============================] - 0s 794us/step - loss: 0.1110 - accuracy: 0.9537 - mae: 0.1110 - pearson_correlation: 0.7116 - euclidean_distance: 0.1788
Epoch 131/150
152/152 [==============================] - 0s 795us/step - loss: 0.1130 - accuracy: 0.9497 - mae: 0.1130 - pearson_correlation: 0.7107 - euclidean_distance: 0.1820
Epoch 132/150
152/152 [==============================] - 0s 797us/step - loss: 0.1126 - accuracy: 0.9506 - mae: 0.1126 - pearson_correlation: 0.7096 - euclidean_distance: 0.1815
Epoch 133/150
152/152 [==============================] - 0s 793us/step - loss: 0.1118 - accuracy: 0.9528 - mae: 0.1118 - pearson_correlation: 0.7065 - euclidean_distance: 0.1804
Epoch 134/150
152/152 [==============================] - 0s 793us/step - loss: 0.1101 - accuracy: 0.9524 - mae: 0.1101 - pearson_correlation: 0.7165 - euclidean_distance: 0.1777
Epoch 135/150
152/152 [==============================] - 0s 800us/step - loss: 0.1080 - accuracy: 0.9519 - mae: 0.1080 - pearson_correlation: 0.7252 - euclidean_distance: 0.1737
Epoch 136/150
152/152 [==============================] - 0s 796us/step - loss: 0.1107 - accuracy: 0.9502 - mae: 0.1107 - pearson_correlation: 0.7177 - euclidean_distance: 0.1774
Epoch 137/150
152/152 [==============================] - 0s 807us/step - loss: 0.1070 - accuracy: 0.9537 - mae: 0.1070 - pearson_correlation: 0.7271 - euclidean_distance: 0.1719
Epoch 138/150
152/152 [==============================] - 0s 798us/step - loss: 0.1078 - accuracy: 0.9528 - mae: 0.1078 - pearson_correlation: 0.7176 - euclidean_distance: 0.1746
Epoch 139/150
152/152 [==============================] - 0s 800us/step - loss: 0.1109 - accuracy: 0.9524 - mae: 0.1109 - pearson_correlation: 0.7131 - euclidean_distance: 0.1787
Epoch 140/150
152/152 [==============================] - 0s 794us/step - loss: 0.1092 - accuracy: 0.9502 - mae: 0.1092 - pearson_correlation: 0.7159 - euclidean_distance: 0.1765
Epoch 141/150
152/152 [==============================] - 0s 789us/step - loss: 0.1106 - accuracy: 0.9515 - mae: 0.1106 - pearson_correlation: 0.7140 - euclidean_distance: 0.1787
Epoch 142/150
152/152 [==============================] - 0s 799us/step - loss: 0.1121 - accuracy: 0.9515 - mae: 0.1121 - pearson_correlation: 0.7100 - euclidean_distance: 0.1813
Epoch 143/150
152/152 [==============================] - 0s 794us/step - loss: 0.1109 - accuracy: 0.9511 - mae: 0.1109 - pearson_correlation: 0.7124 - euclidean_distance: 0.1792
Epoch 144/150
152/152 [==============================] - 0s 795us/step - loss: 0.1070 - accuracy: 0.9550 - mae: 0.1070 - pearson_correlation: 0.7231 - euclidean_distance: 0.1730
Epoch 145/150
152/152 [==============================] - 0s 799us/step - loss: 0.1076 - accuracy: 0.9519 - mae: 0.1076 - pearson_correlation: 0.7208 - euclidean_distance: 0.1736
Epoch 146/150
152/152 [==============================] - 0s 799us/step - loss: 0.1039 - accuracy: 0.9515 - mae: 0.1039 - pearson_correlation: 0.7306 - euclidean_distance: 0.1679
Epoch 147/150
152/152 [==============================] - 0s 804us/step - loss: 0.1086 - accuracy: 0.9533 - mae: 0.1086 - pearson_correlation: 0.7154 - euclidean_distance: 0.1750
Epoch 148/150
152/152 [==============================] - 0s 800us/step - loss: 0.1094 - accuracy: 0.9515 - mae: 0.1094 - pearson_correlation: 0.7154 - euclidean_distance: 0.1771
Epoch 149/150
152/152 [==============================] - 0s 803us/step - loss: 0.1083 - accuracy: 0.9506 - mae: 0.1083 - pearson_correlation: 0.7242 - euclidean_distance: 0.1752
Epoch 150/150
152/152 [==============================] - 0s 798us/step - loss: 0.1035 - accuracy: 0.9537 - mae: 0.1035 - pearson_correlation: 0.7341 - euclidean_distance: 0.1681
76/76 [==============================] - 0s 444us/step
Epoch 1/200
152/152 [==============================] - 1s 829us/step - loss: 0.7436 - accuracy: 0.7861 - mae: 0.7436 - pearson_correlation: 0.4111 - euclidean_distance: 1.0765
Epoch 2/200
152/152 [==============================] - 0s 797us/step - loss: 0.7288 - accuracy: 0.7949 - mae: 0.7288 - pearson_correlation: 0.4157 - euclidean_distance: 1.0555
Epoch 3/200
152/152 [==============================] - 0s 801us/step - loss: 0.7166 - accuracy: 0.7874 - mae: 0.7166 - pearson_correlation: 0.4141 - euclidean_distance: 1.0390
Epoch 4/200
152/152 [==============================] - 0s 791us/step - loss: 0.7038 - accuracy: 0.7746 - mae: 0.7038 - pearson_correlation: 0.4224 - euclidean_distance: 1.0208
Epoch 5/200
152/152 [==============================] - 0s 800us/step - loss: 0.6918 - accuracy: 0.7808 - mae: 0.6918 - pearson_correlation: 0.4136 - euclidean_distance: 1.0044
Epoch 6/200
152/152 [==============================] - 0s 804us/step - loss: 0.6776 - accuracy: 0.7887 - mae: 0.6776 - pearson_correlation: 0.4188 - euclidean_distance: 0.9847
Epoch 7/200
152/152 [==============================] - 0s 791us/step - loss: 0.6633 - accuracy: 0.7883 - mae: 0.6633 - pearson_correlation: 0.4143 - euclidean_distance: 0.9652
Epoch 8/200
152/152 [==============================] - 0s 790us/step - loss: 0.6509 - accuracy: 0.7856 - mae: 0.6509 - pearson_correlation: 0.4193 - euclidean_distance: 0.9478
Epoch 9/200
152/152 [==============================] - 0s 803us/step - loss: 0.6363 - accuracy: 0.7715 - mae: 0.6363 - pearson_correlation: 0.4124 - euclidean_distance: 0.9281
Epoch 10/200
152/152 [==============================] - 0s 790us/step - loss: 0.6248 - accuracy: 0.7759 - mae: 0.6248 - pearson_correlation: 0.4079 - euclidean_distance: 0.9125
Epoch 11/200
152/152 [==============================] - 0s 795us/step - loss: 0.6104 - accuracy: 0.7830 - mae: 0.6104 - pearson_correlation: 0.4192 - euclidean_distance: 0.8922
Epoch 12/200
152/152 [==============================] - 0s 792us/step - loss: 0.5957 - accuracy: 0.7821 - mae: 0.5957 - pearson_correlation: 0.4161 - euclidean_distance: 0.8713
Epoch 13/200
152/152 [==============================] - 0s 790us/step - loss: 0.5842 - accuracy: 0.7759 - mae: 0.5842 - pearson_correlation: 0.4142 - euclidean_distance: 0.8566
Epoch 14/200
152/152 [==============================] - 0s 790us/step - loss: 0.5704 - accuracy: 0.7715 - mae: 0.5704 - pearson_correlation: 0.4074 - euclidean_distance: 0.8374
Epoch 15/200
152/152 [==============================] - 0s 788us/step - loss: 0.5584 - accuracy: 0.7693 - mae: 0.5584 - pearson_correlation: 0.4116 - euclidean_distance: 0.8213
Epoch 16/200
152/152 [==============================] - 0s 795us/step - loss: 0.5461 - accuracy: 0.7719 - mae: 0.5461 - pearson_correlation: 0.4154 - euclidean_distance: 0.8040
Epoch 17/200
152/152 [==============================] - 0s 790us/step - loss: 0.5325 - accuracy: 0.7719 - mae: 0.5325 - pearson_correlation: 0.4104 - euclidean_distance: 0.7854
Epoch 18/200
152/152 [==============================] - 0s 789us/step - loss: 0.5197 - accuracy: 0.7711 - mae: 0.5197 - pearson_correlation: 0.4058 - euclidean_distance: 0.7678
Epoch 19/200
152/152 [==============================] - 0s 795us/step - loss: 0.5081 - accuracy: 0.7711 - mae: 0.5081 - pearson_correlation: 0.4075 - euclidean_distance: 0.7510
Epoch 20/200
152/152 [==============================] - 0s 786us/step - loss: 0.4951 - accuracy: 0.7658 - mae: 0.4951 - pearson_correlation: 0.3994 - euclidean_distance: 0.7338
Epoch 21/200
152/152 [==============================] - 0s 795us/step - loss: 0.4850 - accuracy: 0.7600 - mae: 0.4850 - pearson_correlation: 0.3966 - euclidean_distance: 0.7195
Epoch 22/200
152/152 [==============================] - 0s 791us/step - loss: 0.4715 - accuracy: 0.7609 - mae: 0.4715 - pearson_correlation: 0.4050 - euclidean_distance: 0.7007
Epoch 23/200
152/152 [==============================] - 0s 791us/step - loss: 0.4605 - accuracy: 0.7658 - mae: 0.4605 - pearson_correlation: 0.4045 - euclidean_distance: 0.6848
Epoch 24/200
152/152 [==============================] - 0s 787us/step - loss: 0.4482 - accuracy: 0.7697 - mae: 0.4482 - pearson_correlation: 0.3980 - euclidean_distance: 0.6686
Epoch 25/200
152/152 [==============================] - 0s 788us/step - loss: 0.4363 - accuracy: 0.7653 - mae: 0.4363 - pearson_correlation: 0.3986 - euclidean_distance: 0.6508
Epoch 26/200
152/152 [==============================] - 0s 795us/step - loss: 0.4260 - accuracy: 0.7622 - mae: 0.4260 - pearson_correlation: 0.3911 - euclidean_distance: 0.6369
Epoch 27/200
152/152 [==============================] - 0s 798us/step - loss: 0.4146 - accuracy: 0.7662 - mae: 0.4146 - pearson_correlation: 0.3866 - euclidean_distance: 0.6210
Epoch 28/200
152/152 [==============================] - 0s 790us/step - loss: 0.4031 - accuracy: 0.7574 - mae: 0.4031 - pearson_correlation: 0.3908 - euclidean_distance: 0.6053
Epoch 29/200
152/152 [==============================] - 0s 791us/step - loss: 0.3913 - accuracy: 0.7569 - mae: 0.3913 - pearson_correlation: 0.3813 - euclidean_distance: 0.5886
Epoch 30/200
152/152 [==============================] - 0s 787us/step - loss: 0.3819 - accuracy: 0.7592 - mae: 0.3819 - pearson_correlation: 0.3783 - euclidean_distance: 0.5760
Epoch 31/200
152/152 [==============================] - 0s 791us/step - loss: 0.3710 - accuracy: 0.7552 - mae: 0.3710 - pearson_correlation: 0.3656 - euclidean_distance: 0.5614
Epoch 32/200
152/152 [==============================] - 0s 808us/step - loss: 0.3613 - accuracy: 0.7508 - mae: 0.3613 - pearson_correlation: 0.3651 - euclidean_distance: 0.5478
Epoch 33/200
152/152 [==============================] - 0s 829us/step - loss: 0.3521 - accuracy: 0.7530 - mae: 0.3521 - pearson_correlation: 0.3482 - euclidean_distance: 0.5361
Epoch 34/200
152/152 [==============================] - 0s 868us/step - loss: 0.3384 - accuracy: 0.7486 - mae: 0.3384 - pearson_correlation: 0.3621 - euclidean_distance: 0.5169
Epoch 35/200
152/152 [==============================] - 0s 892us/step - loss: 0.3323 - accuracy: 0.7340 - mae: 0.3323 - pearson_correlation: 0.3468 - euclidean_distance: 0.5101
Epoch 36/200
152/152 [==============================] - 0s 899us/step - loss: 0.3198 - accuracy: 0.7508 - mae: 0.3198 - pearson_correlation: 0.3529 - euclidean_distance: 0.4922
Epoch 37/200
152/152 [==============================] - 0s 916us/step - loss: 0.3116 - accuracy: 0.7397 - mae: 0.3116 - pearson_correlation: 0.3452 - euclidean_distance: 0.4817
Epoch 38/200
152/152 [==============================] - 0s 801us/step - loss: 0.3016 - accuracy: 0.7477 - mae: 0.3016 - pearson_correlation: 0.3473 - euclidean_distance: 0.4684
Epoch 39/200
152/152 [==============================] - 0s 790us/step - loss: 0.2951 - accuracy: 0.7340 - mae: 0.2951 - pearson_correlation: 0.3395 - euclidean_distance: 0.4597
Epoch 40/200
152/152 [==============================] - 0s 793us/step - loss: 0.2881 - accuracy: 0.7327 - mae: 0.2881 - pearson_correlation: 0.3401 - euclidean_distance: 0.4505
Epoch 41/200
152/152 [==============================] - 0s 789us/step - loss: 0.2823 - accuracy: 0.7472 - mae: 0.2823 - pearson_correlation: 0.3396 - euclidean_distance: 0.4424
Epoch 42/200
152/152 [==============================] - 0s 798us/step - loss: 0.2775 - accuracy: 0.7397 - mae: 0.2775 - pearson_correlation: 0.3316 - euclidean_distance: 0.4363
Epoch 43/200
152/152 [==============================] - 0s 790us/step - loss: 0.2682 - accuracy: 0.7486 - mae: 0.2682 - pearson_correlation: 0.3461 - euclidean_distance: 0.4226
Epoch 44/200
152/152 [==============================] - 0s 789us/step - loss: 0.2631 - accuracy: 0.7477 - mae: 0.2631 - pearson_correlation: 0.3406 - euclidean_distance: 0.4159
Epoch 45/200
152/152 [==============================] - 0s 791us/step - loss: 0.2574 - accuracy: 0.7556 - mae: 0.2574 - pearson_correlation: 0.3394 - euclidean_distance: 0.4083
Epoch 46/200
152/152 [==============================] - 0s 794us/step - loss: 0.2557 - accuracy: 0.7627 - mae: 0.2557 - pearson_correlation: 0.3397 - euclidean_distance: 0.4054
Epoch 47/200
152/152 [==============================] - 0s 796us/step - loss: 0.2498 - accuracy: 0.7733 - mae: 0.2498 - pearson_correlation: 0.3571 - euclidean_distance: 0.3957
Epoch 48/200
152/152 [==============================] - 0s 794us/step - loss: 0.2434 - accuracy: 0.7715 - mae: 0.2434 - pearson_correlation: 0.3634 - euclidean_distance: 0.3868
Epoch 49/200
152/152 [==============================] - 0s 787us/step - loss: 0.2413 - accuracy: 0.7830 - mae: 0.2413 - pearson_correlation: 0.3721 - euclidean_distance: 0.3837
Epoch 50/200
152/152 [==============================] - 0s 788us/step - loss: 0.2356 - accuracy: 0.7958 - mae: 0.2356 - pearson_correlation: 0.3757 - euclidean_distance: 0.3741
Epoch 51/200
152/152 [==============================] - 0s 794us/step - loss: 0.2339 - accuracy: 0.8059 - mae: 0.2339 - pearson_correlation: 0.3760 - euclidean_distance: 0.3718
Epoch 52/200
152/152 [==============================] - 0s 796us/step - loss: 0.2254 - accuracy: 0.8086 - mae: 0.2254 - pearson_correlation: 0.3945 - euclidean_distance: 0.3593
Epoch 53/200
152/152 [==============================] - 0s 791us/step - loss: 0.2229 - accuracy: 0.8037 - mae: 0.2229 - pearson_correlation: 0.3868 - euclidean_distance: 0.3564
Epoch 54/200
152/152 [==============================] - 0s 788us/step - loss: 0.2206 - accuracy: 0.8187 - mae: 0.2206 - pearson_correlation: 0.4010 - euclidean_distance: 0.3515
Epoch 55/200
152/152 [==============================] - 0s 794us/step - loss: 0.2172 - accuracy: 0.8390 - mae: 0.2172 - pearson_correlation: 0.4065 - euclidean_distance: 0.3459
Epoch 56/200
152/152 [==============================] - 0s 792us/step - loss: 0.2126 - accuracy: 0.8372 - mae: 0.2126 - pearson_correlation: 0.4071 - euclidean_distance: 0.3386
Epoch 57/200
152/152 [==============================] - 0s 790us/step - loss: 0.2087 - accuracy: 0.8438 - mae: 0.2087 - pearson_correlation: 0.4178 - euclidean_distance: 0.3332
Epoch 58/200
152/152 [==============================] - 0s 793us/step - loss: 0.2032 - accuracy: 0.8509 - mae: 0.2032 - pearson_correlation: 0.4326 - euclidean_distance: 0.3250
Epoch 59/200
152/152 [==============================] - 0s 795us/step - loss: 0.2037 - accuracy: 0.8615 - mae: 0.2037 - pearson_correlation: 0.4318 - euclidean_distance: 0.3245
Epoch 60/200
152/152 [==============================] - 0s 788us/step - loss: 0.2000 - accuracy: 0.8672 - mae: 0.2000 - pearson_correlation: 0.4516 - euclidean_distance: 0.3181
Epoch 61/200
152/152 [==============================] - 0s 792us/step - loss: 0.1974 - accuracy: 0.8769 - mae: 0.1974 - pearson_correlation: 0.4550 - euclidean_distance: 0.3133
Epoch 62/200
152/152 [==============================] - 0s 789us/step - loss: 0.1939 - accuracy: 0.8800 - mae: 0.1939 - pearson_correlation: 0.4640 - euclidean_distance: 0.3076
Epoch 63/200
152/152 [==============================] - 0s 788us/step - loss: 0.1901 - accuracy: 0.8840 - mae: 0.1901 - pearson_correlation: 0.4790 - euclidean_distance: 0.3017
Epoch 64/200
152/152 [==============================] - 0s 791us/step - loss: 0.1819 - accuracy: 0.8871 - mae: 0.1819 - pearson_correlation: 0.4912 - euclidean_distance: 0.2903
Epoch 65/200
152/152 [==============================] - 0s 786us/step - loss: 0.1801 - accuracy: 0.8910 - mae: 0.1801 - pearson_correlation: 0.4984 - euclidean_distance: 0.2868
Epoch 66/200
152/152 [==============================] - 0s 784us/step - loss: 0.1806 - accuracy: 0.8910 - mae: 0.1806 - pearson_correlation: 0.5029 - euclidean_distance: 0.2857
Epoch 67/200
152/152 [==============================] - 0s 789us/step - loss: 0.1747 - accuracy: 0.8946 - mae: 0.1747 - pearson_correlation: 0.5108 - euclidean_distance: 0.2781
Epoch 68/200
152/152 [==============================] - 0s 785us/step - loss: 0.1738 - accuracy: 0.8999 - mae: 0.1738 - pearson_correlation: 0.5131 - euclidean_distance: 0.2764
Epoch 69/200
152/152 [==============================] - 0s 781us/step - loss: 0.1733 - accuracy: 0.9016 - mae: 0.1733 - pearson_correlation: 0.5185 - euclidean_distance: 0.2755
Epoch 70/200
152/152 [==============================] - 0s 785us/step - loss: 0.1677 - accuracy: 0.9100 - mae: 0.1677 - pearson_correlation: 0.5370 - euclidean_distance: 0.2667
Epoch 71/200
152/152 [==============================] - 0s 786us/step - loss: 0.1690 - accuracy: 0.9087 - mae: 0.1690 - pearson_correlation: 0.5399 - euclidean_distance: 0.2675
Epoch 72/200
152/152 [==============================] - 0s 792us/step - loss: 0.1642 - accuracy: 0.9100 - mae: 0.1642 - pearson_correlation: 0.5432 - euclidean_distance: 0.2604
Epoch 73/200
152/152 [==============================] - 0s 787us/step - loss: 0.1613 - accuracy: 0.9096 - mae: 0.1613 - pearson_correlation: 0.5568 - euclidean_distance: 0.2564
Epoch 74/200
152/152 [==============================] - 0s 791us/step - loss: 0.1599 - accuracy: 0.9175 - mae: 0.1599 - pearson_correlation: 0.5633 - euclidean_distance: 0.2528
Epoch 75/200
152/152 [==============================] - 0s 783us/step - loss: 0.1559 - accuracy: 0.9171 - mae: 0.1559 - pearson_correlation: 0.5673 - euclidean_distance: 0.2479
Epoch 76/200
152/152 [==============================] - 0s 784us/step - loss: 0.1557 - accuracy: 0.9202 - mae: 0.1557 - pearson_correlation: 0.5686 - euclidean_distance: 0.2468
Epoch 77/200
152/152 [==============================] - 0s 784us/step - loss: 0.1508 - accuracy: 0.9197 - mae: 0.1508 - pearson_correlation: 0.5841 - euclidean_distance: 0.2409
Epoch 78/200
152/152 [==============================] - 0s 789us/step - loss: 0.1501 - accuracy: 0.9171 - mae: 0.1501 - pearson_correlation: 0.5862 - euclidean_distance: 0.2390
Epoch 79/200
152/152 [==============================] - 0s 786us/step - loss: 0.1507 - accuracy: 0.9255 - mae: 0.1507 - pearson_correlation: 0.5871 - euclidean_distance: 0.2399
Epoch 80/200
152/152 [==============================] - 0s 798us/step - loss: 0.1486 - accuracy: 0.9232 - mae: 0.1486 - pearson_correlation: 0.5975 - euclidean_distance: 0.2364
Epoch 81/200
152/152 [==============================] - 0s 784us/step - loss: 0.1474 - accuracy: 0.9299 - mae: 0.1474 - pearson_correlation: 0.6013 - euclidean_distance: 0.2342
Epoch 82/200
152/152 [==============================] - 0s 784us/step - loss: 0.1447 - accuracy: 0.9246 - mae: 0.1447 - pearson_correlation: 0.6002 - euclidean_distance: 0.2305
Epoch 83/200
152/152 [==============================] - 0s 787us/step - loss: 0.1457 - accuracy: 0.9321 - mae: 0.1457 - pearson_correlation: 0.6067 - euclidean_distance: 0.2318
Epoch 84/200
152/152 [==============================] - 0s 785us/step - loss: 0.1418 - accuracy: 0.9299 - mae: 0.1418 - pearson_correlation: 0.6160 - euclidean_distance: 0.2256
Epoch 85/200
152/152 [==============================] - 0s 792us/step - loss: 0.1410 - accuracy: 0.9321 - mae: 0.1410 - pearson_correlation: 0.6189 - euclidean_distance: 0.2244
Epoch 86/200
152/152 [==============================] - 0s 792us/step - loss: 0.1425 - accuracy: 0.9316 - mae: 0.1425 - pearson_correlation: 0.6168 - euclidean_distance: 0.2266
Epoch 87/200
152/152 [==============================] - 0s 784us/step - loss: 0.1377 - accuracy: 0.9303 - mae: 0.1377 - pearson_correlation: 0.6229 - euclidean_distance: 0.2198
Epoch 88/200
152/152 [==============================] - 0s 784us/step - loss: 0.1383 - accuracy: 0.9356 - mae: 0.1383 - pearson_correlation: 0.6309 - euclidean_distance: 0.2205
Epoch 89/200
152/152 [==============================] - 0s 793us/step - loss: 0.1369 - accuracy: 0.9360 - mae: 0.1369 - pearson_correlation: 0.6332 - euclidean_distance: 0.2181
Epoch 90/200
152/152 [==============================] - 0s 795us/step - loss: 0.1368 - accuracy: 0.9316 - mae: 0.1368 - pearson_correlation: 0.6292 - euclidean_distance: 0.2182
Epoch 91/200
152/152 [==============================] - 0s 782us/step - loss: 0.1352 - accuracy: 0.9382 - mae: 0.1352 - pearson_correlation: 0.6319 - euclidean_distance: 0.2156
Epoch 92/200
152/152 [==============================] - 0s 780us/step - loss: 0.1356 - accuracy: 0.9347 - mae: 0.1356 - pearson_correlation: 0.6337 - euclidean_distance: 0.2157
Epoch 93/200
152/152 [==============================] - 0s 787us/step - loss: 0.1336 - accuracy: 0.9378 - mae: 0.1336 - pearson_correlation: 0.6465 - euclidean_distance: 0.2126
Epoch 94/200
152/152 [==============================] - 0s 786us/step - loss: 0.1314 - accuracy: 0.9352 - mae: 0.1314 - pearson_correlation: 0.6439 - euclidean_distance: 0.2105
Epoch 95/200
152/152 [==============================] - 0s 786us/step - loss: 0.1337 - accuracy: 0.9396 - mae: 0.1337 - pearson_correlation: 0.6434 - euclidean_distance: 0.2128
Epoch 96/200
152/152 [==============================] - 0s 788us/step - loss: 0.1298 - accuracy: 0.9378 - mae: 0.1298 - pearson_correlation: 0.6535 - euclidean_distance: 0.2069
Epoch 97/200
152/152 [==============================] - 0s 792us/step - loss: 0.1299 - accuracy: 0.9374 - mae: 0.1299 - pearson_correlation: 0.6493 - euclidean_distance: 0.2068
Epoch 98/200
152/152 [==============================] - 0s 790us/step - loss: 0.1299 - accuracy: 0.9400 - mae: 0.1299 - pearson_correlation: 0.6555 - euclidean_distance: 0.2073
Epoch 99/200
152/152 [==============================] - 0s 791us/step - loss: 0.1299 - accuracy: 0.9387 - mae: 0.1299 - pearson_correlation: 0.6515 - euclidean_distance: 0.2069
Epoch 100/200
152/152 [==============================] - 0s 789us/step - loss: 0.1295 - accuracy: 0.9418 - mae: 0.1295 - pearson_correlation: 0.6537 - euclidean_distance: 0.2064
Epoch 101/200
152/152 [==============================] - 0s 790us/step - loss: 0.1262 - accuracy: 0.9435 - mae: 0.1262 - pearson_correlation: 0.6524 - euclidean_distance: 0.2022
Epoch 102/200
152/152 [==============================] - 0s 790us/step - loss: 0.1252 - accuracy: 0.9427 - mae: 0.1252 - pearson_correlation: 0.6654 - euclidean_distance: 0.1993
Epoch 103/200
152/152 [==============================] - 0s 786us/step - loss: 0.1244 - accuracy: 0.9431 - mae: 0.1244 - pearson_correlation: 0.6663 - euclidean_distance: 0.1992
Epoch 104/200
152/152 [==============================] - 0s 787us/step - loss: 0.1258 - accuracy: 0.9431 - mae: 0.1258 - pearson_correlation: 0.6665 - euclidean_distance: 0.2004
Epoch 105/200
152/152 [==============================] - 0s 789us/step - loss: 0.1238 - accuracy: 0.9449 - mae: 0.1238 - pearson_correlation: 0.6720 - euclidean_distance: 0.1976
Epoch 106/200
152/152 [==============================] - 0s 782us/step - loss: 0.1248 - accuracy: 0.9427 - mae: 0.1248 - pearson_correlation: 0.6663 - euclidean_distance: 0.1995
Epoch 107/200
152/152 [==============================] - 0s 784us/step - loss: 0.1218 - accuracy: 0.9449 - mae: 0.1218 - pearson_correlation: 0.6728 - euclidean_distance: 0.1951
Epoch 108/200
152/152 [==============================] - 0s 858us/step - loss: 0.1248 - accuracy: 0.9431 - mae: 0.1248 - pearson_correlation: 0.6660 - euclidean_distance: 0.1997
Epoch 109/200
152/152 [==============================] - 0s 794us/step - loss: 0.1226 - accuracy: 0.9431 - mae: 0.1226 - pearson_correlation: 0.6759 - euclidean_distance: 0.1956
Epoch 110/200
152/152 [==============================] - 0s 796us/step - loss: 0.1210 - accuracy: 0.9435 - mae: 0.1210 - pearson_correlation: 0.6820 - euclidean_distance: 0.1931
Epoch 111/200
152/152 [==============================] - 0s 885us/step - loss: 0.1198 - accuracy: 0.9440 - mae: 0.1198 - pearson_correlation: 0.6867 - euclidean_distance: 0.1920
Epoch 112/200
152/152 [==============================] - 0s 906us/step - loss: 0.1223 - accuracy: 0.9457 - mae: 0.1223 - pearson_correlation: 0.6775 - euclidean_distance: 0.1949
Epoch 113/200
152/152 [==============================] - 0s 856us/step - loss: 0.1190 - accuracy: 0.9462 - mae: 0.1190 - pearson_correlation: 0.6808 - euclidean_distance: 0.1905
Epoch 114/200
152/152 [==============================] - 0s 798us/step - loss: 0.1205 - accuracy: 0.9444 - mae: 0.1205 - pearson_correlation: 0.6754 - euclidean_distance: 0.1931
Epoch 115/200
152/152 [==============================] - 0s 786us/step - loss: 0.1196 - accuracy: 0.9488 - mae: 0.1196 - pearson_correlation: 0.6801 - euclidean_distance: 0.1918
Epoch 116/200
152/152 [==============================] - 0s 794us/step - loss: 0.1198 - accuracy: 0.9453 - mae: 0.1198 - pearson_correlation: 0.6856 - euclidean_distance: 0.1914
Epoch 117/200
152/152 [==============================] - 0s 786us/step - loss: 0.1173 - accuracy: 0.9453 - mae: 0.1173 - pearson_correlation: 0.6887 - euclidean_distance: 0.1874
Epoch 118/200
152/152 [==============================] - 0s 785us/step - loss: 0.1177 - accuracy: 0.9466 - mae: 0.1177 - pearson_correlation: 0.6887 - euclidean_distance: 0.1884
Epoch 119/200
152/152 [==============================] - 0s 783us/step - loss: 0.1176 - accuracy: 0.9475 - mae: 0.1176 - pearson_correlation: 0.6863 - euclidean_distance: 0.1877
Epoch 120/200
152/152 [==============================] - 0s 781us/step - loss: 0.1161 - accuracy: 0.9462 - mae: 0.1161 - pearson_correlation: 0.6873 - euclidean_distance: 0.1864
Epoch 121/200
152/152 [==============================] - 0s 786us/step - loss: 0.1177 - accuracy: 0.9475 - mae: 0.1177 - pearson_correlation: 0.6855 - euclidean_distance: 0.1880
Epoch 122/200
152/152 [==============================] - 0s 786us/step - loss: 0.1147 - accuracy: 0.9479 - mae: 0.1147 - pearson_correlation: 0.6991 - euclidean_distance: 0.1828
Epoch 123/200
152/152 [==============================] - 0s 783us/step - loss: 0.1149 - accuracy: 0.9484 - mae: 0.1149 - pearson_correlation: 0.6974 - euclidean_distance: 0.1842
Epoch 124/200
152/152 [==============================] - 0s 789us/step - loss: 0.1143 - accuracy: 0.9506 - mae: 0.1143 - pearson_correlation: 0.6891 - euclidean_distance: 0.1836
Epoch 125/200
152/152 [==============================] - 0s 789us/step - loss: 0.1137 - accuracy: 0.9479 - mae: 0.1137 - pearson_correlation: 0.6916 - euclidean_distance: 0.1826
Epoch 126/200
152/152 [==============================] - 0s 781us/step - loss: 0.1145 - accuracy: 0.9493 - mae: 0.1145 - pearson_correlation: 0.6982 - euclidean_distance: 0.1826
Epoch 127/200
152/152 [==============================] - 0s 780us/step - loss: 0.1133 - accuracy: 0.9471 - mae: 0.1133 - pearson_correlation: 0.7016 - euclidean_distance: 0.1810
Epoch 128/200
152/152 [==============================] - 0s 783us/step - loss: 0.1116 - accuracy: 0.9502 - mae: 0.1116 - pearson_correlation: 0.7035 - euclidean_distance: 0.1779
Epoch 129/200
152/152 [==============================] - 0s 786us/step - loss: 0.1128 - accuracy: 0.9497 - mae: 0.1128 - pearson_correlation: 0.6993 - euclidean_distance: 0.1806
Epoch 130/200
152/152 [==============================] - 0s 792us/step - loss: 0.1141 - accuracy: 0.9493 - mae: 0.1141 - pearson_correlation: 0.6968 - euclidean_distance: 0.1826
Epoch 131/200
152/152 [==============================] - 0s 793us/step - loss: 0.1102 - accuracy: 0.9506 - mae: 0.1102 - pearson_correlation: 0.7064 - euclidean_distance: 0.1765
Epoch 132/200
152/152 [==============================] - 0s 789us/step - loss: 0.1120 - accuracy: 0.9502 - mae: 0.1120 - pearson_correlation: 0.7011 - euclidean_distance: 0.1788
Epoch 133/200
152/152 [==============================] - 0s 795us/step - loss: 0.1126 - accuracy: 0.9493 - mae: 0.1126 - pearson_correlation: 0.7037 - euclidean_distance: 0.1795
Epoch 134/200
152/152 [==============================] - 0s 794us/step - loss: 0.1090 - accuracy: 0.9510 - mae: 0.1090 - pearson_correlation: 0.7118 - euclidean_distance: 0.1745
Epoch 135/200
152/152 [==============================] - 0s 786us/step - loss: 0.1111 - accuracy: 0.9493 - mae: 0.1111 - pearson_correlation: 0.7057 - euclidean_distance: 0.1777
Epoch 136/200
152/152 [==============================] - 0s 792us/step - loss: 0.1082 - accuracy: 0.9528 - mae: 0.1082 - pearson_correlation: 0.7094 - euclidean_distance: 0.1735
Epoch 137/200
152/152 [==============================] - 0s 783us/step - loss: 0.1068 - accuracy: 0.9497 - mae: 0.1068 - pearson_correlation: 0.7179 - euclidean_distance: 0.1713
Epoch 138/200
152/152 [==============================] - 0s 791us/step - loss: 0.1094 - accuracy: 0.9488 - mae: 0.1094 - pearson_correlation: 0.7148 - euclidean_distance: 0.1748
Epoch 139/200
152/152 [==============================] - 0s 787us/step - loss: 0.1088 - accuracy: 0.9524 - mae: 0.1088 - pearson_correlation: 0.7151 - euclidean_distance: 0.1742
Epoch 140/200
152/152 [==============================] - 0s 786us/step - loss: 0.1084 - accuracy: 0.9506 - mae: 0.1084 - pearson_correlation: 0.7125 - euclidean_distance: 0.1737
Epoch 141/200
152/152 [==============================] - 0s 788us/step - loss: 0.1082 - accuracy: 0.9502 - mae: 0.1082 - pearson_correlation: 0.7159 - euclidean_distance: 0.1728
Epoch 142/200
152/152 [==============================] - 0s 782us/step - loss: 0.1063 - accuracy: 0.9515 - mae: 0.1063 - pearson_correlation: 0.7176 - euclidean_distance: 0.1701
Epoch 143/200
152/152 [==============================] - 0s 781us/step - loss: 0.1055 - accuracy: 0.9510 - mae: 0.1055 - pearson_correlation: 0.7223 - euclidean_distance: 0.1690
Epoch 144/200
152/152 [==============================] - 0s 782us/step - loss: 0.1061 - accuracy: 0.9506 - mae: 0.1061 - pearson_correlation: 0.7176 - euclidean_distance: 0.1699
Epoch 145/200
152/152 [==============================] - 0s 781us/step - loss: 0.1066 - accuracy: 0.9519 - mae: 0.1066 - pearson_correlation: 0.7172 - euclidean_distance: 0.1708
Epoch 146/200
152/152 [==============================] - 0s 785us/step - loss: 0.1065 - accuracy: 0.9519 - mae: 0.1065 - pearson_correlation: 0.7127 - euclidean_distance: 0.1710
Epoch 147/200
152/152 [==============================] - 0s 790us/step - loss: 0.1051 - accuracy: 0.9506 - mae: 0.1051 - pearson_correlation: 0.7226 - euclidean_distance: 0.1687
Epoch 148/200
152/152 [==============================] - 0s 780us/step - loss: 0.1040 - accuracy: 0.9519 - mae: 0.1040 - pearson_correlation: 0.7278 - euclidean_distance: 0.1667
Epoch 149/200
152/152 [==============================] - 0s 784us/step - loss: 0.1018 - accuracy: 0.9519 - mae: 0.1018 - pearson_correlation: 0.7334 - euclidean_distance: 0.1633
Epoch 150/200
152/152 [==============================] - 0s 789us/step - loss: 0.1021 - accuracy: 0.9515 - mae: 0.1021 - pearson_correlation: 0.7282 - euclidean_distance: 0.1632
Epoch 151/200
152/152 [==============================] - 0s 789us/step - loss: 0.1034 - accuracy: 0.9506 - mae: 0.1034 - pearson_correlation: 0.7207 - euclidean_distance: 0.1660
Epoch 152/200
152/152 [==============================] - 0s 785us/step - loss: 0.1046 - accuracy: 0.9528 - mae: 0.1046 - pearson_correlation: 0.7265 - euclidean_distance: 0.1676
Epoch 153/200
152/152 [==============================] - 0s 787us/step - loss: 0.1036 - accuracy: 0.9510 - mae: 0.1036 - pearson_correlation: 0.7288 - euclidean_distance: 0.1662
Epoch 154/200
152/152 [==============================] - 0s 781us/step - loss: 0.1022 - accuracy: 0.9519 - mae: 0.1022 - pearson_correlation: 0.7277 - euclidean_distance: 0.1639
Epoch 155/200
152/152 [==============================] - 0s 786us/step - loss: 0.1010 - accuracy: 0.9524 - mae: 0.1010 - pearson_correlation: 0.7310 - euclidean_distance: 0.1623
Epoch 156/200
152/152 [==============================] - 0s 787us/step - loss: 0.1061 - accuracy: 0.9524 - mae: 0.1061 - pearson_correlation: 0.7235 - euclidean_distance: 0.1697
Epoch 157/200
152/152 [==============================] - 0s 789us/step - loss: 0.1001 - accuracy: 0.9519 - mae: 0.1001 - pearson_correlation: 0.7365 - euclidean_distance: 0.1609
Epoch 158/200
152/152 [==============================] - 0s 788us/step - loss: 0.1022 - accuracy: 0.9524 - mae: 0.1022 - pearson_correlation: 0.7338 - euclidean_distance: 0.1634
Epoch 159/200
152/152 [==============================] - 0s 783us/step - loss: 0.1019 - accuracy: 0.9510 - mae: 0.1019 - pearson_correlation: 0.7310 - euclidean_distance: 0.1630
Epoch 160/200
152/152 [==============================] - 0s 791us/step - loss: 0.0983 - accuracy: 0.9532 - mae: 0.0983 - pearson_correlation: 0.7372 - euclidean_distance: 0.1579
Epoch 161/200
152/152 [==============================] - 0s 780us/step - loss: 0.1015 - accuracy: 0.9524 - mae: 0.1015 - pearson_correlation: 0.7334 - euclidean_distance: 0.1625
Epoch 162/200
152/152 [==============================] - 0s 786us/step - loss: 0.1016 - accuracy: 0.9528 - mae: 0.1016 - pearson_correlation: 0.7301 - euclidean_distance: 0.1632
Epoch 163/200
152/152 [==============================] - 0s 799us/step - loss: 0.0970 - accuracy: 0.9537 - mae: 0.0970 - pearson_correlation: 0.7414 - euclidean_distance: 0.1566
Epoch 164/200
152/152 [==============================] - 0s 862us/step - loss: 0.1001 - accuracy: 0.9519 - mae: 0.1001 - pearson_correlation: 0.7291 - euclidean_distance: 0.1614
Epoch 165/200
152/152 [==============================] - 0s 866us/step - loss: 0.0993 - accuracy: 0.9519 - mae: 0.0993 - pearson_correlation: 0.7356 - euclidean_distance: 0.1593
Epoch 166/200
152/152 [==============================] - 0s 836us/step - loss: 0.0994 - accuracy: 0.9528 - mae: 0.0994 - pearson_correlation: 0.7370 - euclidean_distance: 0.1597
Epoch 167/200
152/152 [==============================] - 0s 886us/step - loss: 0.1000 - accuracy: 0.9524 - mae: 0.1000 - pearson_correlation: 0.7356 - euclidean_distance: 0.1608
Epoch 168/200
152/152 [==============================] - 0s 897us/step - loss: 0.0984 - accuracy: 0.9546 - mae: 0.0984 - pearson_correlation: 0.7370 - euclidean_distance: 0.1577
Epoch 169/200
152/152 [==============================] - 0s 916us/step - loss: 0.0971 - accuracy: 0.9541 - mae: 0.0971 - pearson_correlation: 0.7341 - euclidean_distance: 0.1565
Epoch 170/200
152/152 [==============================] - 0s 798us/step - loss: 0.0991 - accuracy: 0.9537 - mae: 0.0991 - pearson_correlation: 0.7376 - euclidean_distance: 0.1589
Epoch 171/200
152/152 [==============================] - 0s 801us/step - loss: 0.0981 - accuracy: 0.9537 - mae: 0.0981 - pearson_correlation: 0.7403 - euclidean_distance: 0.1573
Epoch 172/200
152/152 [==============================] - 0s 790us/step - loss: 0.0972 - accuracy: 0.9550 - mae: 0.0972 - pearson_correlation: 0.7452 - euclidean_distance: 0.1562
Epoch 173/200
152/152 [==============================] - 0s 793us/step - loss: 0.0980 - accuracy: 0.9541 - mae: 0.0980 - pearson_correlation: 0.7425 - euclidean_distance: 0.1572
Epoch 174/200
152/152 [==============================] - 0s 796us/step - loss: 0.0948 - accuracy: 0.9532 - mae: 0.0948 - pearson_correlation: 0.7471 - euclidean_distance: 0.1529
Epoch 175/200
152/152 [==============================] - 0s 788us/step - loss: 0.0971 - accuracy: 0.9546 - mae: 0.0971 - pearson_correlation: 0.7448 - euclidean_distance: 0.1558
Epoch 176/200
152/152 [==============================] - 0s 785us/step - loss: 0.0984 - accuracy: 0.9532 - mae: 0.0984 - pearson_correlation: 0.7395 - euclidean_distance: 0.1578
Epoch 177/200
152/152 [==============================] - 0s 783us/step - loss: 0.0928 - accuracy: 0.9550 - mae: 0.0928 - pearson_correlation: 0.7503 - euclidean_distance: 0.1503
Epoch 178/200
152/152 [==============================] - 0s 860us/step - loss: 0.0950 - accuracy: 0.9537 - mae: 0.0950 - pearson_correlation: 0.7485 - euclidean_distance: 0.1527
Epoch 179/200
152/152 [==============================] - 0s 987us/step - loss: 0.0954 - accuracy: 0.9541 - mae: 0.0954 - pearson_correlation: 0.7499 - euclidean_distance: 0.1528
Epoch 180/200
152/152 [==============================] - 0s 804us/step - loss: 0.0974 - accuracy: 0.9550 - mae: 0.0974 - pearson_correlation: 0.7403 - euclidean_distance: 0.1567
Epoch 181/200
152/152 [==============================] - 0s 849us/step - loss: 0.0952 - accuracy: 0.9550 - mae: 0.0952 - pearson_correlation: 0.7446 - euclidean_distance: 0.1533
Epoch 182/200
152/152 [==============================] - 0s 802us/step - loss: 0.0954 - accuracy: 0.9532 - mae: 0.0954 - pearson_correlation: 0.7428 - euclidean_distance: 0.1535
Epoch 183/200
152/152 [==============================] - 0s 791us/step - loss: 0.0935 - accuracy: 0.9532 - mae: 0.0935 - pearson_correlation: 0.7538 - euclidean_distance: 0.1509
Epoch 184/200
152/152 [==============================] - 0s 782us/step - loss: 0.0954 - accuracy: 0.9546 - mae: 0.0954 - pearson_correlation: 0.7497 - euclidean_distance: 0.1534
Epoch 185/200
152/152 [==============================] - 0s 787us/step - loss: 0.0945 - accuracy: 0.9546 - mae: 0.0945 - pearson_correlation: 0.7481 - euclidean_distance: 0.1519
Epoch 186/200
152/152 [==============================] - 0s 781us/step - loss: 0.0939 - accuracy: 0.9537 - mae: 0.0939 - pearson_correlation: 0.7527 - euclidean_distance: 0.1510
Epoch 187/200
152/152 [==============================] - 0s 794us/step - loss: 0.0940 - accuracy: 0.9546 - mae: 0.0940 - pearson_correlation: 0.7483 - euclidean_distance: 0.1510
Epoch 188/200
152/152 [==============================] - 0s 786us/step - loss: 0.0950 - accuracy: 0.9532 - mae: 0.0950 - pearson_correlation: 0.7481 - euclidean_distance: 0.1527
Epoch 189/200
152/152 [==============================] - 0s 788us/step - loss: 0.0932 - accuracy: 0.9546 - mae: 0.0932 - pearson_correlation: 0.7493 - euclidean_distance: 0.1497
Epoch 190/200
152/152 [==============================] - 0s 787us/step - loss: 0.0910 - accuracy: 0.9532 - mae: 0.0910 - pearson_correlation: 0.7602 - euclidean_distance: 0.1473
Epoch 191/200
152/152 [==============================] - 0s 788us/step - loss: 0.0929 - accuracy: 0.9546 - mae: 0.0929 - pearson_correlation: 0.7563 - euclidean_distance: 0.1493
Epoch 192/200
152/152 [==============================] - 0s 782us/step - loss: 0.0943 - accuracy: 0.9537 - mae: 0.0943 - pearson_correlation: 0.7535 - euclidean_distance: 0.1516
Epoch 193/200
152/152 [==============================] - 0s 790us/step - loss: 0.0929 - accuracy: 0.9550 - mae: 0.0929 - pearson_correlation: 0.7593 - euclidean_distance: 0.1494
Epoch 194/200
152/152 [==============================] - 0s 782us/step - loss: 0.0943 - accuracy: 0.9532 - mae: 0.0943 - pearson_correlation: 0.7535 - euclidean_distance: 0.1515
Epoch 195/200
152/152 [==============================] - 0s 813us/step - loss: 0.0929 - accuracy: 0.9550 - mae: 0.0929 - pearson_correlation: 0.7544 - euclidean_distance: 0.1500
Epoch 196/200
152/152 [==============================] - 0s 791us/step - loss: 0.0923 - accuracy: 0.9537 - mae: 0.0923 - pearson_correlation: 0.7571 - euclidean_distance: 0.1487
Epoch 197/200
152/152 [==============================] - 0s 792us/step - loss: 0.0914 - accuracy: 0.9541 - mae: 0.0914 - pearson_correlation: 0.7562 - euclidean_distance: 0.1469
Epoch 198/200
152/152 [==============================] - 0s 793us/step - loss: 0.0915 - accuracy: 0.9559 - mae: 0.0915 - pearson_correlation: 0.7619 - euclidean_distance: 0.1471
Epoch 199/200
152/152 [==============================] - 0s 811us/step - loss: 0.0924 - accuracy: 0.9554 - mae: 0.0924 - pearson_correlation: 0.7543 - euclidean_distance: 0.1487
Epoch 200/200
152/152 [==============================] - 0s 782us/step - loss: 0.0883 - accuracy: 0.9554 - mae: 0.0883 - pearson_correlation: 0.7673 - euclidean_distance: 0.1425
76/76 [==============================] - 0s 424us/step
Epoch 1/200
152/152 [==============================] - 1s 826us/step - loss: 0.6106 - accuracy: 0.9537 - mae: 0.6106 - pearson_correlation: 0.7552 - euclidean_distance: 0.8970
Epoch 2/200
152/152 [==============================] - 0s 804us/step - loss: 0.6030 - accuracy: 0.9524 - mae: 0.6030 - pearson_correlation: 0.7537 - euclidean_distance: 0.8870
Epoch 3/200
152/152 [==============================] - 0s 802us/step - loss: 0.5932 - accuracy: 0.9532 - mae: 0.5932 - pearson_correlation: 0.7537 - euclidean_distance: 0.8745
Epoch 4/200
152/152 [==============================] - 0s 800us/step - loss: 0.5837 - accuracy: 0.9537 - mae: 0.5837 - pearson_correlation: 0.7591 - euclidean_distance: 0.8606
Epoch 5/200
152/152 [==============================] - 0s 806us/step - loss: 0.5732 - accuracy: 0.9528 - mae: 0.5732 - pearson_correlation: 0.7554 - euclidean_distance: 0.8477
Epoch 6/200
152/152 [==============================] - 0s 835us/step - loss: 0.5628 - accuracy: 0.9554 - mae: 0.5628 - pearson_correlation: 0.7619 - euclidean_distance: 0.8341
Epoch 7/200
152/152 [==============================] - 0s 809us/step - loss: 0.5538 - accuracy: 0.9537 - mae: 0.5538 - pearson_correlation: 0.7562 - euclidean_distance: 0.8230
Epoch 8/200
152/152 [==============================] - 0s 832us/step - loss: 0.5439 - accuracy: 0.9537 - mae: 0.5439 - pearson_correlation: 0.7596 - euclidean_distance: 0.8099
Epoch 9/200
152/152 [==============================] - 0s 797us/step - loss: 0.5313 - accuracy: 0.9541 - mae: 0.5313 - pearson_correlation: 0.7624 - euclidean_distance: 0.7943
Epoch 10/200
152/152 [==============================] - 0s 802us/step - loss: 0.5225 - accuracy: 0.9541 - mae: 0.5225 - pearson_correlation: 0.7578 - euclidean_distance: 0.7831
Epoch 11/200
152/152 [==============================] - 0s 802us/step - loss: 0.5093 - accuracy: 0.9546 - mae: 0.5093 - pearson_correlation: 0.7603 - euclidean_distance: 0.7656
Epoch 12/200
152/152 [==============================] - 0s 805us/step - loss: 0.4986 - accuracy: 0.9532 - mae: 0.4986 - pearson_correlation: 0.7644 - euclidean_distance: 0.7526
Epoch 13/200
152/152 [==============================] - 0s 794us/step - loss: 0.4889 - accuracy: 0.9537 - mae: 0.4889 - pearson_correlation: 0.7619 - euclidean_distance: 0.7406
Epoch 14/200
152/152 [==============================] - 0s 806us/step - loss: 0.4775 - accuracy: 0.9541 - mae: 0.4775 - pearson_correlation: 0.7592 - euclidean_distance: 0.7259
Epoch 15/200
152/152 [==============================] - 0s 795us/step - loss: 0.4674 - accuracy: 0.9546 - mae: 0.4674 - pearson_correlation: 0.7601 - euclidean_distance: 0.7124
Epoch 16/200
152/152 [==============================] - 0s 798us/step - loss: 0.4566 - accuracy: 0.9541 - mae: 0.4566 - pearson_correlation: 0.7595 - euclidean_distance: 0.6988
Epoch 17/200
152/152 [==============================] - 0s 802us/step - loss: 0.4464 - accuracy: 0.9550 - mae: 0.4464 - pearson_correlation: 0.7624 - euclidean_distance: 0.6849
Epoch 18/200
152/152 [==============================] - 0s 801us/step - loss: 0.4371 - accuracy: 0.9550 - mae: 0.4371 - pearson_correlation: 0.7631 - euclidean_distance: 0.6729
Epoch 19/200
152/152 [==============================] - 0s 798us/step - loss: 0.4287 - accuracy: 0.9550 - mae: 0.4287 - pearson_correlation: 0.7632 - euclidean_distance: 0.6605
Epoch 20/200
152/152 [==============================] - 0s 796us/step - loss: 0.4202 - accuracy: 0.9550 - mae: 0.4202 - pearson_correlation: 0.7585 - euclidean_distance: 0.6495
Epoch 21/200
152/152 [==============================] - 0s 804us/step - loss: 0.4109 - accuracy: 0.9554 - mae: 0.4109 - pearson_correlation: 0.7640 - euclidean_distance: 0.6361
Epoch 22/200
152/152 [==============================] - 0s 808us/step - loss: 0.4037 - accuracy: 0.9541 - mae: 0.4037 - pearson_correlation: 0.7605 - euclidean_distance: 0.6258
Epoch 23/200
152/152 [==============================] - 0s 801us/step - loss: 0.3957 - accuracy: 0.9550 - mae: 0.3957 - pearson_correlation: 0.7603 - euclidean_distance: 0.6146
Epoch 24/200
152/152 [==============================] - 0s 792us/step - loss: 0.3861 - accuracy: 0.9550 - mae: 0.3861 - pearson_correlation: 0.7634 - euclidean_distance: 0.6002
Epoch 25/200
152/152 [==============================] - 0s 805us/step - loss: 0.3787 - accuracy: 0.9554 - mae: 0.3787 - pearson_correlation: 0.7615 - euclidean_distance: 0.5909
Epoch 26/200
152/152 [==============================] - 0s 799us/step - loss: 0.3740 - accuracy: 0.9554 - mae: 0.3740 - pearson_correlation: 0.7604 - euclidean_distance: 0.5819
Epoch 27/200
152/152 [==============================] - 0s 794us/step - loss: 0.3641 - accuracy: 0.9554 - mae: 0.3641 - pearson_correlation: 0.7519 - euclidean_distance: 0.5690
Epoch 28/200
152/152 [==============================] - 0s 806us/step - loss: 0.3584 - accuracy: 0.9554 - mae: 0.3584 - pearson_correlation: 0.7575 - euclidean_distance: 0.5601
Epoch 29/200
152/152 [==============================] - 0s 794us/step - loss: 0.3523 - accuracy: 0.9559 - mae: 0.3523 - pearson_correlation: 0.7633 - euclidean_distance: 0.5495
Epoch 30/200
152/152 [==============================] - 0s 805us/step - loss: 0.3455 - accuracy: 0.9559 - mae: 0.3455 - pearson_correlation: 0.7638 - euclidean_distance: 0.5395
Epoch 31/200
152/152 [==============================] - 0s 800us/step - loss: 0.3397 - accuracy: 0.9550 - mae: 0.3397 - pearson_correlation: 0.7555 - euclidean_distance: 0.5292
Epoch 32/200
152/152 [==============================] - 0s 799us/step - loss: 0.3316 - accuracy: 0.9559 - mae: 0.3316 - pearson_correlation: 0.7602 - euclidean_distance: 0.5177
Epoch 33/200
152/152 [==============================] - 0s 794us/step - loss: 0.3235 - accuracy: 0.9550 - mae: 0.3235 - pearson_correlation: 0.7601 - euclidean_distance: 0.5070
Epoch 34/200
152/152 [==============================] - 0s 797us/step - loss: 0.3202 - accuracy: 0.9554 - mae: 0.3202 - pearson_correlation: 0.7573 - euclidean_distance: 0.4992
Epoch 35/200
152/152 [==============================] - 0s 814us/step - loss: 0.3119 - accuracy: 0.9559 - mae: 0.3119 - pearson_correlation: 0.7637 - euclidean_distance: 0.4875
Epoch 36/200
152/152 [==============================] - 0s 796us/step - loss: 0.3058 - accuracy: 0.9550 - mae: 0.3058 - pearson_correlation: 0.7541 - euclidean_distance: 0.4778
Epoch 37/200
152/152 [==============================] - 0s 798us/step - loss: 0.2986 - accuracy: 0.9554 - mae: 0.2986 - pearson_correlation: 0.7600 - euclidean_distance: 0.4664
Epoch 38/200
152/152 [==============================] - 0s 807us/step - loss: 0.2930 - accuracy: 0.9554 - mae: 0.2930 - pearson_correlation: 0.7561 - euclidean_distance: 0.4574
Epoch 39/200
152/152 [==============================] - 0s 823us/step - loss: 0.2836 - accuracy: 0.9554 - mae: 0.2836 - pearson_correlation: 0.7524 - euclidean_distance: 0.4439
Epoch 40/200
152/152 [==============================] - 0s 802us/step - loss: 0.2802 - accuracy: 0.9554 - mae: 0.2802 - pearson_correlation: 0.7500 - euclidean_distance: 0.4358
Epoch 41/200
152/152 [==============================] - 0s 801us/step - loss: 0.2742 - accuracy: 0.9554 - mae: 0.2742 - pearson_correlation: 0.7481 - euclidean_distance: 0.4271
Epoch 42/200
152/152 [==============================] - 0s 808us/step - loss: 0.2655 - accuracy: 0.9554 - mae: 0.2655 - pearson_correlation: 0.7543 - euclidean_distance: 0.4142
Epoch 43/200
152/152 [==============================] - 0s 803us/step - loss: 0.2633 - accuracy: 0.9550 - mae: 0.2633 - pearson_correlation: 0.7500 - euclidean_distance: 0.4085
Epoch 44/200
152/152 [==============================] - 0s 797us/step - loss: 0.2529 - accuracy: 0.9554 - mae: 0.2529 - pearson_correlation: 0.7506 - euclidean_distance: 0.3934
Epoch 45/200
152/152 [==============================] - 0s 795us/step - loss: 0.2476 - accuracy: 0.9554 - mae: 0.2476 - pearson_correlation: 0.7532 - euclidean_distance: 0.3851
Epoch 46/200
152/152 [==============================] - 0s 800us/step - loss: 0.2425 - accuracy: 0.9554 - mae: 0.2425 - pearson_correlation: 0.7407 - euclidean_distance: 0.3780
Epoch 47/200
152/152 [==============================] - 0s 796us/step - loss: 0.2357 - accuracy: 0.9541 - mae: 0.2357 - pearson_correlation: 0.7422 - euclidean_distance: 0.3665
Epoch 48/200
152/152 [==============================] - 0s 799us/step - loss: 0.2293 - accuracy: 0.9554 - mae: 0.2293 - pearson_correlation: 0.7362 - euclidean_distance: 0.3568
Epoch 49/200
152/152 [==============================] - 0s 802us/step - loss: 0.2223 - accuracy: 0.9550 - mae: 0.2223 - pearson_correlation: 0.7384 - euclidean_distance: 0.3455
Epoch 50/200
152/152 [==============================] - 0s 800us/step - loss: 0.2167 - accuracy: 0.9550 - mae: 0.2167 - pearson_correlation: 0.7352 - euclidean_distance: 0.3380
Epoch 51/200
152/152 [==============================] - 0s 790us/step - loss: 0.2119 - accuracy: 0.9532 - mae: 0.2119 - pearson_correlation: 0.7310 - euclidean_distance: 0.3293
Epoch 52/200
152/152 [==============================] - 0s 795us/step - loss: 0.2076 - accuracy: 0.9546 - mae: 0.2076 - pearson_correlation: 0.7270 - euclidean_distance: 0.3222
Epoch 53/200
152/152 [==============================] - 0s 798us/step - loss: 0.2019 - accuracy: 0.9550 - mae: 0.2019 - pearson_correlation: 0.7323 - euclidean_distance: 0.3143
Epoch 54/200
152/152 [==============================] - 0s 798us/step - loss: 0.1996 - accuracy: 0.9541 - mae: 0.1996 - pearson_correlation: 0.7205 - euclidean_distance: 0.3108
Epoch 55/200
152/152 [==============================] - 0s 882us/step - loss: 0.1942 - accuracy: 0.9528 - mae: 0.1942 - pearson_correlation: 0.7204 - euclidean_distance: 0.3011
Epoch 56/200
152/152 [==============================] - 0s 845us/step - loss: 0.1891 - accuracy: 0.9532 - mae: 0.1891 - pearson_correlation: 0.7174 - euclidean_distance: 0.2949
Epoch 57/200
152/152 [==============================] - 0s 824us/step - loss: 0.1859 - accuracy: 0.9541 - mae: 0.1859 - pearson_correlation: 0.7145 - euclidean_distance: 0.2902
Epoch 58/200
152/152 [==============================] - 0s 808us/step - loss: 0.1798 - accuracy: 0.9515 - mae: 0.1798 - pearson_correlation: 0.7119 - euclidean_distance: 0.2807
Epoch 59/200
152/152 [==============================] - 0s 804us/step - loss: 0.1768 - accuracy: 0.9546 - mae: 0.1768 - pearson_correlation: 0.7115 - euclidean_distance: 0.2759
Epoch 60/200
152/152 [==============================] - 0s 805us/step - loss: 0.1728 - accuracy: 0.9510 - mae: 0.1728 - pearson_correlation: 0.7099 - euclidean_distance: 0.2709
Epoch 61/200
152/152 [==============================] - 0s 798us/step - loss: 0.1724 - accuracy: 0.9506 - mae: 0.1724 - pearson_correlation: 0.7024 - euclidean_distance: 0.2691
Epoch 62/200
152/152 [==============================] - 0s 802us/step - loss: 0.1704 - accuracy: 0.9537 - mae: 0.1704 - pearson_correlation: 0.6925 - euclidean_distance: 0.2661
Epoch 63/200
152/152 [==============================] - 0s 866us/step - loss: 0.1687 - accuracy: 0.9502 - mae: 0.1687 - pearson_correlation: 0.6984 - euclidean_distance: 0.2641
Epoch 64/200
152/152 [==============================] - 0s 799us/step - loss: 0.1637 - accuracy: 0.9515 - mae: 0.1637 - pearson_correlation: 0.6874 - euclidean_distance: 0.2570
Epoch 65/200
152/152 [==============================] - 0s 801us/step - loss: 0.1643 - accuracy: 0.9524 - mae: 0.1643 - pearson_correlation: 0.6883 - euclidean_distance: 0.2585
Epoch 66/200
152/152 [==============================] - 0s 808us/step - loss: 0.1601 - accuracy: 0.9502 - mae: 0.1601 - pearson_correlation: 0.6963 - euclidean_distance: 0.2514
Epoch 67/200
152/152 [==============================] - 0s 797us/step - loss: 0.1607 - accuracy: 0.9493 - mae: 0.1607 - pearson_correlation: 0.6870 - euclidean_distance: 0.2523
Epoch 68/200
152/152 [==============================] - 0s 794us/step - loss: 0.1563 - accuracy: 0.9524 - mae: 0.1563 - pearson_correlation: 0.6922 - euclidean_distance: 0.2454
Epoch 69/200
152/152 [==============================] - 0s 799us/step - loss: 0.1594 - accuracy: 0.9484 - mae: 0.1594 - pearson_correlation: 0.6893 - euclidean_distance: 0.2501
Epoch 70/200
152/152 [==============================] - 0s 812us/step - loss: 0.1555 - accuracy: 0.9506 - mae: 0.1555 - pearson_correlation: 0.6913 - euclidean_distance: 0.2440
Epoch 71/200
152/152 [==============================] - 0s 804us/step - loss: 0.1522 - accuracy: 0.9506 - mae: 0.1522 - pearson_correlation: 0.6957 - euclidean_distance: 0.2399
Epoch 72/200
152/152 [==============================] - 0s 805us/step - loss: 0.1528 - accuracy: 0.9519 - mae: 0.1528 - pearson_correlation: 0.6878 - euclidean_distance: 0.2406
Epoch 73/200
152/152 [==============================] - 0s 804us/step - loss: 0.1491 - accuracy: 0.9497 - mae: 0.1491 - pearson_correlation: 0.6922 - euclidean_distance: 0.2346
Epoch 74/200
152/152 [==============================] - 0s 809us/step - loss: 0.1508 - accuracy: 0.9515 - mae: 0.1508 - pearson_correlation: 0.6911 - euclidean_distance: 0.2361
Epoch 75/200
152/152 [==============================] - 0s 803us/step - loss: 0.1476 - accuracy: 0.9524 - mae: 0.1476 - pearson_correlation: 0.6927 - euclidean_distance: 0.2327
Epoch 76/200
152/152 [==============================] - 0s 801us/step - loss: 0.1473 - accuracy: 0.9497 - mae: 0.1473 - pearson_correlation: 0.6919 - euclidean_distance: 0.2322
Epoch 77/200
152/152 [==============================] - 0s 802us/step - loss: 0.1471 - accuracy: 0.9475 - mae: 0.1471 - pearson_correlation: 0.6873 - euclidean_distance: 0.2312
Epoch 78/200
152/152 [==============================] - 0s 801us/step - loss: 0.1463 - accuracy: 0.9488 - mae: 0.1463 - pearson_correlation: 0.6896 - euclidean_distance: 0.2302
Epoch 79/200
152/152 [==============================] - 0s 805us/step - loss: 0.1433 - accuracy: 0.9502 - mae: 0.1433 - pearson_correlation: 0.6855 - euclidean_distance: 0.2270
Epoch 80/200
152/152 [==============================] - 0s 806us/step - loss: 0.1436 - accuracy: 0.9493 - mae: 0.1436 - pearson_correlation: 0.6907 - euclidean_distance: 0.2275
Epoch 81/200
152/152 [==============================] - 0s 801us/step - loss: 0.1432 - accuracy: 0.9519 - mae: 0.1432 - pearson_correlation: 0.6899 - euclidean_distance: 0.2272
Epoch 82/200
152/152 [==============================] - 0s 802us/step - loss: 0.1421 - accuracy: 0.9502 - mae: 0.1421 - pearson_correlation: 0.6887 - euclidean_distance: 0.2254
Epoch 83/200
152/152 [==============================] - 0s 795us/step - loss: 0.1459 - accuracy: 0.9510 - mae: 0.1459 - pearson_correlation: 0.6864 - euclidean_distance: 0.2296
Epoch 84/200
152/152 [==============================] - 0s 797us/step - loss: 0.1417 - accuracy: 0.9488 - mae: 0.1417 - pearson_correlation: 0.6890 - euclidean_distance: 0.2241
Epoch 85/200
152/152 [==============================] - 0s 802us/step - loss: 0.1403 - accuracy: 0.9506 - mae: 0.1403 - pearson_correlation: 0.6894 - euclidean_distance: 0.2214
Epoch 86/200
152/152 [==============================] - 0s 806us/step - loss: 0.1429 - accuracy: 0.9484 - mae: 0.1429 - pearson_correlation: 0.6874 - euclidean_distance: 0.2261
Epoch 87/200
152/152 [==============================] - 0s 890us/step - loss: 0.1373 - accuracy: 0.9497 - mae: 0.1373 - pearson_correlation: 0.6988 - euclidean_distance: 0.2166
Epoch 88/200
152/152 [==============================] - 0s 885us/step - loss: 0.1370 - accuracy: 0.9515 - mae: 0.1370 - pearson_correlation: 0.6961 - euclidean_distance: 0.2173
Epoch 89/200
152/152 [==============================] - 0s 918us/step - loss: 0.1370 - accuracy: 0.9502 - mae: 0.1370 - pearson_correlation: 0.7003 - euclidean_distance: 0.2172
Epoch 90/200
152/152 [==============================] - 0s 892us/step - loss: 0.1361 - accuracy: 0.9524 - mae: 0.1361 - pearson_correlation: 0.6988 - euclidean_distance: 0.2153
Epoch 91/200
152/152 [==============================] - 0s 875us/step - loss: 0.1373 - accuracy: 0.9541 - mae: 0.1373 - pearson_correlation: 0.6887 - euclidean_distance: 0.2169
Epoch 92/200
152/152 [==============================] - 0s 809us/step - loss: 0.1341 - accuracy: 0.9519 - mae: 0.1341 - pearson_correlation: 0.6995 - euclidean_distance: 0.2124
Epoch 93/200
152/152 [==============================] - 0s 804us/step - loss: 0.1329 - accuracy: 0.9537 - mae: 0.1329 - pearson_correlation: 0.6999 - euclidean_distance: 0.2119
Epoch 94/200
152/152 [==============================] - 0s 803us/step - loss: 0.1342 - accuracy: 0.9502 - mae: 0.1342 - pearson_correlation: 0.6980 - euclidean_distance: 0.2126
Epoch 95/200
152/152 [==============================] - 0s 801us/step - loss: 0.1300 - accuracy: 0.9497 - mae: 0.1300 - pearson_correlation: 0.7077 - euclidean_distance: 0.2065
Epoch 96/200
152/152 [==============================] - 0s 799us/step - loss: 0.1326 - accuracy: 0.9493 - mae: 0.1326 - pearson_correlation: 0.6982 - euclidean_distance: 0.2103
Epoch 97/200
152/152 [==============================] - 0s 803us/step - loss: 0.1340 - accuracy: 0.9510 - mae: 0.1340 - pearson_correlation: 0.6969 - euclidean_distance: 0.2122
Epoch 98/200
152/152 [==============================] - 0s 803us/step - loss: 0.1317 - accuracy: 0.9515 - mae: 0.1317 - pearson_correlation: 0.6998 - euclidean_distance: 0.2097
Epoch 99/200
152/152 [==============================] - 0s 801us/step - loss: 0.1323 - accuracy: 0.9519 - mae: 0.1323 - pearson_correlation: 0.6959 - euclidean_distance: 0.2100
Epoch 100/200
152/152 [==============================] - 0s 797us/step - loss: 0.1322 - accuracy: 0.9532 - mae: 0.1322 - pearson_correlation: 0.6955 - euclidean_distance: 0.2096
Epoch 101/200
152/152 [==============================] - 0s 801us/step - loss: 0.1304 - accuracy: 0.9506 - mae: 0.1304 - pearson_correlation: 0.7027 - euclidean_distance: 0.2071
Epoch 102/200
152/152 [==============================] - 0s 799us/step - loss: 0.1283 - accuracy: 0.9524 - mae: 0.1283 - pearson_correlation: 0.7063 - euclidean_distance: 0.2032
Epoch 103/200
152/152 [==============================] - 0s 803us/step - loss: 0.1257 - accuracy: 0.9515 - mae: 0.1257 - pearson_correlation: 0.7075 - euclidean_distance: 0.2011
Epoch 104/200
152/152 [==============================] - 0s 797us/step - loss: 0.1264 - accuracy: 0.9524 - mae: 0.1264 - pearson_correlation: 0.7076 - euclidean_distance: 0.2016
Epoch 105/200
152/152 [==============================] - 0s 801us/step - loss: 0.1257 - accuracy: 0.9528 - mae: 0.1257 - pearson_correlation: 0.7093 - euclidean_distance: 0.1999
Epoch 106/200
152/152 [==============================] - 0s 801us/step - loss: 0.1279 - accuracy: 0.9524 - mae: 0.1279 - pearson_correlation: 0.7066 - euclidean_distance: 0.2027
Epoch 107/200
152/152 [==============================] - 0s 799us/step - loss: 0.1266 - accuracy: 0.9537 - mae: 0.1266 - pearson_correlation: 0.7098 - euclidean_distance: 0.2016
Epoch 108/200
152/152 [==============================] - 0s 806us/step - loss: 0.1268 - accuracy: 0.9524 - mae: 0.1268 - pearson_correlation: 0.7078 - euclidean_distance: 0.2018
Epoch 109/200
152/152 [==============================] - 0s 806us/step - loss: 0.1266 - accuracy: 0.9519 - mae: 0.1266 - pearson_correlation: 0.7086 - euclidean_distance: 0.2009
Epoch 110/200
152/152 [==============================] - 0s 803us/step - loss: 0.1230 - accuracy: 0.9541 - mae: 0.1230 - pearson_correlation: 0.7185 - euclidean_distance: 0.1958
Epoch 111/200
152/152 [==============================] - 0s 802us/step - loss: 0.1268 - accuracy: 0.9528 - mae: 0.1268 - pearson_correlation: 0.7108 - euclidean_distance: 0.2011
Epoch 112/200
152/152 [==============================] - 0s 801us/step - loss: 0.1220 - accuracy: 0.9541 - mae: 0.1220 - pearson_correlation: 0.7194 - euclidean_distance: 0.1942
Epoch 113/200
152/152 [==============================] - 0s 802us/step - loss: 0.1240 - accuracy: 0.9519 - mae: 0.1240 - pearson_correlation: 0.7133 - euclidean_distance: 0.1976
Epoch 114/200
152/152 [==============================] - 0s 804us/step - loss: 0.1200 - accuracy: 0.9528 - mae: 0.1200 - pearson_correlation: 0.7242 - euclidean_distance: 0.1910
Epoch 115/200
152/152 [==============================] - 0s 797us/step - loss: 0.1256 - accuracy: 0.9537 - mae: 0.1256 - pearson_correlation: 0.7080 - euclidean_distance: 0.1996
Epoch 116/200
152/152 [==============================] - 0s 798us/step - loss: 0.1207 - accuracy: 0.9550 - mae: 0.1207 - pearson_correlation: 0.7184 - euclidean_distance: 0.1926
Epoch 117/200
152/152 [==============================] - 0s 797us/step - loss: 0.1206 - accuracy: 0.9537 - mae: 0.1206 - pearson_correlation: 0.7192 - euclidean_distance: 0.1924
Epoch 118/200
152/152 [==============================] - 0s 796us/step - loss: 0.1216 - accuracy: 0.9532 - mae: 0.1216 - pearson_correlation: 0.7215 - euclidean_distance: 0.1936
Epoch 119/200
152/152 [==============================] - 0s 815us/step - loss: 0.1209 - accuracy: 0.9546 - mae: 0.1209 - pearson_correlation: 0.7207 - euclidean_distance: 0.1918
Epoch 120/200
152/152 [==============================] - 0s 864us/step - loss: 0.1213 - accuracy: 0.9532 - mae: 0.1213 - pearson_correlation: 0.7140 - euclidean_distance: 0.1941
Epoch 121/200
152/152 [==============================] - 0s 806us/step - loss: 0.1213 - accuracy: 0.9550 - mae: 0.1213 - pearson_correlation: 0.7118 - euclidean_distance: 0.1928
Epoch 122/200
152/152 [==============================] - 0s 795us/step - loss: 0.1221 - accuracy: 0.9528 - mae: 0.1221 - pearson_correlation: 0.7120 - euclidean_distance: 0.1938
Epoch 123/200
152/152 [==============================] - 0s 797us/step - loss: 0.1198 - accuracy: 0.9537 - mae: 0.1198 - pearson_correlation: 0.7168 - euclidean_distance: 0.1906
Epoch 124/200
152/152 [==============================] - 0s 800us/step - loss: 0.1194 - accuracy: 0.9546 - mae: 0.1194 - pearson_correlation: 0.7193 - euclidean_distance: 0.1904
Epoch 125/200
152/152 [==============================] - 0s 796us/step - loss: 0.1178 - accuracy: 0.9541 - mae: 0.1178 - pearson_correlation: 0.7237 - euclidean_distance: 0.1881
Epoch 126/200
152/152 [==============================] - 0s 797us/step - loss: 0.1185 - accuracy: 0.9537 - mae: 0.1185 - pearson_correlation: 0.7175 - euclidean_distance: 0.1889
Epoch 127/200
152/152 [==============================] - 0s 800us/step - loss: 0.1163 - accuracy: 0.9546 - mae: 0.1163 - pearson_correlation: 0.7264 - euclidean_distance: 0.1856
Epoch 128/200
152/152 [==============================] - 0s 801us/step - loss: 0.1150 - accuracy: 0.9541 - mae: 0.1150 - pearson_correlation: 0.7322 - euclidean_distance: 0.1839
Epoch 129/200
152/152 [==============================] - 0s 799us/step - loss: 0.1125 - accuracy: 0.9528 - mae: 0.1125 - pearson_correlation: 0.7340 - euclidean_distance: 0.1798
Epoch 130/200
152/152 [==============================] - 0s 798us/step - loss: 0.1155 - accuracy: 0.9546 - mae: 0.1155 - pearson_correlation: 0.7274 - euclidean_distance: 0.1844
Epoch 131/200
152/152 [==============================] - 0s 805us/step - loss: 0.1159 - accuracy: 0.9546 - mae: 0.1159 - pearson_correlation: 0.7258 - euclidean_distance: 0.1850
Epoch 132/200
152/152 [==============================] - 0s 795us/step - loss: 0.1140 - accuracy: 0.9559 - mae: 0.1140 - pearson_correlation: 0.7336 - euclidean_distance: 0.1819
Epoch 133/200
152/152 [==============================] - 0s 795us/step - loss: 0.1162 - accuracy: 0.9532 - mae: 0.1162 - pearson_correlation: 0.7312 - euclidean_distance: 0.1855
Epoch 134/200
152/152 [==============================] - 0s 793us/step - loss: 0.1140 - accuracy: 0.9546 - mae: 0.1140 - pearson_correlation: 0.7296 - euclidean_distance: 0.1811
Epoch 135/200
152/152 [==============================] - 0s 799us/step - loss: 0.1155 - accuracy: 0.9563 - mae: 0.1155 - pearson_correlation: 0.7267 - euclidean_distance: 0.1839
Epoch 136/200
152/152 [==============================] - 0s 803us/step - loss: 0.1140 - accuracy: 0.9541 - mae: 0.1140 - pearson_correlation: 0.7275 - euclidean_distance: 0.1814
Epoch 137/200
152/152 [==============================] - 0s 801us/step - loss: 0.1160 - accuracy: 0.9546 - mae: 0.1160 - pearson_correlation: 0.7290 - euclidean_distance: 0.1848
Epoch 138/200
152/152 [==============================] - 0s 793us/step - loss: 0.1161 - accuracy: 0.9546 - mae: 0.1161 - pearson_correlation: 0.7259 - euclidean_distance: 0.1843
Epoch 139/200
152/152 [==============================] - 0s 803us/step - loss: 0.1126 - accuracy: 0.9546 - mae: 0.1126 - pearson_correlation: 0.7318 - euclidean_distance: 0.1798
Epoch 140/200
152/152 [==============================] - 0s 800us/step - loss: 0.1101 - accuracy: 0.9541 - mae: 0.1101 - pearson_correlation: 0.7373 - euclidean_distance: 0.1759
Epoch 141/200
152/152 [==============================] - 0s 795us/step - loss: 0.1112 - accuracy: 0.9550 - mae: 0.1112 - pearson_correlation: 0.7350 - euclidean_distance: 0.1783
Epoch 142/200
152/152 [==============================] - 0s 793us/step - loss: 0.1110 - accuracy: 0.9550 - mae: 0.1110 - pearson_correlation: 0.7359 - euclidean_distance: 0.1772
Epoch 143/200
152/152 [==============================] - 0s 802us/step - loss: 0.1119 - accuracy: 0.9550 - mae: 0.1119 - pearson_correlation: 0.7346 - euclidean_distance: 0.1783
Epoch 144/200
152/152 [==============================] - 0s 806us/step - loss: 0.1094 - accuracy: 0.9554 - mae: 0.1094 - pearson_correlation: 0.7363 - euclidean_distance: 0.1750
Epoch 145/200
152/152 [==============================] - 0s 798us/step - loss: 0.1108 - accuracy: 0.9550 - mae: 0.1108 - pearson_correlation: 0.7287 - euclidean_distance: 0.1772
Epoch 146/200
152/152 [==============================] - 0s 801us/step - loss: 0.1107 - accuracy: 0.9546 - mae: 0.1107 - pearson_correlation: 0.7302 - euclidean_distance: 0.1769
Epoch 147/200
152/152 [==============================] - 0s 798us/step - loss: 0.1106 - accuracy: 0.9537 - mae: 0.1106 - pearson_correlation: 0.7352 - euclidean_distance: 0.1765
Epoch 148/200
152/152 [==============================] - 0s 789us/step - loss: 0.1087 - accuracy: 0.9550 - mae: 0.1087 - pearson_correlation: 0.7407 - euclidean_distance: 0.1736
Epoch 149/200
152/152 [==============================] - 0s 799us/step - loss: 0.1089 - accuracy: 0.9537 - mae: 0.1089 - pearson_correlation: 0.7324 - euclidean_distance: 0.1747
Epoch 150/200
152/152 [==============================] - 0s 802us/step - loss: 0.1104 - accuracy: 0.9541 - mae: 0.1104 - pearson_correlation: 0.7304 - euclidean_distance: 0.1764
Epoch 151/200
152/152 [==============================] - 0s 812us/step - loss: 0.1063 - accuracy: 0.9554 - mae: 0.1063 - pearson_correlation: 0.7464 - euclidean_distance: 0.1700
Epoch 152/200
152/152 [==============================] - 0s 808us/step - loss: 0.1056 - accuracy: 0.9554 - mae: 0.1056 - pearson_correlation: 0.7430 - euclidean_distance: 0.1688
Epoch 153/200
152/152 [==============================] - 0s 801us/step - loss: 0.1063 - accuracy: 0.9541 - mae: 0.1063 - pearson_correlation: 0.7383 - euclidean_distance: 0.1705
Epoch 154/200
152/152 [==============================] - 0s 798us/step - loss: 0.1074 - accuracy: 0.9541 - mae: 0.1074 - pearson_correlation: 0.7402 - euclidean_distance: 0.1715
Epoch 155/200
152/152 [==============================] - 0s 819us/step - loss: 0.1088 - accuracy: 0.9550 - mae: 0.1088 - pearson_correlation: 0.7368 - euclidean_distance: 0.1740
Epoch 156/200
152/152 [==============================] - 0s 797us/step - loss: 0.1075 - accuracy: 0.9541 - mae: 0.1075 - pearson_correlation: 0.7305 - euclidean_distance: 0.1720
Epoch 157/200
152/152 [==============================] - 0s 801us/step - loss: 0.1075 - accuracy: 0.9541 - mae: 0.1075 - pearson_correlation: 0.7324 - euclidean_distance: 0.1715
Epoch 158/200
152/152 [==============================] - 0s 799us/step - loss: 0.1045 - accuracy: 0.9546 - mae: 0.1045 - pearson_correlation: 0.7454 - euclidean_distance: 0.1676
Epoch 159/200
152/152 [==============================] - 0s 802us/step - loss: 0.1041 - accuracy: 0.9546 - mae: 0.1041 - pearson_correlation: 0.7430 - euclidean_distance: 0.1669
Epoch 160/200
152/152 [==============================] - 0s 797us/step - loss: 0.1057 - accuracy: 0.9541 - mae: 0.1057 - pearson_correlation: 0.7429 - euclidean_distance: 0.1690
Epoch 161/200
152/152 [==============================] - 0s 802us/step - loss: 0.1053 - accuracy: 0.9541 - mae: 0.1053 - pearson_correlation: 0.7430 - euclidean_distance: 0.1689
Epoch 162/200
152/152 [==============================] - 0s 800us/step - loss: 0.1057 - accuracy: 0.9559 - mae: 0.1057 - pearson_correlation: 0.7376 - euclidean_distance: 0.1696
Epoch 163/200
152/152 [==============================] - 0s 800us/step - loss: 0.1048 - accuracy: 0.9550 - mae: 0.1048 - pearson_correlation: 0.7389 - euclidean_distance: 0.1679
Epoch 164/200
152/152 [==============================] - 0s 798us/step - loss: 0.1021 - accuracy: 0.9554 - mae: 0.1021 - pearson_correlation: 0.7461 - euclidean_distance: 0.1637
Epoch 165/200
152/152 [==============================] - 0s 796us/step - loss: 0.1036 - accuracy: 0.9550 - mae: 0.1036 - pearson_correlation: 0.7408 - euclidean_distance: 0.1662
Epoch 166/200
152/152 [==============================] - 0s 799us/step - loss: 0.1039 - accuracy: 0.9550 - mae: 0.1039 - pearson_correlation: 0.7416 - euclidean_distance: 0.1665
Epoch 167/200
152/152 [==============================] - 0s 800us/step - loss: 0.1024 - accuracy: 0.9554 - mae: 0.1024 - pearson_correlation: 0.7494 - euclidean_distance: 0.1643
Epoch 168/200
152/152 [==============================] - 0s 792us/step - loss: 0.1018 - accuracy: 0.9537 - mae: 0.1018 - pearson_correlation: 0.7557 - euclidean_distance: 0.1633
Epoch 169/200
152/152 [==============================] - 0s 798us/step - loss: 0.1034 - accuracy: 0.9546 - mae: 0.1034 - pearson_correlation: 0.7431 - euclidean_distance: 0.1664
Epoch 170/200
152/152 [==============================] - 0s 795us/step - loss: 0.0983 - accuracy: 0.9554 - mae: 0.0983 - pearson_correlation: 0.7561 - euclidean_distance: 0.1585
Epoch 171/200
152/152 [==============================] - 0s 797us/step - loss: 0.1024 - accuracy: 0.9550 - mae: 0.1024 - pearson_correlation: 0.7428 - euclidean_distance: 0.1644
Epoch 172/200
152/152 [==============================] - 0s 793us/step - loss: 0.1002 - accuracy: 0.9546 - mae: 0.1002 - pearson_correlation: 0.7464 - euclidean_distance: 0.1610
Epoch 173/200
152/152 [==============================] - 0s 801us/step - loss: 0.1018 - accuracy: 0.9550 - mae: 0.1018 - pearson_correlation: 0.7449 - euclidean_distance: 0.1636
Epoch 174/200
152/152 [==============================] - 0s 794us/step - loss: 0.0979 - accuracy: 0.9546 - mae: 0.0979 - pearson_correlation: 0.7577 - euclidean_distance: 0.1582
Epoch 175/200
152/152 [==============================] - 0s 795us/step - loss: 0.0991 - accuracy: 0.9537 - mae: 0.0991 - pearson_correlation: 0.7531 - euclidean_distance: 0.1597
Epoch 176/200
152/152 [==============================] - 0s 801us/step - loss: 0.1011 - accuracy: 0.9550 - mae: 0.1011 - pearson_correlation: 0.7480 - euclidean_distance: 0.1625
Epoch 177/200
152/152 [==============================] - 0s 801us/step - loss: 0.0999 - accuracy: 0.9550 - mae: 0.0999 - pearson_correlation: 0.7503 - euclidean_distance: 0.1600
Epoch 178/200
152/152 [==============================] - 0s 799us/step - loss: 0.0984 - accuracy: 0.9554 - mae: 0.0984 - pearson_correlation: 0.7463 - euclidean_distance: 0.1585
Epoch 179/200
152/152 [==============================] - 0s 804us/step - loss: 0.1031 - accuracy: 0.9550 - mae: 0.1031 - pearson_correlation: 0.7399 - euclidean_distance: 0.1654
Epoch 180/200
152/152 [==============================] - 0s 796us/step - loss: 0.0995 - accuracy: 0.9559 - mae: 0.0995 - pearson_correlation: 0.7472 - euclidean_distance: 0.1606
Epoch 181/200
152/152 [==============================] - 0s 796us/step - loss: 0.0976 - accuracy: 0.9541 - mae: 0.0976 - pearson_correlation: 0.7513 - euclidean_distance: 0.1581
Epoch 182/200
152/152 [==============================] - 0s 804us/step - loss: 0.0959 - accuracy: 0.9550 - mae: 0.0959 - pearson_correlation: 0.7569 - euclidean_distance: 0.1541
Epoch 183/200
152/152 [==============================] - 0s 798us/step - loss: 0.1001 - accuracy: 0.9554 - mae: 0.1001 - pearson_correlation: 0.7466 - euclidean_distance: 0.1615
Epoch 184/200
152/152 [==============================] - 0s 801us/step - loss: 0.0961 - accuracy: 0.9546 - mae: 0.0961 - pearson_correlation: 0.7564 - euclidean_distance: 0.1547
Epoch 185/200
152/152 [==============================] - 0s 804us/step - loss: 0.0965 - accuracy: 0.9554 - mae: 0.0965 - pearson_correlation: 0.7536 - euclidean_distance: 0.1556
Epoch 186/200
152/152 [==============================] - 0s 795us/step - loss: 0.0952 - accuracy: 0.9550 - mae: 0.0952 - pearson_correlation: 0.7442 - euclidean_distance: 0.1546
Epoch 187/200
152/152 [==============================] - 0s 802us/step - loss: 0.0957 - accuracy: 0.9550 - mae: 0.0957 - pearson_correlation: 0.7542 - euclidean_distance: 0.1550
Epoch 188/200
152/152 [==============================] - 0s 796us/step - loss: 0.0935 - accuracy: 0.9550 - mae: 0.0935 - pearson_correlation: 0.7607 - euclidean_distance: 0.1510
Epoch 189/200
152/152 [==============================] - 0s 800us/step - loss: 0.0976 - accuracy: 0.9550 - mae: 0.0976 - pearson_correlation: 0.7515 - euclidean_distance: 0.1572
Epoch 190/200
152/152 [==============================] - 0s 796us/step - loss: 0.0960 - accuracy: 0.9550 - mae: 0.0960 - pearson_correlation: 0.7549 - euclidean_distance: 0.1553
Epoch 191/200
152/152 [==============================] - 0s 794us/step - loss: 0.0961 - accuracy: 0.9550 - mae: 0.0961 - pearson_correlation: 0.7495 - euclidean_distance: 0.1556
Epoch 192/200
152/152 [==============================] - 0s 788us/step - loss: 0.0980 - accuracy: 0.9550 - mae: 0.0980 - pearson_correlation: 0.7561 - euclidean_distance: 0.1575
Epoch 193/200
152/152 [==============================] - 0s 790us/step - loss: 0.0941 - accuracy: 0.9546 - mae: 0.0941 - pearson_correlation: 0.7515 - euclidean_distance: 0.1524
Epoch 194/200
152/152 [==============================] - 0s 802us/step - loss: 0.0944 - accuracy: 0.9554 - mae: 0.0944 - pearson_correlation: 0.7550 - euclidean_distance: 0.1528
Epoch 195/200
152/152 [==============================] - 0s 799us/step - loss: 0.0960 - accuracy: 0.9554 - mae: 0.0960 - pearson_correlation: 0.7518 - euclidean_distance: 0.1548
Epoch 196/200
152/152 [==============================] - 0s 800us/step - loss: 0.0934 - accuracy: 0.9550 - mae: 0.0934 - pearson_correlation: 0.7528 - euclidean_distance: 0.1511
Epoch 197/200
152/152 [==============================] - 0s 796us/step - loss: 0.0933 - accuracy: 0.9554 - mae: 0.0933 - pearson_correlation: 0.7575 - euclidean_distance: 0.1510
Epoch 198/200
152/152 [==============================] - 0s 805us/step - loss: 0.0913 - accuracy: 0.9554 - mae: 0.0913 - pearson_correlation: 0.7616 - euclidean_distance: 0.1478
Epoch 199/200
152/152 [==============================] - 0s 814us/step - loss: 0.0930 - accuracy: 0.9554 - mae: 0.0930 - pearson_correlation: 0.7597 - euclidean_distance: 0.1504
Epoch 200/200
152/152 [==============================] - 0s 803us/step - loss: 0.0931 - accuracy: 0.9559 - mae: 0.0931 - pearson_correlation: 0.7556 - euclidean_distance: 0.1510
76/76 [==============================] - 0s 439us/step
Epoch 1/200
152/152 [==============================] - 1s 817us/step - loss: 0.6478 - accuracy: 0.9559 - mae: 0.6478 - pearson_correlation: 0.5934 - euclidean_distance: 1.0134
Epoch 2/200
152/152 [==============================] - 0s 808us/step - loss: 0.6294 - accuracy: 0.9559 - mae: 0.6294 - pearson_correlation: 0.5916 - euclidean_distance: 0.9822
Epoch 3/200
152/152 [==============================] - 0s 804us/step - loss: 0.6098 - accuracy: 0.9559 - mae: 0.6098 - pearson_correlation: 0.5958 - euclidean_distance: 0.9538
Epoch 4/200
152/152 [==============================] - 0s 805us/step - loss: 0.5888 - accuracy: 0.9555 - mae: 0.5888 - pearson_correlation: 0.6006 - euclidean_distance: 0.9196
Epoch 5/200
152/152 [==============================] - 0s 806us/step - loss: 0.5693 - accuracy: 0.9559 - mae: 0.5693 - pearson_correlation: 0.6047 - euclidean_distance: 0.8894
Epoch 6/200
152/152 [==============================] - 0s 802us/step - loss: 0.5491 - accuracy: 0.9555 - mae: 0.5491 - pearson_correlation: 0.6071 - euclidean_distance: 0.8591
Epoch 7/200
152/152 [==============================] - 0s 797us/step - loss: 0.5368 - accuracy: 0.9559 - mae: 0.5368 - pearson_correlation: 0.6072 - euclidean_distance: 0.8424
Epoch 8/200
152/152 [==============================] - 0s 806us/step - loss: 0.5144 - accuracy: 0.9559 - mae: 0.5144 - pearson_correlation: 0.6129 - euclidean_distance: 0.8077
Epoch 9/200
152/152 [==============================] - 0s 802us/step - loss: 0.4983 - accuracy: 0.9555 - mae: 0.4983 - pearson_correlation: 0.6162 - euclidean_distance: 0.7808
Epoch 10/200
152/152 [==============================] - 0s 857us/step - loss: 0.4756 - accuracy: 0.9559 - mae: 0.4756 - pearson_correlation: 0.6206 - euclidean_distance: 0.7492
Epoch 11/200
152/152 [==============================] - 0s 862us/step - loss: 0.4602 - accuracy: 0.9559 - mae: 0.4602 - pearson_correlation: 0.6223 - euclidean_distance: 0.7249
Epoch 12/200
152/152 [==============================] - 0s 913us/step - loss: 0.4436 - accuracy: 0.9559 - mae: 0.4436 - pearson_correlation: 0.6283 - euclidean_distance: 0.7006
Epoch 13/200
152/152 [==============================] - 0s 911us/step - loss: 0.4284 - accuracy: 0.9559 - mae: 0.4284 - pearson_correlation: 0.6317 - euclidean_distance: 0.6764
Epoch 14/200
152/152 [==============================] - 0s 890us/step - loss: 0.4102 - accuracy: 0.9559 - mae: 0.4102 - pearson_correlation: 0.6429 - euclidean_distance: 0.6498
Epoch 15/200
152/152 [==============================] - 0s 814us/step - loss: 0.3956 - accuracy: 0.9555 - mae: 0.3956 - pearson_correlation: 0.6506 - euclidean_distance: 0.6261
Epoch 16/200
152/152 [==============================] - 0s 798us/step - loss: 0.3849 - accuracy: 0.9559 - mae: 0.3849 - pearson_correlation: 0.6451 - euclidean_distance: 0.6081
Epoch 17/200
152/152 [==============================] - 0s 806us/step - loss: 0.3734 - accuracy: 0.9559 - mae: 0.3734 - pearson_correlation: 0.6489 - euclidean_distance: 0.5921
Epoch 18/200
152/152 [==============================] - 0s 796us/step - loss: 0.3590 - accuracy: 0.9559 - mae: 0.3590 - pearson_correlation: 0.6578 - euclidean_distance: 0.5690
Epoch 19/200
152/152 [==============================] - 0s 797us/step - loss: 0.3491 - accuracy: 0.9559 - mae: 0.3491 - pearson_correlation: 0.6572 - euclidean_distance: 0.5552
Epoch 20/200
152/152 [==============================] - 0s 807us/step - loss: 0.3394 - accuracy: 0.9559 - mae: 0.3394 - pearson_correlation: 0.6611 - euclidean_distance: 0.5375
Epoch 21/200
152/152 [==============================] - 0s 796us/step - loss: 0.3292 - accuracy: 0.9559 - mae: 0.3292 - pearson_correlation: 0.6618 - euclidean_distance: 0.5247
Epoch 22/200
152/152 [==============================] - 0s 812us/step - loss: 0.3188 - accuracy: 0.9559 - mae: 0.3188 - pearson_correlation: 0.6658 - euclidean_distance: 0.5077
Epoch 23/200
152/152 [==============================] - 0s 819us/step - loss: 0.3125 - accuracy: 0.9555 - mae: 0.3125 - pearson_correlation: 0.6612 - euclidean_distance: 0.4958
Epoch 24/200
152/152 [==============================] - 0s 800us/step - loss: 0.3031 - accuracy: 0.9559 - mae: 0.3031 - pearson_correlation: 0.6708 - euclidean_distance: 0.4810
Epoch 25/200
152/152 [==============================] - 0s 801us/step - loss: 0.2962 - accuracy: 0.9559 - mae: 0.2962 - pearson_correlation: 0.6631 - euclidean_distance: 0.4700
Epoch 26/200
152/152 [==============================] - 0s 798us/step - loss: 0.2867 - accuracy: 0.9555 - mae: 0.2867 - pearson_correlation: 0.6689 - euclidean_distance: 0.4581
Epoch 27/200
152/152 [==============================] - 0s 818us/step - loss: 0.2780 - accuracy: 0.9559 - mae: 0.2780 - pearson_correlation: 0.6712 - euclidean_distance: 0.4410
Epoch 28/200
152/152 [==============================] - 0s 803us/step - loss: 0.2747 - accuracy: 0.9559 - mae: 0.2747 - pearson_correlation: 0.6704 - euclidean_distance: 0.4365
Epoch 29/200
152/152 [==============================] - 0s 802us/step - loss: 0.2670 - accuracy: 0.9559 - mae: 0.2670 - pearson_correlation: 0.6732 - euclidean_distance: 0.4246
Epoch 30/200
152/152 [==============================] - 0s 803us/step - loss: 0.2591 - accuracy: 0.9559 - mae: 0.2591 - pearson_correlation: 0.6802 - euclidean_distance: 0.4131
Epoch 31/200
152/152 [==============================] - 0s 804us/step - loss: 0.2518 - accuracy: 0.9555 - mae: 0.2518 - pearson_correlation: 0.6812 - euclidean_distance: 0.4006
Epoch 32/200
152/152 [==============================] - 0s 799us/step - loss: 0.2476 - accuracy: 0.9559 - mae: 0.2476 - pearson_correlation: 0.6759 - euclidean_distance: 0.3945
Epoch 33/200
152/152 [==============================] - 0s 796us/step - loss: 0.2445 - accuracy: 0.9559 - mae: 0.2445 - pearson_correlation: 0.6793 - euclidean_distance: 0.3888
Epoch 34/200
152/152 [==============================] - 0s 801us/step - loss: 0.2399 - accuracy: 0.9550 - mae: 0.2399 - pearson_correlation: 0.6743 - euclidean_distance: 0.3810
Epoch 35/200
152/152 [==============================] - 0s 805us/step - loss: 0.2354 - accuracy: 0.9559 - mae: 0.2354 - pearson_correlation: 0.6779 - euclidean_distance: 0.3746
Epoch 36/200
152/152 [==============================] - 0s 804us/step - loss: 0.2318 - accuracy: 0.9559 - mae: 0.2318 - pearson_correlation: 0.6752 - euclidean_distance: 0.3672
Epoch 37/200
152/152 [==============================] - 0s 803us/step - loss: 0.2225 - accuracy: 0.9559 - mae: 0.2225 - pearson_correlation: 0.6807 - euclidean_distance: 0.3545
Epoch 38/200
152/152 [==============================] - 0s 799us/step - loss: 0.2210 - accuracy: 0.9559 - mae: 0.2210 - pearson_correlation: 0.6797 - euclidean_distance: 0.3515
Epoch 39/200
152/152 [==============================] - 0s 804us/step - loss: 0.2162 - accuracy: 0.9559 - mae: 0.2162 - pearson_correlation: 0.6799 - euclidean_distance: 0.3431
Epoch 40/200
152/152 [==============================] - 0s 799us/step - loss: 0.2115 - accuracy: 0.9555 - mae: 0.2115 - pearson_correlation: 0.6739 - euclidean_distance: 0.3370
Epoch 41/200
152/152 [==============================] - 0s 794us/step - loss: 0.2108 - accuracy: 0.9559 - mae: 0.2108 - pearson_correlation: 0.6750 - euclidean_distance: 0.3349
Epoch 42/200
152/152 [==============================] - 0s 793us/step - loss: 0.2058 - accuracy: 0.9555 - mae: 0.2058 - pearson_correlation: 0.6719 - euclidean_distance: 0.3260
Epoch 43/200
152/152 [==============================] - 0s 800us/step - loss: 0.2017 - accuracy: 0.9555 - mae: 0.2017 - pearson_correlation: 0.6783 - euclidean_distance: 0.3204
Epoch 44/200
152/152 [==============================] - 0s 802us/step - loss: 0.1992 - accuracy: 0.9555 - mae: 0.1992 - pearson_correlation: 0.6796 - euclidean_distance: 0.3156
Epoch 45/200
152/152 [==============================] - 0s 798us/step - loss: 0.1957 - accuracy: 0.9555 - mae: 0.1957 - pearson_correlation: 0.6794 - euclidean_distance: 0.3112
Epoch 46/200
152/152 [==============================] - 0s 802us/step - loss: 0.1903 - accuracy: 0.9559 - mae: 0.1903 - pearson_correlation: 0.6876 - euclidean_distance: 0.3032
Epoch 47/200
152/152 [==============================] - 0s 797us/step - loss: 0.1893 - accuracy: 0.9555 - mae: 0.1893 - pearson_correlation: 0.6820 - euclidean_distance: 0.3002
Epoch 48/200
152/152 [==============================] - 0s 797us/step - loss: 0.1898 - accuracy: 0.9555 - mae: 0.1898 - pearson_correlation: 0.6696 - euclidean_distance: 0.2998
Epoch 49/200
152/152 [==============================] - 0s 800us/step - loss: 0.1826 - accuracy: 0.9546 - mae: 0.1826 - pearson_correlation: 0.6760 - euclidean_distance: 0.2903
Epoch 50/200
152/152 [==============================] - 0s 799us/step - loss: 0.1787 - accuracy: 0.9559 - mae: 0.1787 - pearson_correlation: 0.6877 - euclidean_distance: 0.2842
Epoch 51/200
152/152 [==============================] - 0s 803us/step - loss: 0.1783 - accuracy: 0.9559 - mae: 0.1783 - pearson_correlation: 0.6758 - euclidean_distance: 0.2830
Epoch 52/200
152/152 [==============================] - 0s 799us/step - loss: 0.1725 - accuracy: 0.9555 - mae: 0.1725 - pearson_correlation: 0.6830 - euclidean_distance: 0.2736
Epoch 53/200
152/152 [==============================] - 0s 802us/step - loss: 0.1737 - accuracy: 0.9550 - mae: 0.1737 - pearson_correlation: 0.6791 - euclidean_distance: 0.2751
Epoch 54/200
152/152 [==============================] - 0s 799us/step - loss: 0.1651 - accuracy: 0.9555 - mae: 0.1651 - pearson_correlation: 0.6936 - euclidean_distance: 0.2623
Epoch 55/200
152/152 [==============================] - 0s 801us/step - loss: 0.1685 - accuracy: 0.9559 - mae: 0.1685 - pearson_correlation: 0.6796 - euclidean_distance: 0.2676
Epoch 56/200
152/152 [==============================] - 0s 799us/step - loss: 0.1660 - accuracy: 0.9550 - mae: 0.1660 - pearson_correlation: 0.6841 - euclidean_distance: 0.2629
Epoch 57/200
152/152 [==============================] - 0s 798us/step - loss: 0.1658 - accuracy: 0.9550 - mae: 0.1658 - pearson_correlation: 0.6771 - euclidean_distance: 0.2621
Epoch 58/200
152/152 [==============================] - 0s 805us/step - loss: 0.1616 - accuracy: 0.9541 - mae: 0.1616 - pearson_correlation: 0.6829 - euclidean_distance: 0.2560
Epoch 59/200
152/152 [==============================] - 0s 806us/step - loss: 0.1566 - accuracy: 0.9555 - mae: 0.1566 - pearson_correlation: 0.6912 - euclidean_distance: 0.2485
Epoch 60/200
152/152 [==============================] - 0s 791us/step - loss: 0.1563 - accuracy: 0.9555 - mae: 0.1563 - pearson_correlation: 0.6889 - euclidean_distance: 0.2483
Epoch 61/200
152/152 [==============================] - 0s 797us/step - loss: 0.1544 - accuracy: 0.9546 - mae: 0.1544 - pearson_correlation: 0.6859 - euclidean_distance: 0.2450
Epoch 62/200
152/152 [==============================] - 0s 802us/step - loss: 0.1555 - accuracy: 0.9546 - mae: 0.1555 - pearson_correlation: 0.6779 - euclidean_distance: 0.2470
Epoch 63/200
152/152 [==============================] - 0s 802us/step - loss: 0.1498 - accuracy: 0.9555 - mae: 0.1498 - pearson_correlation: 0.6851 - euclidean_distance: 0.2382
Epoch 64/200
152/152 [==============================] - 0s 802us/step - loss: 0.1500 - accuracy: 0.9555 - mae: 0.1500 - pearson_correlation: 0.6808 - euclidean_distance: 0.2386
Epoch 65/200
152/152 [==============================] - 0s 803us/step - loss: 0.1507 - accuracy: 0.9555 - mae: 0.1507 - pearson_correlation: 0.6770 - euclidean_distance: 0.2391
Epoch 66/200
152/152 [==============================] - 0s 803us/step - loss: 0.1507 - accuracy: 0.9546 - mae: 0.1507 - pearson_correlation: 0.6679 - euclidean_distance: 0.2402
Epoch 67/200
152/152 [==============================] - 0s 805us/step - loss: 0.1470 - accuracy: 0.9541 - mae: 0.1470 - pearson_correlation: 0.6786 - euclidean_distance: 0.2340
Epoch 68/200
152/152 [==============================] - 0s 803us/step - loss: 0.1440 - accuracy: 0.9537 - mae: 0.1440 - pearson_correlation: 0.6882 - euclidean_distance: 0.2297
Epoch 69/200
152/152 [==============================] - 0s 799us/step - loss: 0.1439 - accuracy: 0.9550 - mae: 0.1439 - pearson_correlation: 0.6813 - euclidean_distance: 0.2292
Epoch 70/200
152/152 [==============================] - 0s 794us/step - loss: 0.1411 - accuracy: 0.9546 - mae: 0.1411 - pearson_correlation: 0.6884 - euclidean_distance: 0.2249
Epoch 71/200
152/152 [==============================] - 0s 801us/step - loss: 0.1411 - accuracy: 0.9541 - mae: 0.1411 - pearson_correlation: 0.6789 - euclidean_distance: 0.2251
Epoch 72/200
152/152 [==============================] - 0s 799us/step - loss: 0.1384 - accuracy: 0.9550 - mae: 0.1384 - pearson_correlation: 0.6870 - euclidean_distance: 0.2211
Epoch 73/200
152/152 [==============================] - 0s 804us/step - loss: 0.1346 - accuracy: 0.9541 - mae: 0.1346 - pearson_correlation: 0.6939 - euclidean_distance: 0.2143
Epoch 74/200
152/152 [==============================] - 0s 796us/step - loss: 0.1353 - accuracy: 0.9555 - mae: 0.1353 - pearson_correlation: 0.6828 - euclidean_distance: 0.2170
Epoch 75/200
152/152 [==============================] - 0s 799us/step - loss: 0.1361 - accuracy: 0.9555 - mae: 0.1361 - pearson_correlation: 0.6810 - euclidean_distance: 0.2168
Epoch 76/200
152/152 [==============================] - 0s 793us/step - loss: 0.1319 - accuracy: 0.9550 - mae: 0.1319 - pearson_correlation: 0.6947 - euclidean_distance: 0.2111
Epoch 77/200
152/152 [==============================] - 0s 808us/step - loss: 0.1310 - accuracy: 0.9559 - mae: 0.1310 - pearson_correlation: 0.6877 - euclidean_distance: 0.2098
Epoch 78/200
152/152 [==============================] - 0s 797us/step - loss: 0.1337 - accuracy: 0.9555 - mae: 0.1337 - pearson_correlation: 0.6737 - euclidean_distance: 0.2143
Epoch 79/200
152/152 [==============================] - 0s 799us/step - loss: 0.1319 - accuracy: 0.9537 - mae: 0.1319 - pearson_correlation: 0.6863 - euclidean_distance: 0.2112
Epoch 80/200
152/152 [==============================] - 0s 800us/step - loss: 0.1305 - accuracy: 0.9555 - mae: 0.1305 - pearson_correlation: 0.6867 - euclidean_distance: 0.2089
Epoch 81/200
152/152 [==============================] - 0s 795us/step - loss: 0.1323 - accuracy: 0.9546 - mae: 0.1323 - pearson_correlation: 0.6809 - euclidean_distance: 0.2114
Epoch 82/200
152/152 [==============================] - 0s 801us/step - loss: 0.1299 - accuracy: 0.9546 - mae: 0.1299 - pearson_correlation: 0.6769 - euclidean_distance: 0.2086
Epoch 83/200
152/152 [==============================] - 0s 805us/step - loss: 0.1231 - accuracy: 0.9550 - mae: 0.1231 - pearson_correlation: 0.6995 - euclidean_distance: 0.1976
Epoch 84/200
152/152 [==============================] - 0s 797us/step - loss: 0.1244 - accuracy: 0.9546 - mae: 0.1244 - pearson_correlation: 0.6982 - euclidean_distance: 0.1998
Epoch 85/200
152/152 [==============================] - 0s 797us/step - loss: 0.1238 - accuracy: 0.9550 - mae: 0.1238 - pearson_correlation: 0.6967 - euclidean_distance: 0.1986
Epoch 86/200
152/152 [==============================] - 0s 801us/step - loss: 0.1245 - accuracy: 0.9533 - mae: 0.1245 - pearson_correlation: 0.6937 - euclidean_distance: 0.2000
Epoch 87/200
152/152 [==============================] - 0s 805us/step - loss: 0.1315 - accuracy: 0.9528 - mae: 0.1315 - pearson_correlation: 0.6780 - euclidean_distance: 0.2102
Epoch 88/200
152/152 [==============================] - 0s 804us/step - loss: 0.1305 - accuracy: 0.9550 - mae: 0.1305 - pearson_correlation: 0.6755 - euclidean_distance: 0.2089
Epoch 89/200
152/152 [==============================] - 0s 802us/step - loss: 0.1258 - accuracy: 0.9559 - mae: 0.1258 - pearson_correlation: 0.6837 - euclidean_distance: 0.2017
Epoch 90/200
152/152 [==============================] - 0s 824us/step - loss: 0.1250 - accuracy: 0.9546 - mae: 0.1250 - pearson_correlation: 0.6868 - euclidean_distance: 0.2005
Epoch 91/200
152/152 [==============================] - 0s 808us/step - loss: 0.1255 - accuracy: 0.9555 - mae: 0.1255 - pearson_correlation: 0.6806 - euclidean_distance: 0.2021
Epoch 92/200
152/152 [==============================] - 0s 800us/step - loss: 0.1243 - accuracy: 0.9555 - mae: 0.1243 - pearson_correlation: 0.6908 - euclidean_distance: 0.1991
Epoch 93/200
152/152 [==============================] - 0s 801us/step - loss: 0.1261 - accuracy: 0.9541 - mae: 0.1261 - pearson_correlation: 0.6871 - euclidean_distance: 0.2010
Epoch 94/200
152/152 [==============================] - 0s 801us/step - loss: 0.1212 - accuracy: 0.9555 - mae: 0.1212 - pearson_correlation: 0.6895 - euclidean_distance: 0.1950
Epoch 95/200
152/152 [==============================] - 0s 798us/step - loss: 0.1201 - accuracy: 0.9550 - mae: 0.1201 - pearson_correlation: 0.6878 - euclidean_distance: 0.1931
Epoch 96/200
152/152 [==============================] - 0s 799us/step - loss: 0.1212 - accuracy: 0.9546 - mae: 0.1212 - pearson_correlation: 0.6879 - euclidean_distance: 0.1943
Epoch 97/200
152/152 [==============================] - 0s 794us/step - loss: 0.1207 - accuracy: 0.9555 - mae: 0.1207 - pearson_correlation: 0.6977 - euclidean_distance: 0.1939
Epoch 98/200
152/152 [==============================] - 0s 847us/step - loss: 0.1208 - accuracy: 0.9555 - mae: 0.1208 - pearson_correlation: 0.6939 - euclidean_distance: 0.1934
Epoch 99/200
152/152 [==============================] - 0s 820us/step - loss: 0.1206 - accuracy: 0.9555 - mae: 0.1206 - pearson_correlation: 0.6924 - euclidean_distance: 0.1938
Epoch 100/200
152/152 [==============================] - 0s 799us/step - loss: 0.1173 - accuracy: 0.9555 - mae: 0.1173 - pearson_correlation: 0.7039 - euclidean_distance: 0.1878
Epoch 101/200
152/152 [==============================] - 0s 800us/step - loss: 0.1183 - accuracy: 0.9550 - mae: 0.1183 - pearson_correlation: 0.6988 - euclidean_distance: 0.1895
Epoch 102/200
152/152 [==============================] - 0s 806us/step - loss: 0.1156 - accuracy: 0.9559 - mae: 0.1156 - pearson_correlation: 0.7043 - euclidean_distance: 0.1860
Epoch 103/200
152/152 [==============================] - 0s 805us/step - loss: 0.1213 - accuracy: 0.9541 - mae: 0.1213 - pearson_correlation: 0.6889 - euclidean_distance: 0.1946
Epoch 104/200
152/152 [==============================] - 0s 810us/step - loss: 0.1168 - accuracy: 0.9541 - mae: 0.1168 - pearson_correlation: 0.6926 - euclidean_distance: 0.1889
Epoch 105/200
152/152 [==============================] - 0s 804us/step - loss: 0.1175 - accuracy: 0.9555 - mae: 0.1175 - pearson_correlation: 0.6896 - euclidean_distance: 0.1893
Epoch 106/200
152/152 [==============================] - 0s 802us/step - loss: 0.1145 - accuracy: 0.9559 - mae: 0.1145 - pearson_correlation: 0.6998 - euclidean_distance: 0.1843
Epoch 107/200
152/152 [==============================] - 0s 804us/step - loss: 0.1136 - accuracy: 0.9559 - mae: 0.1136 - pearson_correlation: 0.7041 - euclidean_distance: 0.1830
Epoch 108/200
152/152 [==============================] - 0s 814us/step - loss: 0.1182 - accuracy: 0.9550 - mae: 0.1182 - pearson_correlation: 0.6915 - euclidean_distance: 0.1903
Epoch 109/200
152/152 [==============================] - 0s 810us/step - loss: 0.1152 - accuracy: 0.9550 - mae: 0.1152 - pearson_correlation: 0.7018 - euclidean_distance: 0.1853
Epoch 110/200
152/152 [==============================] - 0s 805us/step - loss: 0.1166 - accuracy: 0.9550 - mae: 0.1166 - pearson_correlation: 0.6971 - euclidean_distance: 0.1872
Epoch 111/200
152/152 [==============================] - 0s 801us/step - loss: 0.1134 - accuracy: 0.9550 - mae: 0.1134 - pearson_correlation: 0.6988 - euclidean_distance: 0.1822
Epoch 112/200
152/152 [==============================] - 0s 797us/step - loss: 0.1149 - accuracy: 0.9555 - mae: 0.1149 - pearson_correlation: 0.7009 - euclidean_distance: 0.1840
Epoch 113/200
152/152 [==============================] - 0s 795us/step - loss: 0.1168 - accuracy: 0.9555 - mae: 0.1168 - pearson_correlation: 0.6952 - euclidean_distance: 0.1879
Epoch 114/200
152/152 [==============================] - 0s 797us/step - loss: 0.1117 - accuracy: 0.9559 - mae: 0.1117 - pearson_correlation: 0.7054 - euclidean_distance: 0.1796
Epoch 115/200
152/152 [==============================] - 0s 802us/step - loss: 0.1131 - accuracy: 0.9555 - mae: 0.1131 - pearson_correlation: 0.7060 - euclidean_distance: 0.1821
Epoch 116/200
152/152 [==============================] - 0s 807us/step - loss: 0.1125 - accuracy: 0.9559 - mae: 0.1125 - pearson_correlation: 0.7077 - euclidean_distance: 0.1808
Epoch 117/200
152/152 [==============================] - 0s 795us/step - loss: 0.1163 - accuracy: 0.9550 - mae: 0.1163 - pearson_correlation: 0.6897 - euclidean_distance: 0.1869
Epoch 118/200
152/152 [==============================] - 0s 800us/step - loss: 0.1127 - accuracy: 0.9555 - mae: 0.1127 - pearson_correlation: 0.7041 - euclidean_distance: 0.1813
Epoch 119/200
152/152 [==============================] - 0s 801us/step - loss: 0.1138 - accuracy: 0.9559 - mae: 0.1138 - pearson_correlation: 0.6941 - euclidean_distance: 0.1834
Epoch 120/200
152/152 [==============================] - 0s 804us/step - loss: 0.1111 - accuracy: 0.9559 - mae: 0.1111 - pearson_correlation: 0.7096 - euclidean_distance: 0.1781
Epoch 121/200
152/152 [==============================] - 0s 808us/step - loss: 0.1136 - accuracy: 0.9537 - mae: 0.1136 - pearson_correlation: 0.7022 - euclidean_distance: 0.1826
Epoch 122/200
152/152 [==============================] - 0s 804us/step - loss: 0.1138 - accuracy: 0.9550 - mae: 0.1138 - pearson_correlation: 0.6971 - euclidean_distance: 0.1832
Epoch 123/200
152/152 [==============================] - 0s 804us/step - loss: 0.1101 - accuracy: 0.9555 - mae: 0.1101 - pearson_correlation: 0.7170 - euclidean_distance: 0.1771
Epoch 124/200
152/152 [==============================] - 0s 795us/step - loss: 0.1121 - accuracy: 0.9550 - mae: 0.1121 - pearson_correlation: 0.7030 - euclidean_distance: 0.1805
Epoch 125/200
152/152 [==============================] - 0s 801us/step - loss: 0.1089 - accuracy: 0.9559 - mae: 0.1089 - pearson_correlation: 0.7052 - euclidean_distance: 0.1759
Epoch 126/200
152/152 [==============================] - 0s 805us/step - loss: 0.1127 - accuracy: 0.9550 - mae: 0.1127 - pearson_correlation: 0.7007 - euclidean_distance: 0.1818
Epoch 127/200
152/152 [==============================] - 0s 798us/step - loss: 0.1121 - accuracy: 0.9559 - mae: 0.1121 - pearson_correlation: 0.7010 - euclidean_distance: 0.1802
Epoch 128/200
152/152 [==============================] - 0s 799us/step - loss: 0.1091 - accuracy: 0.9555 - mae: 0.1091 - pearson_correlation: 0.7079 - euclidean_distance: 0.1758
Epoch 129/200
152/152 [==============================] - 0s 794us/step - loss: 0.1077 - accuracy: 0.9555 - mae: 0.1077 - pearson_correlation: 0.7151 - euclidean_distance: 0.1732
Epoch 130/200
152/152 [==============================] - 0s 800us/step - loss: 0.1112 - accuracy: 0.9559 - mae: 0.1112 - pearson_correlation: 0.7039 - euclidean_distance: 0.1787
Epoch 131/200
152/152 [==============================] - 0s 801us/step - loss: 0.1081 - accuracy: 0.9559 - mae: 0.1081 - pearson_correlation: 0.7107 - euclidean_distance: 0.1741
Epoch 132/200
152/152 [==============================] - 0s 799us/step - loss: 0.1093 - accuracy: 0.9550 - mae: 0.1093 - pearson_correlation: 0.7113 - euclidean_distance: 0.1760
Epoch 133/200
152/152 [==============================] - 0s 796us/step - loss: 0.1077 - accuracy: 0.9559 - mae: 0.1077 - pearson_correlation: 0.7175 - euclidean_distance: 0.1732
Epoch 134/200
152/152 [==============================] - 0s 800us/step - loss: 0.1090 - accuracy: 0.9550 - mae: 0.1090 - pearson_correlation: 0.7054 - euclidean_distance: 0.1755
Epoch 135/200
152/152 [==============================] - 0s 803us/step - loss: 0.1094 - accuracy: 0.9559 - mae: 0.1094 - pearson_correlation: 0.7100 - euclidean_distance: 0.1765
Epoch 136/200
152/152 [==============================] - 0s 797us/step - loss: 0.1076 - accuracy: 0.9550 - mae: 0.1076 - pearson_correlation: 0.7157 - euclidean_distance: 0.1736
Epoch 137/200
152/152 [==============================] - 0s 793us/step - loss: 0.1085 - accuracy: 0.9555 - mae: 0.1085 - pearson_correlation: 0.7090 - euclidean_distance: 0.1747
Epoch 138/200
152/152 [==============================] - 0s 790us/step - loss: 0.1092 - accuracy: 0.9546 - mae: 0.1092 - pearson_correlation: 0.7097 - euclidean_distance: 0.1762
Epoch 139/200
152/152 [==============================] - 0s 885us/step - loss: 0.1080 - accuracy: 0.9555 - mae: 0.1080 - pearson_correlation: 0.7100 - euclidean_distance: 0.1743
Epoch 140/200
152/152 [==============================] - 0s 883us/step - loss: 0.1060 - accuracy: 0.9555 - mae: 0.1060 - pearson_correlation: 0.7175 - euclidean_distance: 0.1711
Epoch 141/200
152/152 [==============================] - 0s 939us/step - loss: 0.1047 - accuracy: 0.9559 - mae: 0.1047 - pearson_correlation: 0.7251 - euclidean_distance: 0.1687
Epoch 142/200
152/152 [==============================] - 0s 938us/step - loss: 0.1090 - accuracy: 0.9555 - mae: 0.1090 - pearson_correlation: 0.7101 - euclidean_distance: 0.1761
Epoch 143/200
152/152 [==============================] - 0s 856us/step - loss: 0.1103 - accuracy: 0.9559 - mae: 0.1103 - pearson_correlation: 0.7152 - euclidean_distance: 0.1775
Epoch 144/200
152/152 [==============================] - 0s 807us/step - loss: 0.1033 - accuracy: 0.9555 - mae: 0.1033 - pearson_correlation: 0.7194 - euclidean_distance: 0.1668
Epoch 145/200
152/152 [==============================] - 0s 803us/step - loss: 0.1049 - accuracy: 0.9555 - mae: 0.1049 - pearson_correlation: 0.7289 - euclidean_distance: 0.1691
Epoch 146/200
152/152 [==============================] - 0s 809us/step - loss: 0.1059 - accuracy: 0.9550 - mae: 0.1059 - pearson_correlation: 0.7196 - euclidean_distance: 0.1709
Epoch 147/200
152/152 [==============================] - 0s 800us/step - loss: 0.1067 - accuracy: 0.9550 - mae: 0.1067 - pearson_correlation: 0.7215 - euclidean_distance: 0.1721
Epoch 148/200
152/152 [==============================] - 0s 797us/step - loss: 0.1017 - accuracy: 0.9559 - mae: 0.1017 - pearson_correlation: 0.7320 - euclidean_distance: 0.1638
Epoch 149/200
152/152 [==============================] - 0s 805us/step - loss: 0.1050 - accuracy: 0.9559 - mae: 0.1050 - pearson_correlation: 0.7183 - euclidean_distance: 0.1695
Epoch 150/200
152/152 [==============================] - 0s 806us/step - loss: 0.1039 - accuracy: 0.9559 - mae: 0.1039 - pearson_correlation: 0.7210 - euclidean_distance: 0.1680
Epoch 151/200
152/152 [==============================] - 0s 788us/step - loss: 0.1050 - accuracy: 0.9559 - mae: 0.1050 - pearson_correlation: 0.7168 - euclidean_distance: 0.1689
Epoch 152/200
152/152 [==============================] - 0s 806us/step - loss: 0.1039 - accuracy: 0.9550 - mae: 0.1039 - pearson_correlation: 0.7243 - euclidean_distance: 0.1672
Epoch 153/200
152/152 [==============================] - 0s 799us/step - loss: 0.1026 - accuracy: 0.9559 - mae: 0.1026 - pearson_correlation: 0.7307 - euclidean_distance: 0.1651
Epoch 154/200
152/152 [==============================] - 0s 807us/step - loss: 0.1019 - accuracy: 0.9550 - mae: 0.1019 - pearson_correlation: 0.7345 - euclidean_distance: 0.1649
Epoch 155/200
152/152 [==============================] - 0s 797us/step - loss: 0.1040 - accuracy: 0.9559 - mae: 0.1040 - pearson_correlation: 0.7253 - euclidean_distance: 0.1684
Epoch 156/200
152/152 [==============================] - 0s 796us/step - loss: 0.1032 - accuracy: 0.9559 - mae: 0.1032 - pearson_correlation: 0.7250 - euclidean_distance: 0.1663
Epoch 157/200
152/152 [==============================] - 0s 804us/step - loss: 0.1026 - accuracy: 0.9559 - mae: 0.1026 - pearson_correlation: 0.7324 - euclidean_distance: 0.1651
Epoch 158/200
152/152 [==============================] - 0s 804us/step - loss: 0.1046 - accuracy: 0.9555 - mae: 0.1046 - pearson_correlation: 0.7306 - euclidean_distance: 0.1688
Epoch 159/200
152/152 [==============================] - 0s 807us/step - loss: 0.1030 - accuracy: 0.9559 - mae: 0.1030 - pearson_correlation: 0.7283 - euclidean_distance: 0.1661
Epoch 160/200
152/152 [==============================] - 0s 804us/step - loss: 0.1023 - accuracy: 0.9559 - mae: 0.1023 - pearson_correlation: 0.7265 - euclidean_distance: 0.1651
Epoch 161/200
152/152 [==============================] - 0s 803us/step - loss: 0.1009 - accuracy: 0.9555 - mae: 0.1009 - pearson_correlation: 0.7342 - euclidean_distance: 0.1627
Epoch 162/200
152/152 [==============================] - 0s 800us/step - loss: 0.0999 - accuracy: 0.9559 - mae: 0.0999 - pearson_correlation: 0.7289 - euclidean_distance: 0.1616
Epoch 163/200
152/152 [==============================] - 0s 800us/step - loss: 0.1020 - accuracy: 0.9559 - mae: 0.1020 - pearson_correlation: 0.7269 - euclidean_distance: 0.1649
Epoch 164/200
152/152 [==============================] - 0s 797us/step - loss: 0.1032 - accuracy: 0.9555 - mae: 0.1032 - pearson_correlation: 0.7235 - euclidean_distance: 0.1669
Epoch 165/200
152/152 [==============================] - 0s 797us/step - loss: 0.1033 - accuracy: 0.9559 - mae: 0.1033 - pearson_correlation: 0.7218 - euclidean_distance: 0.1674
Epoch 166/200
152/152 [==============================] - 0s 799us/step - loss: 0.1026 - accuracy: 0.9546 - mae: 0.1026 - pearson_correlation: 0.7292 - euclidean_distance: 0.1656
Epoch 167/200
152/152 [==============================] - 0s 800us/step - loss: 0.1008 - accuracy: 0.9555 - mae: 0.1008 - pearson_correlation: 0.7348 - euclidean_distance: 0.1630
Epoch 168/200
152/152 [==============================] - 0s 802us/step - loss: 0.1003 - accuracy: 0.9559 - mae: 0.1003 - pearson_correlation: 0.7347 - euclidean_distance: 0.1624
Epoch 169/200
152/152 [==============================] - 0s 802us/step - loss: 0.0993 - accuracy: 0.9555 - mae: 0.0993 - pearson_correlation: 0.7375 - euclidean_distance: 0.1609
Epoch 170/200
152/152 [==============================] - 0s 804us/step - loss: 0.1002 - accuracy: 0.9559 - mae: 0.1002 - pearson_correlation: 0.7331 - euclidean_distance: 0.1619
Epoch 171/200
152/152 [==============================] - 0s 800us/step - loss: 0.1004 - accuracy: 0.9559 - mae: 0.1004 - pearson_correlation: 0.7350 - euclidean_distance: 0.1622
Epoch 172/200
152/152 [==============================] - 0s 800us/step - loss: 0.1000 - accuracy: 0.9559 - mae: 0.1000 - pearson_correlation: 0.7320 - euclidean_distance: 0.1617
Epoch 173/200
152/152 [==============================] - 0s 798us/step - loss: 0.0987 - accuracy: 0.9559 - mae: 0.0987 - pearson_correlation: 0.7437 - euclidean_distance: 0.1595
Epoch 174/200
152/152 [==============================] - 0s 803us/step - loss: 0.0988 - accuracy: 0.9559 - mae: 0.0988 - pearson_correlation: 0.7322 - euclidean_distance: 0.1597
Epoch 175/200
152/152 [==============================] - 0s 806us/step - loss: 0.1021 - accuracy: 0.9555 - mae: 0.1021 - pearson_correlation: 0.7288 - euclidean_distance: 0.1646
Epoch 176/200
152/152 [==============================] - 0s 804us/step - loss: 0.1021 - accuracy: 0.9559 - mae: 0.1021 - pearson_correlation: 0.7276 - euclidean_distance: 0.1655
Epoch 177/200
152/152 [==============================] - 0s 799us/step - loss: 0.0974 - accuracy: 0.9555 - mae: 0.0974 - pearson_correlation: 0.7403 - euclidean_distance: 0.1576
Epoch 178/200
152/152 [==============================] - 0s 791us/step - loss: 0.0990 - accuracy: 0.9559 - mae: 0.0990 - pearson_correlation: 0.7403 - euclidean_distance: 0.1600
Epoch 179/200
152/152 [==============================] - 0s 805us/step - loss: 0.0966 - accuracy: 0.9559 - mae: 0.0966 - pearson_correlation: 0.7400 - euclidean_distance: 0.1570
Epoch 180/200
152/152 [==============================] - 0s 798us/step - loss: 0.1025 - accuracy: 0.9559 - mae: 0.1025 - pearson_correlation: 0.7218 - euclidean_distance: 0.1662
Epoch 181/200
152/152 [==============================] - 0s 788us/step - loss: 0.1019 - accuracy: 0.9559 - mae: 0.1019 - pearson_correlation: 0.7248 - euclidean_distance: 0.1649
Epoch 182/200
152/152 [==============================] - 0s 800us/step - loss: 0.0988 - accuracy: 0.9555 - mae: 0.0988 - pearson_correlation: 0.7364 - euclidean_distance: 0.1603
Epoch 183/200
152/152 [==============================] - 0s 809us/step - loss: 0.0976 - accuracy: 0.9559 - mae: 0.0976 - pearson_correlation: 0.7378 - euclidean_distance: 0.1579
Epoch 184/200
152/152 [==============================] - 0s 791us/step - loss: 0.0963 - accuracy: 0.9559 - mae: 0.0963 - pearson_correlation: 0.7421 - euclidean_distance: 0.1559
Epoch 185/200
152/152 [==============================] - 0s 806us/step - loss: 0.1001 - accuracy: 0.9559 - mae: 0.1001 - pearson_correlation: 0.7341 - euclidean_distance: 0.1621
Epoch 186/200
152/152 [==============================] - 0s 802us/step - loss: 0.0976 - accuracy: 0.9559 - mae: 0.0976 - pearson_correlation: 0.7365 - euclidean_distance: 0.1579
Epoch 187/200
152/152 [==============================] - 0s 799us/step - loss: 0.0978 - accuracy: 0.9559 - mae: 0.0978 - pearson_correlation: 0.7405 - euclidean_distance: 0.1585
Epoch 188/200
152/152 [==============================] - 0s 797us/step - loss: 0.0949 - accuracy: 0.9559 - mae: 0.0949 - pearson_correlation: 0.7503 - euclidean_distance: 0.1539
Epoch 189/200
152/152 [==============================] - 0s 813us/step - loss: 0.0967 - accuracy: 0.9559 - mae: 0.0967 - pearson_correlation: 0.7415 - euclidean_distance: 0.1568
Epoch 190/200
152/152 [==============================] - 0s 811us/step - loss: 0.0978 - accuracy: 0.9555 - mae: 0.0978 - pearson_correlation: 0.7337 - euclidean_distance: 0.1586
Epoch 191/200
152/152 [==============================] - 0s 802us/step - loss: 0.0990 - accuracy: 0.9559 - mae: 0.0990 - pearson_correlation: 0.7373 - euclidean_distance: 0.1600
Epoch 192/200
152/152 [==============================] - 0s 796us/step - loss: 0.0968 - accuracy: 0.9555 - mae: 0.0968 - pearson_correlation: 0.7410 - euclidean_distance: 0.1567
Epoch 193/200
152/152 [==============================] - 0s 800us/step - loss: 0.0974 - accuracy: 0.9559 - mae: 0.0974 - pearson_correlation: 0.7392 - euclidean_distance: 0.1580
Epoch 194/200
152/152 [==============================] - 0s 796us/step - loss: 0.0966 - accuracy: 0.9559 - mae: 0.0966 - pearson_correlation: 0.7402 - euclidean_distance: 0.1566
Epoch 195/200
152/152 [==============================] - 0s 797us/step - loss: 0.0950 - accuracy: 0.9559 - mae: 0.0950 - pearson_correlation: 0.7429 - euclidean_distance: 0.1539
Epoch 196/200
152/152 [==============================] - 0s 798us/step - loss: 0.0960 - accuracy: 0.9559 - mae: 0.0960 - pearson_correlation: 0.7455 - euclidean_distance: 0.1552
Epoch 197/200
152/152 [==============================] - 0s 792us/step - loss: 0.0971 - accuracy: 0.9559 - mae: 0.0971 - pearson_correlation: 0.7387 - euclidean_distance: 0.1574
Epoch 198/200
152/152 [==============================] - 0s 793us/step - loss: 0.0938 - accuracy: 0.9559 - mae: 0.0938 - pearson_correlation: 0.7534 - euclidean_distance: 0.1515
Epoch 199/200
152/152 [==============================] - 0s 794us/step - loss: 0.0977 - accuracy: 0.9555 - mae: 0.0977 - pearson_correlation: 0.7415 - euclidean_distance: 0.1582
Epoch 200/200
152/152 [==============================] - 0s 798us/step - loss: 0.0957 - accuracy: 0.9559 - mae: 0.0957 - pearson_correlation: 0.7406 - euclidean_distance: 0.1549
76/76 [==============================] - 0s 442us/step
Epoch 1/250
152/152 [==============================] - 1s 811us/step - loss: 0.5598 - accuracy: 0.0441 - mae: 0.5598 - pearson_correlation: -0.6557 - euclidean_distance: 0.9544
Epoch 2/250
152/152 [==============================] - 0s 807us/step - loss: 0.5507 - accuracy: 0.0441 - mae: 0.5507 - pearson_correlation: -0.6424 - euclidean_distance: 0.9401
Epoch 3/250
152/152 [==============================] - 0s 822us/step - loss: 0.5392 - accuracy: 0.0459 - mae: 0.5392 - pearson_correlation: -0.6465 - euclidean_distance: 0.9236
Epoch 4/250
152/152 [==============================] - 0s 807us/step - loss: 0.5306 - accuracy: 0.0441 - mae: 0.5306 - pearson_correlation: -0.6387 - euclidean_distance: 0.9113
Epoch 5/250
152/152 [==============================] - 0s 808us/step - loss: 0.5218 - accuracy: 0.0454 - mae: 0.5218 - pearson_correlation: -0.6440 - euclidean_distance: 0.8985
Epoch 6/250
152/152 [==============================] - 0s 802us/step - loss: 0.5103 - accuracy: 0.0437 - mae: 0.5103 - pearson_correlation: -0.6309 - euclidean_distance: 0.8821
Epoch 7/250
152/152 [==============================] - 0s 803us/step - loss: 0.5016 - accuracy: 0.0450 - mae: 0.5016 - pearson_correlation: -0.6352 - euclidean_distance: 0.8680
Epoch 8/250
152/152 [==============================] - 0s 808us/step - loss: 0.4922 - accuracy: 0.0459 - mae: 0.4922 - pearson_correlation: -0.6243 - euclidean_distance: 0.8530
Epoch 9/250
152/152 [==============================] - 0s 802us/step - loss: 0.4843 - accuracy: 0.0490 - mae: 0.4843 - pearson_correlation: -0.6269 - euclidean_distance: 0.8398
Epoch 10/250
152/152 [==============================] - 0s 802us/step - loss: 0.4776 - accuracy: 0.0463 - mae: 0.4776 - pearson_correlation: -0.6250 - euclidean_distance: 0.8283
Epoch 11/250
152/152 [==============================] - 0s 799us/step - loss: 0.4676 - accuracy: 0.0459 - mae: 0.4676 - pearson_correlation: -0.6226 - euclidean_distance: 0.8157
Epoch 12/250
152/152 [==============================] - 0s 802us/step - loss: 0.4630 - accuracy: 0.0490 - mae: 0.4630 - pearson_correlation: -0.6200 - euclidean_distance: 0.8051
Epoch 13/250
152/152 [==============================] - 0s 803us/step - loss: 0.4560 - accuracy: 0.0472 - mae: 0.4560 - pearson_correlation: -0.6220 - euclidean_distance: 0.7957
Epoch 14/250
152/152 [==============================] - 0s 802us/step - loss: 0.4469 - accuracy: 0.0498 - mae: 0.4469 - pearson_correlation: -0.6147 - euclidean_distance: 0.7800
Epoch 15/250
152/152 [==============================] - 0s 804us/step - loss: 0.4395 - accuracy: 0.0507 - mae: 0.4395 - pearson_correlation: -0.6089 - euclidean_distance: 0.7680
Epoch 16/250
152/152 [==============================] - 0s 796us/step - loss: 0.4346 - accuracy: 0.0503 - mae: 0.4346 - pearson_correlation: -0.6070 - euclidean_distance: 0.7593
Epoch 17/250
152/152 [==============================] - 0s 798us/step - loss: 0.4269 - accuracy: 0.0507 - mae: 0.4269 - pearson_correlation: -0.6048 - euclidean_distance: 0.7471
Epoch 18/250
152/152 [==============================] - 0s 806us/step - loss: 0.4207 - accuracy: 0.0569 - mae: 0.4207 - pearson_correlation: -0.5912 - euclidean_distance: 0.7362
Epoch 19/250
152/152 [==============================] - 0s 802us/step - loss: 0.4163 - accuracy: 0.0578 - mae: 0.4163 - pearson_correlation: -0.5965 - euclidean_distance: 0.7259
Epoch 20/250
152/152 [==============================] - 0s 799us/step - loss: 0.4095 - accuracy: 0.0635 - mae: 0.4095 - pearson_correlation: -0.6008 - euclidean_distance: 0.7162
Epoch 21/250
152/152 [==============================] - 0s 805us/step - loss: 0.4042 - accuracy: 0.0626 - mae: 0.4042 - pearson_correlation: -0.5827 - euclidean_distance: 0.7056
Epoch 22/250
152/152 [==============================] - 0s 800us/step - loss: 0.3991 - accuracy: 0.0644 - mae: 0.3991 - pearson_correlation: -0.5963 - euclidean_distance: 0.6975
Epoch 23/250
152/152 [==============================] - 0s 803us/step - loss: 0.3935 - accuracy: 0.0697 - mae: 0.3935 - pearson_correlation: -0.5795 - euclidean_distance: 0.6850
Epoch 24/250
152/152 [==============================] - 0s 806us/step - loss: 0.3871 - accuracy: 0.0834 - mae: 0.3871 - pearson_correlation: -0.5767 - euclidean_distance: 0.6758
Epoch 25/250
152/152 [==============================] - 0s 803us/step - loss: 0.3827 - accuracy: 0.0785 - mae: 0.3827 - pearson_correlation: -0.5724 - euclidean_distance: 0.6663
Epoch 26/250
152/152 [==============================] - 0s 807us/step - loss: 0.3789 - accuracy: 0.0931 - mae: 0.3789 - pearson_correlation: -0.5670 - euclidean_distance: 0.6591
Epoch 27/250
152/152 [==============================] - 0s 804us/step - loss: 0.3734 - accuracy: 0.0975 - mae: 0.3734 - pearson_correlation: -0.5527 - euclidean_distance: 0.6489
Epoch 28/250
152/152 [==============================] - 0s 805us/step - loss: 0.3679 - accuracy: 0.1090 - mae: 0.3679 - pearson_correlation: -0.5465 - euclidean_distance: 0.6387
Epoch 29/250
152/152 [==============================] - 0s 806us/step - loss: 0.3616 - accuracy: 0.1209 - mae: 0.3616 - pearson_correlation: -0.5444 - euclidean_distance: 0.6292
Epoch 30/250
152/152 [==============================] - 0s 798us/step - loss: 0.3585 - accuracy: 0.1288 - mae: 0.3585 - pearson_correlation: -0.5295 - euclidean_distance: 0.6229
Epoch 31/250
152/152 [==============================] - 0s 796us/step - loss: 0.3534 - accuracy: 0.1350 - mae: 0.3534 - pearson_correlation: -0.5315 - euclidean_distance: 0.6133
Epoch 32/250
152/152 [==============================] - 0s 801us/step - loss: 0.3495 - accuracy: 0.1390 - mae: 0.3495 - pearson_correlation: -0.5240 - euclidean_distance: 0.6057
Epoch 33/250
152/152 [==============================] - 0s 799us/step - loss: 0.3435 - accuracy: 0.1566 - mae: 0.3435 - pearson_correlation: -0.5145 - euclidean_distance: 0.5956
Epoch 34/250
152/152 [==============================] - 0s 803us/step - loss: 0.3386 - accuracy: 0.1645 - mae: 0.3386 - pearson_correlation: -0.5039 - euclidean_distance: 0.5851
Epoch 35/250
152/152 [==============================] - 0s 806us/step - loss: 0.3345 - accuracy: 0.1884 - mae: 0.3345 - pearson_correlation: -0.4976 - euclidean_distance: 0.5775
Epoch 36/250
152/152 [==============================] - 0s 797us/step - loss: 0.3310 - accuracy: 0.1870 - mae: 0.3310 - pearson_correlation: -0.4900 - euclidean_distance: 0.5711
Epoch 37/250
152/152 [==============================] - 0s 803us/step - loss: 0.3268 - accuracy: 0.1972 - mae: 0.3268 - pearson_correlation: -0.4677 - euclidean_distance: 0.5627
Epoch 38/250
152/152 [==============================] - 0s 800us/step - loss: 0.3218 - accuracy: 0.2091 - mae: 0.3218 - pearson_correlation: -0.4613 - euclidean_distance: 0.5542
Epoch 39/250
152/152 [==============================] - 0s 801us/step - loss: 0.3173 - accuracy: 0.2236 - mae: 0.3173 - pearson_correlation: -0.4485 - euclidean_distance: 0.5461
Epoch 40/250
152/152 [==============================] - 0s 798us/step - loss: 0.3129 - accuracy: 0.2408 - mae: 0.3129 - pearson_correlation: -0.4373 - euclidean_distance: 0.5390
Epoch 41/250
152/152 [==============================] - 0s 798us/step - loss: 0.3083 - accuracy: 0.2435 - mae: 0.3083 - pearson_correlation: -0.4235 - euclidean_distance: 0.5304
Epoch 42/250
152/152 [==============================] - 0s 800us/step - loss: 0.3060 - accuracy: 0.2417 - mae: 0.3060 - pearson_correlation: -0.4158 - euclidean_distance: 0.5246
Epoch 43/250
152/152 [==============================] - 0s 803us/step - loss: 0.3000 - accuracy: 0.2598 - mae: 0.3000 - pearson_correlation: -0.4022 - euclidean_distance: 0.5157
Epoch 44/250
152/152 [==============================] - 0s 802us/step - loss: 0.2986 - accuracy: 0.2603 - mae: 0.2986 - pearson_correlation: -0.3759 - euclidean_distance: 0.5103
Epoch 45/250
152/152 [==============================] - 0s 830us/step - loss: 0.2924 - accuracy: 0.2775 - mae: 0.2924 - pearson_correlation: -0.3710 - euclidean_distance: 0.4999
Epoch 46/250
152/152 [==============================] - 0s 820us/step - loss: 0.2908 - accuracy: 0.2757 - mae: 0.2908 - pearson_correlation: -0.3619 - euclidean_distance: 0.4975
Epoch 47/250
152/152 [==============================] - 0s 801us/step - loss: 0.2851 - accuracy: 0.2850 - mae: 0.2851 - pearson_correlation: -0.3441 - euclidean_distance: 0.4871
Epoch 48/250
152/152 [==============================] - 0s 804us/step - loss: 0.2819 - accuracy: 0.2951 - mae: 0.2819 - pearson_correlation: -0.3305 - euclidean_distance: 0.4818
Epoch 49/250
152/152 [==============================] - 0s 800us/step - loss: 0.2783 - accuracy: 0.2973 - mae: 0.2783 - pearson_correlation: -0.3202 - euclidean_distance: 0.4732
Epoch 50/250
152/152 [==============================] - 0s 795us/step - loss: 0.2749 - accuracy: 0.3198 - mae: 0.2749 - pearson_correlation: -0.2954 - euclidean_distance: 0.4680
Epoch 51/250
152/152 [==============================] - 0s 803us/step - loss: 0.2711 - accuracy: 0.3180 - mae: 0.2711 - pearson_correlation: -0.2858 - euclidean_distance: 0.4621
Epoch 52/250
152/152 [==============================] - 0s 798us/step - loss: 0.2665 - accuracy: 0.3216 - mae: 0.2665 - pearson_correlation: -0.2726 - euclidean_distance: 0.4524
Epoch 53/250
152/152 [==============================] - 0s 804us/step - loss: 0.2614 - accuracy: 0.3352 - mae: 0.2614 - pearson_correlation: -0.2351 - euclidean_distance: 0.4448
Epoch 54/250
152/152 [==============================] - 0s 802us/step - loss: 0.2595 - accuracy: 0.3498 - mae: 0.2595 - pearson_correlation: -0.2257 - euclidean_distance: 0.4400
Epoch 55/250
152/152 [==============================] - 0s 796us/step - loss: 0.2565 - accuracy: 0.3498 - mae: 0.2565 - pearson_correlation: -0.2053 - euclidean_distance: 0.4341
Epoch 56/250
152/152 [==============================] - 0s 795us/step - loss: 0.2545 - accuracy: 0.3670 - mae: 0.2545 - pearson_correlation: -0.1905 - euclidean_distance: 0.4311
Epoch 57/250
152/152 [==============================] - 0s 803us/step - loss: 0.2467 - accuracy: 0.3697 - mae: 0.2467 - pearson_correlation: -0.1699 - euclidean_distance: 0.4190
Epoch 58/250
152/152 [==============================] - 0s 798us/step - loss: 0.2457 - accuracy: 0.3851 - mae: 0.2457 - pearson_correlation: -0.1506 - euclidean_distance: 0.4163
Epoch 59/250
152/152 [==============================] - 0s 799us/step - loss: 0.2412 - accuracy: 0.3970 - mae: 0.2412 - pearson_correlation: -0.1301 - euclidean_distance: 0.4078
Epoch 60/250
152/152 [==============================] - 0s 789us/step - loss: 0.2391 - accuracy: 0.4116 - mae: 0.2391 - pearson_correlation: -0.1177 - euclidean_distance: 0.4032
Epoch 61/250
152/152 [==============================] - 0s 826us/step - loss: 0.2360 - accuracy: 0.4111 - mae: 0.2360 - pearson_correlation: -0.1067 - euclidean_distance: 0.3975
Epoch 62/250
152/152 [==============================] - 0s 868us/step - loss: 0.2354 - accuracy: 0.4173 - mae: 0.2354 - pearson_correlation: -0.0827 - euclidean_distance: 0.3961
Epoch 63/250
152/152 [==============================] - 0s 864us/step - loss: 0.2317 - accuracy: 0.4138 - mae: 0.2317 - pearson_correlation: -0.0684 - euclidean_distance: 0.3883
Epoch 64/250
152/152 [==============================] - 0s 920us/step - loss: 0.2275 - accuracy: 0.4248 - mae: 0.2275 - pearson_correlation: -0.0485 - euclidean_distance: 0.3827
Epoch 65/250
152/152 [==============================] - 0s 929us/step - loss: 0.2247 - accuracy: 0.4398 - mae: 0.2247 - pearson_correlation: -0.0279 - euclidean_distance: 0.3766
Epoch 66/250
152/152 [==============================] - 0s 884us/step - loss: 0.2232 - accuracy: 0.4407 - mae: 0.2232 - pearson_correlation: -0.0124 - euclidean_distance: 0.3750
Epoch 67/250
152/152 [==============================] - 0s 808us/step - loss: 0.2187 - accuracy: 0.4596 - mae: 0.2187 - pearson_correlation: 0.0141 - euclidean_distance: 0.3662
Epoch 68/250
152/152 [==============================] - 0s 808us/step - loss: 0.2165 - accuracy: 0.4671 - mae: 0.2165 - pearson_correlation: 0.0226 - euclidean_distance: 0.3616
Epoch 69/250
152/152 [==============================] - 0s 801us/step - loss: 0.2156 - accuracy: 0.4768 - mae: 0.2156 - pearson_correlation: 0.0380 - euclidean_distance: 0.3609
Epoch 70/250
152/152 [==============================] - 0s 805us/step - loss: 0.2115 - accuracy: 0.4751 - mae: 0.2115 - pearson_correlation: 0.0706 - euclidean_distance: 0.3512
Epoch 71/250
152/152 [==============================] - 0s 800us/step - loss: 0.2080 - accuracy: 0.4910 - mae: 0.2080 - pearson_correlation: 0.0807 - euclidean_distance: 0.3480
Epoch 72/250
152/152 [==============================] - 0s 801us/step - loss: 0.2084 - accuracy: 0.5073 - mae: 0.2084 - pearson_correlation: 0.1006 - euclidean_distance: 0.3465
Epoch 73/250
152/152 [==============================] - 0s 795us/step - loss: 0.2061 - accuracy: 0.5130 - mae: 0.2061 - pearson_correlation: 0.1071 - euclidean_distance: 0.3429
Epoch 74/250
152/152 [==============================] - 0s 800us/step - loss: 0.2016 - accuracy: 0.5276 - mae: 0.2016 - pearson_correlation: 0.1182 - euclidean_distance: 0.3355
Epoch 75/250
152/152 [==============================] - 0s 800us/step - loss: 0.1975 - accuracy: 0.5298 - mae: 0.1975 - pearson_correlation: 0.1397 - euclidean_distance: 0.3290
Epoch 76/250
152/152 [==============================] - 0s 789us/step - loss: 0.1954 - accuracy: 0.5479 - mae: 0.1954 - pearson_correlation: 0.1624 - euclidean_distance: 0.3249
Epoch 77/250
152/152 [==============================] - 0s 803us/step - loss: 0.1954 - accuracy: 0.5509 - mae: 0.1954 - pearson_correlation: 0.1711 - euclidean_distance: 0.3241
Epoch 78/250
152/152 [==============================] - 0s 816us/step - loss: 0.1909 - accuracy: 0.5748 - mae: 0.1909 - pearson_correlation: 0.1892 - euclidean_distance: 0.3161
Epoch 79/250
152/152 [==============================] - 0s 800us/step - loss: 0.1916 - accuracy: 0.5849 - mae: 0.1916 - pearson_correlation: 0.1996 - euclidean_distance: 0.3172
Epoch 80/250
152/152 [==============================] - 0s 791us/step - loss: 0.1885 - accuracy: 0.5986 - mae: 0.1885 - pearson_correlation: 0.2190 - euclidean_distance: 0.3113
Epoch 81/250
152/152 [==============================] - 0s 796us/step - loss: 0.1873 - accuracy: 0.6101 - mae: 0.1873 - pearson_correlation: 0.2295 - euclidean_distance: 0.3088
Epoch 82/250
152/152 [==============================] - 0s 810us/step - loss: 0.1863 - accuracy: 0.6140 - mae: 0.1863 - pearson_correlation: 0.2378 - euclidean_distance: 0.3069
Epoch 83/250
152/152 [==============================] - 0s 809us/step - loss: 0.1832 - accuracy: 0.6445 - mae: 0.1832 - pearson_correlation: 0.2532 - euclidean_distance: 0.3017
Epoch 84/250
152/152 [==============================] - 0s 805us/step - loss: 0.1789 - accuracy: 0.6555 - mae: 0.1789 - pearson_correlation: 0.2805 - euclidean_distance: 0.2950
Epoch 85/250
152/152 [==============================] - 0s 803us/step - loss: 0.1793 - accuracy: 0.6740 - mae: 0.1793 - pearson_correlation: 0.2903 - euclidean_distance: 0.2949
Epoch 86/250
152/152 [==============================] - 0s 792us/step - loss: 0.1770 - accuracy: 0.6806 - mae: 0.1770 - pearson_correlation: 0.3001 - euclidean_distance: 0.2906
Epoch 87/250
152/152 [==============================] - 0s 795us/step - loss: 0.1745 - accuracy: 0.6956 - mae: 0.1745 - pearson_correlation: 0.3120 - euclidean_distance: 0.2871
Epoch 88/250
152/152 [==============================] - 0s 801us/step - loss: 0.1738 - accuracy: 0.7124 - mae: 0.1738 - pearson_correlation: 0.3310 - euclidean_distance: 0.2851
Epoch 89/250
152/152 [==============================] - 0s 799us/step - loss: 0.1699 - accuracy: 0.7203 - mae: 0.1699 - pearson_correlation: 0.3470 - euclidean_distance: 0.2790
Epoch 90/250
152/152 [==============================] - 0s 801us/step - loss: 0.1703 - accuracy: 0.7384 - mae: 0.1703 - pearson_correlation: 0.3466 - euclidean_distance: 0.2783
Epoch 91/250
152/152 [==============================] - 0s 820us/step - loss: 0.1685 - accuracy: 0.7468 - mae: 0.1685 - pearson_correlation: 0.3544 - euclidean_distance: 0.2751
Epoch 92/250
152/152 [==============================] - 0s 799us/step - loss: 0.1668 - accuracy: 0.7547 - mae: 0.1668 - pearson_correlation: 0.3616 - euclidean_distance: 0.2728
Epoch 93/250
152/152 [==============================] - 0s 804us/step - loss: 0.1649 - accuracy: 0.7658 - mae: 0.1649 - pearson_correlation: 0.3734 - euclidean_distance: 0.2693
Epoch 94/250
152/152 [==============================] - 0s 800us/step - loss: 0.1638 - accuracy: 0.7821 - mae: 0.1638 - pearson_correlation: 0.3912 - euclidean_distance: 0.2671
Epoch 95/250
152/152 [==============================] - 0s 797us/step - loss: 0.1611 - accuracy: 0.7971 - mae: 0.1611 - pearson_correlation: 0.4064 - euclidean_distance: 0.2628
Epoch 96/250
152/152 [==============================] - 0s 792us/step - loss: 0.1577 - accuracy: 0.8033 - mae: 0.1577 - pearson_correlation: 0.4141 - euclidean_distance: 0.2573
Epoch 97/250
152/152 [==============================] - 0s 796us/step - loss: 0.1583 - accuracy: 0.8139 - mae: 0.1583 - pearson_correlation: 0.4236 - euclidean_distance: 0.2586
Epoch 98/250
152/152 [==============================] - 0s 798us/step - loss: 0.1557 - accuracy: 0.8284 - mae: 0.1557 - pearson_correlation: 0.4345 - euclidean_distance: 0.2539
Epoch 99/250
152/152 [==============================] - 0s 811us/step - loss: 0.1564 - accuracy: 0.8412 - mae: 0.1564 - pearson_correlation: 0.4334 - euclidean_distance: 0.2538
Epoch 100/250
152/152 [==============================] - 0s 799us/step - loss: 0.1555 - accuracy: 0.8513 - mae: 0.1555 - pearson_correlation: 0.4426 - euclidean_distance: 0.2533
Epoch 101/250
152/152 [==============================] - 0s 802us/step - loss: 0.1524 - accuracy: 0.8558 - mae: 0.1524 - pearson_correlation: 0.4636 - euclidean_distance: 0.2495
Epoch 102/250
152/152 [==============================] - 0s 797us/step - loss: 0.1515 - accuracy: 0.8655 - mae: 0.1515 - pearson_correlation: 0.4640 - euclidean_distance: 0.2463
Epoch 103/250
152/152 [==============================] - 0s 790us/step - loss: 0.1539 - accuracy: 0.8716 - mae: 0.1539 - pearson_correlation: 0.4609 - euclidean_distance: 0.2507
Epoch 104/250
152/152 [==============================] - 0s 794us/step - loss: 0.1482 - accuracy: 0.8734 - mae: 0.1482 - pearson_correlation: 0.4867 - euclidean_distance: 0.2411
Epoch 105/250
152/152 [==============================] - 0s 794us/step - loss: 0.1492 - accuracy: 0.8906 - mae: 0.1492 - pearson_correlation: 0.4834 - euclidean_distance: 0.2427
Epoch 106/250
152/152 [==============================] - 0s 797us/step - loss: 0.1481 - accuracy: 0.8946 - mae: 0.1481 - pearson_correlation: 0.4926 - euclidean_distance: 0.2402
Epoch 107/250
152/152 [==============================] - 0s 804us/step - loss: 0.1464 - accuracy: 0.8937 - mae: 0.1464 - pearson_correlation: 0.4934 - euclidean_distance: 0.2382
Epoch 108/250
152/152 [==============================] - 0s 807us/step - loss: 0.1448 - accuracy: 0.9016 - mae: 0.1448 - pearson_correlation: 0.5040 - euclidean_distance: 0.2351
Epoch 109/250
152/152 [==============================] - 0s 793us/step - loss: 0.1437 - accuracy: 0.9157 - mae: 0.1437 - pearson_correlation: 0.5105 - euclidean_distance: 0.2327
Epoch 110/250
152/152 [==============================] - 0s 796us/step - loss: 0.1406 - accuracy: 0.9096 - mae: 0.1406 - pearson_correlation: 0.5226 - euclidean_distance: 0.2284
Epoch 111/250
152/152 [==============================] - 0s 801us/step - loss: 0.1411 - accuracy: 0.9162 - mae: 0.1411 - pearson_correlation: 0.5304 - euclidean_distance: 0.2296
Epoch 112/250
152/152 [==============================] - 0s 804us/step - loss: 0.1397 - accuracy: 0.9184 - mae: 0.1397 - pearson_correlation: 0.5294 - euclidean_distance: 0.2269
Epoch 113/250
152/152 [==============================] - 0s 795us/step - loss: 0.1379 - accuracy: 0.9255 - mae: 0.1379 - pearson_correlation: 0.5432 - euclidean_distance: 0.2240
Epoch 114/250
152/152 [==============================] - 0s 799us/step - loss: 0.1364 - accuracy: 0.9241 - mae: 0.1364 - pearson_correlation: 0.5560 - euclidean_distance: 0.2212
Epoch 115/250
152/152 [==============================] - 0s 793us/step - loss: 0.1381 - accuracy: 0.9285 - mae: 0.1381 - pearson_correlation: 0.5462 - euclidean_distance: 0.2245
Epoch 116/250
152/152 [==============================] - 0s 799us/step - loss: 0.1348 - accuracy: 0.9241 - mae: 0.1348 - pearson_correlation: 0.5627 - euclidean_distance: 0.2191
Epoch 117/250
152/152 [==============================] - 0s 803us/step - loss: 0.1349 - accuracy: 0.9281 - mae: 0.1349 - pearson_correlation: 0.5651 - euclidean_distance: 0.2188
Epoch 118/250
152/152 [==============================] - 0s 797us/step - loss: 0.1329 - accuracy: 0.9360 - mae: 0.1329 - pearson_correlation: 0.5703 - euclidean_distance: 0.2157
Epoch 119/250
152/152 [==============================] - 0s 801us/step - loss: 0.1346 - accuracy: 0.9338 - mae: 0.1346 - pearson_correlation: 0.5666 - euclidean_distance: 0.2183
Epoch 120/250
152/152 [==============================] - 0s 801us/step - loss: 0.1305 - accuracy: 0.9422 - mae: 0.1305 - pearson_correlation: 0.5825 - euclidean_distance: 0.2117
Epoch 121/250
152/152 [==============================] - 0s 788us/step - loss: 0.1303 - accuracy: 0.9449 - mae: 0.1303 - pearson_correlation: 0.5919 - euclidean_distance: 0.2116
Epoch 122/250
152/152 [==============================] - 0s 807us/step - loss: 0.1295 - accuracy: 0.9374 - mae: 0.1295 - pearson_correlation: 0.5922 - euclidean_distance: 0.2098
Epoch 123/250
152/152 [==============================] - 0s 806us/step - loss: 0.1274 - accuracy: 0.9413 - mae: 0.1274 - pearson_correlation: 0.5893 - euclidean_distance: 0.2081
Epoch 124/250
152/152 [==============================] - 0s 805us/step - loss: 0.1290 - accuracy: 0.9413 - mae: 0.1290 - pearson_correlation: 0.5928 - euclidean_distance: 0.2093
Epoch 125/250
152/152 [==============================] - 0s 798us/step - loss: 0.1277 - accuracy: 0.9404 - mae: 0.1277 - pearson_correlation: 0.5964 - euclidean_distance: 0.2071
Epoch 126/250
152/152 [==============================] - 0s 802us/step - loss: 0.1266 - accuracy: 0.9449 - mae: 0.1266 - pearson_correlation: 0.6052 - euclidean_distance: 0.2051
Epoch 127/250
152/152 [==============================] - 0s 797us/step - loss: 0.1246 - accuracy: 0.9444 - mae: 0.1246 - pearson_correlation: 0.6129 - euclidean_distance: 0.2025
Epoch 128/250
152/152 [==============================] - 0s 790us/step - loss: 0.1248 - accuracy: 0.9466 - mae: 0.1248 - pearson_correlation: 0.6160 - euclidean_distance: 0.2025
Epoch 129/250
152/152 [==============================] - 0s 798us/step - loss: 0.1230 - accuracy: 0.9488 - mae: 0.1230 - pearson_correlation: 0.6168 - euclidean_distance: 0.1996
Epoch 130/250
152/152 [==============================] - 0s 797us/step - loss: 0.1248 - accuracy: 0.9475 - mae: 0.1248 - pearson_correlation: 0.6233 - euclidean_distance: 0.2015
Epoch 131/250
152/152 [==============================] - 0s 796us/step - loss: 0.1231 - accuracy: 0.9493 - mae: 0.1231 - pearson_correlation: 0.6203 - euclidean_distance: 0.1993
Epoch 132/250
152/152 [==============================] - 0s 801us/step - loss: 0.1211 - accuracy: 0.9497 - mae: 0.1211 - pearson_correlation: 0.6277 - euclidean_distance: 0.1969
Epoch 133/250
152/152 [==============================] - 0s 795us/step - loss: 0.1209 - accuracy: 0.9515 - mae: 0.1209 - pearson_correlation: 0.6306 - euclidean_distance: 0.1956
Epoch 134/250
152/152 [==============================] - 0s 796us/step - loss: 0.1204 - accuracy: 0.9515 - mae: 0.1204 - pearson_correlation: 0.6274 - euclidean_distance: 0.1950
Epoch 135/250
152/152 [==============================] - 0s 799us/step - loss: 0.1199 - accuracy: 0.9515 - mae: 0.1199 - pearson_correlation: 0.6449 - euclidean_distance: 0.1937
Epoch 136/250
152/152 [==============================] - 0s 798us/step - loss: 0.1222 - accuracy: 0.9502 - mae: 0.1222 - pearson_correlation: 0.6223 - euclidean_distance: 0.1971
Epoch 137/250
152/152 [==============================] - 0s 802us/step - loss: 0.1169 - accuracy: 0.9519 - mae: 0.1169 - pearson_correlation: 0.6515 - euclidean_distance: 0.1895
Epoch 138/250
152/152 [==============================] - 0s 801us/step - loss: 0.1170 - accuracy: 0.9532 - mae: 0.1170 - pearson_correlation: 0.6501 - euclidean_distance: 0.1896
Epoch 139/250
152/152 [==============================] - 0s 799us/step - loss: 0.1193 - accuracy: 0.9537 - mae: 0.1193 - pearson_correlation: 0.6469 - euclidean_distance: 0.1931
Epoch 140/250
152/152 [==============================] - 0s 796us/step - loss: 0.1155 - accuracy: 0.9537 - mae: 0.1155 - pearson_correlation: 0.6497 - euclidean_distance: 0.1868
Epoch 141/250
152/152 [==============================] - 0s 806us/step - loss: 0.1154 - accuracy: 0.9532 - mae: 0.1154 - pearson_correlation: 0.6622 - euclidean_distance: 0.1861
Epoch 142/250
152/152 [==============================] - 0s 822us/step - loss: 0.1136 - accuracy: 0.9532 - mae: 0.1136 - pearson_correlation: 0.6693 - euclidean_distance: 0.1836
Epoch 143/250
152/152 [==============================] - 0s 801us/step - loss: 0.1159 - accuracy: 0.9546 - mae: 0.1159 - pearson_correlation: 0.6593 - euclidean_distance: 0.1871
Epoch 144/250
152/152 [==============================] - 0s 790us/step - loss: 0.1130 - accuracy: 0.9537 - mae: 0.1130 - pearson_correlation: 0.6643 - euclidean_distance: 0.1828
Epoch 145/250
152/152 [==============================] - 0s 796us/step - loss: 0.1122 - accuracy: 0.9554 - mae: 0.1122 - pearson_correlation: 0.6688 - euclidean_distance: 0.1819
Epoch 146/250
152/152 [==============================] - 0s 804us/step - loss: 0.1120 - accuracy: 0.9537 - mae: 0.1120 - pearson_correlation: 0.6709 - euclidean_distance: 0.1807
Epoch 147/250
152/152 [==============================] - 0s 803us/step - loss: 0.1111 - accuracy: 0.9550 - mae: 0.1111 - pearson_correlation: 0.6827 - euclidean_distance: 0.1794
Epoch 148/250
152/152 [==============================] - 0s 799us/step - loss: 0.1110 - accuracy: 0.9541 - mae: 0.1110 - pearson_correlation: 0.6821 - euclidean_distance: 0.1792
Epoch 149/250
152/152 [==============================] - 0s 800us/step - loss: 0.1098 - accuracy: 0.9546 - mae: 0.1098 - pearson_correlation: 0.6886 - euclidean_distance: 0.1771
Epoch 150/250
152/152 [==============================] - 0s 800us/step - loss: 0.1108 - accuracy: 0.9546 - mae: 0.1108 - pearson_correlation: 0.6808 - euclidean_distance: 0.1786
Epoch 151/250
152/152 [==============================] - 0s 791us/step - loss: 0.1123 - accuracy: 0.9550 - mae: 0.1123 - pearson_correlation: 0.6809 - euclidean_distance: 0.1803
Epoch 152/250
152/152 [==============================] - 0s 797us/step - loss: 0.1112 - accuracy: 0.9554 - mae: 0.1112 - pearson_correlation: 0.6830 - euclidean_distance: 0.1792
Epoch 153/250
152/152 [==============================] - 0s 791us/step - loss: 0.1096 - accuracy: 0.9559 - mae: 0.1096 - pearson_correlation: 0.6888 - euclidean_distance: 0.1763
Epoch 154/250
152/152 [==============================] - 0s 795us/step - loss: 0.1082 - accuracy: 0.9559 - mae: 0.1082 - pearson_correlation: 0.6971 - euclidean_distance: 0.1738
Epoch 155/250
152/152 [==============================] - 0s 789us/step - loss: 0.1070 - accuracy: 0.9554 - mae: 0.1070 - pearson_correlation: 0.6978 - euclidean_distance: 0.1725
Epoch 156/250
152/152 [==============================] - 0s 801us/step - loss: 0.1066 - accuracy: 0.9546 - mae: 0.1066 - pearson_correlation: 0.6930 - euclidean_distance: 0.1717
Epoch 157/250
152/152 [==============================] - 0s 800us/step - loss: 0.1063 - accuracy: 0.9554 - mae: 0.1063 - pearson_correlation: 0.6954 - euclidean_distance: 0.1716
Epoch 158/250
152/152 [==============================] - 0s 795us/step - loss: 0.1055 - accuracy: 0.9550 - mae: 0.1055 - pearson_correlation: 0.7038 - euclidean_distance: 0.1690
Epoch 159/250
152/152 [==============================] - 0s 795us/step - loss: 0.1077 - accuracy: 0.9554 - mae: 0.1077 - pearson_correlation: 0.7019 - euclidean_distance: 0.1729
Epoch 160/250
152/152 [==============================] - 0s 797us/step - loss: 0.1070 - accuracy: 0.9554 - mae: 0.1070 - pearson_correlation: 0.6963 - euclidean_distance: 0.1720
Epoch 161/250
152/152 [==============================] - 0s 799us/step - loss: 0.1066 - accuracy: 0.9563 - mae: 0.1066 - pearson_correlation: 0.7053 - euclidean_distance: 0.1710
Epoch 162/250
152/152 [==============================] - 0s 796us/step - loss: 0.1049 - accuracy: 0.9554 - mae: 0.1049 - pearson_correlation: 0.7011 - euclidean_distance: 0.1688
Epoch 163/250
152/152 [==============================] - 0s 788us/step - loss: 0.1061 - accuracy: 0.9554 - mae: 0.1061 - pearson_correlation: 0.7058 - euclidean_distance: 0.1701
Epoch 164/250
152/152 [==============================] - 0s 790us/step - loss: 0.1028 - accuracy: 0.9559 - mae: 0.1028 - pearson_correlation: 0.7093 - euclidean_distance: 0.1655
Epoch 165/250
152/152 [==============================] - 0s 805us/step - loss: 0.1030 - accuracy: 0.9559 - mae: 0.1030 - pearson_correlation: 0.7119 - euclidean_distance: 0.1654
Epoch 166/250
152/152 [==============================] - 0s 804us/step - loss: 0.1014 - accuracy: 0.9559 - mae: 0.1014 - pearson_correlation: 0.7115 - euclidean_distance: 0.1629
Epoch 167/250
152/152 [==============================] - 0s 795us/step - loss: 0.1023 - accuracy: 0.9554 - mae: 0.1023 - pearson_correlation: 0.7117 - euclidean_distance: 0.1642
Epoch 168/250
152/152 [==============================] - 0s 799us/step - loss: 0.1038 - accuracy: 0.9559 - mae: 0.1038 - pearson_correlation: 0.7127 - euclidean_distance: 0.1666
Epoch 169/250
152/152 [==============================] - 0s 801us/step - loss: 0.1010 - accuracy: 0.9559 - mae: 0.1010 - pearson_correlation: 0.7177 - euclidean_distance: 0.1621
Epoch 170/250
152/152 [==============================] - 0s 797us/step - loss: 0.1039 - accuracy: 0.9563 - mae: 0.1039 - pearson_correlation: 0.7104 - euclidean_distance: 0.1664
Epoch 171/250
152/152 [==============================] - 0s 799us/step - loss: 0.1006 - accuracy: 0.9563 - mae: 0.1006 - pearson_correlation: 0.7262 - euclidean_distance: 0.1611
Epoch 172/250
152/152 [==============================] - 0s 797us/step - loss: 0.1032 - accuracy: 0.9563 - mae: 0.1032 - pearson_correlation: 0.7143 - euclidean_distance: 0.1653
Epoch 173/250
152/152 [==============================] - 0s 793us/step - loss: 0.1022 - accuracy: 0.9559 - mae: 0.1022 - pearson_correlation: 0.7169 - euclidean_distance: 0.1635
Epoch 174/250
152/152 [==============================] - 0s 802us/step - loss: 0.1012 - accuracy: 0.9559 - mae: 0.1012 - pearson_correlation: 0.7235 - euclidean_distance: 0.1622
Epoch 175/250
152/152 [==============================] - 0s 795us/step - loss: 0.1028 - accuracy: 0.9559 - mae: 0.1028 - pearson_correlation: 0.7163 - euclidean_distance: 0.1638
Epoch 176/250
152/152 [==============================] - 0s 798us/step - loss: 0.1031 - accuracy: 0.9563 - mae: 0.1031 - pearson_correlation: 0.7147 - euclidean_distance: 0.1647
Epoch 177/250
152/152 [==============================] - 0s 794us/step - loss: 0.1006 - accuracy: 0.9559 - mae: 0.1006 - pearson_correlation: 0.7244 - euclidean_distance: 0.1615
Epoch 178/250
152/152 [==============================] - 0s 796us/step - loss: 0.1008 - accuracy: 0.9554 - mae: 0.1008 - pearson_correlation: 0.7267 - euclidean_distance: 0.1615
Epoch 179/250
152/152 [==============================] - 0s 796us/step - loss: 0.1010 - accuracy: 0.9563 - mae: 0.1010 - pearson_correlation: 0.7261 - euclidean_distance: 0.1615
Epoch 180/250
152/152 [==============================] - 0s 805us/step - loss: 0.0986 - accuracy: 0.9559 - mae: 0.0986 - pearson_correlation: 0.7323 - euclidean_distance: 0.1576
Epoch 181/250
152/152 [==============================] - 0s 805us/step - loss: 0.0984 - accuracy: 0.9563 - mae: 0.0984 - pearson_correlation: 0.7301 - euclidean_distance: 0.1574
Epoch 182/250
152/152 [==============================] - 0s 805us/step - loss: 0.0985 - accuracy: 0.9559 - mae: 0.0985 - pearson_correlation: 0.7288 - euclidean_distance: 0.1579
Epoch 183/250
152/152 [==============================] - 0s 792us/step - loss: 0.0991 - accuracy: 0.9563 - mae: 0.0991 - pearson_correlation: 0.7340 - euclidean_distance: 0.1583
Epoch 184/250
152/152 [==============================] - 0s 793us/step - loss: 0.0948 - accuracy: 0.9563 - mae: 0.0948 - pearson_correlation: 0.7435 - euclidean_distance: 0.1515
Epoch 185/250
152/152 [==============================] - 0s 791us/step - loss: 0.0970 - accuracy: 0.9559 - mae: 0.0970 - pearson_correlation: 0.7401 - euclidean_distance: 0.1544
Epoch 186/250
152/152 [==============================] - 0s 799us/step - loss: 0.0990 - accuracy: 0.9563 - mae: 0.0990 - pearson_correlation: 0.7304 - euclidean_distance: 0.1579
Epoch 187/250
152/152 [==============================] - 0s 794us/step - loss: 0.0990 - accuracy: 0.9563 - mae: 0.0990 - pearson_correlation: 0.7384 - euclidean_distance: 0.1582
Epoch 188/250
152/152 [==============================] - 0s 795us/step - loss: 0.0961 - accuracy: 0.9563 - mae: 0.0961 - pearson_correlation: 0.7437 - euclidean_distance: 0.1533
Epoch 189/250
152/152 [==============================] - 0s 799us/step - loss: 0.0987 - accuracy: 0.9563 - mae: 0.0987 - pearson_correlation: 0.7342 - euclidean_distance: 0.1577
Epoch 190/250
152/152 [==============================] - 0s 798us/step - loss: 0.0978 - accuracy: 0.9563 - mae: 0.0978 - pearson_correlation: 0.7320 - euclidean_distance: 0.1561
Epoch 191/250
152/152 [==============================] - 0s 831us/step - loss: 0.0972 - accuracy: 0.9563 - mae: 0.0972 - pearson_correlation: 0.7304 - euclidean_distance: 0.1550
Epoch 192/250
152/152 [==============================] - 0s 876us/step - loss: 0.0959 - accuracy: 0.9559 - mae: 0.0959 - pearson_correlation: 0.7437 - euclidean_distance: 0.1532
Epoch 193/250
152/152 [==============================] - 0s 897us/step - loss: 0.0977 - accuracy: 0.9563 - mae: 0.0977 - pearson_correlation: 0.7390 - euclidean_distance: 0.1562
Epoch 194/250
152/152 [==============================] - 0s 909us/step - loss: 0.0943 - accuracy: 0.9563 - mae: 0.0943 - pearson_correlation: 0.7473 - euclidean_distance: 0.1506
Epoch 195/250
152/152 [==============================] - 0s 900us/step - loss: 0.0966 - accuracy: 0.9563 - mae: 0.0966 - pearson_correlation: 0.7434 - euclidean_distance: 0.1539
Epoch 196/250
152/152 [==============================] - 0s 804us/step - loss: 0.0962 - accuracy: 0.9559 - mae: 0.0962 - pearson_correlation: 0.7417 - euclidean_distance: 0.1535
Epoch 197/250
152/152 [==============================] - 0s 805us/step - loss: 0.0963 - accuracy: 0.9563 - mae: 0.0963 - pearson_correlation: 0.7476 - euclidean_distance: 0.1531
Epoch 198/250
152/152 [==============================] - 0s 806us/step - loss: 0.0964 - accuracy: 0.9563 - mae: 0.0964 - pearson_correlation: 0.7397 - euclidean_distance: 0.1537
Epoch 199/250
152/152 [==============================] - 0s 803us/step - loss: 0.0951 - accuracy: 0.9563 - mae: 0.0951 - pearson_correlation: 0.7414 - euclidean_distance: 0.1515
Epoch 200/250
152/152 [==============================] - 0s 806us/step - loss: 0.0958 - accuracy: 0.9563 - mae: 0.0958 - pearson_correlation: 0.7437 - euclidean_distance: 0.1526
Epoch 201/250
152/152 [==============================] - 0s 801us/step - loss: 0.0970 - accuracy: 0.9563 - mae: 0.0970 - pearson_correlation: 0.7349 - euclidean_distance: 0.1550
Epoch 202/250
152/152 [==============================] - 0s 799us/step - loss: 0.0932 - accuracy: 0.9563 - mae: 0.0932 - pearson_correlation: 0.7502 - euclidean_distance: 0.1487
Epoch 203/250
152/152 [==============================] - 0s 798us/step - loss: 0.0947 - accuracy: 0.9563 - mae: 0.0947 - pearson_correlation: 0.7483 - euclidean_distance: 0.1513
Epoch 204/250
152/152 [==============================] - 0s 793us/step - loss: 0.0935 - accuracy: 0.9563 - mae: 0.0935 - pearson_correlation: 0.7508 - euclidean_distance: 0.1493
Epoch 205/250
152/152 [==============================] - 0s 800us/step - loss: 0.0931 - accuracy: 0.9563 - mae: 0.0931 - pearson_correlation: 0.7496 - euclidean_distance: 0.1487
Epoch 206/250
152/152 [==============================] - 0s 794us/step - loss: 0.0932 - accuracy: 0.9563 - mae: 0.0932 - pearson_correlation: 0.7521 - euclidean_distance: 0.1485
Epoch 207/250
152/152 [==============================] - 0s 799us/step - loss: 0.0968 - accuracy: 0.9559 - mae: 0.0968 - pearson_correlation: 0.7431 - euclidean_distance: 0.1541
Epoch 208/250
152/152 [==============================] - 0s 796us/step - loss: 0.0923 - accuracy: 0.9563 - mae: 0.0923 - pearson_correlation: 0.7568 - euclidean_distance: 0.1473
Epoch 209/250
152/152 [==============================] - 0s 797us/step - loss: 0.0933 - accuracy: 0.9563 - mae: 0.0933 - pearson_correlation: 0.7528 - euclidean_distance: 0.1488
Epoch 210/250
152/152 [==============================] - 0s 803us/step - loss: 0.0921 - accuracy: 0.9563 - mae: 0.0921 - pearson_correlation: 0.7582 - euclidean_distance: 0.1468
Epoch 211/250
152/152 [==============================] - 0s 800us/step - loss: 0.0941 - accuracy: 0.9563 - mae: 0.0941 - pearson_correlation: 0.7460 - euclidean_distance: 0.1498
Epoch 212/250
152/152 [==============================] - 0s 795us/step - loss: 0.0945 - accuracy: 0.9563 - mae: 0.0945 - pearson_correlation: 0.7397 - euclidean_distance: 0.1502
Epoch 213/250
152/152 [==============================] - 0s 803us/step - loss: 0.0968 - accuracy: 0.9563 - mae: 0.0968 - pearson_correlation: 0.7402 - euclidean_distance: 0.1537
Epoch 214/250
152/152 [==============================] - 0s 802us/step - loss: 0.0932 - accuracy: 0.9563 - mae: 0.0932 - pearson_correlation: 0.7544 - euclidean_distance: 0.1487
Epoch 215/250
152/152 [==============================] - 0s 795us/step - loss: 0.0907 - accuracy: 0.9563 - mae: 0.0907 - pearson_correlation: 0.7582 - euclidean_distance: 0.1446
Epoch 216/250
152/152 [==============================] - 0s 801us/step - loss: 0.0905 - accuracy: 0.9563 - mae: 0.0905 - pearson_correlation: 0.7640 - euclidean_distance: 0.1444
Epoch 217/250
152/152 [==============================] - 0s 791us/step - loss: 0.0901 - accuracy: 0.9563 - mae: 0.0901 - pearson_correlation: 0.7517 - euclidean_distance: 0.1441
Epoch 218/250
152/152 [==============================] - 0s 797us/step - loss: 0.0915 - accuracy: 0.9563 - mae: 0.0915 - pearson_correlation: 0.7532 - euclidean_distance: 0.1457
Epoch 219/250
152/152 [==============================] - 0s 792us/step - loss: 0.0909 - accuracy: 0.9563 - mae: 0.0909 - pearson_correlation: 0.7609 - euclidean_distance: 0.1448
Epoch 220/250
152/152 [==============================] - 0s 795us/step - loss: 0.0922 - accuracy: 0.9563 - mae: 0.0922 - pearson_correlation: 0.7554 - euclidean_distance: 0.1466
Epoch 221/250
152/152 [==============================] - 0s 794us/step - loss: 0.0916 - accuracy: 0.9563 - mae: 0.0916 - pearson_correlation: 0.7588 - euclidean_distance: 0.1462
Epoch 222/250
152/152 [==============================] - 0s 796us/step - loss: 0.0914 - accuracy: 0.9563 - mae: 0.0914 - pearson_correlation: 0.7594 - euclidean_distance: 0.1457
Epoch 223/250
152/152 [==============================] - 0s 806us/step - loss: 0.0929 - accuracy: 0.9563 - mae: 0.0929 - pearson_correlation: 0.7517 - euclidean_distance: 0.1476
Epoch 224/250
152/152 [==============================] - 0s 797us/step - loss: 0.0909 - accuracy: 0.9563 - mae: 0.0909 - pearson_correlation: 0.7548 - euclidean_distance: 0.1450
Epoch 225/250
152/152 [==============================] - 0s 794us/step - loss: 0.0920 - accuracy: 0.9563 - mae: 0.0920 - pearson_correlation: 0.7557 - euclidean_distance: 0.1466
Epoch 226/250
152/152 [==============================] - 0s 797us/step - loss: 0.0891 - accuracy: 0.9563 - mae: 0.0891 - pearson_correlation: 0.7609 - euclidean_distance: 0.1426
Epoch 227/250
152/152 [==============================] - 0s 800us/step - loss: 0.0898 - accuracy: 0.9563 - mae: 0.0898 - pearson_correlation: 0.7595 - euclidean_distance: 0.1437
Epoch 228/250
152/152 [==============================] - 0s 816us/step - loss: 0.0889 - accuracy: 0.9563 - mae: 0.0889 - pearson_correlation: 0.7617 - euclidean_distance: 0.1419
Epoch 229/250
152/152 [==============================] - 0s 805us/step - loss: 0.0887 - accuracy: 0.9563 - mae: 0.0887 - pearson_correlation: 0.7675 - euclidean_distance: 0.1412
Epoch 230/250
152/152 [==============================] - 0s 796us/step - loss: 0.0920 - accuracy: 0.9563 - mae: 0.0920 - pearson_correlation: 0.7613 - euclidean_distance: 0.1464
Epoch 231/250
152/152 [==============================] - 0s 797us/step - loss: 0.0922 - accuracy: 0.9563 - mae: 0.0922 - pearson_correlation: 0.7550 - euclidean_distance: 0.1469
Epoch 232/250
152/152 [==============================] - 0s 798us/step - loss: 0.0907 - accuracy: 0.9563 - mae: 0.0907 - pearson_correlation: 0.7610 - euclidean_distance: 0.1446
Epoch 233/250
152/152 [==============================] - 0s 800us/step - loss: 0.0900 - accuracy: 0.9563 - mae: 0.0900 - pearson_correlation: 0.7622 - euclidean_distance: 0.1435
Epoch 234/250
152/152 [==============================] - 0s 798us/step - loss: 0.0899 - accuracy: 0.9563 - mae: 0.0899 - pearson_correlation: 0.7549 - euclidean_distance: 0.1435
Epoch 235/250
152/152 [==============================] - 0s 808us/step - loss: 0.0916 - accuracy: 0.9563 - mae: 0.0916 - pearson_correlation: 0.7591 - euclidean_distance: 0.1453
Epoch 236/250
152/152 [==============================] - 0s 787us/step - loss: 0.0889 - accuracy: 0.9563 - mae: 0.0889 - pearson_correlation: 0.7621 - euclidean_distance: 0.1419
Epoch 237/250
152/152 [==============================] - 0s 795us/step - loss: 0.0907 - accuracy: 0.9563 - mae: 0.0907 - pearson_correlation: 0.7607 - euclidean_distance: 0.1442
Epoch 238/250
152/152 [==============================] - 0s 802us/step - loss: 0.0902 - accuracy: 0.9563 - mae: 0.0902 - pearson_correlation: 0.7600 - euclidean_distance: 0.1434
Epoch 239/250
152/152 [==============================] - 0s 804us/step - loss: 0.0901 - accuracy: 0.9563 - mae: 0.0901 - pearson_correlation: 0.7636 - euclidean_distance: 0.1435
Epoch 240/250
152/152 [==============================] - 0s 799us/step - loss: 0.0897 - accuracy: 0.9563 - mae: 0.0897 - pearson_correlation: 0.7630 - euclidean_distance: 0.1430
Epoch 241/250
152/152 [==============================] - 0s 796us/step - loss: 0.0896 - accuracy: 0.9563 - mae: 0.0896 - pearson_correlation: 0.7676 - euclidean_distance: 0.1431
Epoch 242/250
152/152 [==============================] - 0s 802us/step - loss: 0.0875 - accuracy: 0.9563 - mae: 0.0875 - pearson_correlation: 0.7638 - euclidean_distance: 0.1396
Epoch 243/250
152/152 [==============================] - 0s 797us/step - loss: 0.0869 - accuracy: 0.9563 - mae: 0.0869 - pearson_correlation: 0.7718 - euclidean_distance: 0.1388
Epoch 244/250
152/152 [==============================] - 0s 797us/step - loss: 0.0874 - accuracy: 0.9563 - mae: 0.0874 - pearson_correlation: 0.7649 - euclidean_distance: 0.1398
Epoch 245/250
152/152 [==============================] - 0s 800us/step - loss: 0.0892 - accuracy: 0.9563 - mae: 0.0892 - pearson_correlation: 0.7656 - euclidean_distance: 0.1420
Epoch 246/250
152/152 [==============================] - 0s 788us/step - loss: 0.0888 - accuracy: 0.9563 - mae: 0.0888 - pearson_correlation: 0.7665 - euclidean_distance: 0.1411
Epoch 247/250
152/152 [==============================] - 0s 800us/step - loss: 0.0898 - accuracy: 0.9563 - mae: 0.0898 - pearson_correlation: 0.7566 - euclidean_distance: 0.1433
Epoch 248/250
152/152 [==============================] - 0s 792us/step - loss: 0.0907 - accuracy: 0.9563 - mae: 0.0907 - pearson_correlation: 0.7618 - euclidean_distance: 0.1447
Epoch 249/250
152/152 [==============================] - 0s 795us/step - loss: 0.0899 - accuracy: 0.9563 - mae: 0.0899 - pearson_correlation: 0.7627 - euclidean_distance: 0.1428
Epoch 250/250
152/152 [==============================] - 0s 794us/step - loss: 0.0877 - accuracy: 0.9563 - mae: 0.0877 - pearson_correlation: 0.7650 - euclidean_distance: 0.1401
76/76 [==============================] - 0s 425us/step
Epoch 1/250
152/152 [==============================] - 1s 815us/step - loss: 0.5963 - accuracy: 0.8531 - mae: 0.5963 - pearson_correlation: 0.4347 - euclidean_distance: 0.8788
Epoch 2/250
152/152 [==============================] - 0s 804us/step - loss: 0.5844 - accuracy: 0.8381 - mae: 0.5844 - pearson_correlation: 0.4231 - euclidean_distance: 0.8634
Epoch 3/250
152/152 [==============================] - 0s 809us/step - loss: 0.5753 - accuracy: 0.8408 - mae: 0.5753 - pearson_correlation: 0.4122 - euclidean_distance: 0.8503
Epoch 4/250
152/152 [==============================] - 0s 805us/step - loss: 0.5634 - accuracy: 0.8174 - mae: 0.5634 - pearson_correlation: 0.4013 - euclidean_distance: 0.8336
Epoch 5/250
152/152 [==============================] - 0s 806us/step - loss: 0.5549 - accuracy: 0.8205 - mae: 0.5549 - pearson_correlation: 0.3993 - euclidean_distance: 0.8213
Epoch 6/250
152/152 [==============================] - 0s 805us/step - loss: 0.5429 - accuracy: 0.8249 - mae: 0.5429 - pearson_correlation: 0.3953 - euclidean_distance: 0.8045
Epoch 7/250
152/152 [==============================] - 0s 815us/step - loss: 0.5330 - accuracy: 0.8011 - mae: 0.5330 - pearson_correlation: 0.3693 - euclidean_distance: 0.7903
Epoch 8/250
152/152 [==============================] - 0s 804us/step - loss: 0.5227 - accuracy: 0.7931 - mae: 0.5227 - pearson_correlation: 0.3698 - euclidean_distance: 0.7760
Epoch 9/250
152/152 [==============================] - 0s 808us/step - loss: 0.5105 - accuracy: 0.7936 - mae: 0.5105 - pearson_correlation: 0.3767 - euclidean_distance: 0.7588
Epoch 10/250
152/152 [==============================] - 0s 806us/step - loss: 0.5027 - accuracy: 0.7861 - mae: 0.5027 - pearson_correlation: 0.3598 - euclidean_distance: 0.7475
Epoch 11/250
152/152 [==============================] - 0s 803us/step - loss: 0.4942 - accuracy: 0.7834 - mae: 0.4942 - pearson_correlation: 0.3523 - euclidean_distance: 0.7354
Epoch 12/250
152/152 [==============================] - 0s 809us/step - loss: 0.4825 - accuracy: 0.7878 - mae: 0.4825 - pearson_correlation: 0.3433 - euclidean_distance: 0.7186
Epoch 13/250
152/152 [==============================] - 0s 803us/step - loss: 0.4724 - accuracy: 0.7706 - mae: 0.4724 - pearson_correlation: 0.3424 - euclidean_distance: 0.7054
Epoch 14/250
152/152 [==============================] - 0s 802us/step - loss: 0.4634 - accuracy: 0.7662 - mae: 0.4634 - pearson_correlation: 0.3280 - euclidean_distance: 0.6939
Epoch 15/250
152/152 [==============================] - 0s 799us/step - loss: 0.4562 - accuracy: 0.7671 - mae: 0.4562 - pearson_correlation: 0.3209 - euclidean_distance: 0.6824
Epoch 16/250
152/152 [==============================] - 0s 816us/step - loss: 0.4447 - accuracy: 0.7569 - mae: 0.4447 - pearson_correlation: 0.3089 - euclidean_distance: 0.6661
Epoch 17/250
152/152 [==============================] - 0s 806us/step - loss: 0.4363 - accuracy: 0.7592 - mae: 0.4363 - pearson_correlation: 0.3081 - euclidean_distance: 0.6552
Epoch 18/250
152/152 [==============================] - 0s 804us/step - loss: 0.4258 - accuracy: 0.7508 - mae: 0.4258 - pearson_correlation: 0.2997 - euclidean_distance: 0.6414
Epoch 19/250
152/152 [==============================] - 0s 804us/step - loss: 0.4198 - accuracy: 0.7406 - mae: 0.4198 - pearson_correlation: 0.2932 - euclidean_distance: 0.6326
Epoch 20/250
152/152 [==============================] - 0s 804us/step - loss: 0.4120 - accuracy: 0.7305 - mae: 0.4120 - pearson_correlation: 0.2831 - euclidean_distance: 0.6219
Epoch 21/250
152/152 [==============================] - 0s 805us/step - loss: 0.4009 - accuracy: 0.7358 - mae: 0.4009 - pearson_correlation: 0.2857 - euclidean_distance: 0.6072
Epoch 22/250
152/152 [==============================] - 0s 808us/step - loss: 0.3929 - accuracy: 0.7256 - mae: 0.3929 - pearson_correlation: 0.2806 - euclidean_distance: 0.5967
Epoch 23/250
152/152 [==============================] - 0s 801us/step - loss: 0.3851 - accuracy: 0.7318 - mae: 0.3851 - pearson_correlation: 0.2714 - euclidean_distance: 0.5859
Epoch 24/250
152/152 [==============================] - 0s 806us/step - loss: 0.3759 - accuracy: 0.7212 - mae: 0.3759 - pearson_correlation: 0.2602 - euclidean_distance: 0.5718
Epoch 25/250
152/152 [==============================] - 0s 800us/step - loss: 0.3701 - accuracy: 0.7150 - mae: 0.3701 - pearson_correlation: 0.2570 - euclidean_distance: 0.5660
Epoch 26/250
152/152 [==============================] - 0s 794us/step - loss: 0.3638 - accuracy: 0.7168 - mae: 0.3638 - pearson_correlation: 0.2460 - euclidean_distance: 0.5565
Epoch 27/250
152/152 [==============================] - 0s 804us/step - loss: 0.3544 - accuracy: 0.7186 - mae: 0.3544 - pearson_correlation: 0.2496 - euclidean_distance: 0.5438
Epoch 28/250
152/152 [==============================] - 0s 803us/step - loss: 0.3521 - accuracy: 0.7045 - mae: 0.3521 - pearson_correlation: 0.2508 - euclidean_distance: 0.5402
Epoch 29/250
152/152 [==============================] - 0s 802us/step - loss: 0.3434 - accuracy: 0.7014 - mae: 0.3434 - pearson_correlation: 0.2432 - euclidean_distance: 0.5284
Epoch 30/250
152/152 [==============================] - 0s 804us/step - loss: 0.3360 - accuracy: 0.7111 - mae: 0.3360 - pearson_correlation: 0.2485 - euclidean_distance: 0.5183
Epoch 31/250
152/152 [==============================] - 0s 798us/step - loss: 0.3292 - accuracy: 0.7049 - mae: 0.3292 - pearson_correlation: 0.2416 - euclidean_distance: 0.5096
Epoch 32/250
152/152 [==============================] - 0s 802us/step - loss: 0.3221 - accuracy: 0.7159 - mae: 0.3221 - pearson_correlation: 0.2516 - euclidean_distance: 0.4989
Epoch 33/250
152/152 [==============================] - 0s 803us/step - loss: 0.3185 - accuracy: 0.7053 - mae: 0.3185 - pearson_correlation: 0.2452 - euclidean_distance: 0.4946
Epoch 34/250
152/152 [==============================] - 0s 802us/step - loss: 0.3132 - accuracy: 0.7067 - mae: 0.3132 - pearson_correlation: 0.2473 - euclidean_distance: 0.4869
Epoch 35/250
152/152 [==============================] - 0s 803us/step - loss: 0.3080 - accuracy: 0.7075 - mae: 0.3080 - pearson_correlation: 0.2345 - euclidean_distance: 0.4791
Epoch 36/250
152/152 [==============================] - 0s 801us/step - loss: 0.3034 - accuracy: 0.6965 - mae: 0.3034 - pearson_correlation: 0.2428 - euclidean_distance: 0.4725
Epoch 37/250
152/152 [==============================] - 0s 803us/step - loss: 0.2966 - accuracy: 0.7031 - mae: 0.2966 - pearson_correlation: 0.2448 - euclidean_distance: 0.4626
Epoch 38/250
152/152 [==============================] - 0s 803us/step - loss: 0.2924 - accuracy: 0.7022 - mae: 0.2924 - pearson_correlation: 0.2556 - euclidean_distance: 0.4569
Epoch 39/250
152/152 [==============================] - 0s 799us/step - loss: 0.2875 - accuracy: 0.7031 - mae: 0.2875 - pearson_correlation: 0.2507 - euclidean_distance: 0.4504
Epoch 40/250
152/152 [==============================] - 0s 804us/step - loss: 0.2846 - accuracy: 0.7040 - mae: 0.2846 - pearson_correlation: 0.2410 - euclidean_distance: 0.4463
Epoch 41/250
152/152 [==============================] - 0s 800us/step - loss: 0.2783 - accuracy: 0.7128 - mae: 0.2783 - pearson_correlation: 0.2557 - euclidean_distance: 0.4372
Epoch 42/250
152/152 [==============================] - 0s 805us/step - loss: 0.2734 - accuracy: 0.6992 - mae: 0.2734 - pearson_correlation: 0.2550 - euclidean_distance: 0.4314
Epoch 43/250
152/152 [==============================] - 0s 799us/step - loss: 0.2711 - accuracy: 0.7005 - mae: 0.2711 - pearson_correlation: 0.2505 - euclidean_distance: 0.4279
Epoch 44/250
152/152 [==============================] - 0s 797us/step - loss: 0.2658 - accuracy: 0.7102 - mae: 0.2658 - pearson_correlation: 0.2687 - euclidean_distance: 0.4185
Epoch 45/250
152/152 [==============================] - 0s 797us/step - loss: 0.2630 - accuracy: 0.7005 - mae: 0.2630 - pearson_correlation: 0.2589 - euclidean_distance: 0.4159
Epoch 46/250
152/152 [==============================] - 0s 801us/step - loss: 0.2583 - accuracy: 0.7093 - mae: 0.2583 - pearson_correlation: 0.2629 - euclidean_distance: 0.4092
Epoch 47/250
152/152 [==============================] - 0s 800us/step - loss: 0.2556 - accuracy: 0.7053 - mae: 0.2556 - pearson_correlation: 0.2622 - euclidean_distance: 0.4055
Epoch 48/250
152/152 [==============================] - 0s 803us/step - loss: 0.2519 - accuracy: 0.7142 - mae: 0.2519 - pearson_correlation: 0.2710 - euclidean_distance: 0.4012
Epoch 49/250
152/152 [==============================] - 0s 809us/step - loss: 0.2492 - accuracy: 0.7155 - mae: 0.2492 - pearson_correlation: 0.2663 - euclidean_distance: 0.3964
Epoch 50/250
152/152 [==============================] - 0s 800us/step - loss: 0.2451 - accuracy: 0.7120 - mae: 0.2451 - pearson_correlation: 0.2721 - euclidean_distance: 0.3907
Epoch 51/250
152/152 [==============================] - 0s 799us/step - loss: 0.2408 - accuracy: 0.7115 - mae: 0.2408 - pearson_correlation: 0.2807 - euclidean_distance: 0.3848
Epoch 52/250
152/152 [==============================] - 0s 797us/step - loss: 0.2363 - accuracy: 0.7243 - mae: 0.2363 - pearson_correlation: 0.2874 - euclidean_distance: 0.3787
Epoch 53/250
152/152 [==============================] - 0s 798us/step - loss: 0.2332 - accuracy: 0.7270 - mae: 0.2332 - pearson_correlation: 0.2888 - euclidean_distance: 0.3748
Epoch 54/250
152/152 [==============================] - 0s 818us/step - loss: 0.2316 - accuracy: 0.7212 - mae: 0.2316 - pearson_correlation: 0.2881 - euclidean_distance: 0.3729
Epoch 55/250
152/152 [==============================] - 0s 802us/step - loss: 0.2317 - accuracy: 0.7252 - mae: 0.2317 - pearson_correlation: 0.2855 - euclidean_distance: 0.3725
Epoch 56/250
152/152 [==============================] - 0s 801us/step - loss: 0.2281 - accuracy: 0.7349 - mae: 0.2281 - pearson_correlation: 0.3013 - euclidean_distance: 0.3670
Epoch 57/250
152/152 [==============================] - 0s 800us/step - loss: 0.2244 - accuracy: 0.7265 - mae: 0.2244 - pearson_correlation: 0.2887 - euclidean_distance: 0.3639
Epoch 58/250
152/152 [==============================] - 0s 807us/step - loss: 0.2196 - accuracy: 0.7353 - mae: 0.2196 - pearson_correlation: 0.2935 - euclidean_distance: 0.3569
Epoch 59/250
152/152 [==============================] - 0s 800us/step - loss: 0.2219 - accuracy: 0.7309 - mae: 0.2219 - pearson_correlation: 0.2933 - euclidean_distance: 0.3591
Epoch 60/250
152/152 [==============================] - 0s 798us/step - loss: 0.2155 - accuracy: 0.7411 - mae: 0.2155 - pearson_correlation: 0.3029 - euclidean_distance: 0.3515
Epoch 61/250
152/152 [==============================] - 0s 804us/step - loss: 0.2151 - accuracy: 0.7314 - mae: 0.2151 - pearson_correlation: 0.3059 - euclidean_distance: 0.3501
Epoch 62/250
152/152 [==============================] - 0s 798us/step - loss: 0.2106 - accuracy: 0.7433 - mae: 0.2106 - pearson_correlation: 0.3140 - euclidean_distance: 0.3448
Epoch 63/250
152/152 [==============================] - 0s 801us/step - loss: 0.2082 - accuracy: 0.7397 - mae: 0.2082 - pearson_correlation: 0.3080 - euclidean_distance: 0.3407
Epoch 64/250
152/152 [==============================] - 0s 809us/step - loss: 0.2076 - accuracy: 0.7300 - mae: 0.2076 - pearson_correlation: 0.3074 - euclidean_distance: 0.3417
Epoch 65/250
152/152 [==============================] - 0s 893us/step - loss: 0.2064 - accuracy: 0.7353 - mae: 0.2064 - pearson_correlation: 0.3187 - euclidean_distance: 0.3383
Epoch 66/250
152/152 [==============================] - 0s 890us/step - loss: 0.2069 - accuracy: 0.7389 - mae: 0.2069 - pearson_correlation: 0.3125 - euclidean_distance: 0.3392
Epoch 67/250
152/152 [==============================] - 0s 928us/step - loss: 0.2015 - accuracy: 0.7472 - mae: 0.2015 - pearson_correlation: 0.3245 - euclidean_distance: 0.3320
Epoch 68/250
152/152 [==============================] - 0s 946us/step - loss: 0.2023 - accuracy: 0.7450 - mae: 0.2023 - pearson_correlation: 0.3240 - euclidean_distance: 0.3327
Epoch 69/250
152/152 [==============================] - 0s 810us/step - loss: 0.1989 - accuracy: 0.7446 - mae: 0.1989 - pearson_correlation: 0.3270 - euclidean_distance: 0.3294
Epoch 70/250
152/152 [==============================] - 0s 809us/step - loss: 0.1958 - accuracy: 0.7375 - mae: 0.1958 - pearson_correlation: 0.3254 - euclidean_distance: 0.3243
Epoch 71/250
152/152 [==============================] - 0s 810us/step - loss: 0.1982 - accuracy: 0.7419 - mae: 0.1982 - pearson_correlation: 0.3316 - euclidean_distance: 0.3273
Epoch 72/250
152/152 [==============================] - 0s 803us/step - loss: 0.1933 - accuracy: 0.7424 - mae: 0.1933 - pearson_correlation: 0.3312 - euclidean_distance: 0.3210
Epoch 73/250
152/152 [==============================] - 0s 807us/step - loss: 0.1953 - accuracy: 0.7464 - mae: 0.1953 - pearson_correlation: 0.3331 - euclidean_distance: 0.3221
Epoch 74/250
152/152 [==============================] - 0s 801us/step - loss: 0.1922 - accuracy: 0.7499 - mae: 0.1922 - pearson_correlation: 0.3467 - euclidean_distance: 0.3195
Epoch 75/250
152/152 [==============================] - 0s 803us/step - loss: 0.1905 - accuracy: 0.7539 - mae: 0.1905 - pearson_correlation: 0.3442 - euclidean_distance: 0.3158
Epoch 76/250
152/152 [==============================] - 0s 799us/step - loss: 0.1893 - accuracy: 0.7486 - mae: 0.1893 - pearson_correlation: 0.3476 - euclidean_distance: 0.3146
Epoch 77/250
152/152 [==============================] - 0s 803us/step - loss: 0.1887 - accuracy: 0.7521 - mae: 0.1887 - pearson_correlation: 0.3557 - euclidean_distance: 0.3130
Epoch 78/250
152/152 [==============================] - 0s 802us/step - loss: 0.1877 - accuracy: 0.7517 - mae: 0.1877 - pearson_correlation: 0.3565 - euclidean_distance: 0.3125
Epoch 79/250
152/152 [==============================] - 0s 799us/step - loss: 0.1842 - accuracy: 0.7552 - mae: 0.1842 - pearson_correlation: 0.3548 - euclidean_distance: 0.3079
Epoch 80/250
152/152 [==============================] - 0s 804us/step - loss: 0.1870 - accuracy: 0.7565 - mae: 0.1870 - pearson_correlation: 0.3434 - euclidean_distance: 0.3116
Epoch 81/250
152/152 [==============================] - 0s 799us/step - loss: 0.1845 - accuracy: 0.7508 - mae: 0.1845 - pearson_correlation: 0.3552 - euclidean_distance: 0.3083
Epoch 82/250
152/152 [==============================] - 0s 803us/step - loss: 0.1837 - accuracy: 0.7565 - mae: 0.1837 - pearson_correlation: 0.3494 - euclidean_distance: 0.3073
Epoch 83/250
152/152 [==============================] - 0s 807us/step - loss: 0.1817 - accuracy: 0.7614 - mae: 0.1817 - pearson_correlation: 0.3600 - euclidean_distance: 0.3036
Epoch 84/250
152/152 [==============================] - 0s 800us/step - loss: 0.1789 - accuracy: 0.7636 - mae: 0.1789 - pearson_correlation: 0.3760 - euclidean_distance: 0.2983
Epoch 85/250
152/152 [==============================] - 0s 800us/step - loss: 0.1805 - accuracy: 0.7614 - mae: 0.1805 - pearson_correlation: 0.3657 - euclidean_distance: 0.3010
Epoch 86/250
152/152 [==============================] - 0s 809us/step - loss: 0.1784 - accuracy: 0.7636 - mae: 0.1784 - pearson_correlation: 0.3725 - euclidean_distance: 0.2979
Epoch 87/250
152/152 [==============================] - 0s 808us/step - loss: 0.1806 - accuracy: 0.7565 - mae: 0.1806 - pearson_correlation: 0.3674 - euclidean_distance: 0.3019
Epoch 88/250
152/152 [==============================] - 0s 799us/step - loss: 0.1760 - accuracy: 0.7684 - mae: 0.1760 - pearson_correlation: 0.3716 - euclidean_distance: 0.2946
Epoch 89/250
152/152 [==============================] - 0s 802us/step - loss: 0.1740 - accuracy: 0.7622 - mae: 0.1740 - pearson_correlation: 0.3839 - euclidean_distance: 0.2922
Epoch 90/250
152/152 [==============================] - 0s 800us/step - loss: 0.1765 - accuracy: 0.7636 - mae: 0.1765 - pearson_correlation: 0.3846 - euclidean_distance: 0.2964
Epoch 91/250
152/152 [==============================] - 0s 801us/step - loss: 0.1740 - accuracy: 0.7649 - mae: 0.1740 - pearson_correlation: 0.3868 - euclidean_distance: 0.2915
Epoch 92/250
152/152 [==============================] - 0s 805us/step - loss: 0.1739 - accuracy: 0.7702 - mae: 0.1739 - pearson_correlation: 0.3849 - euclidean_distance: 0.2913
Epoch 93/250
152/152 [==============================] - 0s 801us/step - loss: 0.1727 - accuracy: 0.7636 - mae: 0.1727 - pearson_correlation: 0.3988 - euclidean_distance: 0.2899
Epoch 94/250
152/152 [==============================] - 0s 801us/step - loss: 0.1717 - accuracy: 0.7711 - mae: 0.1717 - pearson_correlation: 0.4025 - euclidean_distance: 0.2873
Epoch 95/250
152/152 [==============================] - 0s 803us/step - loss: 0.1707 - accuracy: 0.7689 - mae: 0.1707 - pearson_correlation: 0.4031 - euclidean_distance: 0.2862
Epoch 96/250
152/152 [==============================] - 0s 804us/step - loss: 0.1711 - accuracy: 0.7697 - mae: 0.1711 - pearson_correlation: 0.3946 - euclidean_distance: 0.2871
Epoch 97/250
152/152 [==============================] - 0s 805us/step - loss: 0.1716 - accuracy: 0.7706 - mae: 0.1716 - pearson_correlation: 0.4015 - euclidean_distance: 0.2869
Epoch 98/250
152/152 [==============================] - 0s 799us/step - loss: 0.1679 - accuracy: 0.7675 - mae: 0.1679 - pearson_correlation: 0.4043 - euclidean_distance: 0.2818
Epoch 99/250
152/152 [==============================] - 0s 800us/step - loss: 0.1670 - accuracy: 0.7742 - mae: 0.1670 - pearson_correlation: 0.4179 - euclidean_distance: 0.2798
Epoch 100/250
152/152 [==============================] - 0s 800us/step - loss: 0.1680 - accuracy: 0.7733 - mae: 0.1680 - pearson_correlation: 0.4110 - euclidean_distance: 0.2820
Epoch 101/250
152/152 [==============================] - 0s 802us/step - loss: 0.1686 - accuracy: 0.7750 - mae: 0.1686 - pearson_correlation: 0.4118 - euclidean_distance: 0.2809
Epoch 102/250
152/152 [==============================] - 0s 800us/step - loss: 0.1660 - accuracy: 0.7728 - mae: 0.1660 - pearson_correlation: 0.4139 - euclidean_distance: 0.2781
Epoch 103/250
152/152 [==============================] - 0s 800us/step - loss: 0.1653 - accuracy: 0.7777 - mae: 0.1653 - pearson_correlation: 0.4220 - euclidean_distance: 0.2768
Epoch 104/250
152/152 [==============================] - 0s 800us/step - loss: 0.1635 - accuracy: 0.7777 - mae: 0.1635 - pearson_correlation: 0.4237 - euclidean_distance: 0.2746
Epoch 105/250
152/152 [==============================] - 0s 803us/step - loss: 0.1626 - accuracy: 0.7794 - mae: 0.1626 - pearson_correlation: 0.4287 - euclidean_distance: 0.2719
Epoch 106/250
152/152 [==============================] - 0s 803us/step - loss: 0.1625 - accuracy: 0.7834 - mae: 0.1625 - pearson_correlation: 0.4384 - euclidean_distance: 0.2724
Epoch 107/250
152/152 [==============================] - 0s 797us/step - loss: 0.1637 - accuracy: 0.7768 - mae: 0.1637 - pearson_correlation: 0.4403 - euclidean_distance: 0.2731
Epoch 108/250
152/152 [==============================] - 0s 799us/step - loss: 0.1599 - accuracy: 0.7733 - mae: 0.1599 - pearson_correlation: 0.4342 - euclidean_distance: 0.2679
Epoch 109/250
152/152 [==============================] - 0s 802us/step - loss: 0.1606 - accuracy: 0.7825 - mae: 0.1606 - pearson_correlation: 0.4416 - euclidean_distance: 0.2684
Epoch 110/250
152/152 [==============================] - 0s 800us/step - loss: 0.1588 - accuracy: 0.7821 - mae: 0.1588 - pearson_correlation: 0.4437 - euclidean_distance: 0.2662
Epoch 111/250
152/152 [==============================] - 0s 797us/step - loss: 0.1620 - accuracy: 0.7843 - mae: 0.1620 - pearson_correlation: 0.4416 - euclidean_distance: 0.2711
Epoch 112/250
152/152 [==============================] - 0s 798us/step - loss: 0.1583 - accuracy: 0.7856 - mae: 0.1583 - pearson_correlation: 0.4503 - euclidean_distance: 0.2647
Epoch 113/250
152/152 [==============================] - 0s 825us/step - loss: 0.1589 - accuracy: 0.7847 - mae: 0.1589 - pearson_correlation: 0.4513 - euclidean_distance: 0.2659
Epoch 114/250
152/152 [==============================] - 0s 806us/step - loss: 0.1571 - accuracy: 0.7825 - mae: 0.1571 - pearson_correlation: 0.4581 - euclidean_distance: 0.2622
Epoch 115/250
152/152 [==============================] - 0s 802us/step - loss: 0.1571 - accuracy: 0.7869 - mae: 0.1571 - pearson_correlation: 0.4605 - euclidean_distance: 0.2624
Epoch 116/250
152/152 [==============================] - 0s 802us/step - loss: 0.1537 - accuracy: 0.7861 - mae: 0.1537 - pearson_correlation: 0.4630 - euclidean_distance: 0.2576
Epoch 117/250
152/152 [==============================] - 0s 800us/step - loss: 0.1542 - accuracy: 0.7852 - mae: 0.1542 - pearson_correlation: 0.4605 - euclidean_distance: 0.2589
Epoch 118/250
152/152 [==============================] - 0s 798us/step - loss: 0.1533 - accuracy: 0.7869 - mae: 0.1533 - pearson_correlation: 0.4679 - euclidean_distance: 0.2575
Epoch 119/250
152/152 [==============================] - 0s 803us/step - loss: 0.1529 - accuracy: 0.7905 - mae: 0.1529 - pearson_correlation: 0.4648 - euclidean_distance: 0.2563
Epoch 120/250
152/152 [==============================] - 0s 806us/step - loss: 0.1573 - accuracy: 0.7918 - mae: 0.1573 - pearson_correlation: 0.4635 - euclidean_distance: 0.2619
Epoch 121/250
152/152 [==============================] - 0s 800us/step - loss: 0.1531 - accuracy: 0.7887 - mae: 0.1531 - pearson_correlation: 0.4760 - euclidean_distance: 0.2559
Epoch 122/250
152/152 [==============================] - 0s 854us/step - loss: 0.1547 - accuracy: 0.7865 - mae: 0.1547 - pearson_correlation: 0.4655 - euclidean_distance: 0.2575
Epoch 123/250
152/152 [==============================] - 0s 808us/step - loss: 0.1537 - accuracy: 0.7878 - mae: 0.1537 - pearson_correlation: 0.4710 - euclidean_distance: 0.2566
Epoch 124/250
152/152 [==============================] - 0s 797us/step - loss: 0.1521 - accuracy: 0.7975 - mae: 0.1521 - pearson_correlation: 0.4810 - euclidean_distance: 0.2537
Epoch 125/250
152/152 [==============================] - 0s 803us/step - loss: 0.1518 - accuracy: 0.7936 - mae: 0.1518 - pearson_correlation: 0.4755 - euclidean_distance: 0.2535
Epoch 126/250
152/152 [==============================] - 0s 803us/step - loss: 0.1509 - accuracy: 0.7980 - mae: 0.1509 - pearson_correlation: 0.4893 - euclidean_distance: 0.2516
Epoch 127/250
152/152 [==============================] - 0s 799us/step - loss: 0.1499 - accuracy: 0.7953 - mae: 0.1499 - pearson_correlation: 0.4845 - euclidean_distance: 0.2504
Epoch 128/250
152/152 [==============================] - 0s 798us/step - loss: 0.1481 - accuracy: 0.7931 - mae: 0.1481 - pearson_correlation: 0.5028 - euclidean_distance: 0.2477
Epoch 129/250
152/152 [==============================] - 0s 801us/step - loss: 0.1455 - accuracy: 0.7953 - mae: 0.1455 - pearson_correlation: 0.4964 - euclidean_distance: 0.2439
Epoch 130/250
152/152 [==============================] - 0s 826us/step - loss: 0.1496 - accuracy: 0.7993 - mae: 0.1496 - pearson_correlation: 0.4915 - euclidean_distance: 0.2491
Epoch 131/250
152/152 [==============================] - 0s 799us/step - loss: 0.1478 - accuracy: 0.8015 - mae: 0.1478 - pearson_correlation: 0.4984 - euclidean_distance: 0.2470
Epoch 132/250
152/152 [==============================] - 0s 799us/step - loss: 0.1459 - accuracy: 0.8059 - mae: 0.1459 - pearson_correlation: 0.5043 - euclidean_distance: 0.2434
Epoch 133/250
152/152 [==============================] - 0s 800us/step - loss: 0.1455 - accuracy: 0.8059 - mae: 0.1455 - pearson_correlation: 0.5039 - euclidean_distance: 0.2430
Epoch 134/250
152/152 [==============================] - 0s 814us/step - loss: 0.1469 - accuracy: 0.8103 - mae: 0.1469 - pearson_correlation: 0.5018 - euclidean_distance: 0.2444
Epoch 135/250
152/152 [==============================] - 0s 804us/step - loss: 0.1462 - accuracy: 0.8033 - mae: 0.1462 - pearson_correlation: 0.5055 - euclidean_distance: 0.2434
Epoch 136/250
152/152 [==============================] - 0s 796us/step - loss: 0.1464 - accuracy: 0.8068 - mae: 0.1464 - pearson_correlation: 0.5117 - euclidean_distance: 0.2432
Epoch 137/250
152/152 [==============================] - 0s 799us/step - loss: 0.1432 - accuracy: 0.8068 - mae: 0.1432 - pearson_correlation: 0.5172 - euclidean_distance: 0.2389
Epoch 138/250
152/152 [==============================] - 0s 806us/step - loss: 0.1427 - accuracy: 0.8099 - mae: 0.1427 - pearson_correlation: 0.5195 - euclidean_distance: 0.2377
Epoch 139/250
152/152 [==============================] - 0s 793us/step - loss: 0.1421 - accuracy: 0.8134 - mae: 0.1421 - pearson_correlation: 0.5196 - euclidean_distance: 0.2368
Epoch 140/250
152/152 [==============================] - 0s 797us/step - loss: 0.1406 - accuracy: 0.8112 - mae: 0.1406 - pearson_correlation: 0.5130 - euclidean_distance: 0.2354
Epoch 141/250
152/152 [==============================] - 0s 802us/step - loss: 0.1426 - accuracy: 0.8174 - mae: 0.1426 - pearson_correlation: 0.5269 - euclidean_distance: 0.2374
Epoch 142/250
152/152 [==============================] - 0s 800us/step - loss: 0.1417 - accuracy: 0.8205 - mae: 0.1417 - pearson_correlation: 0.5232 - euclidean_distance: 0.2362
Epoch 143/250
152/152 [==============================] - 0s 799us/step - loss: 0.1443 - accuracy: 0.8165 - mae: 0.1443 - pearson_correlation: 0.5212 - euclidean_distance: 0.2388
Epoch 144/250
152/152 [==============================] - 0s 802us/step - loss: 0.1402 - accuracy: 0.8205 - mae: 0.1402 - pearson_correlation: 0.5217 - euclidean_distance: 0.2331
Epoch 145/250
152/152 [==============================] - 0s 798us/step - loss: 0.1409 - accuracy: 0.8183 - mae: 0.1409 - pearson_correlation: 0.5379 - euclidean_distance: 0.2331
Epoch 146/250
152/152 [==============================] - 0s 802us/step - loss: 0.1410 - accuracy: 0.8280 - mae: 0.1410 - pearson_correlation: 0.5325 - euclidean_distance: 0.2343
Epoch 147/250
152/152 [==============================] - 0s 804us/step - loss: 0.1391 - accuracy: 0.8258 - mae: 0.1391 - pearson_correlation: 0.5388 - euclidean_distance: 0.2315
Epoch 148/250
152/152 [==============================] - 0s 804us/step - loss: 0.1386 - accuracy: 0.8280 - mae: 0.1386 - pearson_correlation: 0.5465 - euclidean_distance: 0.2298
Epoch 149/250
152/152 [==============================] - 0s 795us/step - loss: 0.1371 - accuracy: 0.8262 - mae: 0.1371 - pearson_correlation: 0.5427 - euclidean_distance: 0.2284
Epoch 150/250
152/152 [==============================] - 0s 798us/step - loss: 0.1397 - accuracy: 0.8271 - mae: 0.1397 - pearson_correlation: 0.5493 - euclidean_distance: 0.2313
Epoch 151/250
152/152 [==============================] - 0s 802us/step - loss: 0.1389 - accuracy: 0.8253 - mae: 0.1389 - pearson_correlation: 0.5476 - euclidean_distance: 0.2301
Epoch 152/250
152/152 [==============================] - 0s 802us/step - loss: 0.1382 - accuracy: 0.8288 - mae: 0.1382 - pearson_correlation: 0.5493 - euclidean_distance: 0.2288
Epoch 153/250
152/152 [==============================] - 0s 799us/step - loss: 0.1358 - accuracy: 0.8394 - mae: 0.1358 - pearson_correlation: 0.5514 - euclidean_distance: 0.2256
Epoch 154/250
152/152 [==============================] - 0s 802us/step - loss: 0.1369 - accuracy: 0.8302 - mae: 0.1369 - pearson_correlation: 0.5597 - euclidean_distance: 0.2268
Epoch 155/250
152/152 [==============================] - 0s 802us/step - loss: 0.1344 - accuracy: 0.8421 - mae: 0.1344 - pearson_correlation: 0.5661 - euclidean_distance: 0.2229
Epoch 156/250
152/152 [==============================] - 0s 802us/step - loss: 0.1343 - accuracy: 0.8408 - mae: 0.1343 - pearson_correlation: 0.5572 - euclidean_distance: 0.2227
Epoch 157/250
152/152 [==============================] - 0s 797us/step - loss: 0.1347 - accuracy: 0.8412 - mae: 0.1347 - pearson_correlation: 0.5595 - euclidean_distance: 0.2226
Epoch 158/250
152/152 [==============================] - 0s 802us/step - loss: 0.1356 - accuracy: 0.8465 - mae: 0.1356 - pearson_correlation: 0.5568 - euclidean_distance: 0.2247
Epoch 159/250
152/152 [==============================] - 0s 800us/step - loss: 0.1347 - accuracy: 0.8438 - mae: 0.1347 - pearson_correlation: 0.5648 - euclidean_distance: 0.2233
Epoch 160/250
152/152 [==============================] - 0s 801us/step - loss: 0.1324 - accuracy: 0.8500 - mae: 0.1324 - pearson_correlation: 0.5624 - euclidean_distance: 0.2194
Epoch 161/250
152/152 [==============================] - 0s 793us/step - loss: 0.1332 - accuracy: 0.8593 - mae: 0.1332 - pearson_correlation: 0.5775 - euclidean_distance: 0.2191
Epoch 162/250
152/152 [==============================] - 0s 801us/step - loss: 0.1314 - accuracy: 0.8487 - mae: 0.1314 - pearson_correlation: 0.5760 - euclidean_distance: 0.2178
Epoch 163/250
152/152 [==============================] - 0s 805us/step - loss: 0.1319 - accuracy: 0.8513 - mae: 0.1319 - pearson_correlation: 0.5721 - euclidean_distance: 0.2183
Epoch 164/250
152/152 [==============================] - 0s 803us/step - loss: 0.1302 - accuracy: 0.8496 - mae: 0.1302 - pearson_correlation: 0.5731 - euclidean_distance: 0.2153
Epoch 165/250
152/152 [==============================] - 0s 802us/step - loss: 0.1289 - accuracy: 0.8553 - mae: 0.1289 - pearson_correlation: 0.5808 - euclidean_distance: 0.2138
Epoch 166/250
152/152 [==============================] - 0s 808us/step - loss: 0.1308 - accuracy: 0.8571 - mae: 0.1308 - pearson_correlation: 0.5845 - euclidean_distance: 0.2158
Epoch 167/250
152/152 [==============================] - 0s 802us/step - loss: 0.1311 - accuracy: 0.8588 - mae: 0.1311 - pearson_correlation: 0.5777 - euclidean_distance: 0.2172
Epoch 168/250
152/152 [==============================] - 0s 799us/step - loss: 0.1290 - accuracy: 0.8646 - mae: 0.1290 - pearson_correlation: 0.5942 - euclidean_distance: 0.2132
Epoch 169/250
152/152 [==============================] - 0s 801us/step - loss: 0.1267 - accuracy: 0.8641 - mae: 0.1267 - pearson_correlation: 0.5886 - euclidean_distance: 0.2093
Epoch 170/250
152/152 [==============================] - 0s 801us/step - loss: 0.1275 - accuracy: 0.8628 - mae: 0.1275 - pearson_correlation: 0.5952 - euclidean_distance: 0.2109
Epoch 171/250
152/152 [==============================] - 0s 800us/step - loss: 0.1289 - accuracy: 0.8690 - mae: 0.1289 - pearson_correlation: 0.5854 - euclidean_distance: 0.2127
Epoch 172/250
152/152 [==============================] - 0s 799us/step - loss: 0.1273 - accuracy: 0.8655 - mae: 0.1273 - pearson_correlation: 0.5940 - euclidean_distance: 0.2112
Epoch 173/250
152/152 [==============================] - 0s 800us/step - loss: 0.1250 - accuracy: 0.8703 - mae: 0.1250 - pearson_correlation: 0.6020 - euclidean_distance: 0.2060
Epoch 174/250
152/152 [==============================] - 0s 801us/step - loss: 0.1272 - accuracy: 0.8760 - mae: 0.1272 - pearson_correlation: 0.5944 - euclidean_distance: 0.2096
Epoch 175/250
152/152 [==============================] - 0s 800us/step - loss: 0.1297 - accuracy: 0.8725 - mae: 0.1297 - pearson_correlation: 0.5955 - euclidean_distance: 0.2134
Epoch 176/250
152/152 [==============================] - 0s 796us/step - loss: 0.1256 - accuracy: 0.8760 - mae: 0.1256 - pearson_correlation: 0.5918 - euclidean_distance: 0.2074
Epoch 177/250
152/152 [==============================] - 0s 799us/step - loss: 0.1227 - accuracy: 0.8791 - mae: 0.1227 - pearson_correlation: 0.6105 - euclidean_distance: 0.2031
Epoch 178/250
152/152 [==============================] - 0s 797us/step - loss: 0.1259 - accuracy: 0.8778 - mae: 0.1259 - pearson_correlation: 0.6020 - euclidean_distance: 0.2075
Epoch 179/250
152/152 [==============================] - 0s 798us/step - loss: 0.1243 - accuracy: 0.8800 - mae: 0.1243 - pearson_correlation: 0.6098 - euclidean_distance: 0.2051
Epoch 180/250
152/152 [==============================] - 0s 794us/step - loss: 0.1221 - accuracy: 0.8813 - mae: 0.1221 - pearson_correlation: 0.6164 - euclidean_distance: 0.2014
Epoch 181/250
152/152 [==============================] - 0s 793us/step - loss: 0.1234 - accuracy: 0.8893 - mae: 0.1234 - pearson_correlation: 0.6027 - euclidean_distance: 0.2033
Epoch 182/250
152/152 [==============================] - 0s 793us/step - loss: 0.1218 - accuracy: 0.8866 - mae: 0.1218 - pearson_correlation: 0.6185 - euclidean_distance: 0.2007
Epoch 183/250
152/152 [==============================] - 0s 793us/step - loss: 0.1238 - accuracy: 0.8800 - mae: 0.1238 - pearson_correlation: 0.6171 - euclidean_distance: 0.2039
Epoch 184/250
152/152 [==============================] - 0s 793us/step - loss: 0.1230 - accuracy: 0.8849 - mae: 0.1230 - pearson_correlation: 0.6176 - euclidean_distance: 0.2021
Epoch 185/250
152/152 [==============================] - 0s 801us/step - loss: 0.1205 - accuracy: 0.8862 - mae: 0.1205 - pearson_correlation: 0.6185 - euclidean_distance: 0.1992
Epoch 186/250
152/152 [==============================] - 0s 800us/step - loss: 0.1224 - accuracy: 0.8884 - mae: 0.1224 - pearson_correlation: 0.6162 - euclidean_distance: 0.2013
Epoch 187/250
152/152 [==============================] - 0s 798us/step - loss: 0.1226 - accuracy: 0.8968 - mae: 0.1226 - pearson_correlation: 0.6197 - euclidean_distance: 0.2015
Epoch 188/250
152/152 [==============================] - 0s 798us/step - loss: 0.1199 - accuracy: 0.8959 - mae: 0.1199 - pearson_correlation: 0.6328 - euclidean_distance: 0.1972
Epoch 189/250
152/152 [==============================] - 0s 797us/step - loss: 0.1197 - accuracy: 0.8977 - mae: 0.1197 - pearson_correlation: 0.6381 - euclidean_distance: 0.1973
Epoch 190/250
152/152 [==============================] - 0s 799us/step - loss: 0.1204 - accuracy: 0.9016 - mae: 0.1204 - pearson_correlation: 0.6224 - euclidean_distance: 0.1975
Epoch 191/250
152/152 [==============================] - 0s 798us/step - loss: 0.1182 - accuracy: 0.8955 - mae: 0.1182 - pearson_correlation: 0.6403 - euclidean_distance: 0.1947
Epoch 192/250
152/152 [==============================] - 0s 795us/step - loss: 0.1175 - accuracy: 0.9012 - mae: 0.1175 - pearson_correlation: 0.6418 - euclidean_distance: 0.1930
Epoch 193/250
152/152 [==============================] - 0s 810us/step - loss: 0.1190 - accuracy: 0.9007 - mae: 0.1190 - pearson_correlation: 0.6423 - euclidean_distance: 0.1948
Epoch 194/250
152/152 [==============================] - 0s 876us/step - loss: 0.1185 - accuracy: 0.9016 - mae: 0.1185 - pearson_correlation: 0.6340 - euclidean_distance: 0.1946
Epoch 195/250
152/152 [==============================] - 0s 871us/step - loss: 0.1178 - accuracy: 0.9034 - mae: 0.1178 - pearson_correlation: 0.6455 - euclidean_distance: 0.1935
Epoch 196/250
152/152 [==============================] - 0s 914us/step - loss: 0.1152 - accuracy: 0.9060 - mae: 0.1152 - pearson_correlation: 0.6512 - euclidean_distance: 0.1889
Epoch 197/250
152/152 [==============================] - 0s 943us/step - loss: 0.1168 - accuracy: 0.9074 - mae: 0.1168 - pearson_correlation: 0.6425 - euclidean_distance: 0.1918
Epoch 198/250
152/152 [==============================] - 0s 811us/step - loss: 0.1182 - accuracy: 0.9034 - mae: 0.1182 - pearson_correlation: 0.6439 - euclidean_distance: 0.1940
Epoch 199/250
152/152 [==============================] - 0s 802us/step - loss: 0.1169 - accuracy: 0.9122 - mae: 0.1169 - pearson_correlation: 0.6452 - euclidean_distance: 0.1917
Epoch 200/250
152/152 [==============================] - 0s 804us/step - loss: 0.1150 - accuracy: 0.9100 - mae: 0.1150 - pearson_correlation: 0.6546 - euclidean_distance: 0.1892
Epoch 201/250
152/152 [==============================] - 0s 800us/step - loss: 0.1148 - accuracy: 0.9096 - mae: 0.1148 - pearson_correlation: 0.6573 - euclidean_distance: 0.1886
Epoch 202/250
152/152 [==============================] - 0s 804us/step - loss: 0.1130 - accuracy: 0.9122 - mae: 0.1130 - pearson_correlation: 0.6593 - euclidean_distance: 0.1851
Epoch 203/250
152/152 [==============================] - 0s 802us/step - loss: 0.1143 - accuracy: 0.9140 - mae: 0.1143 - pearson_correlation: 0.6604 - euclidean_distance: 0.1871
Epoch 204/250
152/152 [==============================] - 0s 801us/step - loss: 0.1125 - accuracy: 0.9162 - mae: 0.1125 - pearson_correlation: 0.6639 - euclidean_distance: 0.1840
Epoch 205/250
152/152 [==============================] - 0s 798us/step - loss: 0.1153 - accuracy: 0.9135 - mae: 0.1153 - pearson_correlation: 0.6609 - euclidean_distance: 0.1883
Epoch 206/250
152/152 [==============================] - 0s 805us/step - loss: 0.1133 - accuracy: 0.9157 - mae: 0.1133 - pearson_correlation: 0.6666 - euclidean_distance: 0.1852
Epoch 207/250
152/152 [==============================] - 0s 798us/step - loss: 0.1146 - accuracy: 0.9171 - mae: 0.1146 - pearson_correlation: 0.6555 - euclidean_distance: 0.1876
Epoch 208/250
152/152 [==============================] - 0s 799us/step - loss: 0.1149 - accuracy: 0.9127 - mae: 0.1149 - pearson_correlation: 0.6544 - euclidean_distance: 0.1888
Epoch 209/250
152/152 [==============================] - 0s 804us/step - loss: 0.1127 - accuracy: 0.9215 - mae: 0.1127 - pearson_correlation: 0.6696 - euclidean_distance: 0.1850
Epoch 210/250
152/152 [==============================] - 0s 805us/step - loss: 0.1135 - accuracy: 0.9193 - mae: 0.1135 - pearson_correlation: 0.6657 - euclidean_distance: 0.1854
Epoch 211/250
152/152 [==============================] - 0s 824us/step - loss: 0.1127 - accuracy: 0.9171 - mae: 0.1127 - pearson_correlation: 0.6694 - euclidean_distance: 0.1840
Epoch 212/250
152/152 [==============================] - 0s 797us/step - loss: 0.1099 - accuracy: 0.9224 - mae: 0.1099 - pearson_correlation: 0.6785 - euclidean_distance: 0.1793
Epoch 213/250
152/152 [==============================] - 0s 800us/step - loss: 0.1113 - accuracy: 0.9219 - mae: 0.1113 - pearson_correlation: 0.6747 - euclidean_distance: 0.1813
Epoch 214/250
152/152 [==============================] - 0s 802us/step - loss: 0.1120 - accuracy: 0.9215 - mae: 0.1120 - pearson_correlation: 0.6719 - euclidean_distance: 0.1836
Epoch 215/250
152/152 [==============================] - 0s 813us/step - loss: 0.1117 - accuracy: 0.9224 - mae: 0.1117 - pearson_correlation: 0.6749 - euclidean_distance: 0.1824
Epoch 216/250
152/152 [==============================] - 0s 801us/step - loss: 0.1106 - accuracy: 0.9285 - mae: 0.1106 - pearson_correlation: 0.6775 - euclidean_distance: 0.1811
Epoch 217/250
152/152 [==============================] - 0s 801us/step - loss: 0.1095 - accuracy: 0.9232 - mae: 0.1095 - pearson_correlation: 0.6751 - euclidean_distance: 0.1787
Epoch 218/250
152/152 [==============================] - 0s 807us/step - loss: 0.1114 - accuracy: 0.9255 - mae: 0.1114 - pearson_correlation: 0.6698 - euclidean_distance: 0.1817
Epoch 219/250
152/152 [==============================] - 0s 800us/step - loss: 0.1104 - accuracy: 0.9246 - mae: 0.1104 - pearson_correlation: 0.6763 - euclidean_distance: 0.1802
Epoch 220/250
152/152 [==============================] - 0s 795us/step - loss: 0.1083 - accuracy: 0.9316 - mae: 0.1083 - pearson_correlation: 0.6897 - euclidean_distance: 0.1769
Epoch 221/250
152/152 [==============================] - 0s 797us/step - loss: 0.1077 - accuracy: 0.9268 - mae: 0.1077 - pearson_correlation: 0.6888 - euclidean_distance: 0.1761
Epoch 222/250
152/152 [==============================] - 0s 800us/step - loss: 0.1092 - accuracy: 0.9255 - mae: 0.1092 - pearson_correlation: 0.6790 - euclidean_distance: 0.1779
Epoch 223/250
152/152 [==============================] - 0s 798us/step - loss: 0.1058 - accuracy: 0.9307 - mae: 0.1058 - pearson_correlation: 0.6964 - euclidean_distance: 0.1726
Epoch 224/250
152/152 [==============================] - 0s 799us/step - loss: 0.1097 - accuracy: 0.9290 - mae: 0.1097 - pearson_correlation: 0.6824 - euclidean_distance: 0.1792
Epoch 225/250
152/152 [==============================] - 0s 806us/step - loss: 0.1067 - accuracy: 0.9316 - mae: 0.1067 - pearson_correlation: 0.6915 - euclidean_distance: 0.1740
Epoch 226/250
152/152 [==============================] - 0s 802us/step - loss: 0.1068 - accuracy: 0.9343 - mae: 0.1068 - pearson_correlation: 0.6954 - euclidean_distance: 0.1735
Epoch 227/250
152/152 [==============================] - 0s 805us/step - loss: 0.1060 - accuracy: 0.9303 - mae: 0.1060 - pearson_correlation: 0.6939 - euclidean_distance: 0.1728
Epoch 228/250
152/152 [==============================] - 0s 801us/step - loss: 0.1052 - accuracy: 0.9382 - mae: 0.1052 - pearson_correlation: 0.6998 - euclidean_distance: 0.1717
Epoch 229/250
152/152 [==============================] - 0s 797us/step - loss: 0.1090 - accuracy: 0.9312 - mae: 0.1090 - pearson_correlation: 0.6853 - euclidean_distance: 0.1778
Epoch 230/250
152/152 [==============================] - 0s 800us/step - loss: 0.1084 - accuracy: 0.9325 - mae: 0.1084 - pearson_correlation: 0.6838 - euclidean_distance: 0.1763
Epoch 231/250
152/152 [==============================] - 0s 796us/step - loss: 0.1068 - accuracy: 0.9325 - mae: 0.1068 - pearson_correlation: 0.6942 - euclidean_distance: 0.1733
Epoch 232/250
152/152 [==============================] - 0s 799us/step - loss: 0.1057 - accuracy: 0.9369 - mae: 0.1057 - pearson_correlation: 0.6982 - euclidean_distance: 0.1718
Epoch 233/250
152/152 [==============================] - 0s 794us/step - loss: 0.1048 - accuracy: 0.9391 - mae: 0.1048 - pearson_correlation: 0.7016 - euclidean_distance: 0.1704
Epoch 234/250
152/152 [==============================] - 0s 803us/step - loss: 0.1058 - accuracy: 0.9365 - mae: 0.1058 - pearson_correlation: 0.6969 - euclidean_distance: 0.1728
Epoch 235/250
152/152 [==============================] - 0s 796us/step - loss: 0.1071 - accuracy: 0.9382 - mae: 0.1071 - pearson_correlation: 0.7025 - euclidean_distance: 0.1739
Epoch 236/250
152/152 [==============================] - 0s 801us/step - loss: 0.1055 - accuracy: 0.9378 - mae: 0.1055 - pearson_correlation: 0.7018 - euclidean_distance: 0.1706
Epoch 237/250
152/152 [==============================] - 0s 801us/step - loss: 0.1023 - accuracy: 0.9365 - mae: 0.1023 - pearson_correlation: 0.7032 - euclidean_distance: 0.1669
Epoch 238/250
152/152 [==============================] - 0s 794us/step - loss: 0.1057 - accuracy: 0.9382 - mae: 0.1057 - pearson_correlation: 0.7012 - euclidean_distance: 0.1717
Epoch 239/250
152/152 [==============================] - 0s 803us/step - loss: 0.1058 - accuracy: 0.9387 - mae: 0.1058 - pearson_correlation: 0.6929 - euclidean_distance: 0.1716
Epoch 240/250
152/152 [==============================] - 0s 800us/step - loss: 0.1051 - accuracy: 0.9409 - mae: 0.1051 - pearson_correlation: 0.7034 - euclidean_distance: 0.1709
Epoch 241/250
152/152 [==============================] - 0s 804us/step - loss: 0.1020 - accuracy: 0.9378 - mae: 0.1020 - pearson_correlation: 0.7098 - euclidean_distance: 0.1652
Epoch 242/250
152/152 [==============================] - 0s 795us/step - loss: 0.1011 - accuracy: 0.9422 - mae: 0.1011 - pearson_correlation: 0.7165 - euclidean_distance: 0.1642
Epoch 243/250
152/152 [==============================] - 0s 797us/step - loss: 0.1047 - accuracy: 0.9418 - mae: 0.1047 - pearson_correlation: 0.7038 - euclidean_distance: 0.1702
Epoch 244/250
152/152 [==============================] - 0s 806us/step - loss: 0.1017 - accuracy: 0.9400 - mae: 0.1017 - pearson_correlation: 0.7108 - euclidean_distance: 0.1656
Epoch 245/250
152/152 [==============================] - 0s 797us/step - loss: 0.1022 - accuracy: 0.9396 - mae: 0.1022 - pearson_correlation: 0.7148 - euclidean_distance: 0.1661
Epoch 246/250
152/152 [==============================] - 0s 794us/step - loss: 0.1054 - accuracy: 0.9435 - mae: 0.1054 - pearson_correlation: 0.7125 - euclidean_distance: 0.1709
Epoch 247/250
152/152 [==============================] - 0s 798us/step - loss: 0.1023 - accuracy: 0.9440 - mae: 0.1023 - pearson_correlation: 0.7147 - euclidean_distance: 0.1665
Epoch 248/250
152/152 [==============================] - 0s 796us/step - loss: 0.1015 - accuracy: 0.9374 - mae: 0.1015 - pearson_correlation: 0.7155 - euclidean_distance: 0.1651
Epoch 249/250
152/152 [==============================] - 0s 797us/step - loss: 0.1008 - accuracy: 0.9435 - mae: 0.1008 - pearson_correlation: 0.7172 - euclidean_distance: 0.1637
Epoch 250/250
152/152 [==============================] - 0s 795us/step - loss: 0.1042 - accuracy: 0.9391 - mae: 0.1042 - pearson_correlation: 0.7102 - euclidean_distance: 0.1689
76/76 [==============================] - 0s 439us/step
Epoch 1/250
152/152 [==============================] - 1s 852us/step - loss: 0.7844 - accuracy: 0.9030 - mae: 0.7844 - pearson_correlation: 0.4183 - euclidean_distance: 1.1252
Epoch 2/250
152/152 [==============================] - 0s 811us/step - loss: 0.7745 - accuracy: 0.9043 - mae: 0.7745 - pearson_correlation: 0.4169 - euclidean_distance: 1.1116
Epoch 3/250
152/152 [==============================] - 0s 809us/step - loss: 0.7630 - accuracy: 0.9078 - mae: 0.7630 - pearson_correlation: 0.4330 - euclidean_distance: 1.0952
Epoch 4/250
152/152 [==============================] - 0s 810us/step - loss: 0.7525 - accuracy: 0.9118 - mae: 0.7525 - pearson_correlation: 0.4424 - euclidean_distance: 1.0807
Epoch 5/250
152/152 [==============================] - 0s 804us/step - loss: 0.7424 - accuracy: 0.9198 - mae: 0.7424 - pearson_correlation: 0.4571 - euclidean_distance: 1.0662
Epoch 6/250
152/152 [==============================] - 0s 810us/step - loss: 0.7304 - accuracy: 0.9171 - mae: 0.7304 - pearson_correlation: 0.4682 - euclidean_distance: 1.0495
Epoch 7/250
152/152 [==============================] - 0s 806us/step - loss: 0.7204 - accuracy: 0.9180 - mae: 0.7204 - pearson_correlation: 0.4780 - euclidean_distance: 1.0356
Epoch 8/250
152/152 [==============================] - 0s 806us/step - loss: 0.7080 - accuracy: 0.9158 - mae: 0.7080 - pearson_correlation: 0.4931 - euclidean_distance: 1.0184
Epoch 9/250
152/152 [==============================] - 0s 802us/step - loss: 0.6986 - accuracy: 0.9118 - mae: 0.6986 - pearson_correlation: 0.5000 - euclidean_distance: 1.0049
Epoch 10/250
152/152 [==============================] - 0s 803us/step - loss: 0.6893 - accuracy: 0.9131 - mae: 0.6893 - pearson_correlation: 0.5198 - euclidean_distance: 0.9918
Epoch 11/250
152/152 [==============================] - 0s 808us/step - loss: 0.6772 - accuracy: 0.9220 - mae: 0.6772 - pearson_correlation: 0.5344 - euclidean_distance: 0.9745
Epoch 12/250
152/152 [==============================] - 0s 805us/step - loss: 0.6691 - accuracy: 0.9171 - mae: 0.6691 - pearson_correlation: 0.5353 - euclidean_distance: 0.9638
Epoch 13/250
152/152 [==============================] - 0s 807us/step - loss: 0.6591 - accuracy: 0.9175 - mae: 0.6591 - pearson_correlation: 0.5512 - euclidean_distance: 0.9498
Epoch 14/250
152/152 [==============================] - 0s 806us/step - loss: 0.6482 - accuracy: 0.9131 - mae: 0.6482 - pearson_correlation: 0.5660 - euclidean_distance: 0.9344
Epoch 15/250
152/152 [==============================] - 0s 807us/step - loss: 0.6394 - accuracy: 0.9162 - mae: 0.6394 - pearson_correlation: 0.5765 - euclidean_distance: 0.9221
Epoch 16/250
152/152 [==============================] - 0s 803us/step - loss: 0.6319 - accuracy: 0.9193 - mae: 0.6319 - pearson_correlation: 0.5802 - euclidean_distance: 0.9120
Epoch 17/250
152/152 [==============================] - 0s 803us/step - loss: 0.6219 - accuracy: 0.9140 - mae: 0.6219 - pearson_correlation: 0.5862 - euclidean_distance: 0.8977
Epoch 18/250
152/152 [==============================] - 0s 818us/step - loss: 0.6123 - accuracy: 0.9136 - mae: 0.6123 - pearson_correlation: 0.5933 - euclidean_distance: 0.8849
Epoch 19/250
152/152 [==============================] - 0s 803us/step - loss: 0.6027 - accuracy: 0.9175 - mae: 0.6027 - pearson_correlation: 0.6155 - euclidean_distance: 0.8710
Epoch 20/250
152/152 [==============================] - 0s 809us/step - loss: 0.5956 - accuracy: 0.9215 - mae: 0.5956 - pearson_correlation: 0.6192 - euclidean_distance: 0.8612
Epoch 21/250
152/152 [==============================] - 0s 802us/step - loss: 0.5885 - accuracy: 0.9131 - mae: 0.5885 - pearson_correlation: 0.6182 - euclidean_distance: 0.8513
Epoch 22/250
152/152 [==============================] - 0s 805us/step - loss: 0.5806 - accuracy: 0.9175 - mae: 0.5806 - pearson_correlation: 0.6202 - euclidean_distance: 0.8404
Epoch 23/250
152/152 [==============================] - 0s 801us/step - loss: 0.5736 - accuracy: 0.9118 - mae: 0.5736 - pearson_correlation: 0.6261 - euclidean_distance: 0.8308
Epoch 24/250
152/152 [==============================] - 0s 803us/step - loss: 0.5656 - accuracy: 0.9175 - mae: 0.5656 - pearson_correlation: 0.6210 - euclidean_distance: 0.8199
Epoch 25/250
152/152 [==============================] - 0s 800us/step - loss: 0.5603 - accuracy: 0.9180 - mae: 0.5603 - pearson_correlation: 0.6223 - euclidean_distance: 0.8126
Epoch 26/250
152/152 [==============================] - 0s 800us/step - loss: 0.5528 - accuracy: 0.9140 - mae: 0.5528 - pearson_correlation: 0.6194 - euclidean_distance: 0.8021
Epoch 27/250
152/152 [==============================] - 0s 804us/step - loss: 0.5471 - accuracy: 0.9158 - mae: 0.5471 - pearson_correlation: 0.6245 - euclidean_distance: 0.7942
Epoch 28/250
152/152 [==============================] - 0s 799us/step - loss: 0.5380 - accuracy: 0.9184 - mae: 0.5380 - pearson_correlation: 0.6278 - euclidean_distance: 0.7818
Epoch 29/250
152/152 [==============================] - 0s 804us/step - loss: 0.5321 - accuracy: 0.9215 - mae: 0.5321 - pearson_correlation: 0.6314 - euclidean_distance: 0.7737
Epoch 30/250
152/152 [==============================] - 0s 798us/step - loss: 0.5241 - accuracy: 0.9206 - mae: 0.5241 - pearson_correlation: 0.6277 - euclidean_distance: 0.7620
Epoch 31/250
152/152 [==============================] - 0s 800us/step - loss: 0.5185 - accuracy: 0.9202 - mae: 0.5185 - pearson_correlation: 0.6228 - euclidean_distance: 0.7543
Epoch 32/250
152/152 [==============================] - 0s 802us/step - loss: 0.5131 - accuracy: 0.9180 - mae: 0.5131 - pearson_correlation: 0.6218 - euclidean_distance: 0.7475
Epoch 33/250
152/152 [==============================] - 0s 797us/step - loss: 0.5060 - accuracy: 0.9180 - mae: 0.5060 - pearson_correlation: 0.6242 - euclidean_distance: 0.7373
Epoch 34/250
152/152 [==============================] - 0s 797us/step - loss: 0.5000 - accuracy: 0.9198 - mae: 0.5000 - pearson_correlation: 0.6181 - euclidean_distance: 0.7290
Epoch 35/250
152/152 [==============================] - 0s 796us/step - loss: 0.4930 - accuracy: 0.9145 - mae: 0.4930 - pearson_correlation: 0.6033 - euclidean_distance: 0.7200
Epoch 36/250
152/152 [==============================] - 0s 800us/step - loss: 0.4859 - accuracy: 0.9198 - mae: 0.4859 - pearson_correlation: 0.6121 - euclidean_distance: 0.7104
Epoch 37/250
152/152 [==============================] - 0s 805us/step - loss: 0.4816 - accuracy: 0.9180 - mae: 0.4816 - pearson_correlation: 0.6103 - euclidean_distance: 0.7042
Epoch 38/250
152/152 [==============================] - 0s 799us/step - loss: 0.4734 - accuracy: 0.9220 - mae: 0.4734 - pearson_correlation: 0.6049 - euclidean_distance: 0.6926
Epoch 39/250
152/152 [==============================] - 0s 800us/step - loss: 0.4662 - accuracy: 0.9149 - mae: 0.4662 - pearson_correlation: 0.5995 - euclidean_distance: 0.6834
Epoch 40/250
152/152 [==============================] - 0s 796us/step - loss: 0.4609 - accuracy: 0.9123 - mae: 0.4609 - pearson_correlation: 0.5850 - euclidean_distance: 0.6766
Epoch 41/250
152/152 [==============================] - 0s 819us/step - loss: 0.4537 - accuracy: 0.9092 - mae: 0.4537 - pearson_correlation: 0.5792 - euclidean_distance: 0.6668
Epoch 42/250
152/152 [==============================] - 0s 802us/step - loss: 0.4482 - accuracy: 0.9127 - mae: 0.4482 - pearson_correlation: 0.5782 - euclidean_distance: 0.6593
Epoch 43/250
152/152 [==============================] - 0s 794us/step - loss: 0.4399 - accuracy: 0.9140 - mae: 0.4399 - pearson_correlation: 0.5708 - euclidean_distance: 0.6488
Epoch 44/250
152/152 [==============================] - 0s 799us/step - loss: 0.4347 - accuracy: 0.9030 - mae: 0.4347 - pearson_correlation: 0.5671 - euclidean_distance: 0.6414
Epoch 45/250
152/152 [==============================] - 0s 815us/step - loss: 0.4297 - accuracy: 0.8986 - mae: 0.4297 - pearson_correlation: 0.5619 - euclidean_distance: 0.6348
Epoch 46/250
152/152 [==============================] - 0s 802us/step - loss: 0.4216 - accuracy: 0.9065 - mae: 0.4216 - pearson_correlation: 0.5573 - euclidean_distance: 0.6241
Epoch 47/250
152/152 [==============================] - 0s 795us/step - loss: 0.4166 - accuracy: 0.9008 - mae: 0.4166 - pearson_correlation: 0.5493 - euclidean_distance: 0.6175
Epoch 48/250
152/152 [==============================] - 0s 800us/step - loss: 0.4094 - accuracy: 0.9101 - mae: 0.4094 - pearson_correlation: 0.5429 - euclidean_distance: 0.6080
Epoch 49/250
152/152 [==============================] - 0s 797us/step - loss: 0.4034 - accuracy: 0.9074 - mae: 0.4034 - pearson_correlation: 0.5438 - euclidean_distance: 0.5998
Epoch 50/250
152/152 [==============================] - 0s 794us/step - loss: 0.3982 - accuracy: 0.8933 - mae: 0.3982 - pearson_correlation: 0.5310 - euclidean_distance: 0.5927
Epoch 51/250
152/152 [==============================] - 0s 796us/step - loss: 0.3928 - accuracy: 0.9026 - mae: 0.3928 - pearson_correlation: 0.5218 - euclidean_distance: 0.5861
Epoch 52/250
152/152 [==============================] - 0s 807us/step - loss: 0.3854 - accuracy: 0.8951 - mae: 0.3854 - pearson_correlation: 0.5296 - euclidean_distance: 0.5756
Epoch 53/250
152/152 [==============================] - 0s 809us/step - loss: 0.3805 - accuracy: 0.8968 - mae: 0.3805 - pearson_correlation: 0.5156 - euclidean_distance: 0.5699
Epoch 54/250
152/152 [==============================] - 0s 798us/step - loss: 0.3740 - accuracy: 0.9004 - mae: 0.3740 - pearson_correlation: 0.5177 - euclidean_distance: 0.5617
Epoch 55/250
152/152 [==============================] - 0s 804us/step - loss: 0.3670 - accuracy: 0.9078 - mae: 0.3670 - pearson_correlation: 0.5280 - euclidean_distance: 0.5503
Epoch 56/250
152/152 [==============================] - 0s 802us/step - loss: 0.3645 - accuracy: 0.8942 - mae: 0.3645 - pearson_correlation: 0.5142 - euclidean_distance: 0.5478
Epoch 57/250
152/152 [==============================] - 0s 798us/step - loss: 0.3574 - accuracy: 0.8937 - mae: 0.3574 - pearson_correlation: 0.5176 - euclidean_distance: 0.5388
Epoch 58/250
152/152 [==============================] - 0s 800us/step - loss: 0.3527 - accuracy: 0.9008 - mae: 0.3527 - pearson_correlation: 0.5112 - euclidean_distance: 0.5313
Epoch 59/250
152/152 [==============================] - 0s 797us/step - loss: 0.3465 - accuracy: 0.8929 - mae: 0.3465 - pearson_correlation: 0.5118 - euclidean_distance: 0.5230
Epoch 60/250
152/152 [==============================] - 0s 805us/step - loss: 0.3429 - accuracy: 0.8876 - mae: 0.3429 - pearson_correlation: 0.5022 - euclidean_distance: 0.5178
Epoch 61/250
152/152 [==============================] - 0s 794us/step - loss: 0.3382 - accuracy: 0.8884 - mae: 0.3382 - pearson_correlation: 0.4886 - euclidean_distance: 0.5115
Epoch 62/250
152/152 [==============================] - 0s 805us/step - loss: 0.3336 - accuracy: 0.8889 - mae: 0.3336 - pearson_correlation: 0.4984 - euclidean_distance: 0.5052
Epoch 63/250
152/152 [==============================] - 0s 810us/step - loss: 0.3286 - accuracy: 0.8959 - mae: 0.3286 - pearson_correlation: 0.4943 - euclidean_distance: 0.4976
Epoch 64/250
152/152 [==============================] - 0s 802us/step - loss: 0.3229 - accuracy: 0.8880 - mae: 0.3229 - pearson_correlation: 0.4913 - euclidean_distance: 0.4892
Epoch 65/250
152/152 [==============================] - 0s 797us/step - loss: 0.3178 - accuracy: 0.8951 - mae: 0.3178 - pearson_correlation: 0.4923 - euclidean_distance: 0.4818
Epoch 66/250
152/152 [==============================] - 0s 836us/step - loss: 0.3146 - accuracy: 0.8937 - mae: 0.3146 - pearson_correlation: 0.4863 - euclidean_distance: 0.4765
Epoch 67/250
152/152 [==============================] - 0s 879us/step - loss: 0.3092 - accuracy: 0.8946 - mae: 0.3092 - pearson_correlation: 0.4913 - euclidean_distance: 0.4694
Epoch 68/250
152/152 [==============================] - 0s 892us/step - loss: 0.3037 - accuracy: 0.8977 - mae: 0.3037 - pearson_correlation: 0.4898 - euclidean_distance: 0.4610
Epoch 69/250
152/152 [==============================] - 0s 929us/step - loss: 0.3008 - accuracy: 0.9012 - mae: 0.3008 - pearson_correlation: 0.4840 - euclidean_distance: 0.4562
Epoch 70/250
152/152 [==============================] - 0s 939us/step - loss: 0.2944 - accuracy: 0.9008 - mae: 0.2944 - pearson_correlation: 0.4909 - euclidean_distance: 0.4469
Epoch 71/250
152/152 [==============================] - 0s 822us/step - loss: 0.2899 - accuracy: 0.8986 - mae: 0.2899 - pearson_correlation: 0.4784 - euclidean_distance: 0.4404
Epoch 72/250
152/152 [==============================] - 0s 803us/step - loss: 0.2853 - accuracy: 0.9052 - mae: 0.2853 - pearson_correlation: 0.4845 - euclidean_distance: 0.4331
Epoch 73/250
152/152 [==============================] - 0s 802us/step - loss: 0.2817 - accuracy: 0.9017 - mae: 0.2817 - pearson_correlation: 0.4757 - euclidean_distance: 0.4281
Epoch 74/250
152/152 [==============================] - 0s 809us/step - loss: 0.2784 - accuracy: 0.9021 - mae: 0.2784 - pearson_correlation: 0.4738 - euclidean_distance: 0.4229
Epoch 75/250
152/152 [==============================] - 0s 800us/step - loss: 0.2734 - accuracy: 0.8986 - mae: 0.2734 - pearson_correlation: 0.4756 - euclidean_distance: 0.4158
Epoch 76/250
152/152 [==============================] - 0s 804us/step - loss: 0.2688 - accuracy: 0.8981 - mae: 0.2688 - pearson_correlation: 0.4747 - euclidean_distance: 0.4089
Epoch 77/250
152/152 [==============================] - 0s 811us/step - loss: 0.2664 - accuracy: 0.8986 - mae: 0.2664 - pearson_correlation: 0.4696 - euclidean_distance: 0.4053
Epoch 78/250
152/152 [==============================] - 0s 808us/step - loss: 0.2616 - accuracy: 0.9017 - mae: 0.2616 - pearson_correlation: 0.4763 - euclidean_distance: 0.3985
Epoch 79/250
152/152 [==============================] - 0s 808us/step - loss: 0.2553 - accuracy: 0.9026 - mae: 0.2553 - pearson_correlation: 0.4815 - euclidean_distance: 0.3893
Epoch 80/250
152/152 [==============================] - 0s 804us/step - loss: 0.2535 - accuracy: 0.9043 - mae: 0.2535 - pearson_correlation: 0.4741 - euclidean_distance: 0.3868
Epoch 81/250
152/152 [==============================] - 0s 801us/step - loss: 0.2514 - accuracy: 0.8973 - mae: 0.2514 - pearson_correlation: 0.4686 - euclidean_distance: 0.3838
Epoch 82/250
152/152 [==============================] - 0s 803us/step - loss: 0.2473 - accuracy: 0.9087 - mae: 0.2473 - pearson_correlation: 0.4688 - euclidean_distance: 0.3780
Epoch 83/250
152/152 [==============================] - 0s 800us/step - loss: 0.2444 - accuracy: 0.9101 - mae: 0.2444 - pearson_correlation: 0.4695 - euclidean_distance: 0.3732
Epoch 84/250
152/152 [==============================] - 0s 803us/step - loss: 0.2416 - accuracy: 0.9056 - mae: 0.2416 - pearson_correlation: 0.4716 - euclidean_distance: 0.3695
Epoch 85/250
152/152 [==============================] - 0s 799us/step - loss: 0.2376 - accuracy: 0.8995 - mae: 0.2376 - pearson_correlation: 0.4705 - euclidean_distance: 0.3644
Epoch 86/250
152/152 [==============================] - 0s 799us/step - loss: 0.2337 - accuracy: 0.9030 - mae: 0.2337 - pearson_correlation: 0.4791 - euclidean_distance: 0.3596
Epoch 87/250
152/152 [==============================] - 0s 806us/step - loss: 0.2304 - accuracy: 0.9065 - mae: 0.2304 - pearson_correlation: 0.4762 - euclidean_distance: 0.3540
Epoch 88/250
152/152 [==============================] - 0s 801us/step - loss: 0.2300 - accuracy: 0.9039 - mae: 0.2300 - pearson_correlation: 0.4770 - euclidean_distance: 0.3533
Epoch 89/250
152/152 [==============================] - 0s 793us/step - loss: 0.2254 - accuracy: 0.9008 - mae: 0.2254 - pearson_correlation: 0.4741 - euclidean_distance: 0.3468
Epoch 90/250
152/152 [==============================] - 0s 800us/step - loss: 0.2227 - accuracy: 0.9083 - mae: 0.2227 - pearson_correlation: 0.4762 - euclidean_distance: 0.3426
Epoch 91/250
152/152 [==============================] - 0s 805us/step - loss: 0.2207 - accuracy: 0.9004 - mae: 0.2207 - pearson_correlation: 0.4835 - euclidean_distance: 0.3403
Epoch 92/250
152/152 [==============================] - 0s 800us/step - loss: 0.2186 - accuracy: 0.9101 - mae: 0.2186 - pearson_correlation: 0.4834 - euclidean_distance: 0.3374
Epoch 93/250
152/152 [==============================] - 0s 799us/step - loss: 0.2177 - accuracy: 0.9087 - mae: 0.2177 - pearson_correlation: 0.4829 - euclidean_distance: 0.3359
Epoch 94/250
152/152 [==============================] - 0s 802us/step - loss: 0.2149 - accuracy: 0.9136 - mae: 0.2149 - pearson_correlation: 0.4963 - euclidean_distance: 0.3317
Epoch 95/250
152/152 [==============================] - 0s 799us/step - loss: 0.2120 - accuracy: 0.9004 - mae: 0.2120 - pearson_correlation: 0.4900 - euclidean_distance: 0.3282
Epoch 96/250
152/152 [==============================] - 0s 799us/step - loss: 0.2100 - accuracy: 0.9078 - mae: 0.2100 - pearson_correlation: 0.4948 - euclidean_distance: 0.3248
Epoch 97/250
152/152 [==============================] - 0s 796us/step - loss: 0.2064 - accuracy: 0.9048 - mae: 0.2064 - pearson_correlation: 0.5008 - euclidean_distance: 0.3193
Epoch 98/250
152/152 [==============================] - 0s 798us/step - loss: 0.2039 - accuracy: 0.9008 - mae: 0.2039 - pearson_correlation: 0.5047 - euclidean_distance: 0.3166
Epoch 99/250
152/152 [==============================] - 0s 802us/step - loss: 0.2018 - accuracy: 0.9061 - mae: 0.2018 - pearson_correlation: 0.5086 - euclidean_distance: 0.3135
Epoch 100/250
152/152 [==============================] - 0s 894us/step - loss: 0.2004 - accuracy: 0.9039 - mae: 0.2004 - pearson_correlation: 0.5098 - euclidean_distance: 0.3115
Epoch 101/250
152/152 [==============================] - 0s 855us/step - loss: 0.1975 - accuracy: 0.9118 - mae: 0.1975 - pearson_correlation: 0.5180 - euclidean_distance: 0.3071
Epoch 102/250
152/152 [==============================] - 0s 825us/step - loss: 0.1944 - accuracy: 0.9101 - mae: 0.1944 - pearson_correlation: 0.5209 - euclidean_distance: 0.3028
Epoch 103/250
152/152 [==============================] - 0s 806us/step - loss: 0.1964 - accuracy: 0.9012 - mae: 0.1964 - pearson_correlation: 0.5106 - euclidean_distance: 0.3063
Epoch 104/250
152/152 [==============================] - 0s 805us/step - loss: 0.1919 - accuracy: 0.9105 - mae: 0.1919 - pearson_correlation: 0.5151 - euclidean_distance: 0.2999
Epoch 105/250
152/152 [==============================] - 0s 808us/step - loss: 0.1894 - accuracy: 0.9026 - mae: 0.1894 - pearson_correlation: 0.5210 - euclidean_distance: 0.2965
Epoch 106/250
152/152 [==============================] - 0s 818us/step - loss: 0.1880 - accuracy: 0.9034 - mae: 0.1880 - pearson_correlation: 0.5164 - euclidean_distance: 0.2944
Epoch 107/250
152/152 [==============================] - 0s 832us/step - loss: 0.1868 - accuracy: 0.9008 - mae: 0.1868 - pearson_correlation: 0.5248 - euclidean_distance: 0.2930
Epoch 108/250
152/152 [==============================] - 0s 812us/step - loss: 0.1827 - accuracy: 0.9012 - mae: 0.1827 - pearson_correlation: 0.5282 - euclidean_distance: 0.2869
Epoch 109/250
152/152 [==============================] - 0s 809us/step - loss: 0.1836 - accuracy: 0.9017 - mae: 0.1836 - pearson_correlation: 0.5318 - euclidean_distance: 0.2886
Epoch 110/250
152/152 [==============================] - 0s 805us/step - loss: 0.1794 - accuracy: 0.8981 - mae: 0.1794 - pearson_correlation: 0.5319 - euclidean_distance: 0.2822
Epoch 111/250
152/152 [==============================] - 0s 805us/step - loss: 0.1768 - accuracy: 0.9021 - mae: 0.1768 - pearson_correlation: 0.5453 - euclidean_distance: 0.2777
Epoch 112/250
152/152 [==============================] - 0s 805us/step - loss: 0.1767 - accuracy: 0.8955 - mae: 0.1767 - pearson_correlation: 0.5407 - euclidean_distance: 0.2787
Epoch 113/250
152/152 [==============================] - 0s 805us/step - loss: 0.1759 - accuracy: 0.8933 - mae: 0.1759 - pearson_correlation: 0.5395 - euclidean_distance: 0.2779
Epoch 114/250
152/152 [==============================] - 0s 805us/step - loss: 0.1723 - accuracy: 0.9017 - mae: 0.1723 - pearson_correlation: 0.5449 - euclidean_distance: 0.2728
Epoch 115/250
152/152 [==============================] - 0s 804us/step - loss: 0.1722 - accuracy: 0.8929 - mae: 0.1722 - pearson_correlation: 0.5456 - euclidean_distance: 0.2726
Epoch 116/250
152/152 [==============================] - 0s 803us/step - loss: 0.1682 - accuracy: 0.8990 - mae: 0.1682 - pearson_correlation: 0.5541 - euclidean_distance: 0.2662
Epoch 117/250
152/152 [==============================] - 0s 809us/step - loss: 0.1705 - accuracy: 0.8933 - mae: 0.1705 - pearson_correlation: 0.5536 - euclidean_distance: 0.2696
Epoch 118/250
152/152 [==============================] - 0s 800us/step - loss: 0.1668 - accuracy: 0.8942 - mae: 0.1668 - pearson_correlation: 0.5511 - euclidean_distance: 0.2650
Epoch 119/250
152/152 [==============================] - 0s 801us/step - loss: 0.1648 - accuracy: 0.8924 - mae: 0.1648 - pearson_correlation: 0.5529 - euclidean_distance: 0.2623
Epoch 120/250
152/152 [==============================] - 0s 795us/step - loss: 0.1637 - accuracy: 0.8911 - mae: 0.1637 - pearson_correlation: 0.5578 - euclidean_distance: 0.2609
Epoch 121/250
152/152 [==============================] - 0s 812us/step - loss: 0.1610 - accuracy: 0.8959 - mae: 0.1610 - pearson_correlation: 0.5607 - euclidean_distance: 0.2565
Epoch 122/250
152/152 [==============================] - 0s 804us/step - loss: 0.1581 - accuracy: 0.8876 - mae: 0.1581 - pearson_correlation: 0.5743 - euclidean_distance: 0.2529
Epoch 123/250
152/152 [==============================] - 0s 799us/step - loss: 0.1587 - accuracy: 0.8911 - mae: 0.1587 - pearson_correlation: 0.5649 - euclidean_distance: 0.2533
Epoch 124/250
152/152 [==============================] - 0s 799us/step - loss: 0.1585 - accuracy: 0.8862 - mae: 0.1585 - pearson_correlation: 0.5603 - euclidean_distance: 0.2544
Epoch 125/250
152/152 [==============================] - 0s 800us/step - loss: 0.1562 - accuracy: 0.8880 - mae: 0.1562 - pearson_correlation: 0.5681 - euclidean_distance: 0.2510
Epoch 126/250
152/152 [==============================] - 0s 806us/step - loss: 0.1541 - accuracy: 0.8836 - mae: 0.1541 - pearson_correlation: 0.5665 - euclidean_distance: 0.2474
Epoch 127/250
152/152 [==============================] - 0s 801us/step - loss: 0.1524 - accuracy: 0.8911 - mae: 0.1524 - pearson_correlation: 0.5762 - euclidean_distance: 0.2447
Epoch 128/250
152/152 [==============================] - 0s 800us/step - loss: 0.1530 - accuracy: 0.8915 - mae: 0.1530 - pearson_correlation: 0.5751 - euclidean_distance: 0.2463
Epoch 129/250
152/152 [==============================] - 0s 798us/step - loss: 0.1491 - accuracy: 0.8933 - mae: 0.1491 - pearson_correlation: 0.5874 - euclidean_distance: 0.2399
Epoch 130/250
152/152 [==============================] - 0s 799us/step - loss: 0.1476 - accuracy: 0.8854 - mae: 0.1476 - pearson_correlation: 0.5840 - euclidean_distance: 0.2380
Epoch 131/250
152/152 [==============================] - 0s 801us/step - loss: 0.1471 - accuracy: 0.8862 - mae: 0.1471 - pearson_correlation: 0.5848 - euclidean_distance: 0.2380
Epoch 132/250
152/152 [==============================] - 0s 801us/step - loss: 0.1477 - accuracy: 0.8845 - mae: 0.1477 - pearson_correlation: 0.5822 - euclidean_distance: 0.2391
Epoch 133/250
152/152 [==============================] - 0s 799us/step - loss: 0.1427 - accuracy: 0.8854 - mae: 0.1427 - pearson_correlation: 0.5978 - euclidean_distance: 0.2311
Epoch 134/250
152/152 [==============================] - 0s 806us/step - loss: 0.1447 - accuracy: 0.8880 - mae: 0.1447 - pearson_correlation: 0.5889 - euclidean_distance: 0.2340
Epoch 135/250
152/152 [==============================] - 0s 794us/step - loss: 0.1394 - accuracy: 0.8889 - mae: 0.1394 - pearson_correlation: 0.6024 - euclidean_distance: 0.2262
Epoch 136/250
152/152 [==============================] - 0s 799us/step - loss: 0.1421 - accuracy: 0.8818 - mae: 0.1421 - pearson_correlation: 0.5914 - euclidean_distance: 0.2303
Epoch 137/250
152/152 [==============================] - 0s 798us/step - loss: 0.1403 - accuracy: 0.8871 - mae: 0.1403 - pearson_correlation: 0.5916 - euclidean_distance: 0.2279
Epoch 138/250
152/152 [==============================] - 0s 806us/step - loss: 0.1393 - accuracy: 0.8880 - mae: 0.1393 - pearson_correlation: 0.6051 - euclidean_distance: 0.2256
Epoch 139/250
152/152 [==============================] - 0s 805us/step - loss: 0.1420 - accuracy: 0.8933 - mae: 0.1420 - pearson_correlation: 0.5926 - euclidean_distance: 0.2301
Epoch 140/250
152/152 [==============================] - 0s 799us/step - loss: 0.1363 - accuracy: 0.8964 - mae: 0.1363 - pearson_correlation: 0.6124 - euclidean_distance: 0.2215
Epoch 141/250
152/152 [==============================] - 0s 803us/step - loss: 0.1366 - accuracy: 0.8911 - mae: 0.1366 - pearson_correlation: 0.6076 - euclidean_distance: 0.2215
Epoch 142/250
152/152 [==============================] - 0s 798us/step - loss: 0.1350 - accuracy: 0.8986 - mae: 0.1350 - pearson_correlation: 0.6167 - euclidean_distance: 0.2193
Epoch 143/250
152/152 [==============================] - 0s 796us/step - loss: 0.1353 - accuracy: 0.9008 - mae: 0.1353 - pearson_correlation: 0.6072 - euclidean_distance: 0.2195
Epoch 144/250
152/152 [==============================] - 0s 799us/step - loss: 0.1317 - accuracy: 0.9030 - mae: 0.1317 - pearson_correlation: 0.6250 - euclidean_distance: 0.2138
Epoch 145/250
152/152 [==============================] - 0s 802us/step - loss: 0.1322 - accuracy: 0.9056 - mae: 0.1322 - pearson_correlation: 0.6170 - euclidean_distance: 0.2147
Epoch 146/250
152/152 [==============================] - 0s 819us/step - loss: 0.1296 - accuracy: 0.9074 - mae: 0.1296 - pearson_correlation: 0.6362 - euclidean_distance: 0.2107
Epoch 147/250
152/152 [==============================] - 0s 806us/step - loss: 0.1299 - accuracy: 0.9021 - mae: 0.1299 - pearson_correlation: 0.6253 - euclidean_distance: 0.2115
Epoch 148/250
152/152 [==============================] - 0s 803us/step - loss: 0.1284 - accuracy: 0.9048 - mae: 0.1284 - pearson_correlation: 0.6286 - euclidean_distance: 0.2093
Epoch 149/250
152/152 [==============================] - 0s 799us/step - loss: 0.1285 - accuracy: 0.9065 - mae: 0.1285 - pearson_correlation: 0.6310 - euclidean_distance: 0.2079
Epoch 150/250
152/152 [==============================] - 0s 800us/step - loss: 0.1290 - accuracy: 0.9074 - mae: 0.1290 - pearson_correlation: 0.6320 - euclidean_distance: 0.2097
Epoch 151/250
152/152 [==============================] - 0s 798us/step - loss: 0.1257 - accuracy: 0.9074 - mae: 0.1257 - pearson_correlation: 0.6399 - euclidean_distance: 0.2046
Epoch 152/250
152/152 [==============================] - 0s 803us/step - loss: 0.1249 - accuracy: 0.9127 - mae: 0.1249 - pearson_correlation: 0.6386 - euclidean_distance: 0.2043
Epoch 153/250
152/152 [==============================] - 0s 797us/step - loss: 0.1260 - accuracy: 0.9074 - mae: 0.1260 - pearson_correlation: 0.6395 - euclidean_distance: 0.2053
Epoch 154/250
152/152 [==============================] - 0s 801us/step - loss: 0.1222 - accuracy: 0.9131 - mae: 0.1222 - pearson_correlation: 0.6539 - euclidean_distance: 0.1980
Epoch 155/250
152/152 [==============================] - 0s 797us/step - loss: 0.1213 - accuracy: 0.9167 - mae: 0.1213 - pearson_correlation: 0.6529 - euclidean_distance: 0.1977
Epoch 156/250
152/152 [==============================] - 0s 797us/step - loss: 0.1238 - accuracy: 0.9189 - mae: 0.1238 - pearson_correlation: 0.6450 - euclidean_distance: 0.2016
Epoch 157/250
152/152 [==============================] - 0s 804us/step - loss: 0.1217 - accuracy: 0.9145 - mae: 0.1217 - pearson_correlation: 0.6518 - euclidean_distance: 0.1980
Epoch 158/250
152/152 [==============================] - 0s 795us/step - loss: 0.1216 - accuracy: 0.9242 - mae: 0.1216 - pearson_correlation: 0.6533 - euclidean_distance: 0.1974
Epoch 159/250
152/152 [==============================] - 0s 800us/step - loss: 0.1195 - accuracy: 0.9228 - mae: 0.1195 - pearson_correlation: 0.6619 - euclidean_distance: 0.1945
Epoch 160/250
152/152 [==============================] - 0s 797us/step - loss: 0.1201 - accuracy: 0.9202 - mae: 0.1201 - pearson_correlation: 0.6618 - euclidean_distance: 0.1951
Epoch 161/250
152/152 [==============================] - 0s 789us/step - loss: 0.1180 - accuracy: 0.9264 - mae: 0.1180 - pearson_correlation: 0.6629 - euclidean_distance: 0.1921
Epoch 162/250
152/152 [==============================] - 0s 796us/step - loss: 0.1186 - accuracy: 0.9211 - mae: 0.1186 - pearson_correlation: 0.6701 - euclidean_distance: 0.1927
Epoch 163/250
152/152 [==============================] - 0s 795us/step - loss: 0.1156 - accuracy: 0.9286 - mae: 0.1156 - pearson_correlation: 0.6760 - euclidean_distance: 0.1879
Epoch 164/250
152/152 [==============================] - 0s 799us/step - loss: 0.1182 - accuracy: 0.9295 - mae: 0.1182 - pearson_correlation: 0.6690 - euclidean_distance: 0.1921
Epoch 165/250
152/152 [==============================] - 0s 813us/step - loss: 0.1165 - accuracy: 0.9246 - mae: 0.1165 - pearson_correlation: 0.6681 - euclidean_distance: 0.1899
Epoch 166/250
152/152 [==============================] - 0s 846us/step - loss: 0.1152 - accuracy: 0.9290 - mae: 0.1152 - pearson_correlation: 0.6733 - euclidean_distance: 0.1872
Epoch 167/250
152/152 [==============================] - 0s 801us/step - loss: 0.1143 - accuracy: 0.9356 - mae: 0.1143 - pearson_correlation: 0.6798 - euclidean_distance: 0.1856
Epoch 168/250
152/152 [==============================] - 0s 800us/step - loss: 0.1143 - accuracy: 0.9295 - mae: 0.1143 - pearson_correlation: 0.6820 - euclidean_distance: 0.1854
Epoch 169/250
152/152 [==============================] - 0s 802us/step - loss: 0.1126 - accuracy: 0.9369 - mae: 0.1126 - pearson_correlation: 0.6823 - euclidean_distance: 0.1838
Epoch 170/250
152/152 [==============================] - 0s 799us/step - loss: 0.1151 - accuracy: 0.9308 - mae: 0.1151 - pearson_correlation: 0.6741 - euclidean_distance: 0.1877
Epoch 171/250
152/152 [==============================] - 0s 800us/step - loss: 0.1134 - accuracy: 0.9356 - mae: 0.1134 - pearson_correlation: 0.6767 - euclidean_distance: 0.1848
Epoch 172/250
152/152 [==============================] - 0s 797us/step - loss: 0.1144 - accuracy: 0.9255 - mae: 0.1144 - pearson_correlation: 0.6749 - euclidean_distance: 0.1866
Epoch 173/250
152/152 [==============================] - 0s 801us/step - loss: 0.1113 - accuracy: 0.9374 - mae: 0.1113 - pearson_correlation: 0.6880 - euclidean_distance: 0.1811
Epoch 174/250
152/152 [==============================] - 0s 800us/step - loss: 0.1127 - accuracy: 0.9356 - mae: 0.1127 - pearson_correlation: 0.6862 - euclidean_distance: 0.1833
Epoch 175/250
152/152 [==============================] - 0s 806us/step - loss: 0.1095 - accuracy: 0.9365 - mae: 0.1095 - pearson_correlation: 0.6879 - euclidean_distance: 0.1782
Epoch 176/250
152/152 [==============================] - 0s 798us/step - loss: 0.1105 - accuracy: 0.9374 - mae: 0.1105 - pearson_correlation: 0.6919 - euclidean_distance: 0.1792
Epoch 177/250
152/152 [==============================] - 0s 801us/step - loss: 0.1060 - accuracy: 0.9365 - mae: 0.1060 - pearson_correlation: 0.7000 - euclidean_distance: 0.1729
Epoch 178/250
152/152 [==============================] - 0s 797us/step - loss: 0.1085 - accuracy: 0.9352 - mae: 0.1085 - pearson_correlation: 0.6893 - euclidean_distance: 0.1766
Epoch 179/250
152/152 [==============================] - 0s 795us/step - loss: 0.1075 - accuracy: 0.9392 - mae: 0.1075 - pearson_correlation: 0.6966 - euclidean_distance: 0.1753
Epoch 180/250
152/152 [==============================] - 0s 798us/step - loss: 0.1072 - accuracy: 0.9356 - mae: 0.1072 - pearson_correlation: 0.7008 - euclidean_distance: 0.1744
Epoch 181/250
152/152 [==============================] - 0s 791us/step - loss: 0.1090 - accuracy: 0.9378 - mae: 0.1090 - pearson_correlation: 0.6927 - euclidean_distance: 0.1781
Epoch 182/250
152/152 [==============================] - 0s 798us/step - loss: 0.1082 - accuracy: 0.9405 - mae: 0.1082 - pearson_correlation: 0.6943 - euclidean_distance: 0.1759
Epoch 183/250
152/152 [==============================] - 0s 807us/step - loss: 0.1066 - accuracy: 0.9414 - mae: 0.1066 - pearson_correlation: 0.6977 - euclidean_distance: 0.1732
Epoch 184/250
152/152 [==============================] - 0s 798us/step - loss: 0.1060 - accuracy: 0.9400 - mae: 0.1060 - pearson_correlation: 0.7074 - euclidean_distance: 0.1724
Epoch 185/250
152/152 [==============================] - 0s 802us/step - loss: 0.1059 - accuracy: 0.9431 - mae: 0.1059 - pearson_correlation: 0.7057 - euclidean_distance: 0.1728
Epoch 186/250
152/152 [==============================] - 0s 802us/step - loss: 0.1061 - accuracy: 0.9414 - mae: 0.1061 - pearson_correlation: 0.7028 - euclidean_distance: 0.1732
Epoch 187/250
152/152 [==============================] - 0s 800us/step - loss: 0.1042 - accuracy: 0.9414 - mae: 0.1042 - pearson_correlation: 0.7125 - euclidean_distance: 0.1695
Epoch 188/250
152/152 [==============================] - 0s 799us/step - loss: 0.1056 - accuracy: 0.9418 - mae: 0.1056 - pearson_correlation: 0.7089 - euclidean_distance: 0.1716
Epoch 189/250
152/152 [==============================] - 0s 805us/step - loss: 0.1045 - accuracy: 0.9409 - mae: 0.1045 - pearson_correlation: 0.7075 - euclidean_distance: 0.1697
Epoch 190/250
152/152 [==============================] - 0s 799us/step - loss: 0.1023 - accuracy: 0.9422 - mae: 0.1023 - pearson_correlation: 0.7150 - euclidean_distance: 0.1666
Epoch 191/250
152/152 [==============================] - 0s 805us/step - loss: 0.1043 - accuracy: 0.9396 - mae: 0.1043 - pearson_correlation: 0.7078 - euclidean_distance: 0.1696
Epoch 192/250
152/152 [==============================] - 0s 807us/step - loss: 0.1026 - accuracy: 0.9462 - mae: 0.1026 - pearson_correlation: 0.7113 - euclidean_distance: 0.1673
Epoch 193/250
152/152 [==============================] - 0s 803us/step - loss: 0.1019 - accuracy: 0.9436 - mae: 0.1019 - pearson_correlation: 0.7172 - euclidean_distance: 0.1661
Epoch 194/250
152/152 [==============================] - 0s 801us/step - loss: 0.1023 - accuracy: 0.9466 - mae: 0.1023 - pearson_correlation: 0.7170 - euclidean_distance: 0.1662
Epoch 195/250
152/152 [==============================] - 0s 854us/step - loss: 0.1033 - accuracy: 0.9453 - mae: 0.1033 - pearson_correlation: 0.7091 - euclidean_distance: 0.1687
Epoch 196/250
152/152 [==============================] - 0s 884us/step - loss: 0.0996 - accuracy: 0.9458 - mae: 0.0996 - pearson_correlation: 0.7205 - euclidean_distance: 0.1625
Epoch 197/250
152/152 [==============================] - 0s 905us/step - loss: 0.0990 - accuracy: 0.9453 - mae: 0.0990 - pearson_correlation: 0.7274 - euclidean_distance: 0.1619
Epoch 198/250
152/152 [==============================] - 0s 902us/step - loss: 0.1012 - accuracy: 0.9453 - mae: 0.1012 - pearson_correlation: 0.7211 - euclidean_distance: 0.1647
Epoch 199/250
152/152 [==============================] - 0s 910us/step - loss: 0.0995 - accuracy: 0.9444 - mae: 0.0995 - pearson_correlation: 0.7221 - euclidean_distance: 0.1621
Epoch 200/250
152/152 [==============================] - 0s 808us/step - loss: 0.0999 - accuracy: 0.9414 - mae: 0.0999 - pearson_correlation: 0.7263 - euclidean_distance: 0.1624
Epoch 201/250
152/152 [==============================] - 0s 808us/step - loss: 0.1005 - accuracy: 0.9436 - mae: 0.1005 - pearson_correlation: 0.7196 - euclidean_distance: 0.1637
Epoch 202/250
152/152 [==============================] - 0s 820us/step - loss: 0.0971 - accuracy: 0.9489 - mae: 0.0971 - pearson_correlation: 0.7269 - euclidean_distance: 0.1580
Epoch 203/250
152/152 [==============================] - 0s 811us/step - loss: 0.0996 - accuracy: 0.9471 - mae: 0.0996 - pearson_correlation: 0.7208 - euclidean_distance: 0.1624
Epoch 204/250
152/152 [==============================] - 0s 803us/step - loss: 0.0970 - accuracy: 0.9444 - mae: 0.0970 - pearson_correlation: 0.7321 - euclidean_distance: 0.1582
Epoch 205/250
152/152 [==============================] - 0s 807us/step - loss: 0.0992 - accuracy: 0.9436 - mae: 0.0992 - pearson_correlation: 0.7232 - euclidean_distance: 0.1620
Epoch 206/250
152/152 [==============================] - 0s 803us/step - loss: 0.0996 - accuracy: 0.9440 - mae: 0.0996 - pearson_correlation: 0.7204 - euclidean_distance: 0.1623
Epoch 207/250
152/152 [==============================] - 0s 799us/step - loss: 0.0972 - accuracy: 0.9484 - mae: 0.0972 - pearson_correlation: 0.7316 - euclidean_distance: 0.1581
Epoch 208/250
152/152 [==============================] - 0s 803us/step - loss: 0.0989 - accuracy: 0.9453 - mae: 0.0989 - pearson_correlation: 0.7251 - euclidean_distance: 0.1611
Epoch 209/250
152/152 [==============================] - 0s 799us/step - loss: 0.0978 - accuracy: 0.9453 - mae: 0.0978 - pearson_correlation: 0.7280 - euclidean_distance: 0.1596
Epoch 210/250
152/152 [==============================] - 0s 798us/step - loss: 0.0971 - accuracy: 0.9453 - mae: 0.0971 - pearson_correlation: 0.7276 - euclidean_distance: 0.1582
Epoch 211/250
152/152 [==============================] - 0s 799us/step - loss: 0.0971 - accuracy: 0.9471 - mae: 0.0971 - pearson_correlation: 0.7305 - euclidean_distance: 0.1582
Epoch 212/250
152/152 [==============================] - 0s 799us/step - loss: 0.0967 - accuracy: 0.9480 - mae: 0.0967 - pearson_correlation: 0.7300 - euclidean_distance: 0.1578
Epoch 213/250
152/152 [==============================] - 0s 804us/step - loss: 0.0956 - accuracy: 0.9471 - mae: 0.0956 - pearson_correlation: 0.7307 - euclidean_distance: 0.1557
Epoch 214/250
152/152 [==============================] - 0s 802us/step - loss: 0.0943 - accuracy: 0.9484 - mae: 0.0943 - pearson_correlation: 0.7395 - euclidean_distance: 0.1545
Epoch 215/250
152/152 [==============================] - 0s 808us/step - loss: 0.0955 - accuracy: 0.9497 - mae: 0.0955 - pearson_correlation: 0.7396 - euclidean_distance: 0.1558
Epoch 216/250
152/152 [==============================] - 0s 798us/step - loss: 0.0961 - accuracy: 0.9440 - mae: 0.0961 - pearson_correlation: 0.7332 - euclidean_distance: 0.1572
Epoch 217/250
152/152 [==============================] - 0s 803us/step - loss: 0.0954 - accuracy: 0.9493 - mae: 0.0954 - pearson_correlation: 0.7306 - euclidean_distance: 0.1560
Epoch 218/250
152/152 [==============================] - 0s 803us/step - loss: 0.0961 - accuracy: 0.9497 - mae: 0.0961 - pearson_correlation: 0.7422 - euclidean_distance: 0.1564
Epoch 219/250
152/152 [==============================] - 0s 803us/step - loss: 0.0950 - accuracy: 0.9466 - mae: 0.0950 - pearson_correlation: 0.7395 - euclidean_distance: 0.1544
Epoch 220/250
152/152 [==============================] - 0s 797us/step - loss: 0.0958 - accuracy: 0.9484 - mae: 0.0958 - pearson_correlation: 0.7324 - euclidean_distance: 0.1564
Epoch 221/250
152/152 [==============================] - 0s 799us/step - loss: 0.0945 - accuracy: 0.9493 - mae: 0.0945 - pearson_correlation: 0.7402 - euclidean_distance: 0.1544
Epoch 222/250
152/152 [==============================] - 0s 791us/step - loss: 0.0949 - accuracy: 0.9489 - mae: 0.0949 - pearson_correlation: 0.7365 - euclidean_distance: 0.1551
Epoch 223/250
152/152 [==============================] - 0s 802us/step - loss: 0.0956 - accuracy: 0.9493 - mae: 0.0956 - pearson_correlation: 0.7296 - euclidean_distance: 0.1561
Epoch 224/250
152/152 [==============================] - 0s 797us/step - loss: 0.0940 - accuracy: 0.9489 - mae: 0.0940 - pearson_correlation: 0.7388 - euclidean_distance: 0.1540
Epoch 225/250
152/152 [==============================] - 0s 801us/step - loss: 0.0928 - accuracy: 0.9497 - mae: 0.0928 - pearson_correlation: 0.7441 - euclidean_distance: 0.1519
Epoch 226/250
152/152 [==============================] - 0s 796us/step - loss: 0.0938 - accuracy: 0.9493 - mae: 0.0938 - pearson_correlation: 0.7478 - euclidean_distance: 0.1529
Epoch 227/250
152/152 [==============================] - 0s 804us/step - loss: 0.0952 - accuracy: 0.9484 - mae: 0.0952 - pearson_correlation: 0.7367 - euclidean_distance: 0.1554
Epoch 228/250
152/152 [==============================] - 0s 802us/step - loss: 0.0915 - accuracy: 0.9515 - mae: 0.0915 - pearson_correlation: 0.7476 - euclidean_distance: 0.1495
Epoch 229/250
152/152 [==============================] - 0s 802us/step - loss: 0.0924 - accuracy: 0.9493 - mae: 0.0924 - pearson_correlation: 0.7459 - euclidean_distance: 0.1511
Epoch 230/250
152/152 [==============================] - 0s 800us/step - loss: 0.0928 - accuracy: 0.9475 - mae: 0.0928 - pearson_correlation: 0.7461 - euclidean_distance: 0.1510
Epoch 231/250
152/152 [==============================] - 0s 797us/step - loss: 0.0940 - accuracy: 0.9515 - mae: 0.0940 - pearson_correlation: 0.7379 - euclidean_distance: 0.1538
Epoch 232/250
152/152 [==============================] - 0s 803us/step - loss: 0.0917 - accuracy: 0.9506 - mae: 0.0917 - pearson_correlation: 0.7489 - euclidean_distance: 0.1494
Epoch 233/250
152/152 [==============================] - 0s 801us/step - loss: 0.0909 - accuracy: 0.9493 - mae: 0.0909 - pearson_correlation: 0.7569 - euclidean_distance: 0.1481
Epoch 234/250
152/152 [==============================] - 0s 802us/step - loss: 0.0917 - accuracy: 0.9515 - mae: 0.0917 - pearson_correlation: 0.7457 - euclidean_distance: 0.1502
Epoch 235/250
152/152 [==============================] - 0s 796us/step - loss: 0.0921 - accuracy: 0.9497 - mae: 0.0921 - pearson_correlation: 0.7462 - euclidean_distance: 0.1504
Epoch 236/250
152/152 [==============================] - 0s 801us/step - loss: 0.0921 - accuracy: 0.9511 - mae: 0.0921 - pearson_correlation: 0.7461 - euclidean_distance: 0.1510
Epoch 237/250
152/152 [==============================] - 0s 798us/step - loss: 0.0914 - accuracy: 0.9506 - mae: 0.0914 - pearson_correlation: 0.7489 - euclidean_distance: 0.1494
Epoch 238/250
152/152 [==============================] - 0s 800us/step - loss: 0.0925 - accuracy: 0.9497 - mae: 0.0925 - pearson_correlation: 0.7430 - euclidean_distance: 0.1512
Epoch 239/250
152/152 [==============================] - 0s 796us/step - loss: 0.0923 - accuracy: 0.9484 - mae: 0.0923 - pearson_correlation: 0.7418 - euclidean_distance: 0.1510
Epoch 240/250
152/152 [==============================] - 0s 801us/step - loss: 0.0907 - accuracy: 0.9493 - mae: 0.0907 - pearson_correlation: 0.7479 - euclidean_distance: 0.1480
Epoch 241/250
152/152 [==============================] - 0s 801us/step - loss: 0.0932 - accuracy: 0.9524 - mae: 0.0932 - pearson_correlation: 0.7439 - euclidean_distance: 0.1525
Epoch 242/250
152/152 [==============================] - 0s 799us/step - loss: 0.0883 - accuracy: 0.9528 - mae: 0.0883 - pearson_correlation: 0.7559 - euclidean_distance: 0.1448
Epoch 243/250
152/152 [==============================] - 0s 812us/step - loss: 0.0906 - accuracy: 0.9506 - mae: 0.0906 - pearson_correlation: 0.7543 - euclidean_distance: 0.1481
Epoch 244/250
152/152 [==============================] - 0s 800us/step - loss: 0.0903 - accuracy: 0.9489 - mae: 0.0903 - pearson_correlation: 0.7433 - euclidean_distance: 0.1479
Epoch 245/250
152/152 [==============================] - 0s 799us/step - loss: 0.0900 - accuracy: 0.9519 - mae: 0.0900 - pearson_correlation: 0.7522 - euclidean_distance: 0.1472
Epoch 246/250
152/152 [==============================] - 0s 803us/step - loss: 0.0877 - accuracy: 0.9511 - mae: 0.0877 - pearson_correlation: 0.7569 - euclidean_distance: 0.1434
Epoch 247/250
152/152 [==============================] - 0s 798us/step - loss: 0.0907 - accuracy: 0.9506 - mae: 0.0907 - pearson_correlation: 0.7504 - euclidean_distance: 0.1484
Epoch 248/250
152/152 [==============================] - 0s 809us/step - loss: 0.0898 - accuracy: 0.9524 - mae: 0.0898 - pearson_correlation: 0.7546 - euclidean_distance: 0.1467
Epoch 249/250
152/152 [==============================] - 0s 798us/step - loss: 0.0864 - accuracy: 0.9524 - mae: 0.0864 - pearson_correlation: 0.7603 - euclidean_distance: 0.1418
Epoch 250/250
152/152 [==============================] - 0s 802us/step - loss: 0.0895 - accuracy: 0.9524 - mae: 0.0895 - pearson_correlation: 0.7546 - euclidean_distance: 0.1466
76/76 [==============================] - 0s 436us/step
Epoch 1/300
152/152 [==============================] - 1s 827us/step - loss: 0.3765 - accuracy: 0.6061 - mae: 0.3765 - pearson_correlation: 0.1292 - euclidean_distance: 0.5887
Epoch 2/300
152/152 [==============================] - 0s 811us/step - loss: 0.3632 - accuracy: 0.6171 - mae: 0.3632 - pearson_correlation: 0.1404 - euclidean_distance: 0.5690
Epoch 3/300
152/152 [==============================] - 0s 808us/step - loss: 0.3539 - accuracy: 0.6299 - mae: 0.3539 - pearson_correlation: 0.1443 - euclidean_distance: 0.5526
Epoch 4/300
152/152 [==============================] - 0s 811us/step - loss: 0.3357 - accuracy: 0.6449 - mae: 0.3357 - pearson_correlation: 0.1639 - euclidean_distance: 0.5259
Epoch 5/300
152/152 [==============================] - 0s 810us/step - loss: 0.3264 - accuracy: 0.6546 - mae: 0.3264 - pearson_correlation: 0.1710 - euclidean_distance: 0.5118
Epoch 6/300
152/152 [==============================] - 0s 810us/step - loss: 0.3113 - accuracy: 0.6612 - mae: 0.3113 - pearson_correlation: 0.1887 - euclidean_distance: 0.4885
Epoch 7/300
152/152 [==============================] - 0s 808us/step - loss: 0.3021 - accuracy: 0.6745 - mae: 0.3021 - pearson_correlation: 0.1971 - euclidean_distance: 0.4742
Epoch 8/300
152/152 [==============================] - 0s 808us/step - loss: 0.2943 - accuracy: 0.6758 - mae: 0.2943 - pearson_correlation: 0.2009 - euclidean_distance: 0.4639
Epoch 9/300
152/152 [==============================] - 0s 808us/step - loss: 0.2854 - accuracy: 0.6873 - mae: 0.2854 - pearson_correlation: 0.2105 - euclidean_distance: 0.4489
Epoch 10/300
152/152 [==============================] - 0s 810us/step - loss: 0.2741 - accuracy: 0.7031 - mae: 0.2741 - pearson_correlation: 0.2246 - euclidean_distance: 0.4329
Epoch 11/300
152/152 [==============================] - 0s 808us/step - loss: 0.2723 - accuracy: 0.7036 - mae: 0.2723 - pearson_correlation: 0.2313 - euclidean_distance: 0.4294
Epoch 12/300
152/152 [==============================] - 0s 806us/step - loss: 0.2634 - accuracy: 0.7199 - mae: 0.2634 - pearson_correlation: 0.2516 - euclidean_distance: 0.4146
Epoch 13/300
152/152 [==============================] - 0s 806us/step - loss: 0.2566 - accuracy: 0.7150 - mae: 0.2566 - pearson_correlation: 0.2556 - euclidean_distance: 0.4051
Epoch 14/300
152/152 [==============================] - 0s 804us/step - loss: 0.2487 - accuracy: 0.7349 - mae: 0.2487 - pearson_correlation: 0.2715 - euclidean_distance: 0.3935
Epoch 15/300
152/152 [==============================] - 0s 805us/step - loss: 0.2426 - accuracy: 0.7362 - mae: 0.2426 - pearson_correlation: 0.2891 - euclidean_distance: 0.3817
Epoch 16/300
152/152 [==============================] - 0s 806us/step - loss: 0.2386 - accuracy: 0.7477 - mae: 0.2386 - pearson_correlation: 0.3022 - euclidean_distance: 0.3757
Epoch 17/300
152/152 [==============================] - 0s 801us/step - loss: 0.2321 - accuracy: 0.7534 - mae: 0.2321 - pearson_correlation: 0.3131 - euclidean_distance: 0.3666
Epoch 18/300
152/152 [==============================] - 0s 797us/step - loss: 0.2226 - accuracy: 0.7609 - mae: 0.2226 - pearson_correlation: 0.3244 - euclidean_distance: 0.3519
Epoch 19/300
152/152 [==============================] - 0s 809us/step - loss: 0.2201 - accuracy: 0.7746 - mae: 0.2201 - pearson_correlation: 0.3360 - euclidean_distance: 0.3477
Epoch 20/300
152/152 [==============================] - 0s 805us/step - loss: 0.2163 - accuracy: 0.7737 - mae: 0.2163 - pearson_correlation: 0.3530 - euclidean_distance: 0.3419
Epoch 21/300
152/152 [==============================] - 0s 811us/step - loss: 0.2140 - accuracy: 0.7799 - mae: 0.2140 - pearson_correlation: 0.3482 - euclidean_distance: 0.3377
Epoch 22/300
152/152 [==============================] - 0s 804us/step - loss: 0.2113 - accuracy: 0.7931 - mae: 0.2113 - pearson_correlation: 0.3576 - euclidean_distance: 0.3334
Epoch 23/300
152/152 [==============================] - 0s 807us/step - loss: 0.2109 - accuracy: 0.7949 - mae: 0.2109 - pearson_correlation: 0.3648 - euclidean_distance: 0.3327
Epoch 24/300
152/152 [==============================] - 0s 826us/step - loss: 0.2068 - accuracy: 0.7931 - mae: 0.2068 - pearson_correlation: 0.3774 - euclidean_distance: 0.3267
Epoch 25/300
152/152 [==============================] - 0s 812us/step - loss: 0.2008 - accuracy: 0.8006 - mae: 0.2008 - pearson_correlation: 0.3874 - euclidean_distance: 0.3170
Epoch 26/300
152/152 [==============================] - 0s 807us/step - loss: 0.1935 - accuracy: 0.8125 - mae: 0.1935 - pearson_correlation: 0.4042 - euclidean_distance: 0.3063
Epoch 27/300
152/152 [==============================] - 0s 807us/step - loss: 0.1939 - accuracy: 0.8059 - mae: 0.1939 - pearson_correlation: 0.4028 - euclidean_distance: 0.3071
Epoch 28/300
152/152 [==============================] - 0s 826us/step - loss: 0.1894 - accuracy: 0.8240 - mae: 0.1894 - pearson_correlation: 0.4196 - euclidean_distance: 0.2991
Epoch 29/300
152/152 [==============================] - 0s 802us/step - loss: 0.1870 - accuracy: 0.8284 - mae: 0.1870 - pearson_correlation: 0.4222 - euclidean_distance: 0.2960
Epoch 30/300
152/152 [==============================] - 0s 803us/step - loss: 0.1817 - accuracy: 0.8253 - mae: 0.1817 - pearson_correlation: 0.4394 - euclidean_distance: 0.2882
Epoch 31/300
152/152 [==============================] - 0s 807us/step - loss: 0.1815 - accuracy: 0.8328 - mae: 0.1815 - pearson_correlation: 0.4461 - euclidean_distance: 0.2880
Epoch 32/300
152/152 [==============================] - 0s 803us/step - loss: 0.1787 - accuracy: 0.8412 - mae: 0.1787 - pearson_correlation: 0.4545 - euclidean_distance: 0.2834
Epoch 33/300
152/152 [==============================] - 0s 806us/step - loss: 0.1763 - accuracy: 0.8377 - mae: 0.1763 - pearson_correlation: 0.4606 - euclidean_distance: 0.2802
Epoch 34/300
152/152 [==============================] - 0s 808us/step - loss: 0.1725 - accuracy: 0.8372 - mae: 0.1725 - pearson_correlation: 0.4691 - euclidean_distance: 0.2740
Epoch 35/300
152/152 [==============================] - 0s 808us/step - loss: 0.1739 - accuracy: 0.8491 - mae: 0.1739 - pearson_correlation: 0.4802 - euclidean_distance: 0.2751
Epoch 36/300
152/152 [==============================] - 0s 809us/step - loss: 0.1697 - accuracy: 0.8522 - mae: 0.1697 - pearson_correlation: 0.4929 - euclidean_distance: 0.2703
Epoch 37/300
152/152 [==============================] - 0s 810us/step - loss: 0.1665 - accuracy: 0.8536 - mae: 0.1665 - pearson_correlation: 0.5043 - euclidean_distance: 0.2640
Epoch 38/300
152/152 [==============================] - 0s 804us/step - loss: 0.1601 - accuracy: 0.8593 - mae: 0.1601 - pearson_correlation: 0.5048 - euclidean_distance: 0.2554
Epoch 39/300
152/152 [==============================] - 0s 806us/step - loss: 0.1660 - accuracy: 0.8531 - mae: 0.1660 - pearson_correlation: 0.5014 - euclidean_distance: 0.2637
Epoch 40/300
152/152 [==============================] - 0s 805us/step - loss: 0.1615 - accuracy: 0.8549 - mae: 0.1615 - pearson_correlation: 0.5083 - euclidean_distance: 0.2576
Epoch 41/300
152/152 [==============================] - 0s 810us/step - loss: 0.1610 - accuracy: 0.8602 - mae: 0.1610 - pearson_correlation: 0.5152 - euclidean_distance: 0.2563
Epoch 42/300
152/152 [==============================] - 0s 805us/step - loss: 0.1576 - accuracy: 0.8593 - mae: 0.1576 - pearson_correlation: 0.5236 - euclidean_distance: 0.2521
Epoch 43/300
152/152 [==============================] - 0s 805us/step - loss: 0.1552 - accuracy: 0.8655 - mae: 0.1552 - pearson_correlation: 0.5262 - euclidean_distance: 0.2474
Epoch 44/300
152/152 [==============================] - 0s 807us/step - loss: 0.1547 - accuracy: 0.8641 - mae: 0.1547 - pearson_correlation: 0.5271 - euclidean_distance: 0.2465
Epoch 45/300
152/152 [==============================] - 0s 800us/step - loss: 0.1559 - accuracy: 0.8716 - mae: 0.1559 - pearson_correlation: 0.5265 - euclidean_distance: 0.2492
Epoch 46/300
152/152 [==============================] - 0s 802us/step - loss: 0.1554 - accuracy: 0.8738 - mae: 0.1554 - pearson_correlation: 0.5376 - euclidean_distance: 0.2466
Epoch 47/300
152/152 [==============================] - 0s 802us/step - loss: 0.1555 - accuracy: 0.8730 - mae: 0.1555 - pearson_correlation: 0.5314 - euclidean_distance: 0.2479
Epoch 48/300
152/152 [==============================] - 0s 803us/step - loss: 0.1524 - accuracy: 0.8690 - mae: 0.1524 - pearson_correlation: 0.5410 - euclidean_distance: 0.2430
Epoch 49/300
152/152 [==============================] - 0s 812us/step - loss: 0.1513 - accuracy: 0.8818 - mae: 0.1513 - pearson_correlation: 0.5542 - euclidean_distance: 0.2409
Epoch 50/300
152/152 [==============================] - 0s 804us/step - loss: 0.1475 - accuracy: 0.8809 - mae: 0.1475 - pearson_correlation: 0.5608 - euclidean_distance: 0.2357
Epoch 51/300
152/152 [==============================] - 0s 803us/step - loss: 0.1491 - accuracy: 0.8840 - mae: 0.1491 - pearson_correlation: 0.5548 - euclidean_distance: 0.2372
Epoch 52/300
152/152 [==============================] - 0s 803us/step - loss: 0.1462 - accuracy: 0.8840 - mae: 0.1462 - pearson_correlation: 0.5669 - euclidean_distance: 0.2336
Epoch 53/300
152/152 [==============================] - 0s 799us/step - loss: 0.1449 - accuracy: 0.8875 - mae: 0.1449 - pearson_correlation: 0.5732 - euclidean_distance: 0.2316
Epoch 54/300
152/152 [==============================] - 0s 802us/step - loss: 0.1438 - accuracy: 0.8910 - mae: 0.1438 - pearson_correlation: 0.5782 - euclidean_distance: 0.2292
Epoch 55/300
152/152 [==============================] - 0s 802us/step - loss: 0.1423 - accuracy: 0.8959 - mae: 0.1423 - pearson_correlation: 0.5804 - euclidean_distance: 0.2275
Epoch 56/300
152/152 [==============================] - 0s 799us/step - loss: 0.1404 - accuracy: 0.9012 - mae: 0.1404 - pearson_correlation: 0.5905 - euclidean_distance: 0.2242
Epoch 57/300
152/152 [==============================] - 0s 803us/step - loss: 0.1413 - accuracy: 0.8972 - mae: 0.1413 - pearson_correlation: 0.5850 - euclidean_distance: 0.2251
Epoch 58/300
152/152 [==============================] - 0s 797us/step - loss: 0.1419 - accuracy: 0.8946 - mae: 0.1419 - pearson_correlation: 0.5814 - euclidean_distance: 0.2258
Epoch 59/300
152/152 [==============================] - 0s 804us/step - loss: 0.1397 - accuracy: 0.9034 - mae: 0.1397 - pearson_correlation: 0.5861 - euclidean_distance: 0.2236
Epoch 60/300
152/152 [==============================] - 0s 801us/step - loss: 0.1381 - accuracy: 0.9012 - mae: 0.1381 - pearson_correlation: 0.5948 - euclidean_distance: 0.2210
Epoch 61/300
152/152 [==============================] - 0s 803us/step - loss: 0.1361 - accuracy: 0.9025 - mae: 0.1361 - pearson_correlation: 0.6096 - euclidean_distance: 0.2179
Epoch 62/300
152/152 [==============================] - 0s 808us/step - loss: 0.1346 - accuracy: 0.9078 - mae: 0.1346 - pearson_correlation: 0.5996 - euclidean_distance: 0.2154
Epoch 63/300
152/152 [==============================] - 0s 801us/step - loss: 0.1345 - accuracy: 0.9047 - mae: 0.1345 - pearson_correlation: 0.6130 - euclidean_distance: 0.2154
Epoch 64/300
152/152 [==============================] - 0s 807us/step - loss: 0.1324 - accuracy: 0.9105 - mae: 0.1324 - pearson_correlation: 0.6138 - euclidean_distance: 0.2126
Epoch 65/300
152/152 [==============================] - 0s 805us/step - loss: 0.1325 - accuracy: 0.9038 - mae: 0.1325 - pearson_correlation: 0.6032 - euclidean_distance: 0.2129
Epoch 66/300
152/152 [==============================] - 0s 803us/step - loss: 0.1358 - accuracy: 0.9091 - mae: 0.1358 - pearson_correlation: 0.6067 - euclidean_distance: 0.2168
Epoch 67/300
152/152 [==============================] - 0s 803us/step - loss: 0.1324 - accuracy: 0.9105 - mae: 0.1324 - pearson_correlation: 0.6171 - euclidean_distance: 0.2116
Epoch 68/300
152/152 [==============================] - 0s 867us/step - loss: 0.1319 - accuracy: 0.9131 - mae: 0.1319 - pearson_correlation: 0.6275 - euclidean_distance: 0.2106
Epoch 69/300
152/152 [==============================] - 0s 901us/step - loss: 0.1293 - accuracy: 0.9127 - mae: 0.1293 - pearson_correlation: 0.6294 - euclidean_distance: 0.2070
Epoch 70/300
152/152 [==============================] - 0s 921us/step - loss: 0.1298 - accuracy: 0.9171 - mae: 0.1298 - pearson_correlation: 0.6284 - euclidean_distance: 0.2078
Epoch 71/300
152/152 [==============================] - 0s 923us/step - loss: 0.1294 - accuracy: 0.9166 - mae: 0.1294 - pearson_correlation: 0.6265 - euclidean_distance: 0.2074
Epoch 72/300
152/152 [==============================] - 0s 869us/step - loss: 0.1294 - accuracy: 0.9197 - mae: 0.1294 - pearson_correlation: 0.6307 - euclidean_distance: 0.2074
Epoch 73/300
152/152 [==============================] - 0s 814us/step - loss: 0.1296 - accuracy: 0.9193 - mae: 0.1296 - pearson_correlation: 0.6359 - euclidean_distance: 0.2073
Epoch 74/300
152/152 [==============================] - 0s 808us/step - loss: 0.1263 - accuracy: 0.9246 - mae: 0.1263 - pearson_correlation: 0.6478 - euclidean_distance: 0.2022
Epoch 75/300
152/152 [==============================] - 0s 811us/step - loss: 0.1277 - accuracy: 0.9237 - mae: 0.1277 - pearson_correlation: 0.6317 - euclidean_distance: 0.2047
Epoch 76/300
152/152 [==============================] - 0s 806us/step - loss: 0.1263 - accuracy: 0.9255 - mae: 0.1263 - pearson_correlation: 0.6447 - euclidean_distance: 0.2029
Epoch 77/300
152/152 [==============================] - 0s 803us/step - loss: 0.1264 - accuracy: 0.9277 - mae: 0.1264 - pearson_correlation: 0.6443 - euclidean_distance: 0.2020
Epoch 78/300
152/152 [==============================] - 0s 805us/step - loss: 0.1236 - accuracy: 0.9290 - mae: 0.1236 - pearson_correlation: 0.6506 - euclidean_distance: 0.1980
Epoch 79/300
152/152 [==============================] - 0s 808us/step - loss: 0.1259 - accuracy: 0.9281 - mae: 0.1259 - pearson_correlation: 0.6518 - euclidean_distance: 0.2018
Epoch 80/300
152/152 [==============================] - 0s 807us/step - loss: 0.1277 - accuracy: 0.9321 - mae: 0.1277 - pearson_correlation: 0.6403 - euclidean_distance: 0.2036
Epoch 81/300
152/152 [==============================] - 0s 805us/step - loss: 0.1263 - accuracy: 0.9316 - mae: 0.1263 - pearson_correlation: 0.6414 - euclidean_distance: 0.2026
Epoch 82/300
152/152 [==============================] - 0s 808us/step - loss: 0.1254 - accuracy: 0.9325 - mae: 0.1254 - pearson_correlation: 0.6460 - euclidean_distance: 0.2003
Epoch 83/300
152/152 [==============================] - 0s 805us/step - loss: 0.1218 - accuracy: 0.9299 - mae: 0.1218 - pearson_correlation: 0.6536 - euclidean_distance: 0.1956
Epoch 84/300
152/152 [==============================] - 0s 803us/step - loss: 0.1234 - accuracy: 0.9307 - mae: 0.1234 - pearson_correlation: 0.6458 - euclidean_distance: 0.1988
Epoch 85/300
152/152 [==============================] - 0s 835us/step - loss: 0.1215 - accuracy: 0.9378 - mae: 0.1215 - pearson_correlation: 0.6607 - euclidean_distance: 0.1949
Epoch 86/300
152/152 [==============================] - 0s 816us/step - loss: 0.1211 - accuracy: 0.9396 - mae: 0.1211 - pearson_correlation: 0.6611 - euclidean_distance: 0.1938
Epoch 87/300
152/152 [==============================] - 0s 808us/step - loss: 0.1229 - accuracy: 0.9374 - mae: 0.1229 - pearson_correlation: 0.6597 - euclidean_distance: 0.1966
Epoch 88/300
152/152 [==============================] - 0s 809us/step - loss: 0.1206 - accuracy: 0.9396 - mae: 0.1206 - pearson_correlation: 0.6642 - euclidean_distance: 0.1940
Epoch 89/300
152/152 [==============================] - 0s 814us/step - loss: 0.1230 - accuracy: 0.9409 - mae: 0.1230 - pearson_correlation: 0.6550 - euclidean_distance: 0.1972
Epoch 90/300
152/152 [==============================] - 0s 800us/step - loss: 0.1195 - accuracy: 0.9409 - mae: 0.1195 - pearson_correlation: 0.6743 - euclidean_distance: 0.1910
Epoch 91/300
152/152 [==============================] - 0s 810us/step - loss: 0.1194 - accuracy: 0.9413 - mae: 0.1194 - pearson_correlation: 0.6779 - euclidean_distance: 0.1913
Epoch 92/300
152/152 [==============================] - 0s 809us/step - loss: 0.1174 - accuracy: 0.9400 - mae: 0.1174 - pearson_correlation: 0.6734 - euclidean_distance: 0.1886
Epoch 93/300
152/152 [==============================] - 0s 804us/step - loss: 0.1197 - accuracy: 0.9396 - mae: 0.1197 - pearson_correlation: 0.6673 - euclidean_distance: 0.1914
Epoch 94/300
152/152 [==============================] - 0s 860us/step - loss: 0.1187 - accuracy: 0.9404 - mae: 0.1187 - pearson_correlation: 0.6718 - euclidean_distance: 0.1904
Epoch 95/300
152/152 [==============================] - 0s 817us/step - loss: 0.1157 - accuracy: 0.9413 - mae: 0.1157 - pearson_correlation: 0.6839 - euclidean_distance: 0.1853
Epoch 96/300
152/152 [==============================] - 0s 806us/step - loss: 0.1166 - accuracy: 0.9422 - mae: 0.1166 - pearson_correlation: 0.6861 - euclidean_distance: 0.1863
Epoch 97/300
152/152 [==============================] - 0s 807us/step - loss: 0.1146 - accuracy: 0.9453 - mae: 0.1146 - pearson_correlation: 0.6883 - euclidean_distance: 0.1841
Epoch 98/300
152/152 [==============================] - 0s 802us/step - loss: 0.1166 - accuracy: 0.9431 - mae: 0.1166 - pearson_correlation: 0.6761 - euclidean_distance: 0.1870
Epoch 99/300
152/152 [==============================] - 0s 805us/step - loss: 0.1202 - accuracy: 0.9431 - mae: 0.1202 - pearson_correlation: 0.6748 - euclidean_distance: 0.1922
Epoch 100/300
152/152 [==============================] - 0s 806us/step - loss: 0.1153 - accuracy: 0.9466 - mae: 0.1153 - pearson_correlation: 0.6862 - euclidean_distance: 0.1848
Epoch 101/300
152/152 [==============================] - 0s 804us/step - loss: 0.1149 - accuracy: 0.9431 - mae: 0.1149 - pearson_correlation: 0.6806 - euclidean_distance: 0.1846
Epoch 102/300
152/152 [==============================] - 0s 801us/step - loss: 0.1115 - accuracy: 0.9453 - mae: 0.1115 - pearson_correlation: 0.6994 - euclidean_distance: 0.1789
Epoch 103/300
152/152 [==============================] - 0s 802us/step - loss: 0.1140 - accuracy: 0.9435 - mae: 0.1140 - pearson_correlation: 0.6964 - euclidean_distance: 0.1831
Epoch 104/300
152/152 [==============================] - 0s 805us/step - loss: 0.1130 - accuracy: 0.9427 - mae: 0.1130 - pearson_correlation: 0.6938 - euclidean_distance: 0.1813
Epoch 105/300
152/152 [==============================] - 0s 813us/step - loss: 0.1134 - accuracy: 0.9462 - mae: 0.1134 - pearson_correlation: 0.6910 - euclidean_distance: 0.1818
Epoch 106/300
152/152 [==============================] - 0s 807us/step - loss: 0.1119 - accuracy: 0.9422 - mae: 0.1119 - pearson_correlation: 0.6998 - euclidean_distance: 0.1796
Epoch 107/300
152/152 [==============================] - 0s 804us/step - loss: 0.1167 - accuracy: 0.9466 - mae: 0.1167 - pearson_correlation: 0.6847 - euclidean_distance: 0.1869
Epoch 108/300
152/152 [==============================] - 0s 825us/step - loss: 0.1112 - accuracy: 0.9475 - mae: 0.1112 - pearson_correlation: 0.6996 - euclidean_distance: 0.1782
Epoch 109/300
152/152 [==============================] - 0s 806us/step - loss: 0.1104 - accuracy: 0.9475 - mae: 0.1104 - pearson_correlation: 0.6960 - euclidean_distance: 0.1780
Epoch 110/300
152/152 [==============================] - 0s 804us/step - loss: 0.1095 - accuracy: 0.9471 - mae: 0.1095 - pearson_correlation: 0.7037 - euclidean_distance: 0.1766
Epoch 111/300
152/152 [==============================] - 0s 804us/step - loss: 0.1125 - accuracy: 0.9471 - mae: 0.1125 - pearson_correlation: 0.7016 - euclidean_distance: 0.1799
Epoch 112/300
152/152 [==============================] - 0s 806us/step - loss: 0.1103 - accuracy: 0.9479 - mae: 0.1103 - pearson_correlation: 0.6958 - euclidean_distance: 0.1772
Epoch 113/300
152/152 [==============================] - 0s 807us/step - loss: 0.1126 - accuracy: 0.9493 - mae: 0.1126 - pearson_correlation: 0.6963 - euclidean_distance: 0.1800
Epoch 114/300
152/152 [==============================] - 0s 808us/step - loss: 0.1099 - accuracy: 0.9475 - mae: 0.1099 - pearson_correlation: 0.7023 - euclidean_distance: 0.1758
Epoch 115/300
152/152 [==============================] - 0s 809us/step - loss: 0.1125 - accuracy: 0.9466 - mae: 0.1125 - pearson_correlation: 0.6985 - euclidean_distance: 0.1804
Epoch 116/300
152/152 [==============================] - 0s 804us/step - loss: 0.1086 - accuracy: 0.9475 - mae: 0.1086 - pearson_correlation: 0.7119 - euclidean_distance: 0.1749
Epoch 117/300
152/152 [==============================] - 0s 807us/step - loss: 0.1112 - accuracy: 0.9484 - mae: 0.1112 - pearson_correlation: 0.7074 - euclidean_distance: 0.1781
Epoch 118/300
152/152 [==============================] - 0s 807us/step - loss: 0.1081 - accuracy: 0.9475 - mae: 0.1081 - pearson_correlation: 0.7085 - euclidean_distance: 0.1742
Epoch 119/300
152/152 [==============================] - 0s 805us/step - loss: 0.1061 - accuracy: 0.9488 - mae: 0.1061 - pearson_correlation: 0.7180 - euclidean_distance: 0.1701
Epoch 120/300
152/152 [==============================] - 0s 806us/step - loss: 0.1092 - accuracy: 0.9471 - mae: 0.1092 - pearson_correlation: 0.7055 - euclidean_distance: 0.1749
Epoch 121/300
152/152 [==============================] - 0s 808us/step - loss: 0.1088 - accuracy: 0.9479 - mae: 0.1088 - pearson_correlation: 0.6997 - euclidean_distance: 0.1739
Epoch 122/300
152/152 [==============================] - 0s 807us/step - loss: 0.1075 - accuracy: 0.9493 - mae: 0.1075 - pearson_correlation: 0.7064 - euclidean_distance: 0.1728
Epoch 123/300
152/152 [==============================] - 0s 805us/step - loss: 0.1067 - accuracy: 0.9510 - mae: 0.1067 - pearson_correlation: 0.7179 - euclidean_distance: 0.1708
Epoch 124/300
152/152 [==============================] - 0s 807us/step - loss: 0.1045 - accuracy: 0.9488 - mae: 0.1045 - pearson_correlation: 0.7182 - euclidean_distance: 0.1682
Epoch 125/300
152/152 [==============================] - 0s 806us/step - loss: 0.1076 - accuracy: 0.9484 - mae: 0.1076 - pearson_correlation: 0.7179 - euclidean_distance: 0.1730
Epoch 126/300
152/152 [==============================] - 0s 805us/step - loss: 0.1074 - accuracy: 0.9528 - mae: 0.1074 - pearson_correlation: 0.7159 - euclidean_distance: 0.1718
Epoch 127/300
152/152 [==============================] - 0s 798us/step - loss: 0.1074 - accuracy: 0.9497 - mae: 0.1074 - pearson_correlation: 0.7119 - euclidean_distance: 0.1720
Epoch 128/300
152/152 [==============================] - 0s 803us/step - loss: 0.1099 - accuracy: 0.9519 - mae: 0.1099 - pearson_correlation: 0.7119 - euclidean_distance: 0.1760
Epoch 129/300
152/152 [==============================] - 0s 803us/step - loss: 0.1033 - accuracy: 0.9524 - mae: 0.1033 - pearson_correlation: 0.7215 - euclidean_distance: 0.1663
Epoch 130/300
152/152 [==============================] - 0s 807us/step - loss: 0.1070 - accuracy: 0.9510 - mae: 0.1070 - pearson_correlation: 0.7171 - euclidean_distance: 0.1716
Epoch 131/300
152/152 [==============================] - 0s 803us/step - loss: 0.1082 - accuracy: 0.9497 - mae: 0.1082 - pearson_correlation: 0.7126 - euclidean_distance: 0.1730
Epoch 132/300
152/152 [==============================] - 0s 806us/step - loss: 0.1021 - accuracy: 0.9524 - mae: 0.1021 - pearson_correlation: 0.7344 - euclidean_distance: 0.1645
Epoch 133/300
152/152 [==============================] - 0s 802us/step - loss: 0.1058 - accuracy: 0.9524 - mae: 0.1058 - pearson_correlation: 0.7160 - euclidean_distance: 0.1697
Epoch 134/300
152/152 [==============================] - 0s 805us/step - loss: 0.1051 - accuracy: 0.9510 - mae: 0.1051 - pearson_correlation: 0.7199 - euclidean_distance: 0.1682
Epoch 135/300
152/152 [==============================] - 0s 800us/step - loss: 0.1043 - accuracy: 0.9524 - mae: 0.1043 - pearson_correlation: 0.7248 - euclidean_distance: 0.1678
Epoch 136/300
152/152 [==============================] - 0s 803us/step - loss: 0.1043 - accuracy: 0.9502 - mae: 0.1043 - pearson_correlation: 0.7166 - euclidean_distance: 0.1680
Epoch 137/300
152/152 [==============================] - 0s 801us/step - loss: 0.1040 - accuracy: 0.9524 - mae: 0.1040 - pearson_correlation: 0.7293 - euclidean_distance: 0.1670
Epoch 138/300
152/152 [==============================] - 0s 808us/step - loss: 0.1047 - accuracy: 0.9502 - mae: 0.1047 - pearson_correlation: 0.7255 - euclidean_distance: 0.1680
Epoch 139/300
152/152 [==============================] - 0s 807us/step - loss: 0.1024 - accuracy: 0.9532 - mae: 0.1024 - pearson_correlation: 0.7269 - euclidean_distance: 0.1646
Epoch 140/300
152/152 [==============================] - 0s 803us/step - loss: 0.1063 - accuracy: 0.9519 - mae: 0.1063 - pearson_correlation: 0.7190 - euclidean_distance: 0.1702
Epoch 141/300
152/152 [==============================] - 0s 803us/step - loss: 0.1032 - accuracy: 0.9510 - mae: 0.1032 - pearson_correlation: 0.7258 - euclidean_distance: 0.1658
Epoch 142/300
152/152 [==============================] - 0s 805us/step - loss: 0.1008 - accuracy: 0.9528 - mae: 0.1008 - pearson_correlation: 0.7396 - euclidean_distance: 0.1620
Epoch 143/300
152/152 [==============================] - 0s 807us/step - loss: 0.1003 - accuracy: 0.9519 - mae: 0.1003 - pearson_correlation: 0.7355 - euclidean_distance: 0.1605
Epoch 144/300
152/152 [==============================] - 0s 806us/step - loss: 0.1013 - accuracy: 0.9519 - mae: 0.1013 - pearson_correlation: 0.7278 - euclidean_distance: 0.1625
Epoch 145/300
152/152 [==============================] - 0s 807us/step - loss: 0.1023 - accuracy: 0.9537 - mae: 0.1023 - pearson_correlation: 0.7322 - euclidean_distance: 0.1638
Epoch 146/300
152/152 [==============================] - 0s 806us/step - loss: 0.1007 - accuracy: 0.9541 - mae: 0.1007 - pearson_correlation: 0.7397 - euclidean_distance: 0.1615
Epoch 147/300
152/152 [==============================] - 0s 807us/step - loss: 0.1020 - accuracy: 0.9519 - mae: 0.1020 - pearson_correlation: 0.7255 - euclidean_distance: 0.1635
Epoch 148/300
152/152 [==============================] - 0s 801us/step - loss: 0.0997 - accuracy: 0.9524 - mae: 0.0997 - pearson_correlation: 0.7367 - euclidean_distance: 0.1602
Epoch 149/300
152/152 [==============================] - 0s 801us/step - loss: 0.1012 - accuracy: 0.9519 - mae: 0.1012 - pearson_correlation: 0.7344 - euclidean_distance: 0.1621
Epoch 150/300
152/152 [==============================] - 0s 801us/step - loss: 0.0994 - accuracy: 0.9528 - mae: 0.0994 - pearson_correlation: 0.7369 - euclidean_distance: 0.1596
Epoch 151/300
152/152 [==============================] - 0s 803us/step - loss: 0.1014 - accuracy: 0.9524 - mae: 0.1014 - pearson_correlation: 0.7277 - euclidean_distance: 0.1624
Epoch 152/300
152/152 [==============================] - 0s 803us/step - loss: 0.1014 - accuracy: 0.9532 - mae: 0.1014 - pearson_correlation: 0.7333 - euclidean_distance: 0.1623
Epoch 153/300
152/152 [==============================] - 0s 804us/step - loss: 0.1015 - accuracy: 0.9537 - mae: 0.1015 - pearson_correlation: 0.7329 - euclidean_distance: 0.1630
Epoch 154/300
152/152 [==============================] - 0s 802us/step - loss: 0.1002 - accuracy: 0.9528 - mae: 0.1002 - pearson_correlation: 0.7355 - euclidean_distance: 0.1609
Epoch 155/300
152/152 [==============================] - 0s 804us/step - loss: 0.1010 - accuracy: 0.9537 - mae: 0.1010 - pearson_correlation: 0.7342 - euclidean_distance: 0.1617
Epoch 156/300
152/152 [==============================] - 0s 799us/step - loss: 0.0989 - accuracy: 0.9537 - mae: 0.0989 - pearson_correlation: 0.7412 - euclidean_distance: 0.1589
Epoch 157/300
152/152 [==============================] - 0s 803us/step - loss: 0.1007 - accuracy: 0.9524 - mae: 0.1007 - pearson_correlation: 0.7338 - euclidean_distance: 0.1617
Epoch 158/300
152/152 [==============================] - 0s 806us/step - loss: 0.0999 - accuracy: 0.9515 - mae: 0.0999 - pearson_correlation: 0.7404 - euclidean_distance: 0.1601
Epoch 159/300
152/152 [==============================] - 0s 805us/step - loss: 0.0986 - accuracy: 0.9541 - mae: 0.0986 - pearson_correlation: 0.7385 - euclidean_distance: 0.1583
Epoch 160/300
152/152 [==============================] - 0s 800us/step - loss: 0.1000 - accuracy: 0.9537 - mae: 0.1000 - pearson_correlation: 0.7339 - euclidean_distance: 0.1605
Epoch 161/300
152/152 [==============================] - 0s 800us/step - loss: 0.1004 - accuracy: 0.9519 - mae: 0.1004 - pearson_correlation: 0.7415 - euclidean_distance: 0.1602
Epoch 162/300
152/152 [==============================] - 0s 798us/step - loss: 0.0991 - accuracy: 0.9532 - mae: 0.0991 - pearson_correlation: 0.7349 - euclidean_distance: 0.1591
Epoch 163/300
152/152 [==============================] - 0s 801us/step - loss: 0.1005 - accuracy: 0.9541 - mae: 0.1005 - pearson_correlation: 0.7366 - euclidean_distance: 0.1607
Epoch 164/300
152/152 [==============================] - 0s 797us/step - loss: 0.0976 - accuracy: 0.9550 - mae: 0.0976 - pearson_correlation: 0.7474 - euclidean_distance: 0.1565
Epoch 165/300
152/152 [==============================] - 0s 813us/step - loss: 0.0960 - accuracy: 0.9546 - mae: 0.0960 - pearson_correlation: 0.7448 - euclidean_distance: 0.1547
Epoch 166/300
152/152 [==============================] - 0s 831us/step - loss: 0.0976 - accuracy: 0.9554 - mae: 0.0976 - pearson_correlation: 0.7443 - euclidean_distance: 0.1562
Epoch 167/300
152/152 [==============================] - 0s 805us/step - loss: 0.0979 - accuracy: 0.9550 - mae: 0.0979 - pearson_correlation: 0.7435 - euclidean_distance: 0.1568
Epoch 168/300
152/152 [==============================] - 0s 804us/step - loss: 0.0998 - accuracy: 0.9546 - mae: 0.0998 - pearson_correlation: 0.7411 - euclidean_distance: 0.1591
Epoch 169/300
152/152 [==============================] - 0s 800us/step - loss: 0.0981 - accuracy: 0.9537 - mae: 0.0981 - pearson_correlation: 0.7408 - euclidean_distance: 0.1577
Epoch 170/300
152/152 [==============================] - 0s 806us/step - loss: 0.0969 - accuracy: 0.9554 - mae: 0.0969 - pearson_correlation: 0.7449 - euclidean_distance: 0.1558
Epoch 171/300
152/152 [==============================] - 0s 806us/step - loss: 0.0989 - accuracy: 0.9541 - mae: 0.0989 - pearson_correlation: 0.7417 - euclidean_distance: 0.1586
Epoch 172/300
152/152 [==============================] - 0s 800us/step - loss: 0.0976 - accuracy: 0.9541 - mae: 0.0976 - pearson_correlation: 0.7432 - euclidean_distance: 0.1565
Epoch 173/300
152/152 [==============================] - 0s 800us/step - loss: 0.1010 - accuracy: 0.9541 - mae: 0.1010 - pearson_correlation: 0.7426 - euclidean_distance: 0.1614
Epoch 174/300
152/152 [==============================] - 0s 797us/step - loss: 0.0983 - accuracy: 0.9554 - mae: 0.0983 - pearson_correlation: 0.7400 - euclidean_distance: 0.1572
Epoch 175/300
152/152 [==============================] - 0s 803us/step - loss: 0.0954 - accuracy: 0.9532 - mae: 0.0954 - pearson_correlation: 0.7485 - euclidean_distance: 0.1529
Epoch 176/300
152/152 [==============================] - 0s 801us/step - loss: 0.0970 - accuracy: 0.9550 - mae: 0.0970 - pearson_correlation: 0.7474 - euclidean_distance: 0.1553
Epoch 177/300
152/152 [==============================] - 0s 808us/step - loss: 0.0934 - accuracy: 0.9541 - mae: 0.0934 - pearson_correlation: 0.7566 - euclidean_distance: 0.1501
Epoch 178/300
152/152 [==============================] - 0s 801us/step - loss: 0.0958 - accuracy: 0.9550 - mae: 0.0958 - pearson_correlation: 0.7467 - euclidean_distance: 0.1541
Epoch 179/300
152/152 [==============================] - 0s 806us/step - loss: 0.0963 - accuracy: 0.9537 - mae: 0.0963 - pearson_correlation: 0.7437 - euclidean_distance: 0.1552
Epoch 180/300
152/152 [==============================] - 0s 807us/step - loss: 0.0974 - accuracy: 0.9554 - mae: 0.0974 - pearson_correlation: 0.7472 - euclidean_distance: 0.1561
Epoch 181/300
152/152 [==============================] - 0s 809us/step - loss: 0.0962 - accuracy: 0.9546 - mae: 0.0962 - pearson_correlation: 0.7491 - euclidean_distance: 0.1541
Epoch 182/300
152/152 [==============================] - 0s 806us/step - loss: 0.0962 - accuracy: 0.9546 - mae: 0.0962 - pearson_correlation: 0.7446 - euclidean_distance: 0.1548
Epoch 183/300
152/152 [==============================] - 0s 802us/step - loss: 0.0973 - accuracy: 0.9554 - mae: 0.0973 - pearson_correlation: 0.7451 - euclidean_distance: 0.1557
Epoch 184/300
152/152 [==============================] - 0s 803us/step - loss: 0.0955 - accuracy: 0.9550 - mae: 0.0955 - pearson_correlation: 0.7529 - euclidean_distance: 0.1531
Epoch 185/300
152/152 [==============================] - 0s 805us/step - loss: 0.0930 - accuracy: 0.9559 - mae: 0.0930 - pearson_correlation: 0.7595 - euclidean_distance: 0.1494
Epoch 186/300
152/152 [==============================] - 0s 809us/step - loss: 0.0949 - accuracy: 0.9541 - mae: 0.0949 - pearson_correlation: 0.7508 - euclidean_distance: 0.1522
Epoch 187/300
152/152 [==============================] - 0s 803us/step - loss: 0.0948 - accuracy: 0.9559 - mae: 0.0948 - pearson_correlation: 0.7528 - euclidean_distance: 0.1518
Epoch 188/300
152/152 [==============================] - 0s 802us/step - loss: 0.0959 - accuracy: 0.9537 - mae: 0.0959 - pearson_correlation: 0.7496 - euclidean_distance: 0.1536
Epoch 189/300
152/152 [==============================] - 0s 823us/step - loss: 0.0961 - accuracy: 0.9550 - mae: 0.0961 - pearson_correlation: 0.7432 - euclidean_distance: 0.1540
Epoch 190/300
152/152 [==============================] - 0s 807us/step - loss: 0.0942 - accuracy: 0.9568 - mae: 0.0942 - pearson_correlation: 0.7507 - euclidean_distance: 0.1511
Epoch 191/300
152/152 [==============================] - 0s 806us/step - loss: 0.0953 - accuracy: 0.9559 - mae: 0.0953 - pearson_correlation: 0.7466 - euclidean_distance: 0.1531
Epoch 192/300
152/152 [==============================] - 0s 806us/step - loss: 0.0942 - accuracy: 0.9554 - mae: 0.0942 - pearson_correlation: 0.7567 - euclidean_distance: 0.1511
Epoch 193/300
152/152 [==============================] - 0s 803us/step - loss: 0.0992 - accuracy: 0.9550 - mae: 0.0992 - pearson_correlation: 0.7347 - euclidean_distance: 0.1582
Epoch 194/300
152/152 [==============================] - 0s 805us/step - loss: 0.0933 - accuracy: 0.9559 - mae: 0.0933 - pearson_correlation: 0.7512 - euclidean_distance: 0.1501
Epoch 195/300
152/152 [==============================] - 0s 804us/step - loss: 0.0958 - accuracy: 0.9546 - mae: 0.0958 - pearson_correlation: 0.7541 - euclidean_distance: 0.1537
Epoch 196/300
152/152 [==============================] - 0s 865us/step - loss: 0.0942 - accuracy: 0.9554 - mae: 0.0942 - pearson_correlation: 0.7536 - euclidean_distance: 0.1511
Epoch 197/300
152/152 [==============================] - 0s 886us/step - loss: 0.0920 - accuracy: 0.9546 - mae: 0.0920 - pearson_correlation: 0.7617 - euclidean_distance: 0.1477
Epoch 198/300
152/152 [==============================] - 0s 915us/step - loss: 0.0925 - accuracy: 0.9541 - mae: 0.0925 - pearson_correlation: 0.7588 - euclidean_distance: 0.1483
Epoch 199/300
152/152 [==============================] - 0s 900us/step - loss: 0.0925 - accuracy: 0.9550 - mae: 0.0925 - pearson_correlation: 0.7520 - euclidean_distance: 0.1483
Epoch 200/300
152/152 [==============================] - 0s 898us/step - loss: 0.0937 - accuracy: 0.9559 - mae: 0.0937 - pearson_correlation: 0.7548 - euclidean_distance: 0.1502
Epoch 201/300
152/152 [==============================] - 0s 817us/step - loss: 0.0931 - accuracy: 0.9546 - mae: 0.0931 - pearson_correlation: 0.7565 - euclidean_distance: 0.1495
Epoch 202/300
152/152 [==============================] - 0s 805us/step - loss: 0.0922 - accuracy: 0.9563 - mae: 0.0922 - pearson_correlation: 0.7558 - euclidean_distance: 0.1480
Epoch 203/300
152/152 [==============================] - 0s 814us/step - loss: 0.0911 - accuracy: 0.9559 - mae: 0.0911 - pearson_correlation: 0.7618 - euclidean_distance: 0.1466
Epoch 204/300
152/152 [==============================] - 0s 808us/step - loss: 0.0936 - accuracy: 0.9554 - mae: 0.0936 - pearson_correlation: 0.7562 - euclidean_distance: 0.1504
Epoch 205/300
152/152 [==============================] - 0s 808us/step - loss: 0.0932 - accuracy: 0.9546 - mae: 0.0932 - pearson_correlation: 0.7577 - euclidean_distance: 0.1497
Epoch 206/300
152/152 [==============================] - 0s 805us/step - loss: 0.0940 - accuracy: 0.9554 - mae: 0.0940 - pearson_correlation: 0.7552 - euclidean_distance: 0.1504
Epoch 207/300
152/152 [==============================] - 0s 806us/step - loss: 0.0912 - accuracy: 0.9559 - mae: 0.0912 - pearson_correlation: 0.7590 - euclidean_distance: 0.1470
Epoch 208/300
152/152 [==============================] - 0s 802us/step - loss: 0.0925 - accuracy: 0.9563 - mae: 0.0925 - pearson_correlation: 0.7570 - euclidean_distance: 0.1483
Epoch 209/300
152/152 [==============================] - 0s 805us/step - loss: 0.0940 - accuracy: 0.9554 - mae: 0.0940 - pearson_correlation: 0.7509 - euclidean_distance: 0.1508
Epoch 210/300
152/152 [==============================] - 0s 806us/step - loss: 0.0929 - accuracy: 0.9550 - mae: 0.0929 - pearson_correlation: 0.7551 - euclidean_distance: 0.1490
Epoch 211/300
152/152 [==============================] - 0s 808us/step - loss: 0.0932 - accuracy: 0.9541 - mae: 0.0932 - pearson_correlation: 0.7543 - euclidean_distance: 0.1497
Epoch 212/300
152/152 [==============================] - 0s 805us/step - loss: 0.0899 - accuracy: 0.9554 - mae: 0.0899 - pearson_correlation: 0.7666 - euclidean_distance: 0.1443
Epoch 213/300
152/152 [==============================] - 0s 804us/step - loss: 0.0910 - accuracy: 0.9550 - mae: 0.0910 - pearson_correlation: 0.7627 - euclidean_distance: 0.1457
Epoch 214/300
152/152 [==============================] - 0s 801us/step - loss: 0.0904 - accuracy: 0.9559 - mae: 0.0904 - pearson_correlation: 0.7565 - euclidean_distance: 0.1458
Epoch 215/300
152/152 [==============================] - 0s 798us/step - loss: 0.0909 - accuracy: 0.9554 - mae: 0.0909 - pearson_correlation: 0.7630 - euclidean_distance: 0.1463
Epoch 216/300
152/152 [==============================] - 0s 802us/step - loss: 0.0919 - accuracy: 0.9563 - mae: 0.0919 - pearson_correlation: 0.7541 - euclidean_distance: 0.1477
Epoch 217/300
152/152 [==============================] - 0s 808us/step - loss: 0.0916 - accuracy: 0.9550 - mae: 0.0916 - pearson_correlation: 0.7582 - euclidean_distance: 0.1470
Epoch 218/300
152/152 [==============================] - 0s 804us/step - loss: 0.0918 - accuracy: 0.9559 - mae: 0.0918 - pearson_correlation: 0.7593 - euclidean_distance: 0.1469
Epoch 219/300
152/152 [==============================] - 0s 808us/step - loss: 0.0928 - accuracy: 0.9550 - mae: 0.0928 - pearson_correlation: 0.7559 - euclidean_distance: 0.1491
Epoch 220/300
152/152 [==============================] - 0s 806us/step - loss: 0.0902 - accuracy: 0.9554 - mae: 0.0902 - pearson_correlation: 0.7655 - euclidean_distance: 0.1448
Epoch 221/300
152/152 [==============================] - 0s 810us/step - loss: 0.0921 - accuracy: 0.9559 - mae: 0.0921 - pearson_correlation: 0.7597 - euclidean_distance: 0.1481
Epoch 222/300
152/152 [==============================] - 0s 802us/step - loss: 0.0905 - accuracy: 0.9559 - mae: 0.0905 - pearson_correlation: 0.7627 - euclidean_distance: 0.1450
Epoch 223/300
152/152 [==============================] - 0s 804us/step - loss: 0.0905 - accuracy: 0.9559 - mae: 0.0905 - pearson_correlation: 0.7615 - euclidean_distance: 0.1451
Epoch 224/300
152/152 [==============================] - 0s 810us/step - loss: 0.0892 - accuracy: 0.9559 - mae: 0.0892 - pearson_correlation: 0.7669 - euclidean_distance: 0.1435
Epoch 225/300
152/152 [==============================] - 0s 801us/step - loss: 0.0901 - accuracy: 0.9554 - mae: 0.0901 - pearson_correlation: 0.7632 - euclidean_distance: 0.1449
Epoch 226/300
152/152 [==============================] - 0s 805us/step - loss: 0.0888 - accuracy: 0.9550 - mae: 0.0888 - pearson_correlation: 0.7616 - euclidean_distance: 0.1427
Epoch 227/300
152/152 [==============================] - 0s 804us/step - loss: 0.0892 - accuracy: 0.9554 - mae: 0.0892 - pearson_correlation: 0.7584 - euclidean_distance: 0.1437
Epoch 228/300
152/152 [==============================] - 0s 810us/step - loss: 0.0892 - accuracy: 0.9559 - mae: 0.0892 - pearson_correlation: 0.7645 - euclidean_distance: 0.1430
Epoch 229/300
152/152 [==============================] - 0s 805us/step - loss: 0.0892 - accuracy: 0.9559 - mae: 0.0892 - pearson_correlation: 0.7705 - euclidean_distance: 0.1430
Epoch 230/300
152/152 [==============================] - 0s 806us/step - loss: 0.0902 - accuracy: 0.9563 - mae: 0.0902 - pearson_correlation: 0.7633 - euclidean_distance: 0.1447
Epoch 231/300
152/152 [==============================] - 0s 803us/step - loss: 0.0888 - accuracy: 0.9559 - mae: 0.0888 - pearson_correlation: 0.7603 - euclidean_distance: 0.1429
Epoch 232/300
152/152 [==============================] - 0s 805us/step - loss: 0.0899 - accuracy: 0.9546 - mae: 0.0899 - pearson_correlation: 0.7665 - euclidean_distance: 0.1442
Epoch 233/300
152/152 [==============================] - 0s 801us/step - loss: 0.0923 - accuracy: 0.9554 - mae: 0.0923 - pearson_correlation: 0.7582 - euclidean_distance: 0.1480
Epoch 234/300
152/152 [==============================] - 0s 805us/step - loss: 0.0883 - accuracy: 0.9563 - mae: 0.0883 - pearson_correlation: 0.7614 - euclidean_distance: 0.1419
Epoch 235/300
152/152 [==============================] - 0s 805us/step - loss: 0.0894 - accuracy: 0.9550 - mae: 0.0894 - pearson_correlation: 0.7690 - euclidean_distance: 0.1430
Epoch 236/300
152/152 [==============================] - 0s 807us/step - loss: 0.0882 - accuracy: 0.9554 - mae: 0.0882 - pearson_correlation: 0.7674 - euclidean_distance: 0.1417
Epoch 237/300
152/152 [==============================] - 0s 806us/step - loss: 0.0904 - accuracy: 0.9554 - mae: 0.0904 - pearson_correlation: 0.7601 - euclidean_distance: 0.1450
Epoch 238/300
152/152 [==============================] - 0s 802us/step - loss: 0.0900 - accuracy: 0.9554 - mae: 0.0900 - pearson_correlation: 0.7662 - euclidean_distance: 0.1443
Epoch 239/300
152/152 [==============================] - 0s 807us/step - loss: 0.0896 - accuracy: 0.9554 - mae: 0.0896 - pearson_correlation: 0.7635 - euclidean_distance: 0.1438
Epoch 240/300
152/152 [==============================] - 0s 806us/step - loss: 0.0893 - accuracy: 0.9559 - mae: 0.0893 - pearson_correlation: 0.7606 - euclidean_distance: 0.1437
Epoch 241/300
152/152 [==============================] - 0s 800us/step - loss: 0.0899 - accuracy: 0.9546 - mae: 0.0899 - pearson_correlation: 0.7633 - euclidean_distance: 0.1445
Epoch 242/300
152/152 [==============================] - 0s 801us/step - loss: 0.0884 - accuracy: 0.9563 - mae: 0.0884 - pearson_correlation: 0.7678 - euclidean_distance: 0.1417
Epoch 243/300
152/152 [==============================] - 0s 810us/step - loss: 0.0888 - accuracy: 0.9554 - mae: 0.0888 - pearson_correlation: 0.7679 - euclidean_distance: 0.1428
Epoch 244/300
152/152 [==============================] - 0s 820us/step - loss: 0.0891 - accuracy: 0.9554 - mae: 0.0891 - pearson_correlation: 0.7643 - euclidean_distance: 0.1431
Epoch 245/300
152/152 [==============================] - 0s 804us/step - loss: 0.0874 - accuracy: 0.9550 - mae: 0.0874 - pearson_correlation: 0.7691 - euclidean_distance: 0.1404
Epoch 246/300
152/152 [==============================] - 0s 809us/step - loss: 0.0874 - accuracy: 0.9550 - mae: 0.0874 - pearson_correlation: 0.7631 - euclidean_distance: 0.1408
Epoch 247/300
152/152 [==============================] - 0s 804us/step - loss: 0.0893 - accuracy: 0.9559 - mae: 0.0893 - pearson_correlation: 0.7668 - euclidean_distance: 0.1437
Epoch 248/300
152/152 [==============================] - 0s 808us/step - loss: 0.0891 - accuracy: 0.9559 - mae: 0.0891 - pearson_correlation: 0.7625 - euclidean_distance: 0.1427
Epoch 249/300
152/152 [==============================] - 0s 810us/step - loss: 0.0888 - accuracy: 0.9559 - mae: 0.0888 - pearson_correlation: 0.7589 - euclidean_distance: 0.1425
Epoch 250/300
152/152 [==============================] - 0s 809us/step - loss: 0.0857 - accuracy: 0.9546 - mae: 0.0857 - pearson_correlation: 0.7682 - euclidean_distance: 0.1375
Epoch 251/300
152/152 [==============================] - 0s 804us/step - loss: 0.0892 - accuracy: 0.9546 - mae: 0.0892 - pearson_correlation: 0.7658 - euclidean_distance: 0.1426
Epoch 252/300
152/152 [==============================] - 0s 807us/step - loss: 0.0891 - accuracy: 0.9550 - mae: 0.0891 - pearson_correlation: 0.7634 - euclidean_distance: 0.1432
Epoch 253/300
152/152 [==============================] - 0s 806us/step - loss: 0.0882 - accuracy: 0.9559 - mae: 0.0882 - pearson_correlation: 0.7653 - euclidean_distance: 0.1413
Epoch 254/300
152/152 [==============================] - 0s 805us/step - loss: 0.0879 - accuracy: 0.9554 - mae: 0.0879 - pearson_correlation: 0.7687 - euclidean_distance: 0.1416
Epoch 255/300
152/152 [==============================] - 0s 799us/step - loss: 0.0854 - accuracy: 0.9554 - mae: 0.0854 - pearson_correlation: 0.7741 - euclidean_distance: 0.1379
Epoch 256/300
152/152 [==============================] - 0s 805us/step - loss: 0.0890 - accuracy: 0.9559 - mae: 0.0890 - pearson_correlation: 0.7646 - euclidean_distance: 0.1431
Epoch 257/300
152/152 [==============================] - 0s 803us/step - loss: 0.0876 - accuracy: 0.9563 - mae: 0.0876 - pearson_correlation: 0.7737 - euclidean_distance: 0.1408
Epoch 258/300
152/152 [==============================] - 0s 801us/step - loss: 0.0865 - accuracy: 0.9563 - mae: 0.0865 - pearson_correlation: 0.7690 - euclidean_distance: 0.1391
Epoch 259/300
152/152 [==============================] - 0s 806us/step - loss: 0.0863 - accuracy: 0.9559 - mae: 0.0863 - pearson_correlation: 0.7713 - euclidean_distance: 0.1390
Epoch 260/300
152/152 [==============================] - 0s 799us/step - loss: 0.0874 - accuracy: 0.9563 - mae: 0.0874 - pearson_correlation: 0.7673 - euclidean_distance: 0.1402
Epoch 261/300
152/152 [==============================] - 0s 805us/step - loss: 0.0872 - accuracy: 0.9559 - mae: 0.0872 - pearson_correlation: 0.7697 - euclidean_distance: 0.1404
Epoch 262/300
152/152 [==============================] - 0s 803us/step - loss: 0.0858 - accuracy: 0.9563 - mae: 0.0858 - pearson_correlation: 0.7722 - euclidean_distance: 0.1383
Epoch 263/300
152/152 [==============================] - 0s 802us/step - loss: 0.0867 - accuracy: 0.9559 - mae: 0.0867 - pearson_correlation: 0.7652 - euclidean_distance: 0.1395
Epoch 264/300
152/152 [==============================] - 0s 800us/step - loss: 0.0889 - accuracy: 0.9563 - mae: 0.0889 - pearson_correlation: 0.7648 - euclidean_distance: 0.1424
Epoch 265/300
152/152 [==============================] - 0s 806us/step - loss: 0.0890 - accuracy: 0.9554 - mae: 0.0890 - pearson_correlation: 0.7690 - euclidean_distance: 0.1426
Epoch 266/300
152/152 [==============================] - 0s 811us/step - loss: 0.0856 - accuracy: 0.9568 - mae: 0.0856 - pearson_correlation: 0.7707 - euclidean_distance: 0.1377
Epoch 267/300
152/152 [==============================] - 0s 803us/step - loss: 0.0863 - accuracy: 0.9554 - mae: 0.0863 - pearson_correlation: 0.7714 - euclidean_distance: 0.1387
Epoch 268/300
152/152 [==============================] - 0s 806us/step - loss: 0.0871 - accuracy: 0.9550 - mae: 0.0871 - pearson_correlation: 0.7665 - euclidean_distance: 0.1402
Epoch 269/300
152/152 [==============================] - 0s 821us/step - loss: 0.0866 - accuracy: 0.9559 - mae: 0.0866 - pearson_correlation: 0.7689 - euclidean_distance: 0.1393
Epoch 270/300
152/152 [==============================] - 0s 812us/step - loss: 0.0878 - accuracy: 0.9563 - mae: 0.0878 - pearson_correlation: 0.7667 - euclidean_distance: 0.1406
Epoch 271/300
152/152 [==============================] - 0s 808us/step - loss: 0.0856 - accuracy: 0.9563 - mae: 0.0856 - pearson_correlation: 0.7701 - euclidean_distance: 0.1379
Epoch 272/300
152/152 [==============================] - 0s 805us/step - loss: 0.0856 - accuracy: 0.9554 - mae: 0.0856 - pearson_correlation: 0.7722 - euclidean_distance: 0.1380
Epoch 273/300
152/152 [==============================] - 0s 803us/step - loss: 0.0873 - accuracy: 0.9554 - mae: 0.0873 - pearson_correlation: 0.7650 - euclidean_distance: 0.1406
Epoch 274/300
152/152 [==============================] - 0s 809us/step - loss: 0.0867 - accuracy: 0.9559 - mae: 0.0867 - pearson_correlation: 0.7712 - euclidean_distance: 0.1394
Epoch 275/300
152/152 [==============================] - 0s 802us/step - loss: 0.0865 - accuracy: 0.9559 - mae: 0.0865 - pearson_correlation: 0.7668 - euclidean_distance: 0.1385
Epoch 276/300
152/152 [==============================] - 0s 804us/step - loss: 0.0869 - accuracy: 0.9563 - mae: 0.0869 - pearson_correlation: 0.7731 - euclidean_distance: 0.1397
Epoch 277/300
152/152 [==============================] - 0s 803us/step - loss: 0.0840 - accuracy: 0.9554 - mae: 0.0840 - pearson_correlation: 0.7769 - euclidean_distance: 0.1353
Epoch 278/300
152/152 [==============================] - 0s 802us/step - loss: 0.0835 - accuracy: 0.9563 - mae: 0.0835 - pearson_correlation: 0.7795 - euclidean_distance: 0.1347
Epoch 279/300
152/152 [==============================] - 0s 802us/step - loss: 0.0843 - accuracy: 0.9563 - mae: 0.0843 - pearson_correlation: 0.7771 - euclidean_distance: 0.1357
Epoch 280/300
152/152 [==============================] - 0s 802us/step - loss: 0.0865 - accuracy: 0.9563 - mae: 0.0865 - pearson_correlation: 0.7676 - euclidean_distance: 0.1395
Epoch 281/300
152/152 [==============================] - 0s 807us/step - loss: 0.0847 - accuracy: 0.9554 - mae: 0.0847 - pearson_correlation: 0.7724 - euclidean_distance: 0.1365
Epoch 282/300
152/152 [==============================] - 0s 811us/step - loss: 0.0862 - accuracy: 0.9563 - mae: 0.0862 - pearson_correlation: 0.7732 - euclidean_distance: 0.1387
Epoch 283/300
152/152 [==============================] - 0s 805us/step - loss: 0.0869 - accuracy: 0.9563 - mae: 0.0869 - pearson_correlation: 0.7696 - euclidean_distance: 0.1398
Epoch 284/300
152/152 [==============================] - 0s 806us/step - loss: 0.0859 - accuracy: 0.9563 - mae: 0.0859 - pearson_correlation: 0.7689 - euclidean_distance: 0.1379
Epoch 285/300
152/152 [==============================] - 0s 805us/step - loss: 0.0859 - accuracy: 0.9559 - mae: 0.0859 - pearson_correlation: 0.7697 - euclidean_distance: 0.1386
Epoch 286/300
152/152 [==============================] - 0s 798us/step - loss: 0.0853 - accuracy: 0.9568 - mae: 0.0853 - pearson_correlation: 0.7782 - euclidean_distance: 0.1367
Epoch 287/300
152/152 [==============================] - 0s 800us/step - loss: 0.0866 - accuracy: 0.9563 - mae: 0.0866 - pearson_correlation: 0.7746 - euclidean_distance: 0.1388
Epoch 288/300
152/152 [==============================] - 0s 801us/step - loss: 0.0849 - accuracy: 0.9559 - mae: 0.0849 - pearson_correlation: 0.7764 - euclidean_distance: 0.1366
Epoch 289/300
152/152 [==============================] - 0s 804us/step - loss: 0.0849 - accuracy: 0.9563 - mae: 0.0849 - pearson_correlation: 0.7755 - euclidean_distance: 0.1364
Epoch 290/300
152/152 [==============================] - 0s 803us/step - loss: 0.0846 - accuracy: 0.9563 - mae: 0.0846 - pearson_correlation: 0.7811 - euclidean_distance: 0.1356
Epoch 291/300
152/152 [==============================] - 0s 808us/step - loss: 0.0843 - accuracy: 0.9554 - mae: 0.0843 - pearson_correlation: 0.7736 - euclidean_distance: 0.1357
Epoch 292/300
152/152 [==============================] - 0s 805us/step - loss: 0.0840 - accuracy: 0.9559 - mae: 0.0840 - pearson_correlation: 0.7728 - euclidean_distance: 0.1353
Epoch 293/300
152/152 [==============================] - 0s 808us/step - loss: 0.0861 - accuracy: 0.9563 - mae: 0.0861 - pearson_correlation: 0.7714 - euclidean_distance: 0.1382
Epoch 294/300
152/152 [==============================] - 0s 804us/step - loss: 0.0853 - accuracy: 0.9554 - mae: 0.0853 - pearson_correlation: 0.7760 - euclidean_distance: 0.1371
Epoch 295/300
152/152 [==============================] - 0s 802us/step - loss: 0.0849 - accuracy: 0.9559 - mae: 0.0849 - pearson_correlation: 0.7777 - euclidean_distance: 0.1363
Epoch 296/300
152/152 [==============================] - 0s 803us/step - loss: 0.0853 - accuracy: 0.9563 - mae: 0.0853 - pearson_correlation: 0.7750 - euclidean_distance: 0.1370
Epoch 297/300
152/152 [==============================] - 0s 801us/step - loss: 0.0828 - accuracy: 0.9563 - mae: 0.0828 - pearson_correlation: 0.7789 - euclidean_distance: 0.1332
Epoch 298/300
152/152 [==============================] - 0s 800us/step - loss: 0.0828 - accuracy: 0.9563 - mae: 0.0828 - pearson_correlation: 0.7782 - euclidean_distance: 0.1339
Epoch 299/300
152/152 [==============================] - 0s 808us/step - loss: 0.0843 - accuracy: 0.9554 - mae: 0.0843 - pearson_correlation: 0.7759 - euclidean_distance: 0.1358
Epoch 300/300
152/152 [==============================] - 0s 808us/step - loss: 0.0850 - accuracy: 0.9554 - mae: 0.0850 - pearson_correlation: 0.7775 - euclidean_distance: 0.1369
76/76 [==============================] - 0s 469us/step
Epoch 1/300
152/152 [==============================] - 1s 857us/step - loss: 0.5648 - accuracy: 0.6899 - mae: 0.5648 - pearson_correlation: 0.3266 - euclidean_distance: 0.8337
Epoch 2/300
152/152 [==============================] - 0s 811us/step - loss: 0.5563 - accuracy: 0.6890 - mae: 0.5563 - pearson_correlation: 0.3200 - euclidean_distance: 0.8228
Epoch 3/300
152/152 [==============================] - 0s 815us/step - loss: 0.5515 - accuracy: 0.6925 - mae: 0.5515 - pearson_correlation: 0.3259 - euclidean_distance: 0.8155
Epoch 4/300
152/152 [==============================] - 0s 813us/step - loss: 0.5453 - accuracy: 0.6890 - mae: 0.5453 - pearson_correlation: 0.3336 - euclidean_distance: 0.8066
Epoch 5/300
152/152 [==============================] - 0s 806us/step - loss: 0.5386 - accuracy: 0.6965 - mae: 0.5386 - pearson_correlation: 0.3299 - euclidean_distance: 0.7975
Epoch 6/300
152/152 [==============================] - 0s 809us/step - loss: 0.5317 - accuracy: 0.6855 - mae: 0.5317 - pearson_correlation: 0.3221 - euclidean_distance: 0.7883
Epoch 7/300
152/152 [==============================] - 0s 812us/step - loss: 0.5259 - accuracy: 0.6952 - mae: 0.5259 - pearson_correlation: 0.3288 - euclidean_distance: 0.7806
Epoch 8/300
152/152 [==============================] - 0s 806us/step - loss: 0.5200 - accuracy: 0.6881 - mae: 0.5200 - pearson_correlation: 0.3140 - euclidean_distance: 0.7733
Epoch 9/300
152/152 [==============================] - 0s 813us/step - loss: 0.5134 - accuracy: 0.6908 - mae: 0.5134 - pearson_correlation: 0.3335 - euclidean_distance: 0.7630
Epoch 10/300
152/152 [==============================] - 0s 807us/step - loss: 0.5070 - accuracy: 0.6837 - mae: 0.5070 - pearson_correlation: 0.3119 - euclidean_distance: 0.7548
Epoch 11/300
152/152 [==============================] - 0s 807us/step - loss: 0.5011 - accuracy: 0.6903 - mae: 0.5011 - pearson_correlation: 0.3203 - euclidean_distance: 0.7466
Epoch 12/300
152/152 [==============================] - 0s 801us/step - loss: 0.4940 - accuracy: 0.6881 - mae: 0.4940 - pearson_correlation: 0.3202 - euclidean_distance: 0.7370
Epoch 13/300
152/152 [==============================] - 0s 805us/step - loss: 0.4858 - accuracy: 0.6948 - mae: 0.4858 - pearson_correlation: 0.3184 - euclidean_distance: 0.7254
Epoch 14/300
152/152 [==============================] - 0s 808us/step - loss: 0.4808 - accuracy: 0.6842 - mae: 0.4808 - pearson_correlation: 0.3059 - euclidean_distance: 0.7191
Epoch 15/300
152/152 [==============================] - 0s 804us/step - loss: 0.4741 - accuracy: 0.6939 - mae: 0.4741 - pearson_correlation: 0.3120 - euclidean_distance: 0.7091
Epoch 16/300
152/152 [==============================] - 0s 804us/step - loss: 0.4680 - accuracy: 0.6934 - mae: 0.4680 - pearson_correlation: 0.3065 - euclidean_distance: 0.7009
Epoch 17/300
152/152 [==============================] - 0s 805us/step - loss: 0.4614 - accuracy: 0.6930 - mae: 0.4614 - pearson_correlation: 0.3101 - euclidean_distance: 0.6922
Epoch 18/300
152/152 [==============================] - 0s 807us/step - loss: 0.4545 - accuracy: 0.6850 - mae: 0.4545 - pearson_correlation: 0.3060 - euclidean_distance: 0.6829
Epoch 19/300
152/152 [==============================] - 0s 875us/step - loss: 0.4462 - accuracy: 0.6868 - mae: 0.4462 - pearson_correlation: 0.3022 - euclidean_distance: 0.6713
Epoch 20/300
152/152 [==============================] - 0s 871us/step - loss: 0.4413 - accuracy: 0.6996 - mae: 0.4413 - pearson_correlation: 0.3139 - euclidean_distance: 0.6638
Epoch 21/300
152/152 [==============================] - 0s 932us/step - loss: 0.4344 - accuracy: 0.6952 - mae: 0.4344 - pearson_correlation: 0.3025 - euclidean_distance: 0.6548
Epoch 22/300
152/152 [==============================] - 0s 946us/step - loss: 0.4266 - accuracy: 0.6903 - mae: 0.4266 - pearson_correlation: 0.3098 - euclidean_distance: 0.6439
Epoch 23/300
152/152 [==============================] - 0s 824us/step - loss: 0.4206 - accuracy: 0.6939 - mae: 0.4206 - pearson_correlation: 0.3168 - euclidean_distance: 0.6353
Epoch 24/300
152/152 [==============================] - 0s 805us/step - loss: 0.4139 - accuracy: 0.6987 - mae: 0.4139 - pearson_correlation: 0.3034 - euclidean_distance: 0.6268
Epoch 25/300
152/152 [==============================] - 0s 805us/step - loss: 0.4062 - accuracy: 0.7137 - mae: 0.4062 - pearson_correlation: 0.3093 - euclidean_distance: 0.6157
Epoch 26/300
152/152 [==============================] - 0s 804us/step - loss: 0.4005 - accuracy: 0.7186 - mae: 0.4005 - pearson_correlation: 0.3254 - euclidean_distance: 0.6067
Epoch 27/300
152/152 [==============================] - 0s 807us/step - loss: 0.3929 - accuracy: 0.7018 - mae: 0.3929 - pearson_correlation: 0.3038 - euclidean_distance: 0.5974
Epoch 28/300
152/152 [==============================] - 0s 807us/step - loss: 0.3853 - accuracy: 0.7133 - mae: 0.3853 - pearson_correlation: 0.3133 - euclidean_distance: 0.5863
Epoch 29/300
152/152 [==============================] - 0s 802us/step - loss: 0.3774 - accuracy: 0.7186 - mae: 0.3774 - pearson_correlation: 0.3241 - euclidean_distance: 0.5751
Epoch 30/300
152/152 [==============================] - 0s 801us/step - loss: 0.3728 - accuracy: 0.7080 - mae: 0.3728 - pearson_correlation: 0.3158 - euclidean_distance: 0.5692
Epoch 31/300
152/152 [==============================] - 0s 805us/step - loss: 0.3650 - accuracy: 0.7318 - mae: 0.3650 - pearson_correlation: 0.3174 - euclidean_distance: 0.5577
Epoch 32/300
152/152 [==============================] - 0s 811us/step - loss: 0.3588 - accuracy: 0.7203 - mae: 0.3588 - pearson_correlation: 0.3223 - euclidean_distance: 0.5501
Epoch 33/300
152/152 [==============================] - 0s 810us/step - loss: 0.3529 - accuracy: 0.7221 - mae: 0.3529 - pearson_correlation: 0.3293 - euclidean_distance: 0.5420
Epoch 34/300
152/152 [==============================] - 0s 805us/step - loss: 0.3450 - accuracy: 0.7256 - mae: 0.3450 - pearson_correlation: 0.3278 - euclidean_distance: 0.5304
Epoch 35/300
152/152 [==============================] - 0s 805us/step - loss: 0.3389 - accuracy: 0.7327 - mae: 0.3389 - pearson_correlation: 0.3340 - euclidean_distance: 0.5220
Epoch 36/300
152/152 [==============================] - 0s 806us/step - loss: 0.3310 - accuracy: 0.7362 - mae: 0.3310 - pearson_correlation: 0.3361 - euclidean_distance: 0.5111
Epoch 37/300
152/152 [==============================] - 0s 802us/step - loss: 0.3255 - accuracy: 0.7406 - mae: 0.3255 - pearson_correlation: 0.3343 - euclidean_distance: 0.5036
Epoch 38/300
152/152 [==============================] - 0s 804us/step - loss: 0.3204 - accuracy: 0.7569 - mae: 0.3204 - pearson_correlation: 0.3487 - euclidean_distance: 0.4955
Epoch 39/300
152/152 [==============================] - 0s 809us/step - loss: 0.3137 - accuracy: 0.7543 - mae: 0.3137 - pearson_correlation: 0.3434 - euclidean_distance: 0.4861
Epoch 40/300
152/152 [==============================] - 0s 801us/step - loss: 0.3091 - accuracy: 0.7539 - mae: 0.3091 - pearson_correlation: 0.3517 - euclidean_distance: 0.4796
Epoch 41/300
152/152 [==============================] - 0s 801us/step - loss: 0.3043 - accuracy: 0.7543 - mae: 0.3043 - pearson_correlation: 0.3540 - euclidean_distance: 0.4734
Epoch 42/300
152/152 [==============================] - 0s 807us/step - loss: 0.2968 - accuracy: 0.7605 - mae: 0.2968 - pearson_correlation: 0.3538 - euclidean_distance: 0.4624
Epoch 43/300
152/152 [==============================] - 0s 807us/step - loss: 0.2930 - accuracy: 0.7609 - mae: 0.2930 - pearson_correlation: 0.3633 - euclidean_distance: 0.4566
Epoch 44/300
152/152 [==============================] - 0s 822us/step - loss: 0.2869 - accuracy: 0.7724 - mae: 0.2869 - pearson_correlation: 0.3657 - euclidean_distance: 0.4481
Epoch 45/300
152/152 [==============================] - 0s 809us/step - loss: 0.2825 - accuracy: 0.7764 - mae: 0.2825 - pearson_correlation: 0.3720 - euclidean_distance: 0.4428
Epoch 46/300
152/152 [==============================] - 0s 805us/step - loss: 0.2789 - accuracy: 0.7631 - mae: 0.2789 - pearson_correlation: 0.3581 - euclidean_distance: 0.4381
Epoch 47/300
152/152 [==============================] - 0s 803us/step - loss: 0.2763 - accuracy: 0.7667 - mae: 0.2763 - pearson_correlation: 0.3705 - euclidean_distance: 0.4330
Epoch 48/300
152/152 [==============================] - 0s 796us/step - loss: 0.2734 - accuracy: 0.7684 - mae: 0.2734 - pearson_correlation: 0.3668 - euclidean_distance: 0.4293
Epoch 49/300
152/152 [==============================] - 0s 812us/step - loss: 0.2715 - accuracy: 0.7667 - mae: 0.2715 - pearson_correlation: 0.3599 - euclidean_distance: 0.4270
Epoch 50/300
152/152 [==============================] - 0s 804us/step - loss: 0.2671 - accuracy: 0.7772 - mae: 0.2671 - pearson_correlation: 0.3706 - euclidean_distance: 0.4203
Epoch 51/300
152/152 [==============================] - 0s 803us/step - loss: 0.2641 - accuracy: 0.7737 - mae: 0.2641 - pearson_correlation: 0.3698 - euclidean_distance: 0.4151
Epoch 52/300
152/152 [==============================] - 0s 804us/step - loss: 0.2605 - accuracy: 0.7786 - mae: 0.2605 - pearson_correlation: 0.3837 - euclidean_distance: 0.4100
Epoch 53/300
152/152 [==============================] - 0s 804us/step - loss: 0.2580 - accuracy: 0.7799 - mae: 0.2580 - pearson_correlation: 0.3713 - euclidean_distance: 0.4066
Epoch 54/300
152/152 [==============================] - 0s 799us/step - loss: 0.2541 - accuracy: 0.7830 - mae: 0.2541 - pearson_correlation: 0.3792 - euclidean_distance: 0.4008
Epoch 55/300
152/152 [==============================] - 0s 806us/step - loss: 0.2541 - accuracy: 0.7786 - mae: 0.2541 - pearson_correlation: 0.3773 - euclidean_distance: 0.4015
Epoch 56/300
152/152 [==============================] - 0s 804us/step - loss: 0.2488 - accuracy: 0.7940 - mae: 0.2488 - pearson_correlation: 0.3872 - euclidean_distance: 0.3930
Epoch 57/300
152/152 [==============================] - 0s 808us/step - loss: 0.2472 - accuracy: 0.7918 - mae: 0.2472 - pearson_correlation: 0.3892 - euclidean_distance: 0.3904
Epoch 58/300
152/152 [==============================] - 0s 807us/step - loss: 0.2447 - accuracy: 0.7931 - mae: 0.2447 - pearson_correlation: 0.3881 - euclidean_distance: 0.3874
Epoch 59/300
152/152 [==============================] - 0s 806us/step - loss: 0.2436 - accuracy: 0.7989 - mae: 0.2436 - pearson_correlation: 0.3957 - euclidean_distance: 0.3844
Epoch 60/300
152/152 [==============================] - 0s 803us/step - loss: 0.2417 - accuracy: 0.7900 - mae: 0.2417 - pearson_correlation: 0.3936 - euclidean_distance: 0.3822
Epoch 61/300
152/152 [==============================] - 0s 802us/step - loss: 0.2401 - accuracy: 0.8002 - mae: 0.2401 - pearson_correlation: 0.3973 - euclidean_distance: 0.3794
Epoch 62/300
152/152 [==============================] - 0s 803us/step - loss: 0.2350 - accuracy: 0.8033 - mae: 0.2350 - pearson_correlation: 0.4016 - euclidean_distance: 0.3708
Epoch 63/300
152/152 [==============================] - 0s 802us/step - loss: 0.2352 - accuracy: 0.8081 - mae: 0.2352 - pearson_correlation: 0.4043 - euclidean_distance: 0.3719
Epoch 64/300
152/152 [==============================] - 0s 799us/step - loss: 0.2326 - accuracy: 0.8178 - mae: 0.2326 - pearson_correlation: 0.4048 - euclidean_distance: 0.3683
Epoch 65/300
152/152 [==============================] - 0s 805us/step - loss: 0.2302 - accuracy: 0.8068 - mae: 0.2302 - pearson_correlation: 0.4091 - euclidean_distance: 0.3646
Epoch 66/300
152/152 [==============================] - 0s 807us/step - loss: 0.2266 - accuracy: 0.8174 - mae: 0.2266 - pearson_correlation: 0.4129 - euclidean_distance: 0.3588
Epoch 67/300
152/152 [==============================] - 0s 801us/step - loss: 0.2269 - accuracy: 0.8077 - mae: 0.2269 - pearson_correlation: 0.4207 - euclidean_distance: 0.3587
Epoch 68/300
152/152 [==============================] - 0s 805us/step - loss: 0.2248 - accuracy: 0.8191 - mae: 0.2248 - pearson_correlation: 0.4218 - euclidean_distance: 0.3561
Epoch 69/300
152/152 [==============================] - 0s 803us/step - loss: 0.2222 - accuracy: 0.8112 - mae: 0.2222 - pearson_correlation: 0.4141 - euclidean_distance: 0.3523
Epoch 70/300
152/152 [==============================] - 0s 803us/step - loss: 0.2210 - accuracy: 0.8174 - mae: 0.2210 - pearson_correlation: 0.4264 - euclidean_distance: 0.3500
Epoch 71/300
152/152 [==============================] - 0s 805us/step - loss: 0.2226 - accuracy: 0.8178 - mae: 0.2226 - pearson_correlation: 0.4251 - euclidean_distance: 0.3534
Epoch 72/300
152/152 [==============================] - 0s 802us/step - loss: 0.2200 - accuracy: 0.8152 - mae: 0.2200 - pearson_correlation: 0.4245 - euclidean_distance: 0.3487
Epoch 73/300
152/152 [==============================] - 0s 804us/step - loss: 0.2215 - accuracy: 0.8297 - mae: 0.2215 - pearson_correlation: 0.4245 - euclidean_distance: 0.3515
Epoch 74/300
152/152 [==============================] - 0s 803us/step - loss: 0.2166 - accuracy: 0.8236 - mae: 0.2166 - pearson_correlation: 0.4356 - euclidean_distance: 0.3438
Epoch 75/300
152/152 [==============================] - 0s 801us/step - loss: 0.2146 - accuracy: 0.8262 - mae: 0.2146 - pearson_correlation: 0.4441 - euclidean_distance: 0.3402
Epoch 76/300
152/152 [==============================] - 0s 810us/step - loss: 0.2134 - accuracy: 0.8306 - mae: 0.2134 - pearson_correlation: 0.4410 - euclidean_distance: 0.3382
Epoch 77/300
152/152 [==============================] - 0s 805us/step - loss: 0.2108 - accuracy: 0.8363 - mae: 0.2108 - pearson_correlation: 0.4440 - euclidean_distance: 0.3343
Epoch 78/300
152/152 [==============================] - 0s 801us/step - loss: 0.2096 - accuracy: 0.8368 - mae: 0.2096 - pearson_correlation: 0.4596 - euclidean_distance: 0.3319
Epoch 79/300
152/152 [==============================] - 0s 801us/step - loss: 0.2090 - accuracy: 0.8434 - mae: 0.2090 - pearson_correlation: 0.4584 - euclidean_distance: 0.3312
Epoch 80/300
152/152 [==============================] - 0s 806us/step - loss: 0.2041 - accuracy: 0.8346 - mae: 0.2041 - pearson_correlation: 0.4644 - euclidean_distance: 0.3242
Epoch 81/300
152/152 [==============================] - 0s 801us/step - loss: 0.2052 - accuracy: 0.8350 - mae: 0.2052 - pearson_correlation: 0.4716 - euclidean_distance: 0.3260
Epoch 82/300
152/152 [==============================] - 0s 803us/step - loss: 0.2045 - accuracy: 0.8381 - mae: 0.2045 - pearson_correlation: 0.4666 - euclidean_distance: 0.3249
Epoch 83/300
152/152 [==============================] - 0s 803us/step - loss: 0.2018 - accuracy: 0.8430 - mae: 0.2018 - pearson_correlation: 0.4677 - euclidean_distance: 0.3204
Epoch 84/300
152/152 [==============================] - 0s 799us/step - loss: 0.2037 - accuracy: 0.8394 - mae: 0.2037 - pearson_correlation: 0.4649 - euclidean_distance: 0.3229
Epoch 85/300
152/152 [==============================] - 0s 804us/step - loss: 0.1995 - accuracy: 0.8483 - mae: 0.1995 - pearson_correlation: 0.4785 - euclidean_distance: 0.3174
Epoch 86/300
152/152 [==============================] - 0s 805us/step - loss: 0.1954 - accuracy: 0.8540 - mae: 0.1954 - pearson_correlation: 0.4818 - euclidean_distance: 0.3100
Epoch 87/300
152/152 [==============================] - 0s 806us/step - loss: 0.1963 - accuracy: 0.8500 - mae: 0.1963 - pearson_correlation: 0.4881 - euclidean_distance: 0.3117
Epoch 88/300
152/152 [==============================] - 0s 801us/step - loss: 0.1964 - accuracy: 0.8421 - mae: 0.1964 - pearson_correlation: 0.4884 - euclidean_distance: 0.3121
Epoch 89/300
152/152 [==============================] - 0s 796us/step - loss: 0.1960 - accuracy: 0.8430 - mae: 0.1960 - pearson_correlation: 0.4868 - euclidean_distance: 0.3111
Epoch 90/300
152/152 [==============================] - 0s 807us/step - loss: 0.1936 - accuracy: 0.8496 - mae: 0.1936 - pearson_correlation: 0.4868 - euclidean_distance: 0.3074
Epoch 91/300
152/152 [==============================] - 0s 800us/step - loss: 0.1903 - accuracy: 0.8566 - mae: 0.1903 - pearson_correlation: 0.5002 - euclidean_distance: 0.3029
Epoch 92/300
152/152 [==============================] - 0s 806us/step - loss: 0.1926 - accuracy: 0.8518 - mae: 0.1926 - pearson_correlation: 0.4963 - euclidean_distance: 0.3062
Epoch 93/300
152/152 [==============================] - 0s 804us/step - loss: 0.1894 - accuracy: 0.8571 - mae: 0.1894 - pearson_correlation: 0.5000 - euclidean_distance: 0.3027
Epoch 94/300
152/152 [==============================] - 0s 804us/step - loss: 0.1903 - accuracy: 0.8602 - mae: 0.1903 - pearson_correlation: 0.5001 - euclidean_distance: 0.3020
Epoch 95/300
152/152 [==============================] - 0s 803us/step - loss: 0.1861 - accuracy: 0.8606 - mae: 0.1861 - pearson_correlation: 0.5073 - euclidean_distance: 0.2963
Epoch 96/300
152/152 [==============================] - 0s 801us/step - loss: 0.1847 - accuracy: 0.8628 - mae: 0.1847 - pearson_correlation: 0.5177 - euclidean_distance: 0.2938
Epoch 97/300
152/152 [==============================] - 0s 802us/step - loss: 0.1836 - accuracy: 0.8597 - mae: 0.1836 - pearson_correlation: 0.5087 - euclidean_distance: 0.2929
Epoch 98/300
152/152 [==============================] - 0s 804us/step - loss: 0.1872 - accuracy: 0.8602 - mae: 0.1872 - pearson_correlation: 0.5093 - euclidean_distance: 0.2974
Epoch 99/300
152/152 [==============================] - 0s 808us/step - loss: 0.1816 - accuracy: 0.8628 - mae: 0.1816 - pearson_correlation: 0.5156 - euclidean_distance: 0.2897
Epoch 100/300
152/152 [==============================] - 0s 802us/step - loss: 0.1817 - accuracy: 0.8633 - mae: 0.1817 - pearson_correlation: 0.5232 - euclidean_distance: 0.2901
Epoch 101/300
152/152 [==============================] - 0s 804us/step - loss: 0.1795 - accuracy: 0.8637 - mae: 0.1795 - pearson_correlation: 0.5312 - euclidean_distance: 0.2864
Epoch 102/300
152/152 [==============================] - 0s 805us/step - loss: 0.1817 - accuracy: 0.8663 - mae: 0.1817 - pearson_correlation: 0.5286 - euclidean_distance: 0.2895
Epoch 103/300
152/152 [==============================] - 0s 798us/step - loss: 0.1805 - accuracy: 0.8663 - mae: 0.1805 - pearson_correlation: 0.5288 - euclidean_distance: 0.2879
Epoch 104/300
152/152 [==============================] - 0s 807us/step - loss: 0.1793 - accuracy: 0.8633 - mae: 0.1793 - pearson_correlation: 0.5245 - euclidean_distance: 0.2864
Epoch 105/300
152/152 [==============================] - 0s 801us/step - loss: 0.1756 - accuracy: 0.8743 - mae: 0.1756 - pearson_correlation: 0.5465 - euclidean_distance: 0.2797
Epoch 106/300
152/152 [==============================] - 0s 803us/step - loss: 0.1755 - accuracy: 0.8659 - mae: 0.1755 - pearson_correlation: 0.5395 - euclidean_distance: 0.2808
Epoch 107/300
152/152 [==============================] - 0s 793us/step - loss: 0.1742 - accuracy: 0.8712 - mae: 0.1742 - pearson_correlation: 0.5460 - euclidean_distance: 0.2784
Epoch 108/300
152/152 [==============================] - 0s 804us/step - loss: 0.1741 - accuracy: 0.8765 - mae: 0.1741 - pearson_correlation: 0.5479 - euclidean_distance: 0.2778
Epoch 109/300
152/152 [==============================] - 0s 802us/step - loss: 0.1716 - accuracy: 0.8712 - mae: 0.1716 - pearson_correlation: 0.5460 - euclidean_distance: 0.2751
Epoch 110/300
152/152 [==============================] - 0s 800us/step - loss: 0.1720 - accuracy: 0.8734 - mae: 0.1720 - pearson_correlation: 0.5491 - euclidean_distance: 0.2754
Epoch 111/300
152/152 [==============================] - 0s 800us/step - loss: 0.1684 - accuracy: 0.8783 - mae: 0.1684 - pearson_correlation: 0.5576 - euclidean_distance: 0.2689
Epoch 112/300
152/152 [==============================] - 0s 798us/step - loss: 0.1707 - accuracy: 0.8743 - mae: 0.1707 - pearson_correlation: 0.5498 - euclidean_distance: 0.2729
Epoch 113/300
152/152 [==============================] - 0s 800us/step - loss: 0.1681 - accuracy: 0.8738 - mae: 0.1681 - pearson_correlation: 0.5533 - euclidean_distance: 0.2699
Epoch 114/300
152/152 [==============================] - 0s 802us/step - loss: 0.1672 - accuracy: 0.8769 - mae: 0.1672 - pearson_correlation: 0.5620 - euclidean_distance: 0.2684
Epoch 115/300
152/152 [==============================] - 0s 802us/step - loss: 0.1677 - accuracy: 0.8791 - mae: 0.1677 - pearson_correlation: 0.5617 - euclidean_distance: 0.2679
Epoch 116/300
152/152 [==============================] - 0s 796us/step - loss: 0.1653 - accuracy: 0.8716 - mae: 0.1653 - pearson_correlation: 0.5578 - euclidean_distance: 0.2646
Epoch 117/300
152/152 [==============================] - 0s 806us/step - loss: 0.1653 - accuracy: 0.8738 - mae: 0.1653 - pearson_correlation: 0.5662 - euclidean_distance: 0.2648
Epoch 118/300
152/152 [==============================] - 0s 798us/step - loss: 0.1653 - accuracy: 0.8765 - mae: 0.1653 - pearson_correlation: 0.5679 - euclidean_distance: 0.2653
Epoch 119/300
152/152 [==============================] - 0s 800us/step - loss: 0.1637 - accuracy: 0.8827 - mae: 0.1637 - pearson_correlation: 0.5804 - euclidean_distance: 0.2622
Epoch 120/300
152/152 [==============================] - 0s 803us/step - loss: 0.1611 - accuracy: 0.8853 - mae: 0.1611 - pearson_correlation: 0.5776 - euclidean_distance: 0.2586
Epoch 121/300
152/152 [==============================] - 0s 803us/step - loss: 0.1615 - accuracy: 0.8796 - mae: 0.1615 - pearson_correlation: 0.5790 - euclidean_distance: 0.2594
Epoch 122/300
152/152 [==============================] - 0s 812us/step - loss: 0.1590 - accuracy: 0.8787 - mae: 0.1590 - pearson_correlation: 0.5805 - euclidean_distance: 0.2560
Epoch 123/300
152/152 [==============================] - 0s 821us/step - loss: 0.1576 - accuracy: 0.8893 - mae: 0.1576 - pearson_correlation: 0.5926 - euclidean_distance: 0.2526
Epoch 124/300
152/152 [==============================] - 0s 799us/step - loss: 0.1595 - accuracy: 0.8835 - mae: 0.1595 - pearson_correlation: 0.5827 - euclidean_distance: 0.2562
Epoch 125/300
152/152 [==============================] - 0s 801us/step - loss: 0.1582 - accuracy: 0.8884 - mae: 0.1582 - pearson_correlation: 0.5922 - euclidean_distance: 0.2545
Epoch 126/300
152/152 [==============================] - 0s 809us/step - loss: 0.1580 - accuracy: 0.8902 - mae: 0.1580 - pearson_correlation: 0.5836 - euclidean_distance: 0.2535
Epoch 127/300
152/152 [==============================] - 0s 800us/step - loss: 0.1549 - accuracy: 0.8884 - mae: 0.1549 - pearson_correlation: 0.5947 - euclidean_distance: 0.2485
Epoch 128/300
152/152 [==============================] - 0s 800us/step - loss: 0.1534 - accuracy: 0.8910 - mae: 0.1534 - pearson_correlation: 0.5943 - euclidean_distance: 0.2469
Epoch 129/300
152/152 [==============================] - 0s 801us/step - loss: 0.1539 - accuracy: 0.8902 - mae: 0.1539 - pearson_correlation: 0.5953 - euclidean_distance: 0.2476
Epoch 130/300
152/152 [==============================] - 0s 799us/step - loss: 0.1569 - accuracy: 0.8875 - mae: 0.1569 - pearson_correlation: 0.5921 - euclidean_distance: 0.2521
Epoch 131/300
152/152 [==============================] - 0s 805us/step - loss: 0.1539 - accuracy: 0.8884 - mae: 0.1539 - pearson_correlation: 0.5957 - euclidean_distance: 0.2478
Epoch 132/300
152/152 [==============================] - 0s 798us/step - loss: 0.1538 - accuracy: 0.8955 - mae: 0.1538 - pearson_correlation: 0.6028 - euclidean_distance: 0.2466
Epoch 133/300
152/152 [==============================] - 0s 797us/step - loss: 0.1542 - accuracy: 0.8959 - mae: 0.1542 - pearson_correlation: 0.6016 - euclidean_distance: 0.2478
Epoch 134/300
152/152 [==============================] - 0s 807us/step - loss: 0.1492 - accuracy: 0.8933 - mae: 0.1492 - pearson_correlation: 0.6093 - euclidean_distance: 0.2401
Epoch 135/300
152/152 [==============================] - 0s 800us/step - loss: 0.1519 - accuracy: 0.8977 - mae: 0.1519 - pearson_correlation: 0.6108 - euclidean_distance: 0.2433
Epoch 136/300
152/152 [==============================] - 0s 794us/step - loss: 0.1505 - accuracy: 0.8999 - mae: 0.1505 - pearson_correlation: 0.6148 - euclidean_distance: 0.2414
Epoch 137/300
152/152 [==============================] - 0s 801us/step - loss: 0.1487 - accuracy: 0.8871 - mae: 0.1487 - pearson_correlation: 0.6077 - euclidean_distance: 0.2390
Epoch 138/300
152/152 [==============================] - 0s 802us/step - loss: 0.1480 - accuracy: 0.8937 - mae: 0.1480 - pearson_correlation: 0.6196 - euclidean_distance: 0.2385
Epoch 139/300
152/152 [==============================] - 0s 803us/step - loss: 0.1462 - accuracy: 0.8999 - mae: 0.1462 - pearson_correlation: 0.6229 - euclidean_distance: 0.2345
Epoch 140/300
152/152 [==============================] - 0s 801us/step - loss: 0.1448 - accuracy: 0.9007 - mae: 0.1448 - pearson_correlation: 0.6245 - euclidean_distance: 0.2336
Epoch 141/300
152/152 [==============================] - 0s 803us/step - loss: 0.1444 - accuracy: 0.8972 - mae: 0.1444 - pearson_correlation: 0.6228 - euclidean_distance: 0.2331
Epoch 142/300
152/152 [==============================] - 0s 802us/step - loss: 0.1446 - accuracy: 0.9021 - mae: 0.1446 - pearson_correlation: 0.6274 - euclidean_distance: 0.2327
Epoch 143/300
152/152 [==============================] - 0s 795us/step - loss: 0.1444 - accuracy: 0.9003 - mae: 0.1444 - pearson_correlation: 0.6164 - euclidean_distance: 0.2327
Epoch 144/300
152/152 [==============================] - 0s 799us/step - loss: 0.1434 - accuracy: 0.9043 - mae: 0.1434 - pearson_correlation: 0.6279 - euclidean_distance: 0.2304
Epoch 145/300
152/152 [==============================] - 0s 804us/step - loss: 0.1410 - accuracy: 0.8977 - mae: 0.1410 - pearson_correlation: 0.6260 - euclidean_distance: 0.2272
Epoch 146/300
152/152 [==============================] - 0s 800us/step - loss: 0.1417 - accuracy: 0.9034 - mae: 0.1417 - pearson_correlation: 0.6295 - euclidean_distance: 0.2288
Epoch 147/300
152/152 [==============================] - 0s 839us/step - loss: 0.1409 - accuracy: 0.9096 - mae: 0.1409 - pearson_correlation: 0.6310 - euclidean_distance: 0.2277
Epoch 148/300
152/152 [==============================] - 0s 892us/step - loss: 0.1423 - accuracy: 0.9074 - mae: 0.1423 - pearson_correlation: 0.6319 - euclidean_distance: 0.2286
Epoch 149/300
152/152 [==============================] - 0s 931us/step - loss: 0.1385 - accuracy: 0.9100 - mae: 0.1385 - pearson_correlation: 0.6447 - euclidean_distance: 0.2236
Epoch 150/300
152/152 [==============================] - 0s 915us/step - loss: 0.1377 - accuracy: 0.9082 - mae: 0.1377 - pearson_correlation: 0.6453 - euclidean_distance: 0.2220
Epoch 151/300
152/152 [==============================] - 0s 901us/step - loss: 0.1387 - accuracy: 0.9127 - mae: 0.1387 - pearson_correlation: 0.6354 - euclidean_distance: 0.2234
Epoch 152/300
152/152 [==============================] - 0s 809us/step - loss: 0.1382 - accuracy: 0.9118 - mae: 0.1382 - pearson_correlation: 0.6437 - euclidean_distance: 0.2219
Epoch 153/300
152/152 [==============================] - 0s 810us/step - loss: 0.1357 - accuracy: 0.9118 - mae: 0.1357 - pearson_correlation: 0.6416 - euclidean_distance: 0.2188
Epoch 154/300
152/152 [==============================] - 0s 802us/step - loss: 0.1347 - accuracy: 0.9162 - mae: 0.1347 - pearson_correlation: 0.6507 - euclidean_distance: 0.2175
Epoch 155/300
152/152 [==============================] - 0s 805us/step - loss: 0.1382 - accuracy: 0.9025 - mae: 0.1382 - pearson_correlation: 0.6409 - euclidean_distance: 0.2224
Epoch 156/300
152/152 [==============================] - 0s 798us/step - loss: 0.1371 - accuracy: 0.9127 - mae: 0.1371 - pearson_correlation: 0.6516 - euclidean_distance: 0.2197
Epoch 157/300
152/152 [==============================] - 0s 801us/step - loss: 0.1347 - accuracy: 0.9109 - mae: 0.1347 - pearson_correlation: 0.6486 - euclidean_distance: 0.2169
Epoch 158/300
152/152 [==============================] - 0s 802us/step - loss: 0.1343 - accuracy: 0.9171 - mae: 0.1343 - pearson_correlation: 0.6545 - euclidean_distance: 0.2157
Epoch 159/300
152/152 [==============================] - 0s 802us/step - loss: 0.1334 - accuracy: 0.9202 - mae: 0.1334 - pearson_correlation: 0.6597 - euclidean_distance: 0.2146
Epoch 160/300
152/152 [==============================] - 0s 798us/step - loss: 0.1323 - accuracy: 0.9206 - mae: 0.1323 - pearson_correlation: 0.6537 - euclidean_distance: 0.2132
Epoch 161/300
152/152 [==============================] - 0s 805us/step - loss: 0.1309 - accuracy: 0.9255 - mae: 0.1309 - pearson_correlation: 0.6645 - euclidean_distance: 0.2106
Epoch 162/300
152/152 [==============================] - 0s 818us/step - loss: 0.1332 - accuracy: 0.9149 - mae: 0.1332 - pearson_correlation: 0.6545 - euclidean_distance: 0.2144
Epoch 163/300
152/152 [==============================] - 0s 809us/step - loss: 0.1314 - accuracy: 0.9215 - mae: 0.1314 - pearson_correlation: 0.6653 - euclidean_distance: 0.2113
Epoch 164/300
152/152 [==============================] - 0s 805us/step - loss: 0.1297 - accuracy: 0.9250 - mae: 0.1297 - pearson_correlation: 0.6589 - euclidean_distance: 0.2088
Epoch 165/300
152/152 [==============================] - 0s 803us/step - loss: 0.1279 - accuracy: 0.9250 - mae: 0.1279 - pearson_correlation: 0.6732 - euclidean_distance: 0.2065
Epoch 166/300
152/152 [==============================] - 0s 810us/step - loss: 0.1273 - accuracy: 0.9215 - mae: 0.1273 - pearson_correlation: 0.6700 - euclidean_distance: 0.2044
Epoch 167/300
152/152 [==============================] - 0s 802us/step - loss: 0.1275 - accuracy: 0.9259 - mae: 0.1275 - pearson_correlation: 0.6766 - euclidean_distance: 0.2048
Epoch 168/300
152/152 [==============================] - 0s 796us/step - loss: 0.1256 - accuracy: 0.9277 - mae: 0.1256 - pearson_correlation: 0.6785 - euclidean_distance: 0.2023
Epoch 169/300
152/152 [==============================] - 0s 805us/step - loss: 0.1243 - accuracy: 0.9255 - mae: 0.1243 - pearson_correlation: 0.6737 - euclidean_distance: 0.2005
Epoch 170/300
152/152 [==============================] - 0s 804us/step - loss: 0.1279 - accuracy: 0.9250 - mae: 0.1279 - pearson_correlation: 0.6713 - euclidean_distance: 0.2057
Epoch 171/300
152/152 [==============================] - 0s 798us/step - loss: 0.1235 - accuracy: 0.9307 - mae: 0.1235 - pearson_correlation: 0.6797 - euclidean_distance: 0.1985
Epoch 172/300
152/152 [==============================] - 0s 798us/step - loss: 0.1248 - accuracy: 0.9299 - mae: 0.1248 - pearson_correlation: 0.6739 - euclidean_distance: 0.2007
Epoch 173/300
152/152 [==============================] - 0s 800us/step - loss: 0.1239 - accuracy: 0.9316 - mae: 0.1239 - pearson_correlation: 0.6818 - euclidean_distance: 0.1986
Epoch 174/300
152/152 [==============================] - 0s 805us/step - loss: 0.1250 - accuracy: 0.9321 - mae: 0.1250 - pearson_correlation: 0.6776 - euclidean_distance: 0.2006
Epoch 175/300
152/152 [==============================] - 0s 797us/step - loss: 0.1214 - accuracy: 0.9369 - mae: 0.1214 - pearson_correlation: 0.6917 - euclidean_distance: 0.1951
Epoch 176/300
152/152 [==============================] - 0s 801us/step - loss: 0.1204 - accuracy: 0.9316 - mae: 0.1204 - pearson_correlation: 0.6870 - euclidean_distance: 0.1938
Epoch 177/300
152/152 [==============================] - 0s 802us/step - loss: 0.1204 - accuracy: 0.9330 - mae: 0.1204 - pearson_correlation: 0.6872 - euclidean_distance: 0.1937
Epoch 178/300
152/152 [==============================] - 0s 802us/step - loss: 0.1207 - accuracy: 0.9312 - mae: 0.1207 - pearson_correlation: 0.6868 - euclidean_distance: 0.1939
Epoch 179/300
152/152 [==============================] - 0s 804us/step - loss: 0.1196 - accuracy: 0.9303 - mae: 0.1196 - pearson_correlation: 0.6846 - euclidean_distance: 0.1928
Epoch 180/300
152/152 [==============================] - 0s 800us/step - loss: 0.1168 - accuracy: 0.9365 - mae: 0.1168 - pearson_correlation: 0.7037 - euclidean_distance: 0.1879
Epoch 181/300
152/152 [==============================] - 0s 800us/step - loss: 0.1196 - accuracy: 0.9343 - mae: 0.1196 - pearson_correlation: 0.6901 - euclidean_distance: 0.1924
Epoch 182/300
152/152 [==============================] - 0s 805us/step - loss: 0.1207 - accuracy: 0.9343 - mae: 0.1207 - pearson_correlation: 0.6851 - euclidean_distance: 0.1936
Epoch 183/300
152/152 [==============================] - 0s 805us/step - loss: 0.1167 - accuracy: 0.9382 - mae: 0.1167 - pearson_correlation: 0.6969 - euclidean_distance: 0.1873
Epoch 184/300
152/152 [==============================] - 0s 799us/step - loss: 0.1171 - accuracy: 0.9334 - mae: 0.1171 - pearson_correlation: 0.6999 - euclidean_distance: 0.1882
Epoch 185/300
152/152 [==============================] - 0s 806us/step - loss: 0.1163 - accuracy: 0.9387 - mae: 0.1163 - pearson_correlation: 0.7037 - euclidean_distance: 0.1866
Epoch 186/300
152/152 [==============================] - 0s 804us/step - loss: 0.1155 - accuracy: 0.9374 - mae: 0.1155 - pearson_correlation: 0.7039 - euclidean_distance: 0.1852
Epoch 187/300
152/152 [==============================] - 0s 800us/step - loss: 0.1162 - accuracy: 0.9400 - mae: 0.1162 - pearson_correlation: 0.6986 - euclidean_distance: 0.1864
Epoch 188/300
152/152 [==============================] - 0s 806us/step - loss: 0.1151 - accuracy: 0.9365 - mae: 0.1151 - pearson_correlation: 0.6980 - euclidean_distance: 0.1843
Epoch 189/300
152/152 [==============================] - 0s 797us/step - loss: 0.1143 - accuracy: 0.9343 - mae: 0.1143 - pearson_correlation: 0.7002 - euclidean_distance: 0.1839
Epoch 190/300
152/152 [==============================] - 0s 806us/step - loss: 0.1137 - accuracy: 0.9365 - mae: 0.1137 - pearson_correlation: 0.6969 - euclidean_distance: 0.1825
Epoch 191/300
152/152 [==============================] - 0s 804us/step - loss: 0.1122 - accuracy: 0.9343 - mae: 0.1122 - pearson_correlation: 0.7131 - euclidean_distance: 0.1805
Epoch 192/300
152/152 [==============================] - 0s 803us/step - loss: 0.1136 - accuracy: 0.9382 - mae: 0.1136 - pearson_correlation: 0.7091 - euclidean_distance: 0.1827
Epoch 193/300
152/152 [==============================] - 0s 804us/step - loss: 0.1120 - accuracy: 0.9378 - mae: 0.1120 - pearson_correlation: 0.7075 - euclidean_distance: 0.1800
Epoch 194/300
152/152 [==============================] - 0s 801us/step - loss: 0.1094 - accuracy: 0.9387 - mae: 0.1094 - pearson_correlation: 0.7107 - euclidean_distance: 0.1768
Epoch 195/300
152/152 [==============================] - 0s 798us/step - loss: 0.1104 - accuracy: 0.9396 - mae: 0.1104 - pearson_correlation: 0.7187 - euclidean_distance: 0.1768
Epoch 196/300
152/152 [==============================] - 0s 799us/step - loss: 0.1137 - accuracy: 0.9365 - mae: 0.1137 - pearson_correlation: 0.7091 - euclidean_distance: 0.1824
Epoch 197/300
152/152 [==============================] - 0s 798us/step - loss: 0.1096 - accuracy: 0.9396 - mae: 0.1096 - pearson_correlation: 0.7191 - euclidean_distance: 0.1775
Epoch 198/300
152/152 [==============================] - 0s 802us/step - loss: 0.1084 - accuracy: 0.9387 - mae: 0.1084 - pearson_correlation: 0.7247 - euclidean_distance: 0.1739
Epoch 199/300
152/152 [==============================] - 0s 801us/step - loss: 0.1105 - accuracy: 0.9396 - mae: 0.1105 - pearson_correlation: 0.7157 - euclidean_distance: 0.1775
Epoch 200/300
152/152 [==============================] - 0s 792us/step - loss: 0.1073 - accuracy: 0.9378 - mae: 0.1073 - pearson_correlation: 0.7222 - euclidean_distance: 0.1726
Epoch 201/300
152/152 [==============================] - 0s 801us/step - loss: 0.1098 - accuracy: 0.9413 - mae: 0.1098 - pearson_correlation: 0.7190 - euclidean_distance: 0.1767
Epoch 202/300
152/152 [==============================] - 0s 803us/step - loss: 0.1075 - accuracy: 0.9409 - mae: 0.1075 - pearson_correlation: 0.7241 - euclidean_distance: 0.1731
Epoch 203/300
152/152 [==============================] - 0s 821us/step - loss: 0.1088 - accuracy: 0.9413 - mae: 0.1088 - pearson_correlation: 0.7191 - euclidean_distance: 0.1756
Epoch 204/300
152/152 [==============================] - 0s 806us/step - loss: 0.1093 - accuracy: 0.9378 - mae: 0.1093 - pearson_correlation: 0.7125 - euclidean_distance: 0.1753
Epoch 205/300
152/152 [==============================] - 0s 800us/step - loss: 0.1085 - accuracy: 0.9404 - mae: 0.1085 - pearson_correlation: 0.7184 - euclidean_distance: 0.1748
Epoch 206/300
152/152 [==============================] - 0s 815us/step - loss: 0.1066 - accuracy: 0.9396 - mae: 0.1066 - pearson_correlation: 0.7289 - euclidean_distance: 0.1712
Epoch 207/300
152/152 [==============================] - 0s 800us/step - loss: 0.1059 - accuracy: 0.9400 - mae: 0.1059 - pearson_correlation: 0.7214 - euclidean_distance: 0.1711
Epoch 208/300
152/152 [==============================] - 0s 803us/step - loss: 0.1088 - accuracy: 0.9396 - mae: 0.1088 - pearson_correlation: 0.7164 - euclidean_distance: 0.1749
Epoch 209/300
152/152 [==============================] - 0s 795us/step - loss: 0.1062 - accuracy: 0.9391 - mae: 0.1062 - pearson_correlation: 0.7215 - euclidean_distance: 0.1699
Epoch 210/300
152/152 [==============================] - 0s 791us/step - loss: 0.1043 - accuracy: 0.9400 - mae: 0.1043 - pearson_correlation: 0.7275 - euclidean_distance: 0.1681
Epoch 211/300
152/152 [==============================] - 0s 803us/step - loss: 0.1049 - accuracy: 0.9427 - mae: 0.1049 - pearson_correlation: 0.7221 - euclidean_distance: 0.1691
Epoch 212/300
152/152 [==============================] - 0s 800us/step - loss: 0.1051 - accuracy: 0.9413 - mae: 0.1051 - pearson_correlation: 0.7211 - euclidean_distance: 0.1695
Epoch 213/300
152/152 [==============================] - 0s 798us/step - loss: 0.1031 - accuracy: 0.9369 - mae: 0.1031 - pearson_correlation: 0.7246 - euclidean_distance: 0.1653
Epoch 214/300
152/152 [==============================] - 0s 803us/step - loss: 0.1035 - accuracy: 0.9435 - mae: 0.1035 - pearson_correlation: 0.7212 - euclidean_distance: 0.1671
Epoch 215/300
152/152 [==============================] - 0s 803us/step - loss: 0.1020 - accuracy: 0.9391 - mae: 0.1020 - pearson_correlation: 0.7361 - euclidean_distance: 0.1645
Epoch 216/300
152/152 [==============================] - 0s 796us/step - loss: 0.1033 - accuracy: 0.9391 - mae: 0.1033 - pearson_correlation: 0.7311 - euclidean_distance: 0.1660
Epoch 217/300
152/152 [==============================] - 0s 795us/step - loss: 0.1030 - accuracy: 0.9400 - mae: 0.1030 - pearson_correlation: 0.7368 - euclidean_distance: 0.1653
Epoch 218/300
152/152 [==============================] - 0s 803us/step - loss: 0.1053 - accuracy: 0.9413 - mae: 0.1053 - pearson_correlation: 0.7276 - euclidean_distance: 0.1683
Epoch 219/300
152/152 [==============================] - 0s 826us/step - loss: 0.1029 - accuracy: 0.9422 - mae: 0.1029 - pearson_correlation: 0.7284 - euclidean_distance: 0.1664
Epoch 220/300
152/152 [==============================] - 0s 811us/step - loss: 0.1028 - accuracy: 0.9404 - mae: 0.1028 - pearson_correlation: 0.7310 - euclidean_distance: 0.1655
Epoch 221/300
152/152 [==============================] - 0s 802us/step - loss: 0.1029 - accuracy: 0.9422 - mae: 0.1029 - pearson_correlation: 0.7319 - euclidean_distance: 0.1657
Epoch 222/300
152/152 [==============================] - 0s 805us/step - loss: 0.1015 - accuracy: 0.9453 - mae: 0.1015 - pearson_correlation: 0.7277 - euclidean_distance: 0.1632
Epoch 223/300
152/152 [==============================] - 0s 808us/step - loss: 0.1033 - accuracy: 0.9431 - mae: 0.1033 - pearson_correlation: 0.7350 - euclidean_distance: 0.1656
Epoch 224/300
152/152 [==============================] - 0s 804us/step - loss: 0.1015 - accuracy: 0.9418 - mae: 0.1015 - pearson_correlation: 0.7366 - euclidean_distance: 0.1631
Epoch 225/300
152/152 [==============================] - 0s 806us/step - loss: 0.1014 - accuracy: 0.9418 - mae: 0.1014 - pearson_correlation: 0.7377 - euclidean_distance: 0.1631
Epoch 226/300
152/152 [==============================] - 0s 800us/step - loss: 0.1018 - accuracy: 0.9409 - mae: 0.1018 - pearson_correlation: 0.7314 - euclidean_distance: 0.1638
Epoch 227/300
152/152 [==============================] - 0s 843us/step - loss: 0.1025 - accuracy: 0.9435 - mae: 0.1025 - pearson_correlation: 0.7351 - euclidean_distance: 0.1645
Epoch 228/300
152/152 [==============================] - 0s 824us/step - loss: 0.1013 - accuracy: 0.9396 - mae: 0.1013 - pearson_correlation: 0.7333 - euclidean_distance: 0.1626
Epoch 229/300
152/152 [==============================] - 0s 802us/step - loss: 0.1015 - accuracy: 0.9400 - mae: 0.1015 - pearson_correlation: 0.7367 - euclidean_distance: 0.1632
Epoch 230/300
152/152 [==============================] - 0s 806us/step - loss: 0.0994 - accuracy: 0.9400 - mae: 0.0994 - pearson_correlation: 0.7419 - euclidean_distance: 0.1598
Epoch 231/300
152/152 [==============================] - 0s 805us/step - loss: 0.0993 - accuracy: 0.9427 - mae: 0.0993 - pearson_correlation: 0.7425 - euclidean_distance: 0.1598
Epoch 232/300
152/152 [==============================] - 0s 800us/step - loss: 0.0988 - accuracy: 0.9435 - mae: 0.0988 - pearson_correlation: 0.7451 - euclidean_distance: 0.1594
Epoch 233/300
152/152 [==============================] - 0s 802us/step - loss: 0.1012 - accuracy: 0.9396 - mae: 0.1012 - pearson_correlation: 0.7351 - euclidean_distance: 0.1625
Epoch 234/300
152/152 [==============================] - 0s 807us/step - loss: 0.1013 - accuracy: 0.9409 - mae: 0.1013 - pearson_correlation: 0.7230 - euclidean_distance: 0.1628
Epoch 235/300
152/152 [==============================] - 0s 801us/step - loss: 0.1013 - accuracy: 0.9449 - mae: 0.1013 - pearson_correlation: 0.7375 - euclidean_distance: 0.1629
Epoch 236/300
152/152 [==============================] - 0s 797us/step - loss: 0.0998 - accuracy: 0.9409 - mae: 0.0998 - pearson_correlation: 0.7383 - euclidean_distance: 0.1607
Epoch 237/300
152/152 [==============================] - 0s 802us/step - loss: 0.1013 - accuracy: 0.9413 - mae: 0.1013 - pearson_correlation: 0.7347 - euclidean_distance: 0.1627
Epoch 238/300
152/152 [==============================] - 0s 803us/step - loss: 0.0983 - accuracy: 0.9404 - mae: 0.0983 - pearson_correlation: 0.7366 - euclidean_distance: 0.1582
Epoch 239/300
152/152 [==============================] - 0s 802us/step - loss: 0.0999 - accuracy: 0.9440 - mae: 0.0999 - pearson_correlation: 0.7354 - euclidean_distance: 0.1606
Epoch 240/300
152/152 [==============================] - 0s 800us/step - loss: 0.0998 - accuracy: 0.9431 - mae: 0.0998 - pearson_correlation: 0.7381 - euclidean_distance: 0.1603
Epoch 241/300
152/152 [==============================] - 0s 805us/step - loss: 0.0975 - accuracy: 0.9413 - mae: 0.0975 - pearson_correlation: 0.7436 - euclidean_distance: 0.1571
Epoch 242/300
152/152 [==============================] - 0s 798us/step - loss: 0.0977 - accuracy: 0.9427 - mae: 0.0977 - pearson_correlation: 0.7386 - euclidean_distance: 0.1573
Epoch 243/300
152/152 [==============================] - 0s 802us/step - loss: 0.0981 - accuracy: 0.9418 - mae: 0.0981 - pearson_correlation: 0.7323 - euclidean_distance: 0.1575
Epoch 244/300
152/152 [==============================] - 0s 800us/step - loss: 0.1000 - accuracy: 0.9435 - mae: 0.1000 - pearson_correlation: 0.7380 - euclidean_distance: 0.1610
Epoch 245/300
152/152 [==============================] - 0s 796us/step - loss: 0.0971 - accuracy: 0.9413 - mae: 0.0971 - pearson_correlation: 0.7469 - euclidean_distance: 0.1559
Epoch 246/300
152/152 [==============================] - 0s 806us/step - loss: 0.0975 - accuracy: 0.9418 - mae: 0.0975 - pearson_correlation: 0.7423 - euclidean_distance: 0.1570
Epoch 247/300
152/152 [==============================] - 0s 807us/step - loss: 0.0960 - accuracy: 0.9457 - mae: 0.0960 - pearson_correlation: 0.7477 - euclidean_distance: 0.1545
Epoch 248/300
152/152 [==============================] - 0s 803us/step - loss: 0.0985 - accuracy: 0.9444 - mae: 0.0985 - pearson_correlation: 0.7404 - euclidean_distance: 0.1584
Epoch 249/300
152/152 [==============================] - 0s 801us/step - loss: 0.0960 - accuracy: 0.9404 - mae: 0.0960 - pearson_correlation: 0.7463 - euclidean_distance: 0.1547
Epoch 250/300
152/152 [==============================] - 0s 804us/step - loss: 0.0967 - accuracy: 0.9431 - mae: 0.0967 - pearson_correlation: 0.7450 - euclidean_distance: 0.1552
Epoch 251/300
152/152 [==============================] - 0s 801us/step - loss: 0.0957 - accuracy: 0.9404 - mae: 0.0957 - pearson_correlation: 0.7412 - euclidean_distance: 0.1537
Epoch 252/300
152/152 [==============================] - 0s 803us/step - loss: 0.0984 - accuracy: 0.9431 - mae: 0.0984 - pearson_correlation: 0.7379 - euclidean_distance: 0.1580
Epoch 253/300
152/152 [==============================] - 0s 801us/step - loss: 0.0965 - accuracy: 0.9435 - mae: 0.0965 - pearson_correlation: 0.7442 - euclidean_distance: 0.1555
Epoch 254/300
152/152 [==============================] - 0s 797us/step - loss: 0.0962 - accuracy: 0.9422 - mae: 0.0962 - pearson_correlation: 0.7431 - euclidean_distance: 0.1552
Epoch 255/300
152/152 [==============================] - 0s 794us/step - loss: 0.0954 - accuracy: 0.9453 - mae: 0.0954 - pearson_correlation: 0.7526 - euclidean_distance: 0.1534
Epoch 256/300
152/152 [==============================] - 0s 805us/step - loss: 0.0965 - accuracy: 0.9435 - mae: 0.0965 - pearson_correlation: 0.7463 - euclidean_distance: 0.1555
Epoch 257/300
152/152 [==============================] - 0s 800us/step - loss: 0.0970 - accuracy: 0.9435 - mae: 0.0970 - pearson_correlation: 0.7314 - euclidean_distance: 0.1563
Epoch 258/300
152/152 [==============================] - 0s 804us/step - loss: 0.0966 - accuracy: 0.9440 - mae: 0.0966 - pearson_correlation: 0.7363 - euclidean_distance: 0.1554
Epoch 259/300
152/152 [==============================] - 0s 805us/step - loss: 0.0954 - accuracy: 0.9440 - mae: 0.0954 - pearson_correlation: 0.7458 - euclidean_distance: 0.1535
Epoch 260/300
152/152 [==============================] - 0s 792us/step - loss: 0.0960 - accuracy: 0.9440 - mae: 0.0960 - pearson_correlation: 0.7490 - euclidean_distance: 0.1544
Epoch 261/300
152/152 [==============================] - 0s 800us/step - loss: 0.0960 - accuracy: 0.9444 - mae: 0.0960 - pearson_correlation: 0.7444 - euclidean_distance: 0.1548
Epoch 262/300
152/152 [==============================] - 0s 800us/step - loss: 0.0962 - accuracy: 0.9444 - mae: 0.0962 - pearson_correlation: 0.7506 - euclidean_distance: 0.1555
Epoch 263/300
152/152 [==============================] - 0s 803us/step - loss: 0.0958 - accuracy: 0.9431 - mae: 0.0958 - pearson_correlation: 0.7419 - euclidean_distance: 0.1543
Epoch 264/300
152/152 [==============================] - 0s 804us/step - loss: 0.0954 - accuracy: 0.9431 - mae: 0.0954 - pearson_correlation: 0.7479 - euclidean_distance: 0.1537
Epoch 265/300
152/152 [==============================] - 0s 798us/step - loss: 0.0953 - accuracy: 0.9440 - mae: 0.0953 - pearson_correlation: 0.7489 - euclidean_distance: 0.1534
Epoch 266/300
152/152 [==============================] - 0s 795us/step - loss: 0.0972 - accuracy: 0.9418 - mae: 0.0972 - pearson_correlation: 0.7382 - euclidean_distance: 0.1564
Epoch 267/300
152/152 [==============================] - 0s 795us/step - loss: 0.0950 - accuracy: 0.9449 - mae: 0.0950 - pearson_correlation: 0.7498 - euclidean_distance: 0.1535
Epoch 268/300
152/152 [==============================] - 0s 795us/step - loss: 0.0950 - accuracy: 0.9444 - mae: 0.0950 - pearson_correlation: 0.7486 - euclidean_distance: 0.1529
Epoch 269/300
152/152 [==============================] - 0s 796us/step - loss: 0.0942 - accuracy: 0.9422 - mae: 0.0942 - pearson_correlation: 0.7486 - euclidean_distance: 0.1519
Epoch 270/300
152/152 [==============================] - 0s 801us/step - loss: 0.0950 - accuracy: 0.9453 - mae: 0.0950 - pearson_correlation: 0.7469 - euclidean_distance: 0.1527
Epoch 271/300
152/152 [==============================] - 0s 796us/step - loss: 0.0932 - accuracy: 0.9449 - mae: 0.0932 - pearson_correlation: 0.7477 - euclidean_distance: 0.1501
Epoch 272/300
152/152 [==============================] - 0s 805us/step - loss: 0.0952 - accuracy: 0.9453 - mae: 0.0952 - pearson_correlation: 0.7514 - euclidean_distance: 0.1528
Epoch 273/300
152/152 [==============================] - 0s 800us/step - loss: 0.0940 - accuracy: 0.9471 - mae: 0.0940 - pearson_correlation: 0.7451 - euclidean_distance: 0.1518
Epoch 274/300
152/152 [==============================] - 0s 798us/step - loss: 0.0948 - accuracy: 0.9449 - mae: 0.0948 - pearson_correlation: 0.7452 - euclidean_distance: 0.1530
Epoch 275/300
152/152 [==============================] - 0s 800us/step - loss: 0.0948 - accuracy: 0.9435 - mae: 0.0948 - pearson_correlation: 0.7450 - euclidean_distance: 0.1532
Epoch 276/300
152/152 [==============================] - 0s 868us/step - loss: 0.0913 - accuracy: 0.9471 - mae: 0.0913 - pearson_correlation: 0.7596 - euclidean_distance: 0.1478
Epoch 277/300
152/152 [==============================] - 0s 864us/step - loss: 0.0931 - accuracy: 0.9444 - mae: 0.0931 - pearson_correlation: 0.7523 - euclidean_distance: 0.1502
Epoch 278/300
152/152 [==============================] - 0s 915us/step - loss: 0.0931 - accuracy: 0.9479 - mae: 0.0931 - pearson_correlation: 0.7587 - euclidean_distance: 0.1501
Epoch 279/300
152/152 [==============================] - 0s 890us/step - loss: 0.0928 - accuracy: 0.9435 - mae: 0.0928 - pearson_correlation: 0.7556 - euclidean_distance: 0.1489
Epoch 280/300
152/152 [==============================] - 0s 890us/step - loss: 0.0903 - accuracy: 0.9453 - mae: 0.0903 - pearson_correlation: 0.7569 - euclidean_distance: 0.1462
Epoch 281/300
152/152 [==============================] - 0s 804us/step - loss: 0.0908 - accuracy: 0.9457 - mae: 0.0908 - pearson_correlation: 0.7589 - euclidean_distance: 0.1466
Epoch 282/300
152/152 [==============================] - 0s 804us/step - loss: 0.0920 - accuracy: 0.9435 - mae: 0.0920 - pearson_correlation: 0.7515 - euclidean_distance: 0.1483
Epoch 283/300
152/152 [==============================] - 0s 804us/step - loss: 0.0930 - accuracy: 0.9457 - mae: 0.0930 - pearson_correlation: 0.7546 - euclidean_distance: 0.1501
Epoch 284/300
152/152 [==============================] - 0s 829us/step - loss: 0.0920 - accuracy: 0.9449 - mae: 0.0920 - pearson_correlation: 0.7551 - euclidean_distance: 0.1483
Epoch 285/300
152/152 [==============================] - 0s 806us/step - loss: 0.0917 - accuracy: 0.9453 - mae: 0.0917 - pearson_correlation: 0.7557 - euclidean_distance: 0.1482
Epoch 286/300
152/152 [==============================] - 0s 799us/step - loss: 0.0946 - accuracy: 0.9453 - mae: 0.0946 - pearson_correlation: 0.7468 - euclidean_distance: 0.1531
Epoch 287/300
152/152 [==============================] - 0s 820us/step - loss: 0.0910 - accuracy: 0.9444 - mae: 0.0910 - pearson_correlation: 0.7594 - euclidean_distance: 0.1469
Epoch 288/300
152/152 [==============================] - 0s 815us/step - loss: 0.0928 - accuracy: 0.9457 - mae: 0.0928 - pearson_correlation: 0.7541 - euclidean_distance: 0.1495
Epoch 289/300
152/152 [==============================] - 0s 804us/step - loss: 0.0909 - accuracy: 0.9449 - mae: 0.0909 - pearson_correlation: 0.7619 - euclidean_distance: 0.1466
Epoch 290/300
152/152 [==============================] - 0s 800us/step - loss: 0.0921 - accuracy: 0.9466 - mae: 0.0921 - pearson_correlation: 0.7574 - euclidean_distance: 0.1484
Epoch 291/300
152/152 [==============================] - 0s 802us/step - loss: 0.0923 - accuracy: 0.9440 - mae: 0.0923 - pearson_correlation: 0.7571 - euclidean_distance: 0.1492
Epoch 292/300
152/152 [==============================] - 0s 805us/step - loss: 0.0921 - accuracy: 0.9453 - mae: 0.0921 - pearson_correlation: 0.7582 - euclidean_distance: 0.1481
Epoch 293/300
152/152 [==============================] - 0s 806us/step - loss: 0.0912 - accuracy: 0.9453 - mae: 0.0912 - pearson_correlation: 0.7585 - euclidean_distance: 0.1469
Epoch 294/300
152/152 [==============================] - 0s 796us/step - loss: 0.0911 - accuracy: 0.9449 - mae: 0.0911 - pearson_correlation: 0.7538 - euclidean_distance: 0.1468
Epoch 295/300
152/152 [==============================] - 0s 805us/step - loss: 0.0907 - accuracy: 0.9493 - mae: 0.0907 - pearson_correlation: 0.7607 - euclidean_distance: 0.1466
Epoch 296/300
152/152 [==============================] - 0s 800us/step - loss: 0.0911 - accuracy: 0.9484 - mae: 0.0911 - pearson_correlation: 0.7587 - euclidean_distance: 0.1474
Epoch 297/300
152/152 [==============================] - 0s 804us/step - loss: 0.0921 - accuracy: 0.9444 - mae: 0.0921 - pearson_correlation: 0.7604 - euclidean_distance: 0.1484
Epoch 298/300
152/152 [==============================] - 0s 800us/step - loss: 0.0899 - accuracy: 0.9422 - mae: 0.0899 - pearson_correlation: 0.7622 - euclidean_distance: 0.1449
Epoch 299/300
152/152 [==============================] - 0s 798us/step - loss: 0.0903 - accuracy: 0.9435 - mae: 0.0903 - pearson_correlation: 0.7617 - euclidean_distance: 0.1458
Epoch 300/300
152/152 [==============================] - 0s 806us/step - loss: 0.0900 - accuracy: 0.9479 - mae: 0.0900 - pearson_correlation: 0.7610 - euclidean_distance: 0.1452
76/76 [==============================] - 0s 437us/step
Epoch 1/300
152/152 [==============================] - 1s 825us/step - loss: 0.5404 - accuracy: 0.0441 - mae: 0.5404 - pearson_correlation: -0.6369 - euclidean_distance: 0.8930
Epoch 2/300
152/152 [==============================] - 0s 812us/step - loss: 0.5338 - accuracy: 0.0445 - mae: 0.5338 - pearson_correlation: -0.6349 - euclidean_distance: 0.8827
Epoch 3/300
152/152 [==============================] - 0s 808us/step - loss: 0.5288 - accuracy: 0.0445 - mae: 0.5288 - pearson_correlation: -0.6305 - euclidean_distance: 0.8741
Epoch 4/300
152/152 [==============================] - 0s 805us/step - loss: 0.5229 - accuracy: 0.0441 - mae: 0.5229 - pearson_correlation: -0.6236 - euclidean_distance: 0.8657
Epoch 5/300
152/152 [==============================] - 0s 806us/step - loss: 0.5156 - accuracy: 0.0445 - mae: 0.5156 - pearson_correlation: -0.6231 - euclidean_distance: 0.8550
Epoch 6/300
152/152 [==============================] - 0s 811us/step - loss: 0.5107 - accuracy: 0.0445 - mae: 0.5107 - pearson_correlation: -0.6246 - euclidean_distance: 0.8462
Epoch 7/300
152/152 [==============================] - 0s 815us/step - loss: 0.5034 - accuracy: 0.0454 - mae: 0.5034 - pearson_correlation: -0.6268 - euclidean_distance: 0.8369
Epoch 8/300
152/152 [==============================] - 0s 810us/step - loss: 0.4995 - accuracy: 0.0441 - mae: 0.4995 - pearson_correlation: -0.6173 - euclidean_distance: 0.8285
Epoch 9/300
152/152 [==============================] - 0s 806us/step - loss: 0.4939 - accuracy: 0.0454 - mae: 0.4939 - pearson_correlation: -0.6181 - euclidean_distance: 0.8204
Epoch 10/300
152/152 [==============================] - 0s 807us/step - loss: 0.4881 - accuracy: 0.0463 - mae: 0.4881 - pearson_correlation: -0.6179 - euclidean_distance: 0.8100
Epoch 11/300
152/152 [==============================] - 0s 802us/step - loss: 0.4820 - accuracy: 0.0485 - mae: 0.4820 - pearson_correlation: -0.6140 - euclidean_distance: 0.8025
Epoch 12/300
152/152 [==============================] - 0s 807us/step - loss: 0.4762 - accuracy: 0.0481 - mae: 0.4762 - pearson_correlation: -0.6145 - euclidean_distance: 0.7930
Epoch 13/300
152/152 [==============================] - 0s 808us/step - loss: 0.4692 - accuracy: 0.0463 - mae: 0.4692 - pearson_correlation: -0.6127 - euclidean_distance: 0.7837
Epoch 14/300
152/152 [==============================] - 0s 796us/step - loss: 0.4644 - accuracy: 0.0529 - mae: 0.4644 - pearson_correlation: -0.6058 - euclidean_distance: 0.7743
Epoch 15/300
152/152 [==============================] - 0s 802us/step - loss: 0.4572 - accuracy: 0.0534 - mae: 0.4572 - pearson_correlation: -0.5984 - euclidean_distance: 0.7640
Epoch 16/300
152/152 [==============================] - 0s 805us/step - loss: 0.4530 - accuracy: 0.0538 - mae: 0.4530 - pearson_correlation: -0.6067 - euclidean_distance: 0.7569
Epoch 17/300
152/152 [==============================] - 0s 799us/step - loss: 0.4451 - accuracy: 0.0538 - mae: 0.4451 - pearson_correlation: -0.5912 - euclidean_distance: 0.7453
Epoch 18/300
152/152 [==============================] - 0s 803us/step - loss: 0.4408 - accuracy: 0.0582 - mae: 0.4408 - pearson_correlation: -0.5924 - euclidean_distance: 0.7359
Epoch 19/300
152/152 [==============================] - 0s 807us/step - loss: 0.4340 - accuracy: 0.0595 - mae: 0.4340 - pearson_correlation: -0.5865 - euclidean_distance: 0.7272
Epoch 20/300
152/152 [==============================] - 0s 794us/step - loss: 0.4290 - accuracy: 0.0600 - mae: 0.4290 - pearson_correlation: -0.5899 - euclidean_distance: 0.7186
Epoch 21/300
152/152 [==============================] - 0s 806us/step - loss: 0.4248 - accuracy: 0.0653 - mae: 0.4248 - pearson_correlation: -0.5906 - euclidean_distance: 0.7124
Epoch 22/300
152/152 [==============================] - 0s 806us/step - loss: 0.4179 - accuracy: 0.0670 - mae: 0.4179 - pearson_correlation: -0.5905 - euclidean_distance: 0.7022
Epoch 23/300
152/152 [==============================] - 0s 802us/step - loss: 0.4109 - accuracy: 0.0710 - mae: 0.4109 - pearson_correlation: -0.5919 - euclidean_distance: 0.6925
Epoch 24/300
152/152 [==============================] - 0s 801us/step - loss: 0.4066 - accuracy: 0.0661 - mae: 0.4066 - pearson_correlation: -0.5873 - euclidean_distance: 0.6862
Epoch 25/300
152/152 [==============================] - 0s 798us/step - loss: 0.4005 - accuracy: 0.0728 - mae: 0.4005 - pearson_correlation: -0.5791 - euclidean_distance: 0.6763
Epoch 26/300
152/152 [==============================] - 0s 802us/step - loss: 0.3944 - accuracy: 0.0754 - mae: 0.3944 - pearson_correlation: -0.5723 - euclidean_distance: 0.6669
Epoch 27/300
152/152 [==============================] - 0s 806us/step - loss: 0.3896 - accuracy: 0.0750 - mae: 0.3896 - pearson_correlation: -0.5831 - euclidean_distance: 0.6596
Epoch 28/300
152/152 [==============================] - 0s 803us/step - loss: 0.3857 - accuracy: 0.0855 - mae: 0.3857 - pearson_correlation: -0.5755 - euclidean_distance: 0.6524
Epoch 29/300
152/152 [==============================] - 0s 799us/step - loss: 0.3803 - accuracy: 0.0802 - mae: 0.3803 - pearson_correlation: -0.5762 - euclidean_distance: 0.6442
Epoch 30/300
152/152 [==============================] - 0s 805us/step - loss: 0.3751 - accuracy: 0.0758 - mae: 0.3751 - pearson_correlation: -0.5658 - euclidean_distance: 0.6363
Epoch 31/300
152/152 [==============================] - 0s 808us/step - loss: 0.3701 - accuracy: 0.0794 - mae: 0.3701 - pearson_correlation: -0.5695 - euclidean_distance: 0.6288
Epoch 32/300
152/152 [==============================] - 0s 800us/step - loss: 0.3662 - accuracy: 0.0825 - mae: 0.3662 - pearson_correlation: -0.5569 - euclidean_distance: 0.6205
Epoch 33/300
152/152 [==============================] - 0s 797us/step - loss: 0.3604 - accuracy: 0.0794 - mae: 0.3604 - pearson_correlation: -0.5625 - euclidean_distance: 0.6128
Epoch 34/300
152/152 [==============================] - 0s 801us/step - loss: 0.3551 - accuracy: 0.0842 - mae: 0.3551 - pearson_correlation: -0.5715 - euclidean_distance: 0.6051
Epoch 35/300
152/152 [==============================] - 0s 800us/step - loss: 0.3533 - accuracy: 0.0794 - mae: 0.3533 - pearson_correlation: -0.5515 - euclidean_distance: 0.5999
Epoch 36/300
152/152 [==============================] - 0s 804us/step - loss: 0.3481 - accuracy: 0.0794 - mae: 0.3481 - pearson_correlation: -0.5455 - euclidean_distance: 0.5914
Epoch 37/300
152/152 [==============================] - 0s 808us/step - loss: 0.3432 - accuracy: 0.0820 - mae: 0.3432 - pearson_correlation: -0.5372 - euclidean_distance: 0.5828
Epoch 38/300
152/152 [==============================] - 0s 801us/step - loss: 0.3386 - accuracy: 0.0816 - mae: 0.3386 - pearson_correlation: -0.5514 - euclidean_distance: 0.5766
Epoch 39/300
152/152 [==============================] - 0s 803us/step - loss: 0.3374 - accuracy: 0.0869 - mae: 0.3374 - pearson_correlation: -0.5254 - euclidean_distance: 0.5719
Epoch 40/300
152/152 [==============================] - 0s 804us/step - loss: 0.3327 - accuracy: 0.0847 - mae: 0.3327 - pearson_correlation: -0.5220 - euclidean_distance: 0.5636
Epoch 41/300
152/152 [==============================] - 0s 794us/step - loss: 0.3287 - accuracy: 0.0864 - mae: 0.3287 - pearson_correlation: -0.5172 - euclidean_distance: 0.5575
Epoch 42/300
152/152 [==============================] - 0s 800us/step - loss: 0.3256 - accuracy: 0.0904 - mae: 0.3256 - pearson_correlation: -0.5099 - euclidean_distance: 0.5511
Epoch 43/300
152/152 [==============================] - 0s 800us/step - loss: 0.3194 - accuracy: 0.0886 - mae: 0.3194 - pearson_correlation: -0.5083 - euclidean_distance: 0.5427
Epoch 44/300
152/152 [==============================] - 0s 805us/step - loss: 0.3186 - accuracy: 0.0952 - mae: 0.3186 - pearson_correlation: -0.4976 - euclidean_distance: 0.5373
Epoch 45/300
152/152 [==============================] - 0s 801us/step - loss: 0.3117 - accuracy: 0.0944 - mae: 0.3117 - pearson_correlation: -0.4914 - euclidean_distance: 0.5277
Epoch 46/300
152/152 [==============================] - 0s 805us/step - loss: 0.3098 - accuracy: 0.1019 - mae: 0.3098 - pearson_correlation: -0.4813 - euclidean_distance: 0.5231
Epoch 47/300
152/152 [==============================] - 0s 798us/step - loss: 0.3050 - accuracy: 0.0979 - mae: 0.3050 - pearson_correlation: -0.4817 - euclidean_distance: 0.5160
Epoch 48/300
152/152 [==============================] - 0s 802us/step - loss: 0.3008 - accuracy: 0.1023 - mae: 0.3008 - pearson_correlation: -0.4723 - euclidean_distance: 0.5090
Epoch 49/300
152/152 [==============================] - 0s 802us/step - loss: 0.2972 - accuracy: 0.1093 - mae: 0.2972 - pearson_correlation: -0.4631 - euclidean_distance: 0.5025
Epoch 50/300
152/152 [==============================] - 0s 806us/step - loss: 0.2950 - accuracy: 0.1142 - mae: 0.2950 - pearson_correlation: -0.4451 - euclidean_distance: 0.4973
Epoch 51/300
152/152 [==============================] - 0s 799us/step - loss: 0.2904 - accuracy: 0.1296 - mae: 0.2904 - pearson_correlation: -0.4243 - euclidean_distance: 0.4897
Epoch 52/300
152/152 [==============================] - 0s 807us/step - loss: 0.2863 - accuracy: 0.1415 - mae: 0.2863 - pearson_correlation: -0.4092 - euclidean_distance: 0.4823
Epoch 53/300
152/152 [==============================] - 0s 795us/step - loss: 0.2850 - accuracy: 0.1526 - mae: 0.2850 - pearson_correlation: -0.4078 - euclidean_distance: 0.4777
Epoch 54/300
152/152 [==============================] - 0s 805us/step - loss: 0.2804 - accuracy: 0.1623 - mae: 0.2804 - pearson_correlation: -0.3866 - euclidean_distance: 0.4706
Epoch 55/300
152/152 [==============================] - 0s 800us/step - loss: 0.2752 - accuracy: 0.1702 - mae: 0.2752 - pearson_correlation: -0.3860 - euclidean_distance: 0.4624
Epoch 56/300
152/152 [==============================] - 0s 800us/step - loss: 0.2706 - accuracy: 0.1759 - mae: 0.2706 - pearson_correlation: -0.3659 - euclidean_distance: 0.4557
Epoch 57/300
152/152 [==============================] - 0s 807us/step - loss: 0.2681 - accuracy: 0.1808 - mae: 0.2681 - pearson_correlation: -0.3499 - euclidean_distance: 0.4503
Epoch 58/300
152/152 [==============================] - 0s 797us/step - loss: 0.2655 - accuracy: 0.1993 - mae: 0.2655 - pearson_correlation: -0.3311 - euclidean_distance: 0.4449
Epoch 59/300
152/152 [==============================] - 0s 797us/step - loss: 0.2614 - accuracy: 0.2160 - mae: 0.2614 - pearson_correlation: -0.3095 - euclidean_distance: 0.4382
Epoch 60/300
152/152 [==============================] - 0s 797us/step - loss: 0.2590 - accuracy: 0.2324 - mae: 0.2590 - pearson_correlation: -0.2820 - euclidean_distance: 0.4328
Epoch 61/300
152/152 [==============================] - 0s 804us/step - loss: 0.2524 - accuracy: 0.2451 - mae: 0.2524 - pearson_correlation: -0.2780 - euclidean_distance: 0.4231
Epoch 62/300
152/152 [==============================] - 0s 805us/step - loss: 0.2507 - accuracy: 0.2782 - mae: 0.2507 - pearson_correlation: -0.2409 - euclidean_distance: 0.4183
Epoch 63/300
152/152 [==============================] - 0s 813us/step - loss: 0.2469 - accuracy: 0.2853 - mae: 0.2469 - pearson_correlation: -0.2278 - euclidean_distance: 0.4117
Epoch 64/300
152/152 [==============================] - 0s 799us/step - loss: 0.2436 - accuracy: 0.3157 - mae: 0.2436 - pearson_correlation: -0.2068 - euclidean_distance: 0.4053
Epoch 65/300
152/152 [==============================] - 0s 799us/step - loss: 0.2401 - accuracy: 0.3201 - mae: 0.2401 - pearson_correlation: -0.2021 - euclidean_distance: 0.4006
Epoch 66/300
152/152 [==============================] - 0s 797us/step - loss: 0.2360 - accuracy: 0.3523 - mae: 0.2360 - pearson_correlation: -0.1660 - euclidean_distance: 0.3925
Epoch 67/300
152/152 [==============================] - 0s 801us/step - loss: 0.2326 - accuracy: 0.3611 - mae: 0.2326 - pearson_correlation: -0.1503 - euclidean_distance: 0.3866
Epoch 68/300
152/152 [==============================] - 0s 812us/step - loss: 0.2279 - accuracy: 0.4078 - mae: 0.2279 - pearson_correlation: -0.1171 - euclidean_distance: 0.3789
Epoch 69/300
152/152 [==============================] - 0s 797us/step - loss: 0.2258 - accuracy: 0.4343 - mae: 0.2258 - pearson_correlation: -0.0802 - euclidean_distance: 0.3741
Epoch 70/300
152/152 [==============================] - 0s 801us/step - loss: 0.2209 - accuracy: 0.4537 - mae: 0.2209 - pearson_correlation: -0.0557 - euclidean_distance: 0.3659
Epoch 71/300
152/152 [==============================] - 0s 804us/step - loss: 0.2156 - accuracy: 0.4788 - mae: 0.2156 - pearson_correlation: -0.0289 - euclidean_distance: 0.3581
Epoch 72/300
152/152 [==============================] - 0s 802us/step - loss: 0.2132 - accuracy: 0.5132 - mae: 0.2132 - pearson_correlation: -0.0133 - euclidean_distance: 0.3535
Epoch 73/300
152/152 [==============================] - 0s 794us/step - loss: 0.2101 - accuracy: 0.5494 - mae: 0.2101 - pearson_correlation: 0.0159 - euclidean_distance: 0.3485
Epoch 74/300
152/152 [==============================] - 0s 797us/step - loss: 0.2099 - accuracy: 0.5670 - mae: 0.2099 - pearson_correlation: 0.0324 - euclidean_distance: 0.3448
Epoch 75/300
152/152 [==============================] - 0s 802us/step - loss: 0.2036 - accuracy: 0.6032 - mae: 0.2036 - pearson_correlation: 0.0681 - euclidean_distance: 0.3361
Epoch 76/300
152/152 [==============================] - 0s 802us/step - loss: 0.2012 - accuracy: 0.6257 - mae: 0.2012 - pearson_correlation: 0.1137 - euclidean_distance: 0.3321
Epoch 77/300
152/152 [==============================] - 0s 800us/step - loss: 0.1978 - accuracy: 0.6565 - mae: 0.1978 - pearson_correlation: 0.1270 - euclidean_distance: 0.3256
Epoch 78/300
152/152 [==============================] - 0s 800us/step - loss: 0.1934 - accuracy: 0.6702 - mae: 0.1934 - pearson_correlation: 0.1566 - euclidean_distance: 0.3189
Epoch 79/300
152/152 [==============================] - 0s 796us/step - loss: 0.1897 - accuracy: 0.6971 - mae: 0.1897 - pearson_correlation: 0.1778 - euclidean_distance: 0.3116
Epoch 80/300
152/152 [==============================] - 0s 806us/step - loss: 0.1884 - accuracy: 0.7244 - mae: 0.1884 - pearson_correlation: 0.1969 - euclidean_distance: 0.3089
Epoch 81/300
152/152 [==============================] - 0s 796us/step - loss: 0.1856 - accuracy: 0.7429 - mae: 0.1856 - pearson_correlation: 0.2275 - euclidean_distance: 0.3039
Epoch 82/300
152/152 [==============================] - 0s 797us/step - loss: 0.1827 - accuracy: 0.7725 - mae: 0.1827 - pearson_correlation: 0.2470 - euclidean_distance: 0.2993
Epoch 83/300
152/152 [==============================] - 0s 798us/step - loss: 0.1780 - accuracy: 0.7809 - mae: 0.1780 - pearson_correlation: 0.2842 - euclidean_distance: 0.2916
Epoch 84/300
152/152 [==============================] - 0s 802us/step - loss: 0.1759 - accuracy: 0.8003 - mae: 0.1759 - pearson_correlation: 0.2917 - euclidean_distance: 0.2890
Epoch 85/300
152/152 [==============================] - 0s 800us/step - loss: 0.1739 - accuracy: 0.8025 - mae: 0.1739 - pearson_correlation: 0.3155 - euclidean_distance: 0.2846
Epoch 86/300
152/152 [==============================] - 0s 803us/step - loss: 0.1692 - accuracy: 0.8258 - mae: 0.1692 - pearson_correlation: 0.3359 - euclidean_distance: 0.2776
Epoch 87/300
152/152 [==============================] - 0s 804us/step - loss: 0.1684 - accuracy: 0.8228 - mae: 0.1684 - pearson_correlation: 0.3501 - euclidean_distance: 0.2748
Epoch 88/300
152/152 [==============================] - 0s 802us/step - loss: 0.1651 - accuracy: 0.8395 - mae: 0.1651 - pearson_correlation: 0.3735 - euclidean_distance: 0.2697
Epoch 89/300
152/152 [==============================] - 0s 796us/step - loss: 0.1636 - accuracy: 0.8549 - mae: 0.1636 - pearson_correlation: 0.3699 - euclidean_distance: 0.2670
Epoch 90/300
152/152 [==============================] - 0s 798us/step - loss: 0.1601 - accuracy: 0.8563 - mae: 0.1601 - pearson_correlation: 0.4001 - euclidean_distance: 0.2617
Epoch 91/300
152/152 [==============================] - 0s 797us/step - loss: 0.1569 - accuracy: 0.8677 - mae: 0.1569 - pearson_correlation: 0.4292 - euclidean_distance: 0.2561
Epoch 92/300
152/152 [==============================] - 0s 799us/step - loss: 0.1569 - accuracy: 0.8633 - mae: 0.1569 - pearson_correlation: 0.4241 - euclidean_distance: 0.2554
Epoch 93/300
152/152 [==============================] - 0s 798us/step - loss: 0.1540 - accuracy: 0.8832 - mae: 0.1540 - pearson_correlation: 0.4424 - euclidean_distance: 0.2510
Epoch 94/300
152/152 [==============================] - 0s 805us/step - loss: 0.1532 - accuracy: 0.8902 - mae: 0.1532 - pearson_correlation: 0.4522 - euclidean_distance: 0.2488
Epoch 95/300
152/152 [==============================] - 0s 801us/step - loss: 0.1496 - accuracy: 0.8933 - mae: 0.1496 - pearson_correlation: 0.4699 - euclidean_distance: 0.2424
Epoch 96/300
152/152 [==============================] - 0s 805us/step - loss: 0.1445 - accuracy: 0.8959 - mae: 0.1445 - pearson_correlation: 0.5007 - euclidean_distance: 0.2357
Epoch 97/300
152/152 [==============================] - 0s 798us/step - loss: 0.1459 - accuracy: 0.8986 - mae: 0.1459 - pearson_correlation: 0.4938 - euclidean_distance: 0.2375
Epoch 98/300
152/152 [==============================] - 0s 800us/step - loss: 0.1477 - accuracy: 0.9096 - mae: 0.1477 - pearson_correlation: 0.4943 - euclidean_distance: 0.2388
Epoch 99/300
152/152 [==============================] - 0s 849us/step - loss: 0.1412 - accuracy: 0.9092 - mae: 0.1412 - pearson_correlation: 0.5185 - euclidean_distance: 0.2303
Epoch 100/300
152/152 [==============================] - 0s 875us/step - loss: 0.1419 - accuracy: 0.9149 - mae: 0.1419 - pearson_correlation: 0.5217 - euclidean_distance: 0.2311
Epoch 101/300
152/152 [==============================] - 0s 899us/step - loss: 0.1371 - accuracy: 0.9096 - mae: 0.1371 - pearson_correlation: 0.5368 - euclidean_distance: 0.2228
Epoch 102/300
152/152 [==============================] - 0s 927us/step - loss: 0.1371 - accuracy: 0.9224 - mae: 0.1371 - pearson_correlation: 0.5375 - euclidean_distance: 0.2223
Epoch 103/300
152/152 [==============================] - 0s 928us/step - loss: 0.1372 - accuracy: 0.9193 - mae: 0.1372 - pearson_correlation: 0.5470 - euclidean_distance: 0.2224
Epoch 104/300
152/152 [==============================] - 0s 814us/step - loss: 0.1353 - accuracy: 0.9250 - mae: 0.1353 - pearson_correlation: 0.5534 - euclidean_distance: 0.2195
Epoch 105/300
152/152 [==============================] - 0s 811us/step - loss: 0.1358 - accuracy: 0.9224 - mae: 0.1358 - pearson_correlation: 0.5567 - euclidean_distance: 0.2200
Epoch 106/300
152/152 [==============================] - 0s 810us/step - loss: 0.1366 - accuracy: 0.9277 - mae: 0.1366 - pearson_correlation: 0.5617 - euclidean_distance: 0.2203
Epoch 107/300
152/152 [==============================] - 0s 806us/step - loss: 0.1325 - accuracy: 0.9303 - mae: 0.1325 - pearson_correlation: 0.5672 - euclidean_distance: 0.2147
Epoch 108/300
152/152 [==============================] - 0s 804us/step - loss: 0.1281 - accuracy: 0.9299 - mae: 0.1281 - pearson_correlation: 0.5892 - euclidean_distance: 0.2080
Epoch 109/300
152/152 [==============================] - 0s 801us/step - loss: 0.1291 - accuracy: 0.9330 - mae: 0.1291 - pearson_correlation: 0.5949 - euclidean_distance: 0.2089
Epoch 110/300
152/152 [==============================] - 0s 801us/step - loss: 0.1273 - accuracy: 0.9361 - mae: 0.1273 - pearson_correlation: 0.5950 - euclidean_distance: 0.2067
Epoch 111/300
152/152 [==============================] - 0s 799us/step - loss: 0.1259 - accuracy: 0.9361 - mae: 0.1259 - pearson_correlation: 0.6062 - euclidean_distance: 0.2041
Epoch 112/300
152/152 [==============================] - 0s 807us/step - loss: 0.1254 - accuracy: 0.9414 - mae: 0.1254 - pearson_correlation: 0.6087 - euclidean_distance: 0.2030
Epoch 113/300
152/152 [==============================] - 0s 803us/step - loss: 0.1253 - accuracy: 0.9378 - mae: 0.1253 - pearson_correlation: 0.6116 - euclidean_distance: 0.2026
Epoch 114/300
152/152 [==============================] - 0s 796us/step - loss: 0.1266 - accuracy: 0.9396 - mae: 0.1266 - pearson_correlation: 0.6057 - euclidean_distance: 0.2048
Epoch 115/300
152/152 [==============================] - 0s 816us/step - loss: 0.1231 - accuracy: 0.9427 - mae: 0.1231 - pearson_correlation: 0.6209 - euclidean_distance: 0.1989
Epoch 116/300
152/152 [==============================] - 0s 799us/step - loss: 0.1250 - accuracy: 0.9418 - mae: 0.1250 - pearson_correlation: 0.6180 - euclidean_distance: 0.2022
Epoch 117/300
152/152 [==============================] - 0s 801us/step - loss: 0.1207 - accuracy: 0.9431 - mae: 0.1207 - pearson_correlation: 0.6318 - euclidean_distance: 0.1953
Epoch 118/300
152/152 [==============================] - 0s 801us/step - loss: 0.1233 - accuracy: 0.9466 - mae: 0.1233 - pearson_correlation: 0.6233 - euclidean_distance: 0.1990
Epoch 119/300
152/152 [==============================] - 0s 801us/step - loss: 0.1236 - accuracy: 0.9440 - mae: 0.1236 - pearson_correlation: 0.6237 - euclidean_distance: 0.1999
Epoch 120/300
152/152 [==============================] - 0s 808us/step - loss: 0.1210 - accuracy: 0.9427 - mae: 0.1210 - pearson_correlation: 0.6355 - euclidean_distance: 0.1955
Epoch 121/300
152/152 [==============================] - 0s 804us/step - loss: 0.1187 - accuracy: 0.9466 - mae: 0.1187 - pearson_correlation: 0.6434 - euclidean_distance: 0.1918
Epoch 122/300
152/152 [==============================] - 0s 800us/step - loss: 0.1217 - accuracy: 0.9471 - mae: 0.1217 - pearson_correlation: 0.6399 - euclidean_distance: 0.1965
Epoch 123/300
152/152 [==============================] - 0s 805us/step - loss: 0.1191 - accuracy: 0.9449 - mae: 0.1191 - pearson_correlation: 0.6431 - euclidean_distance: 0.1918
Epoch 124/300
152/152 [==============================] - 0s 805us/step - loss: 0.1195 - accuracy: 0.9462 - mae: 0.1195 - pearson_correlation: 0.6448 - euclidean_distance: 0.1929
Epoch 125/300
152/152 [==============================] - 0s 797us/step - loss: 0.1168 - accuracy: 0.9497 - mae: 0.1168 - pearson_correlation: 0.6540 - euclidean_distance: 0.1884
Epoch 126/300
152/152 [==============================] - 0s 797us/step - loss: 0.1172 - accuracy: 0.9497 - mae: 0.1172 - pearson_correlation: 0.6542 - euclidean_distance: 0.1884
Epoch 127/300
152/152 [==============================] - 0s 801us/step - loss: 0.1166 - accuracy: 0.9484 - mae: 0.1166 - pearson_correlation: 0.6603 - euclidean_distance: 0.1878
Epoch 128/300
152/152 [==============================] - 0s 803us/step - loss: 0.1178 - accuracy: 0.9489 - mae: 0.1178 - pearson_correlation: 0.6541 - euclidean_distance: 0.1899
Epoch 129/300
152/152 [==============================] - 0s 800us/step - loss: 0.1145 - accuracy: 0.9519 - mae: 0.1145 - pearson_correlation: 0.6694 - euclidean_distance: 0.1841
Epoch 130/300
152/152 [==============================] - 0s 802us/step - loss: 0.1122 - accuracy: 0.9484 - mae: 0.1122 - pearson_correlation: 0.6748 - euclidean_distance: 0.1806
Epoch 131/300
152/152 [==============================] - 0s 804us/step - loss: 0.1152 - accuracy: 0.9493 - mae: 0.1152 - pearson_correlation: 0.6659 - euclidean_distance: 0.1855
Epoch 132/300
152/152 [==============================] - 0s 801us/step - loss: 0.1154 - accuracy: 0.9493 - mae: 0.1154 - pearson_correlation: 0.6728 - euclidean_distance: 0.1858
Epoch 133/300
152/152 [==============================] - 0s 804us/step - loss: 0.1127 - accuracy: 0.9515 - mae: 0.1127 - pearson_correlation: 0.6782 - euclidean_distance: 0.1813
Epoch 134/300
152/152 [==============================] - 0s 801us/step - loss: 0.1136 - accuracy: 0.9537 - mae: 0.1136 - pearson_correlation: 0.6766 - euclidean_distance: 0.1826
Epoch 135/300
152/152 [==============================] - 0s 804us/step - loss: 0.1112 - accuracy: 0.9524 - mae: 0.1112 - pearson_correlation: 0.6811 - euclidean_distance: 0.1790
Epoch 136/300
152/152 [==============================] - 0s 802us/step - loss: 0.1114 - accuracy: 0.9506 - mae: 0.1114 - pearson_correlation: 0.6827 - euclidean_distance: 0.1793
Epoch 137/300
152/152 [==============================] - 0s 805us/step - loss: 0.1132 - accuracy: 0.9506 - mae: 0.1132 - pearson_correlation: 0.6829 - euclidean_distance: 0.1814
Epoch 138/300
152/152 [==============================] - 0s 800us/step - loss: 0.1101 - accuracy: 0.9528 - mae: 0.1101 - pearson_correlation: 0.6906 - euclidean_distance: 0.1774
Epoch 139/300
152/152 [==============================] - 0s 801us/step - loss: 0.1099 - accuracy: 0.9524 - mae: 0.1099 - pearson_correlation: 0.6857 - euclidean_distance: 0.1770
Epoch 140/300
152/152 [==============================] - 0s 798us/step - loss: 0.1138 - accuracy: 0.9528 - mae: 0.1138 - pearson_correlation: 0.6781 - euclidean_distance: 0.1820
Epoch 141/300
152/152 [==============================] - 0s 799us/step - loss: 0.1088 - accuracy: 0.9528 - mae: 0.1088 - pearson_correlation: 0.6990 - euclidean_distance: 0.1749
Epoch 142/300
152/152 [==============================] - 0s 800us/step - loss: 0.1074 - accuracy: 0.9533 - mae: 0.1074 - pearson_correlation: 0.7037 - euclidean_distance: 0.1725
Epoch 143/300
152/152 [==============================] - 0s 800us/step - loss: 0.1095 - accuracy: 0.9533 - mae: 0.1095 - pearson_correlation: 0.6937 - euclidean_distance: 0.1756
Epoch 144/300
152/152 [==============================] - 0s 818us/step - loss: 0.1100 - accuracy: 0.9541 - mae: 0.1100 - pearson_correlation: 0.6942 - euclidean_distance: 0.1763
Epoch 145/300
152/152 [==============================] - 0s 805us/step - loss: 0.1094 - accuracy: 0.9546 - mae: 0.1094 - pearson_correlation: 0.6928 - euclidean_distance: 0.1756
Epoch 146/300
152/152 [==============================] - 0s 801us/step - loss: 0.1078 - accuracy: 0.9528 - mae: 0.1078 - pearson_correlation: 0.6905 - euclidean_distance: 0.1736
Epoch 147/300
152/152 [==============================] - 0s 801us/step - loss: 0.1084 - accuracy: 0.9515 - mae: 0.1084 - pearson_correlation: 0.6990 - euclidean_distance: 0.1741
Epoch 148/300
152/152 [==============================] - 0s 800us/step - loss: 0.1110 - accuracy: 0.9541 - mae: 0.1110 - pearson_correlation: 0.6871 - euclidean_distance: 0.1776
Epoch 149/300
152/152 [==============================] - 0s 827us/step - loss: 0.1069 - accuracy: 0.9537 - mae: 0.1069 - pearson_correlation: 0.7038 - euclidean_distance: 0.1714
Epoch 150/300
152/152 [==============================] - 0s 805us/step - loss: 0.1082 - accuracy: 0.9528 - mae: 0.1082 - pearson_correlation: 0.7023 - euclidean_distance: 0.1737
Epoch 151/300
152/152 [==============================] - 0s 798us/step - loss: 0.1050 - accuracy: 0.9541 - mae: 0.1050 - pearson_correlation: 0.7087 - euclidean_distance: 0.1686
Epoch 152/300
152/152 [==============================] - 0s 800us/step - loss: 0.1060 - accuracy: 0.9541 - mae: 0.1060 - pearson_correlation: 0.7065 - euclidean_distance: 0.1705
Epoch 153/300
152/152 [==============================] - 0s 803us/step - loss: 0.1044 - accuracy: 0.9541 - mae: 0.1044 - pearson_correlation: 0.7154 - euclidean_distance: 0.1672
Epoch 154/300
152/152 [==============================] - 0s 803us/step - loss: 0.1055 - accuracy: 0.9563 - mae: 0.1055 - pearson_correlation: 0.7123 - euclidean_distance: 0.1686
Epoch 155/300
152/152 [==============================] - 0s 801us/step - loss: 0.1040 - accuracy: 0.9537 - mae: 0.1040 - pearson_correlation: 0.7124 - euclidean_distance: 0.1667
Epoch 156/300
152/152 [==============================] - 0s 794us/step - loss: 0.1033 - accuracy: 0.9546 - mae: 0.1033 - pearson_correlation: 0.7168 - euclidean_distance: 0.1662
Epoch 157/300
152/152 [==============================] - 0s 803us/step - loss: 0.1037 - accuracy: 0.9533 - mae: 0.1037 - pearson_correlation: 0.7160 - euclidean_distance: 0.1663
Epoch 158/300
152/152 [==============================] - 0s 793us/step - loss: 0.1064 - accuracy: 0.9550 - mae: 0.1064 - pearson_correlation: 0.7043 - euclidean_distance: 0.1699
Epoch 159/300
152/152 [==============================] - 0s 800us/step - loss: 0.1023 - accuracy: 0.9559 - mae: 0.1023 - pearson_correlation: 0.7327 - euclidean_distance: 0.1636
Epoch 160/300
152/152 [==============================] - 0s 797us/step - loss: 0.1050 - accuracy: 0.9546 - mae: 0.1050 - pearson_correlation: 0.7152 - euclidean_distance: 0.1679
Epoch 161/300
152/152 [==============================] - 0s 801us/step - loss: 0.1062 - accuracy: 0.9555 - mae: 0.1062 - pearson_correlation: 0.7080 - euclidean_distance: 0.1697
Epoch 162/300
152/152 [==============================] - 0s 798us/step - loss: 0.1024 - accuracy: 0.9546 - mae: 0.1024 - pearson_correlation: 0.7210 - euclidean_distance: 0.1644
Epoch 163/300
152/152 [==============================] - 0s 802us/step - loss: 0.1025 - accuracy: 0.9541 - mae: 0.1025 - pearson_correlation: 0.7204 - euclidean_distance: 0.1645
Epoch 164/300
152/152 [==============================] - 0s 802us/step - loss: 0.1013 - accuracy: 0.9550 - mae: 0.1013 - pearson_correlation: 0.7267 - euclidean_distance: 0.1624
Epoch 165/300
152/152 [==============================] - 0s 799us/step - loss: 0.1034 - accuracy: 0.9555 - mae: 0.1034 - pearson_correlation: 0.7172 - euclidean_distance: 0.1657
Epoch 166/300
152/152 [==============================] - 0s 797us/step - loss: 0.1016 - accuracy: 0.9550 - mae: 0.1016 - pearson_correlation: 0.7313 - euclidean_distance: 0.1628
Epoch 167/300
152/152 [==============================] - 0s 803us/step - loss: 0.1039 - accuracy: 0.9555 - mae: 0.1039 - pearson_correlation: 0.7225 - euclidean_distance: 0.1663
Epoch 168/300
152/152 [==============================] - 0s 809us/step - loss: 0.1050 - accuracy: 0.9550 - mae: 0.1050 - pearson_correlation: 0.7235 - euclidean_distance: 0.1668
Epoch 169/300
152/152 [==============================] - 0s 796us/step - loss: 0.1027 - accuracy: 0.9550 - mae: 0.1027 - pearson_correlation: 0.7238 - euclidean_distance: 0.1643
Epoch 170/300
152/152 [==============================] - 0s 801us/step - loss: 0.0997 - accuracy: 0.9555 - mae: 0.0997 - pearson_correlation: 0.7311 - euclidean_distance: 0.1594
Epoch 171/300
152/152 [==============================] - 0s 802us/step - loss: 0.1024 - accuracy: 0.9550 - mae: 0.1024 - pearson_correlation: 0.7235 - euclidean_distance: 0.1628
Epoch 172/300
152/152 [==============================] - 0s 803us/step - loss: 0.1019 - accuracy: 0.9550 - mae: 0.1019 - pearson_correlation: 0.7276 - euclidean_distance: 0.1628
Epoch 173/300
152/152 [==============================] - 0s 801us/step - loss: 0.1011 - accuracy: 0.9546 - mae: 0.1011 - pearson_correlation: 0.7254 - euclidean_distance: 0.1617
Epoch 174/300
152/152 [==============================] - 0s 802us/step - loss: 0.0981 - accuracy: 0.9546 - mae: 0.0981 - pearson_correlation: 0.7350 - euclidean_distance: 0.1573
Epoch 175/300
152/152 [==============================] - 0s 803us/step - loss: 0.1020 - accuracy: 0.9550 - mae: 0.1020 - pearson_correlation: 0.7316 - euclidean_distance: 0.1621
Epoch 176/300
152/152 [==============================] - 0s 802us/step - loss: 0.0989 - accuracy: 0.9550 - mae: 0.0989 - pearson_correlation: 0.7402 - euclidean_distance: 0.1580
Epoch 177/300
152/152 [==============================] - 0s 799us/step - loss: 0.0996 - accuracy: 0.9559 - mae: 0.0996 - pearson_correlation: 0.7397 - euclidean_distance: 0.1593
Epoch 178/300
152/152 [==============================] - 0s 804us/step - loss: 0.1016 - accuracy: 0.9555 - mae: 0.1016 - pearson_correlation: 0.7294 - euclidean_distance: 0.1618
Epoch 179/300
152/152 [==============================] - 0s 798us/step - loss: 0.1000 - accuracy: 0.9559 - mae: 0.1000 - pearson_correlation: 0.7354 - euclidean_distance: 0.1592
Epoch 180/300
152/152 [==============================] - 0s 799us/step - loss: 0.0988 - accuracy: 0.9559 - mae: 0.0988 - pearson_correlation: 0.7404 - euclidean_distance: 0.1577
Epoch 181/300
152/152 [==============================] - 0s 796us/step - loss: 0.0997 - accuracy: 0.9559 - mae: 0.0997 - pearson_correlation: 0.7320 - euclidean_distance: 0.1589
Epoch 182/300
152/152 [==============================] - 0s 804us/step - loss: 0.0990 - accuracy: 0.9555 - mae: 0.0990 - pearson_correlation: 0.7380 - euclidean_distance: 0.1577
Epoch 183/300
152/152 [==============================] - 0s 797us/step - loss: 0.1020 - accuracy: 0.9559 - mae: 0.1020 - pearson_correlation: 0.7338 - euclidean_distance: 0.1622
Epoch 184/300
152/152 [==============================] - 0s 796us/step - loss: 0.0975 - accuracy: 0.9555 - mae: 0.0975 - pearson_correlation: 0.7472 - euclidean_distance: 0.1551
Epoch 185/300
152/152 [==============================] - 0s 797us/step - loss: 0.1006 - accuracy: 0.9550 - mae: 0.1006 - pearson_correlation: 0.7303 - euclidean_distance: 0.1602
Epoch 186/300
152/152 [==============================] - 0s 800us/step - loss: 0.0974 - accuracy: 0.9555 - mae: 0.0974 - pearson_correlation: 0.7436 - euclidean_distance: 0.1554
Epoch 187/300
152/152 [==============================] - 0s 796us/step - loss: 0.0966 - accuracy: 0.9550 - mae: 0.0966 - pearson_correlation: 0.7414 - euclidean_distance: 0.1549
Epoch 188/300
152/152 [==============================] - 0s 794us/step - loss: 0.0993 - accuracy: 0.9559 - mae: 0.0993 - pearson_correlation: 0.7371 - euclidean_distance: 0.1585
Epoch 189/300
152/152 [==============================] - 0s 799us/step - loss: 0.0965 - accuracy: 0.9559 - mae: 0.0965 - pearson_correlation: 0.7392 - euclidean_distance: 0.1537
Epoch 190/300
152/152 [==============================] - 0s 802us/step - loss: 0.0980 - accuracy: 0.9559 - mae: 0.0980 - pearson_correlation: 0.7454 - euclidean_distance: 0.1565
Epoch 191/300
152/152 [==============================] - 0s 800us/step - loss: 0.0975 - accuracy: 0.9559 - mae: 0.0975 - pearson_correlation: 0.7414 - euclidean_distance: 0.1558
Epoch 192/300
152/152 [==============================] - 0s 801us/step - loss: 0.0981 - accuracy: 0.9559 - mae: 0.0981 - pearson_correlation: 0.7454 - euclidean_distance: 0.1562
Epoch 193/300
152/152 [==============================] - 0s 801us/step - loss: 0.0977 - accuracy: 0.9555 - mae: 0.0977 - pearson_correlation: 0.7425 - euclidean_distance: 0.1559
Epoch 194/300
152/152 [==============================] - 0s 800us/step - loss: 0.0950 - accuracy: 0.9559 - mae: 0.0950 - pearson_correlation: 0.7469 - euclidean_distance: 0.1521
Epoch 195/300
152/152 [==============================] - 0s 803us/step - loss: 0.0971 - accuracy: 0.9559 - mae: 0.0971 - pearson_correlation: 0.7457 - euclidean_distance: 0.1546
Epoch 196/300
152/152 [==============================] - 0s 799us/step - loss: 0.0965 - accuracy: 0.9559 - mae: 0.0965 - pearson_correlation: 0.7466 - euclidean_distance: 0.1545
Epoch 197/300
152/152 [==============================] - 0s 798us/step - loss: 0.0988 - accuracy: 0.9559 - mae: 0.0988 - pearson_correlation: 0.7415 - euclidean_distance: 0.1569
Epoch 198/300
152/152 [==============================] - 0s 801us/step - loss: 0.0947 - accuracy: 0.9559 - mae: 0.0947 - pearson_correlation: 0.7506 - euclidean_distance: 0.1512
Epoch 199/300
152/152 [==============================] - 0s 802us/step - loss: 0.0969 - accuracy: 0.9559 - mae: 0.0969 - pearson_correlation: 0.7497 - euclidean_distance: 0.1545
Epoch 200/300
152/152 [==============================] - 0s 964us/step - loss: 0.0956 - accuracy: 0.9559 - mae: 0.0956 - pearson_correlation: 0.7474 - euclidean_distance: 0.1524
Epoch 201/300
152/152 [==============================] - 0s 860us/step - loss: 0.0957 - accuracy: 0.9559 - mae: 0.0957 - pearson_correlation: 0.7504 - euclidean_distance: 0.1525
Epoch 202/300
152/152 [==============================] - 0s 809us/step - loss: 0.0968 - accuracy: 0.9559 - mae: 0.0968 - pearson_correlation: 0.7444 - euclidean_distance: 0.1541
Epoch 203/300
152/152 [==============================] - 0s 805us/step - loss: 0.0950 - accuracy: 0.9555 - mae: 0.0950 - pearson_correlation: 0.7478 - euclidean_distance: 0.1513
Epoch 204/300
152/152 [==============================] - 0s 843us/step - loss: 0.0975 - accuracy: 0.9555 - mae: 0.0975 - pearson_correlation: 0.7410 - euclidean_distance: 0.1555
Epoch 205/300
152/152 [==============================] - 0s 800us/step - loss: 0.0954 - accuracy: 0.9559 - mae: 0.0954 - pearson_correlation: 0.7465 - euclidean_distance: 0.1524
Epoch 206/300
152/152 [==============================] - 0s 810us/step - loss: 0.0960 - accuracy: 0.9559 - mae: 0.0960 - pearson_correlation: 0.7488 - euclidean_distance: 0.1526
Epoch 207/300
152/152 [==============================] - 0s 807us/step - loss: 0.0971 - accuracy: 0.9559 - mae: 0.0971 - pearson_correlation: 0.7411 - euclidean_distance: 0.1546
Epoch 208/300
152/152 [==============================] - 0s 794us/step - loss: 0.0934 - accuracy: 0.9559 - mae: 0.0934 - pearson_correlation: 0.7554 - euclidean_distance: 0.1491
Epoch 209/300
152/152 [==============================] - 0s 797us/step - loss: 0.0944 - accuracy: 0.9559 - mae: 0.0944 - pearson_correlation: 0.7528 - euclidean_distance: 0.1502
Epoch 210/300
152/152 [==============================] - 0s 801us/step - loss: 0.0958 - accuracy: 0.9559 - mae: 0.0958 - pearson_correlation: 0.7440 - euclidean_distance: 0.1527
Epoch 211/300
152/152 [==============================] - 0s 803us/step - loss: 0.0956 - accuracy: 0.9559 - mae: 0.0956 - pearson_correlation: 0.7506 - euclidean_distance: 0.1521
Epoch 212/300
152/152 [==============================] - 0s 805us/step - loss: 0.0937 - accuracy: 0.9559 - mae: 0.0937 - pearson_correlation: 0.7561 - euclidean_distance: 0.1487
Epoch 213/300
152/152 [==============================] - 0s 798us/step - loss: 0.0927 - accuracy: 0.9559 - mae: 0.0927 - pearson_correlation: 0.7625 - euclidean_distance: 0.1480
Epoch 214/300
152/152 [==============================] - 0s 805us/step - loss: 0.0923 - accuracy: 0.9559 - mae: 0.0923 - pearson_correlation: 0.7610 - euclidean_distance: 0.1475
Epoch 215/300
152/152 [==============================] - 0s 805us/step - loss: 0.0924 - accuracy: 0.9559 - mae: 0.0924 - pearson_correlation: 0.7573 - euclidean_distance: 0.1475
Epoch 216/300
152/152 [==============================] - 0s 804us/step - loss: 0.0929 - accuracy: 0.9559 - mae: 0.0929 - pearson_correlation: 0.7480 - euclidean_distance: 0.1486
Epoch 217/300
152/152 [==============================] - 0s 805us/step - loss: 0.0935 - accuracy: 0.9559 - mae: 0.0935 - pearson_correlation: 0.7526 - euclidean_distance: 0.1489
Epoch 218/300
152/152 [==============================] - 0s 804us/step - loss: 0.0921 - accuracy: 0.9559 - mae: 0.0921 - pearson_correlation: 0.7575 - euclidean_distance: 0.1475
Epoch 219/300
152/152 [==============================] - 0s 802us/step - loss: 0.0955 - accuracy: 0.9559 - mae: 0.0955 - pearson_correlation: 0.7477 - euclidean_distance: 0.1521
Epoch 220/300
152/152 [==============================] - 0s 804us/step - loss: 0.0931 - accuracy: 0.9559 - mae: 0.0931 - pearson_correlation: 0.7590 - euclidean_distance: 0.1481
Epoch 221/300
152/152 [==============================] - 0s 803us/step - loss: 0.0941 - accuracy: 0.9559 - mae: 0.0941 - pearson_correlation: 0.7538 - euclidean_distance: 0.1498
Epoch 222/300
152/152 [==============================] - 0s 818us/step - loss: 0.0937 - accuracy: 0.9559 - mae: 0.0937 - pearson_correlation: 0.7547 - euclidean_distance: 0.1497
Epoch 223/300
152/152 [==============================] - 0s 803us/step - loss: 0.0903 - accuracy: 0.9559 - mae: 0.0903 - pearson_correlation: 0.7639 - euclidean_distance: 0.1445
Epoch 224/300
152/152 [==============================] - 0s 805us/step - loss: 0.0933 - accuracy: 0.9559 - mae: 0.0933 - pearson_correlation: 0.7558 - euclidean_distance: 0.1490
Epoch 225/300
152/152 [==============================] - 0s 827us/step - loss: 0.0932 - accuracy: 0.9559 - mae: 0.0932 - pearson_correlation: 0.7516 - euclidean_distance: 0.1484
Epoch 226/300
152/152 [==============================] - 0s 801us/step - loss: 0.0920 - accuracy: 0.9559 - mae: 0.0920 - pearson_correlation: 0.7620 - euclidean_distance: 0.1465
Epoch 227/300
152/152 [==============================] - 0s 821us/step - loss: 0.0904 - accuracy: 0.9559 - mae: 0.0904 - pearson_correlation: 0.7660 - euclidean_distance: 0.1448
Epoch 228/300
152/152 [==============================] - 0s 884us/step - loss: 0.0899 - accuracy: 0.9559 - mae: 0.0899 - pearson_correlation: 0.7594 - euclidean_distance: 0.1435
Epoch 229/300
152/152 [==============================] - 0s 900us/step - loss: 0.0898 - accuracy: 0.9559 - mae: 0.0898 - pearson_correlation: 0.7666 - euclidean_distance: 0.1431
Epoch 230/300
152/152 [==============================] - 0s 935us/step - loss: 0.0919 - accuracy: 0.9559 - mae: 0.0919 - pearson_correlation: 0.7600 - euclidean_distance: 0.1461
Epoch 231/300
152/152 [==============================] - 0s 919us/step - loss: 0.0932 - accuracy: 0.9559 - mae: 0.0932 - pearson_correlation: 0.7533 - euclidean_distance: 0.1485
Epoch 232/300
152/152 [==============================] - 0s 842us/step - loss: 0.0936 - accuracy: 0.9559 - mae: 0.0936 - pearson_correlation: 0.7586 - euclidean_distance: 0.1489
Epoch 233/300
152/152 [==============================] - 0s 808us/step - loss: 0.0937 - accuracy: 0.9559 - mae: 0.0937 - pearson_correlation: 0.7578 - euclidean_distance: 0.1491
Epoch 234/300
152/152 [==============================] - 0s 804us/step - loss: 0.0932 - accuracy: 0.9555 - mae: 0.0932 - pearson_correlation: 0.7588 - euclidean_distance: 0.1479
Epoch 235/300
152/152 [==============================] - 0s 801us/step - loss: 0.0898 - accuracy: 0.9559 - mae: 0.0898 - pearson_correlation: 0.7634 - euclidean_distance: 0.1434
Epoch 236/300
152/152 [==============================] - 0s 802us/step - loss: 0.0939 - accuracy: 0.9559 - mae: 0.0939 - pearson_correlation: 0.7529 - euclidean_distance: 0.1488
Epoch 237/300
152/152 [==============================] - 0s 805us/step - loss: 0.0906 - accuracy: 0.9559 - mae: 0.0906 - pearson_correlation: 0.7656 - euclidean_distance: 0.1444
Epoch 238/300
152/152 [==============================] - 0s 801us/step - loss: 0.0928 - accuracy: 0.9559 - mae: 0.0928 - pearson_correlation: 0.7578 - euclidean_distance: 0.1478
Epoch 239/300
152/152 [==============================] - 0s 800us/step - loss: 0.0904 - accuracy: 0.9559 - mae: 0.0904 - pearson_correlation: 0.7567 - euclidean_distance: 0.1444
Epoch 240/300
152/152 [==============================] - 0s 802us/step - loss: 0.0903 - accuracy: 0.9559 - mae: 0.0903 - pearson_correlation: 0.7550 - euclidean_distance: 0.1441
Epoch 241/300
152/152 [==============================] - 0s 803us/step - loss: 0.0918 - accuracy: 0.9559 - mae: 0.0918 - pearson_correlation: 0.7562 - euclidean_distance: 0.1464
Epoch 242/300
152/152 [==============================] - 0s 804us/step - loss: 0.0909 - accuracy: 0.9559 - mae: 0.0909 - pearson_correlation: 0.7667 - euclidean_distance: 0.1449
Epoch 243/300
152/152 [==============================] - 0s 800us/step - loss: 0.0885 - accuracy: 0.9559 - mae: 0.0885 - pearson_correlation: 0.7668 - euclidean_distance: 0.1411
Epoch 244/300
152/152 [==============================] - 0s 803us/step - loss: 0.0898 - accuracy: 0.9559 - mae: 0.0898 - pearson_correlation: 0.7679 - euclidean_distance: 0.1435
Epoch 245/300
152/152 [==============================] - 0s 798us/step - loss: 0.0905 - accuracy: 0.9559 - mae: 0.0905 - pearson_correlation: 0.7630 - euclidean_distance: 0.1445
Epoch 246/300
152/152 [==============================] - 0s 804us/step - loss: 0.0889 - accuracy: 0.9559 - mae: 0.0889 - pearson_correlation: 0.7670 - euclidean_distance: 0.1416
Epoch 247/300
152/152 [==============================] - 0s 804us/step - loss: 0.0891 - accuracy: 0.9559 - mae: 0.0891 - pearson_correlation: 0.7685 - euclidean_distance: 0.1424
Epoch 248/300
152/152 [==============================] - 0s 802us/step - loss: 0.0925 - accuracy: 0.9559 - mae: 0.0925 - pearson_correlation: 0.7599 - euclidean_distance: 0.1470
Epoch 249/300
152/152 [==============================] - 0s 801us/step - loss: 0.0895 - accuracy: 0.9559 - mae: 0.0895 - pearson_correlation: 0.7666 - euclidean_distance: 0.1428
Epoch 250/300
152/152 [==============================] - 0s 807us/step - loss: 0.0891 - accuracy: 0.9559 - mae: 0.0891 - pearson_correlation: 0.7674 - euclidean_distance: 0.1419
Epoch 251/300
152/152 [==============================] - 0s 809us/step - loss: 0.0883 - accuracy: 0.9559 - mae: 0.0883 - pearson_correlation: 0.7738 - euclidean_distance: 0.1403
Epoch 252/300
152/152 [==============================] - 0s 806us/step - loss: 0.0881 - accuracy: 0.9559 - mae: 0.0881 - pearson_correlation: 0.7719 - euclidean_distance: 0.1405
Epoch 253/300
152/152 [==============================] - 0s 800us/step - loss: 0.0898 - accuracy: 0.9555 - mae: 0.0898 - pearson_correlation: 0.7695 - euclidean_distance: 0.1425
Epoch 254/300
152/152 [==============================] - 0s 805us/step - loss: 0.0871 - accuracy: 0.9559 - mae: 0.0871 - pearson_correlation: 0.7779 - euclidean_distance: 0.1387
Epoch 255/300
152/152 [==============================] - 0s 801us/step - loss: 0.0864 - accuracy: 0.9559 - mae: 0.0864 - pearson_correlation: 0.7770 - euclidean_distance: 0.1378
Epoch 256/300
152/152 [==============================] - 0s 806us/step - loss: 0.0868 - accuracy: 0.9559 - mae: 0.0868 - pearson_correlation: 0.7742 - euclidean_distance: 0.1387
Epoch 257/300
152/152 [==============================] - 0s 803us/step - loss: 0.0894 - accuracy: 0.9559 - mae: 0.0894 - pearson_correlation: 0.7673 - euclidean_distance: 0.1422
Epoch 258/300
152/152 [==============================] - 0s 796us/step - loss: 0.0899 - accuracy: 0.9559 - mae: 0.0899 - pearson_correlation: 0.7639 - euclidean_distance: 0.1428
Epoch 259/300
152/152 [==============================] - 0s 800us/step - loss: 0.0887 - accuracy: 0.9559 - mae: 0.0887 - pearson_correlation: 0.7705 - euclidean_distance: 0.1412
Epoch 260/300
152/152 [==============================] - 0s 800us/step - loss: 0.0902 - accuracy: 0.9559 - mae: 0.0902 - pearson_correlation: 0.7701 - euclidean_distance: 0.1433
Epoch 261/300
152/152 [==============================] - 0s 801us/step - loss: 0.0901 - accuracy: 0.9559 - mae: 0.0901 - pearson_correlation: 0.7632 - euclidean_distance: 0.1441
Epoch 262/300
152/152 [==============================] - 0s 801us/step - loss: 0.0885 - accuracy: 0.9559 - mae: 0.0885 - pearson_correlation: 0.7648 - euclidean_distance: 0.1419
Epoch 263/300
152/152 [==============================] - 0s 864us/step - loss: 0.0886 - accuracy: 0.9559 - mae: 0.0886 - pearson_correlation: 0.7625 - euclidean_distance: 0.1415
Epoch 264/300
152/152 [==============================] - 0s 808us/step - loss: 0.0907 - accuracy: 0.9559 - mae: 0.0907 - pearson_correlation: 0.7623 - euclidean_distance: 0.1446
Epoch 265/300
152/152 [==============================] - 0s 803us/step - loss: 0.0876 - accuracy: 0.9559 - mae: 0.0876 - pearson_correlation: 0.7721 - euclidean_distance: 0.1394
Epoch 266/300
152/152 [==============================] - 0s 802us/step - loss: 0.0867 - accuracy: 0.9559 - mae: 0.0867 - pearson_correlation: 0.7732 - euclidean_distance: 0.1381
Epoch 267/300
152/152 [==============================] - 0s 802us/step - loss: 0.0887 - accuracy: 0.9559 - mae: 0.0887 - pearson_correlation: 0.7714 - euclidean_distance: 0.1414
Epoch 268/300
152/152 [==============================] - 0s 803us/step - loss: 0.0902 - accuracy: 0.9559 - mae: 0.0902 - pearson_correlation: 0.7665 - euclidean_distance: 0.1432
Epoch 269/300
152/152 [==============================] - 0s 805us/step - loss: 0.0867 - accuracy: 0.9559 - mae: 0.0867 - pearson_correlation: 0.7760 - euclidean_distance: 0.1382
Epoch 270/300
152/152 [==============================] - 0s 804us/step - loss: 0.0878 - accuracy: 0.9559 - mae: 0.0878 - pearson_correlation: 0.7730 - euclidean_distance: 0.1398
Epoch 271/300
152/152 [==============================] - 0s 799us/step - loss: 0.0882 - accuracy: 0.9559 - mae: 0.0882 - pearson_correlation: 0.7747 - euclidean_distance: 0.1403
Epoch 272/300
152/152 [==============================] - 0s 797us/step - loss: 0.0879 - accuracy: 0.9559 - mae: 0.0879 - pearson_correlation: 0.7715 - euclidean_distance: 0.1403
Epoch 273/300
152/152 [==============================] - 0s 802us/step - loss: 0.0874 - accuracy: 0.9559 - mae: 0.0874 - pearson_correlation: 0.7750 - euclidean_distance: 0.1390
Epoch 274/300
152/152 [==============================] - 0s 799us/step - loss: 0.0870 - accuracy: 0.9559 - mae: 0.0870 - pearson_correlation: 0.7681 - euclidean_distance: 0.1390
Epoch 275/300
152/152 [==============================] - 0s 804us/step - loss: 0.0897 - accuracy: 0.9559 - mae: 0.0897 - pearson_correlation: 0.7643 - euclidean_distance: 0.1425
Epoch 276/300
152/152 [==============================] - 0s 798us/step - loss: 0.0869 - accuracy: 0.9559 - mae: 0.0869 - pearson_correlation: 0.7739 - euclidean_distance: 0.1385
Epoch 277/300
152/152 [==============================] - 0s 802us/step - loss: 0.0870 - accuracy: 0.9559 - mae: 0.0870 - pearson_correlation: 0.7682 - euclidean_distance: 0.1383
Epoch 278/300
152/152 [==============================] - 0s 803us/step - loss: 0.0864 - accuracy: 0.9559 - mae: 0.0864 - pearson_correlation: 0.7756 - euclidean_distance: 0.1376
Epoch 279/300
152/152 [==============================] - 0s 800us/step - loss: 0.0857 - accuracy: 0.9559 - mae: 0.0857 - pearson_correlation: 0.7784 - euclidean_distance: 0.1368
Epoch 280/300
152/152 [==============================] - 0s 801us/step - loss: 0.0845 - accuracy: 0.9559 - mae: 0.0845 - pearson_correlation: 0.7790 - euclidean_distance: 0.1352
Epoch 281/300
152/152 [==============================] - 0s 800us/step - loss: 0.0863 - accuracy: 0.9559 - mae: 0.0863 - pearson_correlation: 0.7763 - euclidean_distance: 0.1376
Epoch 282/300
152/152 [==============================] - 0s 800us/step - loss: 0.0834 - accuracy: 0.9559 - mae: 0.0834 - pearson_correlation: 0.7821 - euclidean_distance: 0.1337
Epoch 283/300
152/152 [==============================] - 0s 805us/step - loss: 0.0864 - accuracy: 0.9559 - mae: 0.0864 - pearson_correlation: 0.7739 - euclidean_distance: 0.1379
Epoch 284/300
152/152 [==============================] - 0s 804us/step - loss: 0.0842 - accuracy: 0.9559 - mae: 0.0842 - pearson_correlation: 0.7785 - euclidean_distance: 0.1346
Epoch 285/300
152/152 [==============================] - 0s 801us/step - loss: 0.0857 - accuracy: 0.9559 - mae: 0.0857 - pearson_correlation: 0.7748 - euclidean_distance: 0.1366
Epoch 286/300
152/152 [==============================] - 0s 800us/step - loss: 0.0851 - accuracy: 0.9559 - mae: 0.0851 - pearson_correlation: 0.7742 - euclidean_distance: 0.1361
Epoch 287/300
152/152 [==============================] - 0s 800us/step - loss: 0.0846 - accuracy: 0.9559 - mae: 0.0846 - pearson_correlation: 0.7727 - euclidean_distance: 0.1353
Epoch 288/300
152/152 [==============================] - 0s 805us/step - loss: 0.0868 - accuracy: 0.9559 - mae: 0.0868 - pearson_correlation: 0.7742 - euclidean_distance: 0.1381
Epoch 289/300
152/152 [==============================] - 0s 800us/step - loss: 0.0870 - accuracy: 0.9559 - mae: 0.0870 - pearson_correlation: 0.7699 - euclidean_distance: 0.1386
Epoch 290/300
152/152 [==============================] - 0s 802us/step - loss: 0.0866 - accuracy: 0.9559 - mae: 0.0866 - pearson_correlation: 0.7798 - euclidean_distance: 0.1376
Epoch 291/300
152/152 [==============================] - 0s 800us/step - loss: 0.0868 - accuracy: 0.9559 - mae: 0.0868 - pearson_correlation: 0.7755 - euclidean_distance: 0.1381
Epoch 292/300
152/152 [==============================] - 0s 820us/step - loss: 0.0847 - accuracy: 0.9559 - mae: 0.0847 - pearson_correlation: 0.7776 - euclidean_distance: 0.1347
Epoch 293/300
152/152 [==============================] - 0s 804us/step - loss: 0.0839 - accuracy: 0.9559 - mae: 0.0839 - pearson_correlation: 0.7758 - euclidean_distance: 0.1339
Epoch 294/300
152/152 [==============================] - 0s 798us/step - loss: 0.0858 - accuracy: 0.9559 - mae: 0.0858 - pearson_correlation: 0.7716 - euclidean_distance: 0.1365
Epoch 295/300
152/152 [==============================] - 0s 799us/step - loss: 0.0879 - accuracy: 0.9559 - mae: 0.0879 - pearson_correlation: 0.7733 - euclidean_distance: 0.1397
Epoch 296/300
152/152 [==============================] - 0s 804us/step - loss: 0.0851 - accuracy: 0.9559 - mae: 0.0851 - pearson_correlation: 0.7813 - euclidean_distance: 0.1355
Epoch 297/300
152/152 [==============================] - 0s 796us/step - loss: 0.0851 - accuracy: 0.9559 - mae: 0.0851 - pearson_correlation: 0.7824 - euclidean_distance: 0.1356
Epoch 298/300
152/152 [==============================] - 0s 794us/step - loss: 0.0845 - accuracy: 0.9559 - mae: 0.0845 - pearson_correlation: 0.7754 - euclidean_distance: 0.1347
Epoch 299/300
152/152 [==============================] - 0s 804us/step - loss: 0.0864 - accuracy: 0.9559 - mae: 0.0864 - pearson_correlation: 0.7738 - euclidean_distance: 0.1373
Epoch 300/300
152/152 [==============================] - 0s 812us/step - loss: 0.0828 - accuracy: 0.9559 - mae: 0.0828 - pearson_correlation: 0.7836 - euclidean_distance: 0.1321
76/76 [==============================] - 0s 456us/step
Epoch 1/350
152/152 [==============================] - 1s 869us/step - loss: 0.7015 - accuracy: 0.5280 - mae: 0.7015 - pearson_correlation: 0.0932 - euclidean_distance: 1.0310
Epoch 2/350
152/152 [==============================] - 0s 810us/step - loss: 0.6941 - accuracy: 0.5329 - mae: 0.6941 - pearson_correlation: 0.1014 - euclidean_distance: 1.0204
Epoch 3/350
152/152 [==============================] - 0s 813us/step - loss: 0.6864 - accuracy: 0.5183 - mae: 0.6864 - pearson_correlation: 0.0916 - euclidean_distance: 1.0099
Epoch 4/350
152/152 [==============================] - 0s 807us/step - loss: 0.6788 - accuracy: 0.5135 - mae: 0.6788 - pearson_correlation: 0.0914 - euclidean_distance: 1.0000
Epoch 5/350
152/152 [==============================] - 0s 806us/step - loss: 0.6690 - accuracy: 0.5165 - mae: 0.6690 - pearson_correlation: 0.0966 - euclidean_distance: 0.9858
Epoch 6/350
152/152 [==============================] - 0s 812us/step - loss: 0.6618 - accuracy: 0.5254 - mae: 0.6618 - pearson_correlation: 0.0889 - euclidean_distance: 0.9762
Epoch 7/350
152/152 [==============================] - 0s 810us/step - loss: 0.6545 - accuracy: 0.5121 - mae: 0.6545 - pearson_correlation: 0.0903 - euclidean_distance: 0.9662
Epoch 8/350
152/152 [==============================] - 0s 805us/step - loss: 0.6441 - accuracy: 0.5170 - mae: 0.6441 - pearson_correlation: 0.0867 - euclidean_distance: 0.9521
Epoch 9/350
152/152 [==============================] - 0s 809us/step - loss: 0.6378 - accuracy: 0.5196 - mae: 0.6378 - pearson_correlation: 0.0821 - euclidean_distance: 0.9436
Epoch 10/350
152/152 [==============================] - 0s 801us/step - loss: 0.6303 - accuracy: 0.5157 - mae: 0.6303 - pearson_correlation: 0.0726 - euclidean_distance: 0.9335
Epoch 11/350
152/152 [==============================] - 0s 809us/step - loss: 0.6220 - accuracy: 0.5183 - mae: 0.6220 - pearson_correlation: 0.0878 - euclidean_distance: 0.9218
Epoch 12/350
152/152 [==============================] - 0s 801us/step - loss: 0.6127 - accuracy: 0.5082 - mae: 0.6127 - pearson_correlation: 0.0710 - euclidean_distance: 0.9097
Epoch 13/350
152/152 [==============================] - 0s 800us/step - loss: 0.6053 - accuracy: 0.5095 - mae: 0.6053 - pearson_correlation: 0.0732 - euclidean_distance: 0.8995
Epoch 14/350
152/152 [==============================] - 0s 803us/step - loss: 0.5965 - accuracy: 0.5143 - mae: 0.5965 - pearson_correlation: 0.0851 - euclidean_distance: 0.8874
Epoch 15/350
152/152 [==============================] - 0s 793us/step - loss: 0.5892 - accuracy: 0.5205 - mae: 0.5892 - pearson_correlation: 0.0722 - euclidean_distance: 0.8773
Epoch 16/350
152/152 [==============================] - 0s 798us/step - loss: 0.5809 - accuracy: 0.5201 - mae: 0.5809 - pearson_correlation: 0.0786 - euclidean_distance: 0.8664
Epoch 17/350
152/152 [==============================] - 0s 800us/step - loss: 0.5732 - accuracy: 0.5262 - mae: 0.5732 - pearson_correlation: 0.0854 - euclidean_distance: 0.8552
Epoch 18/350
152/152 [==============================] - 0s 806us/step - loss: 0.5661 - accuracy: 0.5218 - mae: 0.5661 - pearson_correlation: 0.0793 - euclidean_distance: 0.8464
Epoch 19/350
152/152 [==============================] - 0s 807us/step - loss: 0.5576 - accuracy: 0.5289 - mae: 0.5576 - pearson_correlation: 0.0802 - euclidean_distance: 0.8343
Epoch 20/350
152/152 [==============================] - 0s 807us/step - loss: 0.5499 - accuracy: 0.5307 - mae: 0.5499 - pearson_correlation: 0.0711 - euclidean_distance: 0.8245
Epoch 21/350
152/152 [==============================] - 0s 794us/step - loss: 0.5425 - accuracy: 0.5293 - mae: 0.5425 - pearson_correlation: 0.0697 - euclidean_distance: 0.8144
Epoch 22/350
152/152 [==============================] - 0s 802us/step - loss: 0.5342 - accuracy: 0.5382 - mae: 0.5342 - pearson_correlation: 0.0873 - euclidean_distance: 0.8028
Epoch 23/350
152/152 [==============================] - 0s 798us/step - loss: 0.5257 - accuracy: 0.5386 - mae: 0.5257 - pearson_correlation: 0.0775 - euclidean_distance: 0.7918
Epoch 24/350
152/152 [==============================] - 0s 803us/step - loss: 0.5178 - accuracy: 0.5337 - mae: 0.5178 - pearson_correlation: 0.0833 - euclidean_distance: 0.7808
Epoch 25/350
152/152 [==============================] - 0s 807us/step - loss: 0.5104 - accuracy: 0.5368 - mae: 0.5104 - pearson_correlation: 0.0861 - euclidean_distance: 0.7711
Epoch 26/350
152/152 [==============================] - 0s 793us/step - loss: 0.5043 - accuracy: 0.5412 - mae: 0.5043 - pearson_correlation: 0.0814 - euclidean_distance: 0.7630
Epoch 27/350
152/152 [==============================] - 0s 806us/step - loss: 0.4960 - accuracy: 0.5461 - mae: 0.4960 - pearson_correlation: 0.0811 - euclidean_distance: 0.7517
Epoch 28/350
152/152 [==============================] - 0s 799us/step - loss: 0.4886 - accuracy: 0.5417 - mae: 0.4886 - pearson_correlation: 0.0943 - euclidean_distance: 0.7420
Epoch 29/350
152/152 [==============================] - 0s 797us/step - loss: 0.4809 - accuracy: 0.5545 - mae: 0.4809 - pearson_correlation: 0.0974 - euclidean_distance: 0.7306
Epoch 30/350
152/152 [==============================] - 0s 801us/step - loss: 0.4734 - accuracy: 0.5580 - mae: 0.4734 - pearson_correlation: 0.0934 - euclidean_distance: 0.7209
Epoch 31/350
152/152 [==============================] - 0s 798us/step - loss: 0.4655 - accuracy: 0.5607 - mae: 0.4655 - pearson_correlation: 0.1094 - euclidean_distance: 0.7102
Epoch 32/350
152/152 [==============================] - 0s 801us/step - loss: 0.4582 - accuracy: 0.5567 - mae: 0.4582 - pearson_correlation: 0.0966 - euclidean_distance: 0.7008
Epoch 33/350
152/152 [==============================] - 0s 798us/step - loss: 0.4516 - accuracy: 0.5708 - mae: 0.4516 - pearson_correlation: 0.1043 - euclidean_distance: 0.6918
Epoch 34/350
152/152 [==============================] - 0s 814us/step - loss: 0.4438 - accuracy: 0.5849 - mae: 0.4438 - pearson_correlation: 0.1101 - euclidean_distance: 0.6802
Epoch 35/350
152/152 [==============================] - 0s 808us/step - loss: 0.4352 - accuracy: 0.5933 - mae: 0.4352 - pearson_correlation: 0.1160 - euclidean_distance: 0.6690
Epoch 36/350
152/152 [==============================] - 0s 803us/step - loss: 0.4297 - accuracy: 0.5854 - mae: 0.4297 - pearson_correlation: 0.1277 - euclidean_distance: 0.6606
Epoch 37/350
152/152 [==============================] - 0s 805us/step - loss: 0.4226 - accuracy: 0.5787 - mae: 0.4226 - pearson_correlation: 0.1186 - euclidean_distance: 0.6512
Epoch 38/350
152/152 [==============================] - 0s 801us/step - loss: 0.4151 - accuracy: 0.5981 - mae: 0.4151 - pearson_correlation: 0.1325 - euclidean_distance: 0.6401
Epoch 39/350
152/152 [==============================] - 0s 798us/step - loss: 0.4076 - accuracy: 0.6056 - mae: 0.4076 - pearson_correlation: 0.1496 - euclidean_distance: 0.6283
Epoch 40/350
152/152 [==============================] - 0s 807us/step - loss: 0.3990 - accuracy: 0.6079 - mae: 0.3990 - pearson_correlation: 0.1540 - euclidean_distance: 0.6165
Epoch 41/350
152/152 [==============================] - 0s 803us/step - loss: 0.3932 - accuracy: 0.6281 - mae: 0.3932 - pearson_correlation: 0.1576 - euclidean_distance: 0.6080
Epoch 42/350
152/152 [==============================] - 0s 807us/step - loss: 0.3876 - accuracy: 0.6378 - mae: 0.3876 - pearson_correlation: 0.1717 - euclidean_distance: 0.5989
Epoch 43/350
152/152 [==============================] - 0s 807us/step - loss: 0.3797 - accuracy: 0.6409 - mae: 0.3797 - pearson_correlation: 0.1904 - euclidean_distance: 0.5877
Epoch 44/350
152/152 [==============================] - 0s 801us/step - loss: 0.3736 - accuracy: 0.6599 - mae: 0.3736 - pearson_correlation: 0.1982 - euclidean_distance: 0.5779
Epoch 45/350
152/152 [==============================] - 0s 801us/step - loss: 0.3663 - accuracy: 0.6652 - mae: 0.3663 - pearson_correlation: 0.2019 - euclidean_distance: 0.5675
Epoch 46/350
152/152 [==============================] - 0s 805us/step - loss: 0.3586 - accuracy: 0.6824 - mae: 0.3586 - pearson_correlation: 0.2189 - euclidean_distance: 0.5553
Epoch 47/350
152/152 [==============================] - 0s 791us/step - loss: 0.3544 - accuracy: 0.6833 - mae: 0.3544 - pearson_correlation: 0.2211 - euclidean_distance: 0.5486
Epoch 48/350
152/152 [==============================] - 0s 796us/step - loss: 0.3460 - accuracy: 0.7031 - mae: 0.3460 - pearson_correlation: 0.2365 - euclidean_distance: 0.5359
Epoch 49/350
152/152 [==============================] - 0s 796us/step - loss: 0.3408 - accuracy: 0.7120 - mae: 0.3408 - pearson_correlation: 0.2506 - euclidean_distance: 0.5274
Epoch 50/350
152/152 [==============================] - 0s 823us/step - loss: 0.3346 - accuracy: 0.7212 - mae: 0.3346 - pearson_correlation: 0.2535 - euclidean_distance: 0.5182
Epoch 51/350
152/152 [==============================] - 0s 870us/step - loss: 0.3266 - accuracy: 0.7322 - mae: 0.3266 - pearson_correlation: 0.2762 - euclidean_distance: 0.5063
Epoch 52/350
152/152 [==============================] - 0s 861us/step - loss: 0.3213 - accuracy: 0.7437 - mae: 0.3213 - pearson_correlation: 0.2850 - euclidean_distance: 0.4979
Epoch 53/350
152/152 [==============================] - 0s 922us/step - loss: 0.3146 - accuracy: 0.7658 - mae: 0.3146 - pearson_correlation: 0.3064 - euclidean_distance: 0.4861
Epoch 54/350
152/152 [==============================] - 0s 920us/step - loss: 0.3089 - accuracy: 0.7750 - mae: 0.3089 - pearson_correlation: 0.3151 - euclidean_distance: 0.4777
Epoch 55/350
152/152 [==============================] - 0s 819us/step - loss: 0.3024 - accuracy: 0.7883 - mae: 0.3024 - pearson_correlation: 0.3149 - euclidean_distance: 0.4679
Epoch 56/350
152/152 [==============================] - 0s 805us/step - loss: 0.2943 - accuracy: 0.8024 - mae: 0.2943 - pearson_correlation: 0.3373 - euclidean_distance: 0.4561
Epoch 57/350
152/152 [==============================] - 0s 807us/step - loss: 0.2906 - accuracy: 0.8046 - mae: 0.2906 - pearson_correlation: 0.3326 - euclidean_distance: 0.4494
Epoch 58/350
152/152 [==============================] - 0s 800us/step - loss: 0.2844 - accuracy: 0.8121 - mae: 0.2844 - pearson_correlation: 0.3527 - euclidean_distance: 0.4406
Epoch 59/350
152/152 [==============================] - 0s 809us/step - loss: 0.2794 - accuracy: 0.8200 - mae: 0.2794 - pearson_correlation: 0.3655 - euclidean_distance: 0.4323
Epoch 60/350
152/152 [==============================] - 0s 799us/step - loss: 0.2719 - accuracy: 0.8324 - mae: 0.2719 - pearson_correlation: 0.3783 - euclidean_distance: 0.4221
Epoch 61/350
152/152 [==============================] - 0s 794us/step - loss: 0.2684 - accuracy: 0.8319 - mae: 0.2684 - pearson_correlation: 0.3839 - euclidean_distance: 0.4158
Epoch 62/350
152/152 [==============================] - 0s 802us/step - loss: 0.2648 - accuracy: 0.8469 - mae: 0.2648 - pearson_correlation: 0.3975 - euclidean_distance: 0.4105
Epoch 63/350
152/152 [==============================] - 0s 795us/step - loss: 0.2603 - accuracy: 0.8478 - mae: 0.2603 - pearson_correlation: 0.4026 - euclidean_distance: 0.4028
Epoch 64/350
152/152 [==============================] - 0s 794us/step - loss: 0.2573 - accuracy: 0.8447 - mae: 0.2573 - pearson_correlation: 0.4001 - euclidean_distance: 0.3993
Epoch 65/350
152/152 [==============================] - 0s 793us/step - loss: 0.2521 - accuracy: 0.8597 - mae: 0.2521 - pearson_correlation: 0.4204 - euclidean_distance: 0.3913
Epoch 66/350
152/152 [==============================] - 0s 799us/step - loss: 0.2458 - accuracy: 0.8580 - mae: 0.2458 - pearson_correlation: 0.4240 - euclidean_distance: 0.3818
Epoch 67/350
152/152 [==============================] - 0s 800us/step - loss: 0.2428 - accuracy: 0.8681 - mae: 0.2428 - pearson_correlation: 0.4290 - euclidean_distance: 0.3781
Epoch 68/350
152/152 [==============================] - 0s 799us/step - loss: 0.2380 - accuracy: 0.8708 - mae: 0.2380 - pearson_correlation: 0.4389 - euclidean_distance: 0.3698
Epoch 69/350
152/152 [==============================] - 0s 799us/step - loss: 0.2347 - accuracy: 0.8747 - mae: 0.2347 - pearson_correlation: 0.4440 - euclidean_distance: 0.3649
Epoch 70/350
152/152 [==============================] - 0s 800us/step - loss: 0.2327 - accuracy: 0.8734 - mae: 0.2327 - pearson_correlation: 0.4490 - euclidean_distance: 0.3625
Epoch 71/350
152/152 [==============================] - 0s 801us/step - loss: 0.2259 - accuracy: 0.8765 - mae: 0.2259 - pearson_correlation: 0.4584 - euclidean_distance: 0.3528
Epoch 72/350
152/152 [==============================] - 0s 800us/step - loss: 0.2255 - accuracy: 0.8805 - mae: 0.2255 - pearson_correlation: 0.4601 - euclidean_distance: 0.3512
Epoch 73/350
152/152 [==============================] - 0s 796us/step - loss: 0.2200 - accuracy: 0.8791 - mae: 0.2200 - pearson_correlation: 0.4730 - euclidean_distance: 0.3439
Epoch 74/350
152/152 [==============================] - 0s 800us/step - loss: 0.2169 - accuracy: 0.8853 - mae: 0.2169 - pearson_correlation: 0.4755 - euclidean_distance: 0.3389
Epoch 75/350
152/152 [==============================] - 0s 804us/step - loss: 0.2144 - accuracy: 0.8897 - mae: 0.2144 - pearson_correlation: 0.4846 - euclidean_distance: 0.3354
Epoch 76/350
152/152 [==============================] - 0s 799us/step - loss: 0.2104 - accuracy: 0.8915 - mae: 0.2104 - pearson_correlation: 0.4839 - euclidean_distance: 0.3299
Epoch 77/350
152/152 [==============================] - 0s 794us/step - loss: 0.2080 - accuracy: 0.8919 - mae: 0.2080 - pearson_correlation: 0.4945 - euclidean_distance: 0.3257
Epoch 78/350
152/152 [==============================] - 0s 805us/step - loss: 0.2040 - accuracy: 0.8871 - mae: 0.2040 - pearson_correlation: 0.4957 - euclidean_distance: 0.3195
Epoch 79/350
152/152 [==============================] - 0s 801us/step - loss: 0.2023 - accuracy: 0.8972 - mae: 0.2023 - pearson_correlation: 0.4990 - euclidean_distance: 0.3176
Epoch 80/350
152/152 [==============================] - 0s 794us/step - loss: 0.1987 - accuracy: 0.8977 - mae: 0.1987 - pearson_correlation: 0.5031 - euclidean_distance: 0.3121
Epoch 81/350
152/152 [==============================] - 0s 791us/step - loss: 0.1959 - accuracy: 0.8977 - mae: 0.1959 - pearson_correlation: 0.5104 - euclidean_distance: 0.3072
Epoch 82/350
152/152 [==============================] - 0s 824us/step - loss: 0.1958 - accuracy: 0.9030 - mae: 0.1958 - pearson_correlation: 0.5073 - euclidean_distance: 0.3079
Epoch 83/350
152/152 [==============================] - 0s 806us/step - loss: 0.1913 - accuracy: 0.9021 - mae: 0.1913 - pearson_correlation: 0.5235 - euclidean_distance: 0.3003
Epoch 84/350
152/152 [==============================] - 0s 797us/step - loss: 0.1882 - accuracy: 0.8994 - mae: 0.1882 - pearson_correlation: 0.5217 - euclidean_distance: 0.2965
Epoch 85/350
152/152 [==============================] - 0s 800us/step - loss: 0.1864 - accuracy: 0.9007 - mae: 0.1864 - pearson_correlation: 0.5279 - euclidean_distance: 0.2933
Epoch 86/350
152/152 [==============================] - 0s 802us/step - loss: 0.1826 - accuracy: 0.9069 - mae: 0.1826 - pearson_correlation: 0.5300 - euclidean_distance: 0.2873
Epoch 87/350
152/152 [==============================] - 0s 797us/step - loss: 0.1816 - accuracy: 0.9091 - mae: 0.1816 - pearson_correlation: 0.5406 - euclidean_distance: 0.2863
Epoch 88/350
152/152 [==============================] - 0s 803us/step - loss: 0.1766 - accuracy: 0.9127 - mae: 0.1766 - pearson_correlation: 0.5433 - euclidean_distance: 0.2795
Epoch 89/350
152/152 [==============================] - 0s 797us/step - loss: 0.1755 - accuracy: 0.9166 - mae: 0.1755 - pearson_correlation: 0.5416 - euclidean_distance: 0.2768
Epoch 90/350
152/152 [==============================] - 0s 797us/step - loss: 0.1777 - accuracy: 0.9166 - mae: 0.1777 - pearson_correlation: 0.5387 - euclidean_distance: 0.2808
Epoch 91/350
152/152 [==============================] - 0s 794us/step - loss: 0.1728 - accuracy: 0.9105 - mae: 0.1728 - pearson_correlation: 0.5520 - euclidean_distance: 0.2732
Epoch 92/350
152/152 [==============================] - 0s 803us/step - loss: 0.1703 - accuracy: 0.9175 - mae: 0.1703 - pearson_correlation: 0.5493 - euclidean_distance: 0.2699
Epoch 93/350
152/152 [==============================] - 0s 800us/step - loss: 0.1678 - accuracy: 0.9210 - mae: 0.1678 - pearson_correlation: 0.5566 - euclidean_distance: 0.2658
Epoch 94/350
152/152 [==============================] - 0s 810us/step - loss: 0.1644 - accuracy: 0.9162 - mae: 0.1644 - pearson_correlation: 0.5640 - euclidean_distance: 0.2593
Epoch 95/350
152/152 [==============================] - 0s 799us/step - loss: 0.1636 - accuracy: 0.9193 - mae: 0.1636 - pearson_correlation: 0.5660 - euclidean_distance: 0.2589
Epoch 96/350
152/152 [==============================] - 0s 801us/step - loss: 0.1644 - accuracy: 0.9193 - mae: 0.1644 - pearson_correlation: 0.5632 - euclidean_distance: 0.2596
Epoch 97/350
152/152 [==============================] - 0s 796us/step - loss: 0.1618 - accuracy: 0.9263 - mae: 0.1618 - pearson_correlation: 0.5736 - euclidean_distance: 0.2563
Epoch 98/350
152/152 [==============================] - 0s 797us/step - loss: 0.1585 - accuracy: 0.9250 - mae: 0.1585 - pearson_correlation: 0.5750 - euclidean_distance: 0.2505
Epoch 99/350
152/152 [==============================] - 0s 799us/step - loss: 0.1600 - accuracy: 0.9210 - mae: 0.1600 - pearson_correlation: 0.5693 - euclidean_distance: 0.2529
Epoch 100/350
152/152 [==============================] - 0s 803us/step - loss: 0.1551 - accuracy: 0.9321 - mae: 0.1551 - pearson_correlation: 0.5852 - euclidean_distance: 0.2459
Epoch 101/350
152/152 [==============================] - 0s 804us/step - loss: 0.1553 - accuracy: 0.9219 - mae: 0.1553 - pearson_correlation: 0.5831 - euclidean_distance: 0.2463
Epoch 102/350
152/152 [==============================] - 0s 794us/step - loss: 0.1510 - accuracy: 0.9281 - mae: 0.1510 - pearson_correlation: 0.5961 - euclidean_distance: 0.2395
Epoch 103/350
152/152 [==============================] - 0s 800us/step - loss: 0.1525 - accuracy: 0.9268 - mae: 0.1525 - pearson_correlation: 0.5853 - euclidean_distance: 0.2422
Epoch 104/350
152/152 [==============================] - 0s 801us/step - loss: 0.1519 - accuracy: 0.9285 - mae: 0.1519 - pearson_correlation: 0.5859 - euclidean_distance: 0.2413
Epoch 105/350
152/152 [==============================] - 0s 799us/step - loss: 0.1498 - accuracy: 0.9352 - mae: 0.1498 - pearson_correlation: 0.6038 - euclidean_distance: 0.2378
Epoch 106/350
152/152 [==============================] - 0s 801us/step - loss: 0.1471 - accuracy: 0.9321 - mae: 0.1471 - pearson_correlation: 0.6041 - euclidean_distance: 0.2342
Epoch 107/350
152/152 [==============================] - 0s 799us/step - loss: 0.1477 - accuracy: 0.9285 - mae: 0.1477 - pearson_correlation: 0.5987 - euclidean_distance: 0.2351
Epoch 108/350
152/152 [==============================] - 0s 802us/step - loss: 0.1470 - accuracy: 0.9290 - mae: 0.1470 - pearson_correlation: 0.6037 - euclidean_distance: 0.2328
Epoch 109/350
152/152 [==============================] - 0s 792us/step - loss: 0.1443 - accuracy: 0.9321 - mae: 0.1443 - pearson_correlation: 0.6063 - euclidean_distance: 0.2295
Epoch 110/350
152/152 [==============================] - 0s 797us/step - loss: 0.1426 - accuracy: 0.9360 - mae: 0.1426 - pearson_correlation: 0.6169 - euclidean_distance: 0.2266
Epoch 111/350
152/152 [==============================] - 0s 796us/step - loss: 0.1417 - accuracy: 0.9334 - mae: 0.1417 - pearson_correlation: 0.6164 - euclidean_distance: 0.2248
Epoch 112/350
152/152 [==============================] - 0s 794us/step - loss: 0.1400 - accuracy: 0.9365 - mae: 0.1400 - pearson_correlation: 0.6151 - euclidean_distance: 0.2223
Epoch 113/350
152/152 [==============================] - 0s 804us/step - loss: 0.1387 - accuracy: 0.9396 - mae: 0.1387 - pearson_correlation: 0.6202 - euclidean_distance: 0.2205
Epoch 114/350
152/152 [==============================] - 0s 798us/step - loss: 0.1372 - accuracy: 0.9352 - mae: 0.1372 - pearson_correlation: 0.6255 - euclidean_distance: 0.2183
Epoch 115/350
152/152 [==============================] - 0s 801us/step - loss: 0.1384 - accuracy: 0.9356 - mae: 0.1384 - pearson_correlation: 0.6210 - euclidean_distance: 0.2196
Epoch 116/350
152/152 [==============================] - 0s 796us/step - loss: 0.1360 - accuracy: 0.9369 - mae: 0.1360 - pearson_correlation: 0.6301 - euclidean_distance: 0.2162
Epoch 117/350
152/152 [==============================] - 0s 791us/step - loss: 0.1358 - accuracy: 0.9396 - mae: 0.1358 - pearson_correlation: 0.6313 - euclidean_distance: 0.2163
Epoch 118/350
152/152 [==============================] - 0s 794us/step - loss: 0.1361 - accuracy: 0.9422 - mae: 0.1361 - pearson_correlation: 0.6357 - euclidean_distance: 0.2164
Epoch 119/350
152/152 [==============================] - 0s 797us/step - loss: 0.1348 - accuracy: 0.9360 - mae: 0.1348 - pearson_correlation: 0.6376 - euclidean_distance: 0.2145
Epoch 120/350
152/152 [==============================] - 0s 802us/step - loss: 0.1332 - accuracy: 0.9418 - mae: 0.1332 - pearson_correlation: 0.6388 - euclidean_distance: 0.2120
Epoch 121/350
152/152 [==============================] - 0s 799us/step - loss: 0.1302 - accuracy: 0.9378 - mae: 0.1302 - pearson_correlation: 0.6509 - euclidean_distance: 0.2072
Epoch 122/350
152/152 [==============================] - 0s 800us/step - loss: 0.1302 - accuracy: 0.9409 - mae: 0.1302 - pearson_correlation: 0.6435 - euclidean_distance: 0.2078
Epoch 123/350
152/152 [==============================] - 0s 797us/step - loss: 0.1295 - accuracy: 0.9422 - mae: 0.1295 - pearson_correlation: 0.6519 - euclidean_distance: 0.2063
Epoch 124/350
152/152 [==============================] - 0s 806us/step - loss: 0.1283 - accuracy: 0.9427 - mae: 0.1283 - pearson_correlation: 0.6456 - euclidean_distance: 0.2058
Epoch 125/350
152/152 [==============================] - 0s 800us/step - loss: 0.1278 - accuracy: 0.9493 - mae: 0.1278 - pearson_correlation: 0.6481 - euclidean_distance: 0.2045
Epoch 126/350
152/152 [==============================] - 0s 798us/step - loss: 0.1262 - accuracy: 0.9440 - mae: 0.1262 - pearson_correlation: 0.6592 - euclidean_distance: 0.2015
Epoch 127/350
152/152 [==============================] - 0s 799us/step - loss: 0.1271 - accuracy: 0.9427 - mae: 0.1271 - pearson_correlation: 0.6557 - euclidean_distance: 0.2029
Epoch 128/350
152/152 [==============================] - 0s 798us/step - loss: 0.1250 - accuracy: 0.9431 - mae: 0.1250 - pearson_correlation: 0.6611 - euclidean_distance: 0.1991
Epoch 129/350
152/152 [==============================] - 0s 794us/step - loss: 0.1261 - accuracy: 0.9453 - mae: 0.1261 - pearson_correlation: 0.6591 - euclidean_distance: 0.2013
Epoch 130/350
152/152 [==============================] - 0s 797us/step - loss: 0.1258 - accuracy: 0.9431 - mae: 0.1258 - pearson_correlation: 0.6633 - euclidean_distance: 0.2003
Epoch 131/350
152/152 [==============================] - 0s 798us/step - loss: 0.1241 - accuracy: 0.9457 - mae: 0.1241 - pearson_correlation: 0.6646 - euclidean_distance: 0.1981
Epoch 132/350
152/152 [==============================] - 0s 802us/step - loss: 0.1234 - accuracy: 0.9466 - mae: 0.1234 - pearson_correlation: 0.6708 - euclidean_distance: 0.1968
Epoch 133/350
152/152 [==============================] - 0s 801us/step - loss: 0.1219 - accuracy: 0.9466 - mae: 0.1219 - pearson_correlation: 0.6731 - euclidean_distance: 0.1946
Epoch 134/350
152/152 [==============================] - 0s 798us/step - loss: 0.1196 - accuracy: 0.9466 - mae: 0.1196 - pearson_correlation: 0.6763 - euclidean_distance: 0.1907
Epoch 135/350
152/152 [==============================] - 0s 800us/step - loss: 0.1206 - accuracy: 0.9488 - mae: 0.1206 - pearson_correlation: 0.6733 - euclidean_distance: 0.1922
Epoch 136/350
152/152 [==============================] - 0s 795us/step - loss: 0.1184 - accuracy: 0.9462 - mae: 0.1184 - pearson_correlation: 0.6837 - euclidean_distance: 0.1894
Epoch 137/350
152/152 [==============================] - 0s 796us/step - loss: 0.1156 - accuracy: 0.9493 - mae: 0.1156 - pearson_correlation: 0.6928 - euclidean_distance: 0.1843
Epoch 138/350
152/152 [==============================] - 0s 801us/step - loss: 0.1178 - accuracy: 0.9479 - mae: 0.1178 - pearson_correlation: 0.6830 - euclidean_distance: 0.1886
Epoch 139/350
152/152 [==============================] - 0s 797us/step - loss: 0.1178 - accuracy: 0.9475 - mae: 0.1178 - pearson_correlation: 0.6800 - euclidean_distance: 0.1893
Epoch 140/350
152/152 [==============================] - 0s 803us/step - loss: 0.1153 - accuracy: 0.9462 - mae: 0.1153 - pearson_correlation: 0.6881 - euclidean_distance: 0.1846
Epoch 141/350
152/152 [==============================] - 0s 804us/step - loss: 0.1145 - accuracy: 0.9453 - mae: 0.1145 - pearson_correlation: 0.6917 - euclidean_distance: 0.1837
Epoch 142/350
152/152 [==============================] - 0s 801us/step - loss: 0.1143 - accuracy: 0.9479 - mae: 0.1143 - pearson_correlation: 0.6839 - euclidean_distance: 0.1837
Epoch 143/350
152/152 [==============================] - 0s 796us/step - loss: 0.1141 - accuracy: 0.9484 - mae: 0.1141 - pearson_correlation: 0.6960 - euclidean_distance: 0.1833
Epoch 144/350
152/152 [==============================] - 0s 799us/step - loss: 0.1132 - accuracy: 0.9510 - mae: 0.1132 - pearson_correlation: 0.6972 - euclidean_distance: 0.1812
Epoch 145/350
152/152 [==============================] - 0s 797us/step - loss: 0.1126 - accuracy: 0.9471 - mae: 0.1126 - pearson_correlation: 0.6946 - euclidean_distance: 0.1802
Epoch 146/350
152/152 [==============================] - 0s 799us/step - loss: 0.1148 - accuracy: 0.9471 - mae: 0.1148 - pearson_correlation: 0.6911 - euclidean_distance: 0.1842
Epoch 147/350
152/152 [==============================] - 0s 801us/step - loss: 0.1109 - accuracy: 0.9479 - mae: 0.1109 - pearson_correlation: 0.7016 - euclidean_distance: 0.1775
Epoch 148/350
152/152 [==============================] - 0s 795us/step - loss: 0.1106 - accuracy: 0.9502 - mae: 0.1106 - pearson_correlation: 0.6986 - euclidean_distance: 0.1773
Epoch 149/350
152/152 [==============================] - 0s 801us/step - loss: 0.1088 - accuracy: 0.9484 - mae: 0.1088 - pearson_correlation: 0.7102 - euclidean_distance: 0.1744
Epoch 150/350
152/152 [==============================] - 0s 798us/step - loss: 0.1101 - accuracy: 0.9471 - mae: 0.1101 - pearson_correlation: 0.6993 - euclidean_distance: 0.1765
Epoch 151/350
152/152 [==============================] - 0s 802us/step - loss: 0.1083 - accuracy: 0.9479 - mae: 0.1083 - pearson_correlation: 0.7061 - euclidean_distance: 0.1737
Epoch 152/350
152/152 [==============================] - 0s 799us/step - loss: 0.1076 - accuracy: 0.9524 - mae: 0.1076 - pearson_correlation: 0.7133 - euclidean_distance: 0.1724
Epoch 153/350
152/152 [==============================] - 0s 802us/step - loss: 0.1088 - accuracy: 0.9497 - mae: 0.1088 - pearson_correlation: 0.7065 - euclidean_distance: 0.1747
Epoch 154/350
152/152 [==============================] - 0s 796us/step - loss: 0.1082 - accuracy: 0.9510 - mae: 0.1082 - pearson_correlation: 0.7103 - euclidean_distance: 0.1738
Epoch 155/350
152/152 [==============================] - 0s 793us/step - loss: 0.1051 - accuracy: 0.9528 - mae: 0.1051 - pearson_correlation: 0.7195 - euclidean_distance: 0.1688
Epoch 156/350
152/152 [==============================] - 0s 802us/step - loss: 0.1056 - accuracy: 0.9515 - mae: 0.1056 - pearson_correlation: 0.7203 - euclidean_distance: 0.1697
Epoch 157/350
152/152 [==============================] - 0s 805us/step - loss: 0.1054 - accuracy: 0.9510 - mae: 0.1054 - pearson_correlation: 0.7179 - euclidean_distance: 0.1690
Epoch 158/350
152/152 [==============================] - 0s 799us/step - loss: 0.1050 - accuracy: 0.9515 - mae: 0.1050 - pearson_correlation: 0.7120 - euclidean_distance: 0.1689
Epoch 159/350
152/152 [==============================] - 0s 804us/step - loss: 0.1062 - accuracy: 0.9515 - mae: 0.1062 - pearson_correlation: 0.7146 - euclidean_distance: 0.1707
Epoch 160/350
152/152 [==============================] - 0s 806us/step - loss: 0.1030 - accuracy: 0.9528 - mae: 0.1030 - pearson_correlation: 0.7250 - euclidean_distance: 0.1652
Epoch 161/350
152/152 [==============================] - 0s 792us/step - loss: 0.1025 - accuracy: 0.9532 - mae: 0.1025 - pearson_correlation: 0.7294 - euclidean_distance: 0.1656
Epoch 162/350
152/152 [==============================] - 0s 793us/step - loss: 0.1047 - accuracy: 0.9524 - mae: 0.1047 - pearson_correlation: 0.7201 - euclidean_distance: 0.1677
Epoch 163/350
152/152 [==============================] - 0s 818us/step - loss: 0.1038 - accuracy: 0.9532 - mae: 0.1038 - pearson_correlation: 0.7208 - euclidean_distance: 0.1669
Epoch 164/350
152/152 [==============================] - 0s 804us/step - loss: 0.1037 - accuracy: 0.9532 - mae: 0.1037 - pearson_correlation: 0.7209 - euclidean_distance: 0.1668
Epoch 165/350
152/152 [==============================] - 0s 800us/step - loss: 0.1014 - accuracy: 0.9506 - mae: 0.1014 - pearson_correlation: 0.7270 - euclidean_distance: 0.1631
Epoch 166/350
152/152 [==============================] - 0s 800us/step - loss: 0.1034 - accuracy: 0.9528 - mae: 0.1034 - pearson_correlation: 0.7252 - euclidean_distance: 0.1664
Epoch 167/350
152/152 [==============================] - 0s 802us/step - loss: 0.1019 - accuracy: 0.9532 - mae: 0.1019 - pearson_correlation: 0.7254 - euclidean_distance: 0.1640
Epoch 168/350
152/152 [==============================] - 0s 800us/step - loss: 0.1023 - accuracy: 0.9528 - mae: 0.1023 - pearson_correlation: 0.7235 - euclidean_distance: 0.1646
Epoch 169/350
152/152 [==============================] - 0s 802us/step - loss: 0.1029 - accuracy: 0.9532 - mae: 0.1029 - pearson_correlation: 0.7233 - euclidean_distance: 0.1660
Epoch 170/350
152/152 [==============================] - 0s 799us/step - loss: 0.0994 - accuracy: 0.9546 - mae: 0.0994 - pearson_correlation: 0.7334 - euclidean_distance: 0.1603
Epoch 171/350
152/152 [==============================] - 0s 805us/step - loss: 0.1001 - accuracy: 0.9550 - mae: 0.1001 - pearson_correlation: 0.7331 - euclidean_distance: 0.1614
Epoch 172/350
152/152 [==============================] - 0s 799us/step - loss: 0.0980 - accuracy: 0.9515 - mae: 0.0980 - pearson_correlation: 0.7360 - euclidean_distance: 0.1581
Epoch 173/350
152/152 [==============================] - 0s 793us/step - loss: 0.0982 - accuracy: 0.9519 - mae: 0.0982 - pearson_correlation: 0.7425 - euclidean_distance: 0.1578
Epoch 174/350
152/152 [==============================] - 0s 801us/step - loss: 0.0983 - accuracy: 0.9537 - mae: 0.0983 - pearson_correlation: 0.7360 - euclidean_distance: 0.1581
Epoch 175/350
152/152 [==============================] - 0s 795us/step - loss: 0.0993 - accuracy: 0.9528 - mae: 0.0993 - pearson_correlation: 0.7332 - euclidean_distance: 0.1600
Epoch 176/350
152/152 [==============================] - 0s 805us/step - loss: 0.1002 - accuracy: 0.9515 - mae: 0.1002 - pearson_correlation: 0.7301 - euclidean_distance: 0.1618
Epoch 177/350
152/152 [==============================] - 0s 794us/step - loss: 0.0982 - accuracy: 0.9537 - mae: 0.0982 - pearson_correlation: 0.7404 - euclidean_distance: 0.1582
Epoch 178/350
152/152 [==============================] - 0s 797us/step - loss: 0.0967 - accuracy: 0.9541 - mae: 0.0967 - pearson_correlation: 0.7451 - euclidean_distance: 0.1563
Epoch 179/350
152/152 [==============================] - 0s 813us/step - loss: 0.0973 - accuracy: 0.9546 - mae: 0.0973 - pearson_correlation: 0.7418 - euclidean_distance: 0.1571
Epoch 180/350
152/152 [==============================] - 0s 864us/step - loss: 0.0957 - accuracy: 0.9524 - mae: 0.0957 - pearson_correlation: 0.7417 - euclidean_distance: 0.1552
Epoch 181/350
152/152 [==============================] - 0s 879us/step - loss: 0.0978 - accuracy: 0.9532 - mae: 0.0978 - pearson_correlation: 0.7404 - euclidean_distance: 0.1576
Epoch 182/350
152/152 [==============================] - 0s 924us/step - loss: 0.0965 - accuracy: 0.9554 - mae: 0.0965 - pearson_correlation: 0.7392 - euclidean_distance: 0.1559
Epoch 183/350
152/152 [==============================] - 0s 938us/step - loss: 0.0967 - accuracy: 0.9528 - mae: 0.0967 - pearson_correlation: 0.7452 - euclidean_distance: 0.1561
Epoch 184/350
152/152 [==============================] - 0s 810us/step - loss: 0.0958 - accuracy: 0.9550 - mae: 0.0958 - pearson_correlation: 0.7500 - euclidean_distance: 0.1550
Epoch 185/350
152/152 [==============================] - 0s 805us/step - loss: 0.0951 - accuracy: 0.9537 - mae: 0.0951 - pearson_correlation: 0.7435 - euclidean_distance: 0.1540
Epoch 186/350
152/152 [==============================] - 0s 805us/step - loss: 0.0970 - accuracy: 0.9532 - mae: 0.0970 - pearson_correlation: 0.7413 - euclidean_distance: 0.1563
Epoch 187/350
152/152 [==============================] - 0s 807us/step - loss: 0.0935 - accuracy: 0.9519 - mae: 0.0935 - pearson_correlation: 0.7451 - euclidean_distance: 0.1513
Epoch 188/350
152/152 [==============================] - 0s 803us/step - loss: 0.0962 - accuracy: 0.9559 - mae: 0.0962 - pearson_correlation: 0.7452 - euclidean_distance: 0.1553
Epoch 189/350
152/152 [==============================] - 0s 802us/step - loss: 0.0927 - accuracy: 0.9546 - mae: 0.0927 - pearson_correlation: 0.7502 - euclidean_distance: 0.1499
Epoch 190/350
152/152 [==============================] - 0s 800us/step - loss: 0.0952 - accuracy: 0.9546 - mae: 0.0952 - pearson_correlation: 0.7469 - euclidean_distance: 0.1540
Epoch 191/350
152/152 [==============================] - 0s 801us/step - loss: 0.0939 - accuracy: 0.9537 - mae: 0.0939 - pearson_correlation: 0.7476 - euclidean_distance: 0.1524
Epoch 192/350
152/152 [==============================] - 0s 794us/step - loss: 0.0946 - accuracy: 0.9541 - mae: 0.0946 - pearson_correlation: 0.7451 - euclidean_distance: 0.1534
Epoch 193/350
152/152 [==============================] - 0s 795us/step - loss: 0.0929 - accuracy: 0.9541 - mae: 0.0929 - pearson_correlation: 0.7447 - euclidean_distance: 0.1501
Epoch 194/350
152/152 [==============================] - 0s 800us/step - loss: 0.0932 - accuracy: 0.9550 - mae: 0.0932 - pearson_correlation: 0.7494 - euclidean_distance: 0.1507
Epoch 195/350
152/152 [==============================] - 0s 806us/step - loss: 0.0919 - accuracy: 0.9541 - mae: 0.0919 - pearson_correlation: 0.7564 - euclidean_distance: 0.1491
Epoch 196/350
152/152 [==============================] - 0s 803us/step - loss: 0.0922 - accuracy: 0.9532 - mae: 0.0922 - pearson_correlation: 0.7573 - euclidean_distance: 0.1488
Epoch 197/350
152/152 [==============================] - 0s 803us/step - loss: 0.0920 - accuracy: 0.9546 - mae: 0.0920 - pearson_correlation: 0.7561 - euclidean_distance: 0.1491
Epoch 198/350
152/152 [==============================] - 0s 802us/step - loss: 0.0915 - accuracy: 0.9537 - mae: 0.0915 - pearson_correlation: 0.7572 - euclidean_distance: 0.1486
Epoch 199/350
152/152 [==============================] - 0s 799us/step - loss: 0.0925 - accuracy: 0.9546 - mae: 0.0925 - pearson_correlation: 0.7526 - euclidean_distance: 0.1498
Epoch 200/350
152/152 [==============================] - 0s 799us/step - loss: 0.0931 - accuracy: 0.9541 - mae: 0.0931 - pearson_correlation: 0.7499 - euclidean_distance: 0.1505
Epoch 201/350
152/152 [==============================] - 0s 802us/step - loss: 0.0912 - accuracy: 0.9554 - mae: 0.0912 - pearson_correlation: 0.7541 - euclidean_distance: 0.1478
Epoch 202/350
152/152 [==============================] - 0s 800us/step - loss: 0.0912 - accuracy: 0.9559 - mae: 0.0912 - pearson_correlation: 0.7582 - euclidean_distance: 0.1480
Epoch 203/350
152/152 [==============================] - 0s 800us/step - loss: 0.0920 - accuracy: 0.9554 - mae: 0.0920 - pearson_correlation: 0.7602 - euclidean_distance: 0.1489
Epoch 204/350
152/152 [==============================] - 0s 790us/step - loss: 0.0909 - accuracy: 0.9563 - mae: 0.0909 - pearson_correlation: 0.7605 - euclidean_distance: 0.1474
Epoch 205/350
152/152 [==============================] - 0s 796us/step - loss: 0.0896 - accuracy: 0.9554 - mae: 0.0896 - pearson_correlation: 0.7614 - euclidean_distance: 0.1452
Epoch 206/350
152/152 [==============================] - 0s 802us/step - loss: 0.0905 - accuracy: 0.9559 - mae: 0.0905 - pearson_correlation: 0.7551 - euclidean_distance: 0.1467
Epoch 207/350
152/152 [==============================] - 0s 796us/step - loss: 0.0918 - accuracy: 0.9546 - mae: 0.0918 - pearson_correlation: 0.7521 - euclidean_distance: 0.1490
Epoch 208/350
152/152 [==============================] - 0s 797us/step - loss: 0.0902 - accuracy: 0.9554 - mae: 0.0902 - pearson_correlation: 0.7595 - euclidean_distance: 0.1460
Epoch 209/350
152/152 [==============================] - 0s 801us/step - loss: 0.0887 - accuracy: 0.9550 - mae: 0.0887 - pearson_correlation: 0.7643 - euclidean_distance: 0.1435
Epoch 210/350
152/152 [==============================] - 0s 800us/step - loss: 0.0922 - accuracy: 0.9541 - mae: 0.0922 - pearson_correlation: 0.7511 - euclidean_distance: 0.1491
Epoch 211/350
152/152 [==============================] - 0s 801us/step - loss: 0.0860 - accuracy: 0.9554 - mae: 0.0860 - pearson_correlation: 0.7727 - euclidean_distance: 0.1392
Epoch 212/350
152/152 [==============================] - 0s 796us/step - loss: 0.0886 - accuracy: 0.9559 - mae: 0.0886 - pearson_correlation: 0.7615 - euclidean_distance: 0.1438
Epoch 213/350
152/152 [==============================] - 0s 795us/step - loss: 0.0910 - accuracy: 0.9554 - mae: 0.0910 - pearson_correlation: 0.7558 - euclidean_distance: 0.1470
Epoch 214/350
152/152 [==============================] - 0s 801us/step - loss: 0.0891 - accuracy: 0.9563 - mae: 0.0891 - pearson_correlation: 0.7657 - euclidean_distance: 0.1447
Epoch 215/350
152/152 [==============================] - 0s 805us/step - loss: 0.0900 - accuracy: 0.9554 - mae: 0.0900 - pearson_correlation: 0.7608 - euclidean_distance: 0.1457
Epoch 216/350
152/152 [==============================] - 0s 799us/step - loss: 0.0886 - accuracy: 0.9563 - mae: 0.0886 - pearson_correlation: 0.7651 - euclidean_distance: 0.1441
Epoch 217/350
152/152 [==============================] - 0s 801us/step - loss: 0.0892 - accuracy: 0.9554 - mae: 0.0892 - pearson_correlation: 0.7666 - euclidean_distance: 0.1446
Epoch 218/350
152/152 [==============================] - 0s 801us/step - loss: 0.0868 - accuracy: 0.9563 - mae: 0.0868 - pearson_correlation: 0.7692 - euclidean_distance: 0.1413
Epoch 219/350
152/152 [==============================] - 0s 798us/step - loss: 0.0889 - accuracy: 0.9559 - mae: 0.0889 - pearson_correlation: 0.7615 - euclidean_distance: 0.1437
Epoch 220/350
152/152 [==============================] - 0s 800us/step - loss: 0.0872 - accuracy: 0.9563 - mae: 0.0872 - pearson_correlation: 0.7736 - euclidean_distance: 0.1416
Epoch 221/350
152/152 [==============================] - 0s 799us/step - loss: 0.0888 - accuracy: 0.9563 - mae: 0.0888 - pearson_correlation: 0.7601 - euclidean_distance: 0.1438
Epoch 222/350
152/152 [==============================] - 0s 796us/step - loss: 0.0875 - accuracy: 0.9559 - mae: 0.0875 - pearson_correlation: 0.7680 - euclidean_distance: 0.1420
Epoch 223/350
152/152 [==============================] - 0s 798us/step - loss: 0.0871 - accuracy: 0.9563 - mae: 0.0871 - pearson_correlation: 0.7667 - euclidean_distance: 0.1410
Epoch 224/350
152/152 [==============================] - 0s 798us/step - loss: 0.0884 - accuracy: 0.9554 - mae: 0.0884 - pearson_correlation: 0.7681 - euclidean_distance: 0.1435
Epoch 225/350
152/152 [==============================] - 0s 828us/step - loss: 0.0886 - accuracy: 0.9563 - mae: 0.0886 - pearson_correlation: 0.7665 - euclidean_distance: 0.1441
Epoch 226/350
152/152 [==============================] - 0s 800us/step - loss: 0.0875 - accuracy: 0.9563 - mae: 0.0875 - pearson_correlation: 0.7646 - euclidean_distance: 0.1425
Epoch 227/350
152/152 [==============================] - 0s 793us/step - loss: 0.0851 - accuracy: 0.9554 - mae: 0.0851 - pearson_correlation: 0.7767 - euclidean_distance: 0.1384
Epoch 228/350
152/152 [==============================] - 0s 799us/step - loss: 0.0878 - accuracy: 0.9554 - mae: 0.0878 - pearson_correlation: 0.7692 - euclidean_distance: 0.1424
Epoch 229/350
152/152 [==============================] - 0s 800us/step - loss: 0.0831 - accuracy: 0.9563 - mae: 0.0831 - pearson_correlation: 0.7810 - euclidean_distance: 0.1350
Epoch 230/350
152/152 [==============================] - 0s 795us/step - loss: 0.0848 - accuracy: 0.9559 - mae: 0.0848 - pearson_correlation: 0.7752 - euclidean_distance: 0.1382
Epoch 231/350
152/152 [==============================] - 0s 795us/step - loss: 0.0869 - accuracy: 0.9554 - mae: 0.0869 - pearson_correlation: 0.7726 - euclidean_distance: 0.1403
Epoch 232/350
152/152 [==============================] - 0s 799us/step - loss: 0.0860 - accuracy: 0.9563 - mae: 0.0860 - pearson_correlation: 0.7732 - euclidean_distance: 0.1394
Epoch 233/350
152/152 [==============================] - 0s 799us/step - loss: 0.0869 - accuracy: 0.9559 - mae: 0.0869 - pearson_correlation: 0.7670 - euclidean_distance: 0.1407
Epoch 234/350
152/152 [==============================] - 0s 803us/step - loss: 0.0862 - accuracy: 0.9563 - mae: 0.0862 - pearson_correlation: 0.7708 - euclidean_distance: 0.1401
Epoch 235/350
152/152 [==============================] - 0s 800us/step - loss: 0.0833 - accuracy: 0.9563 - mae: 0.0833 - pearson_correlation: 0.7785 - euclidean_distance: 0.1355
Epoch 236/350
152/152 [==============================] - 0s 796us/step - loss: 0.0870 - accuracy: 0.9559 - mae: 0.0870 - pearson_correlation: 0.7687 - euclidean_distance: 0.1409
Epoch 237/350
152/152 [==============================] - 0s 797us/step - loss: 0.0866 - accuracy: 0.9563 - mae: 0.0866 - pearson_correlation: 0.7679 - euclidean_distance: 0.1402
Epoch 238/350
152/152 [==============================] - 0s 795us/step - loss: 0.0861 - accuracy: 0.9559 - mae: 0.0861 - pearson_correlation: 0.7712 - euclidean_distance: 0.1396
Epoch 239/350
152/152 [==============================] - 0s 795us/step - loss: 0.0854 - accuracy: 0.9559 - mae: 0.0854 - pearson_correlation: 0.7718 - euclidean_distance: 0.1387
Epoch 240/350
152/152 [==============================] - 0s 801us/step - loss: 0.0841 - accuracy: 0.9559 - mae: 0.0841 - pearson_correlation: 0.7753 - euclidean_distance: 0.1364
Epoch 241/350
152/152 [==============================] - 0s 821us/step - loss: 0.0840 - accuracy: 0.9563 - mae: 0.0840 - pearson_correlation: 0.7749 - euclidean_distance: 0.1366
Epoch 242/350
152/152 [==============================] - 0s 804us/step - loss: 0.0844 - accuracy: 0.9563 - mae: 0.0844 - pearson_correlation: 0.7756 - euclidean_distance: 0.1371
Epoch 243/350
152/152 [==============================] - 0s 793us/step - loss: 0.0855 - accuracy: 0.9559 - mae: 0.0855 - pearson_correlation: 0.7738 - euclidean_distance: 0.1384
Epoch 244/350
152/152 [==============================] - 0s 816us/step - loss: 0.0867 - accuracy: 0.9563 - mae: 0.0867 - pearson_correlation: 0.7662 - euclidean_distance: 0.1406
Epoch 245/350
152/152 [==============================] - 0s 807us/step - loss: 0.0852 - accuracy: 0.9563 - mae: 0.0852 - pearson_correlation: 0.7741 - euclidean_distance: 0.1387
Epoch 246/350
152/152 [==============================] - 0s 798us/step - loss: 0.0829 - accuracy: 0.9563 - mae: 0.0829 - pearson_correlation: 0.7821 - euclidean_distance: 0.1352
Epoch 247/350
152/152 [==============================] - 0s 801us/step - loss: 0.0847 - accuracy: 0.9563 - mae: 0.0847 - pearson_correlation: 0.7760 - euclidean_distance: 0.1375
Epoch 248/350
152/152 [==============================] - 0s 796us/step - loss: 0.0843 - accuracy: 0.9559 - mae: 0.0843 - pearson_correlation: 0.7749 - euclidean_distance: 0.1372
Epoch 249/350
152/152 [==============================] - 0s 800us/step - loss: 0.0843 - accuracy: 0.9563 - mae: 0.0843 - pearson_correlation: 0.7778 - euclidean_distance: 0.1366
Epoch 250/350
152/152 [==============================] - 0s 793us/step - loss: 0.0837 - accuracy: 0.9563 - mae: 0.0837 - pearson_correlation: 0.7770 - euclidean_distance: 0.1361
Epoch 251/350
152/152 [==============================] - 0s 800us/step - loss: 0.0813 - accuracy: 0.9563 - mae: 0.0813 - pearson_correlation: 0.7830 - euclidean_distance: 0.1324
Epoch 252/350
152/152 [==============================] - 0s 799us/step - loss: 0.0830 - accuracy: 0.9563 - mae: 0.0830 - pearson_correlation: 0.7826 - euclidean_distance: 0.1348
Epoch 253/350
152/152 [==============================] - 0s 796us/step - loss: 0.0859 - accuracy: 0.9563 - mae: 0.0859 - pearson_correlation: 0.7719 - euclidean_distance: 0.1393
Epoch 254/350
152/152 [==============================] - 0s 796us/step - loss: 0.0835 - accuracy: 0.9563 - mae: 0.0835 - pearson_correlation: 0.7748 - euclidean_distance: 0.1358
Epoch 255/350
152/152 [==============================] - 0s 797us/step - loss: 0.0815 - accuracy: 0.9563 - mae: 0.0815 - pearson_correlation: 0.7815 - euclidean_distance: 0.1331
Epoch 256/350
152/152 [==============================] - 0s 799us/step - loss: 0.0836 - accuracy: 0.9563 - mae: 0.0836 - pearson_correlation: 0.7752 - euclidean_distance: 0.1364
Epoch 257/350
152/152 [==============================] - 0s 802us/step - loss: 0.0822 - accuracy: 0.9563 - mae: 0.0822 - pearson_correlation: 0.7847 - euclidean_distance: 0.1333
Epoch 258/350
152/152 [==============================] - 0s 803us/step - loss: 0.0823 - accuracy: 0.9563 - mae: 0.0823 - pearson_correlation: 0.7796 - euclidean_distance: 0.1333
Epoch 259/350
152/152 [==============================] - 0s 803us/step - loss: 0.0829 - accuracy: 0.9563 - mae: 0.0829 - pearson_correlation: 0.7784 - euclidean_distance: 0.1350
Epoch 260/350
152/152 [==============================] - 0s 798us/step - loss: 0.0822 - accuracy: 0.9563 - mae: 0.0822 - pearson_correlation: 0.7822 - euclidean_distance: 0.1336
Epoch 261/350
152/152 [==============================] - 0s 795us/step - loss: 0.0835 - accuracy: 0.9563 - mae: 0.0835 - pearson_correlation: 0.7835 - euclidean_distance: 0.1348
Epoch 262/350
152/152 [==============================] - 0s 801us/step - loss: 0.0841 - accuracy: 0.9563 - mae: 0.0841 - pearson_correlation: 0.7798 - euclidean_distance: 0.1364
Epoch 263/350
152/152 [==============================] - 0s 799us/step - loss: 0.0835 - accuracy: 0.9563 - mae: 0.0835 - pearson_correlation: 0.7746 - euclidean_distance: 0.1355
Epoch 264/350
152/152 [==============================] - 0s 796us/step - loss: 0.0816 - accuracy: 0.9563 - mae: 0.0816 - pearson_correlation: 0.7824 - euclidean_distance: 0.1325
Epoch 265/350
152/152 [==============================] - 0s 797us/step - loss: 0.0817 - accuracy: 0.9563 - mae: 0.0817 - pearson_correlation: 0.7819 - euclidean_distance: 0.1324
Epoch 266/350
152/152 [==============================] - 0s 799us/step - loss: 0.0821 - accuracy: 0.9559 - mae: 0.0821 - pearson_correlation: 0.7854 - euclidean_distance: 0.1333
Epoch 267/350
152/152 [==============================] - 0s 796us/step - loss: 0.0816 - accuracy: 0.9563 - mae: 0.0816 - pearson_correlation: 0.7840 - euclidean_distance: 0.1327
Epoch 268/350
152/152 [==============================] - 0s 793us/step - loss: 0.0820 - accuracy: 0.9563 - mae: 0.0820 - pearson_correlation: 0.7854 - euclidean_distance: 0.1332
Epoch 269/350
152/152 [==============================] - 0s 801us/step - loss: 0.0811 - accuracy: 0.9563 - mae: 0.0811 - pearson_correlation: 0.7892 - euclidean_distance: 0.1318
Epoch 270/350
152/152 [==============================] - 0s 790us/step - loss: 0.0833 - accuracy: 0.9563 - mae: 0.0833 - pearson_correlation: 0.7770 - euclidean_distance: 0.1352
Epoch 271/350
152/152 [==============================] - 0s 798us/step - loss: 0.0818 - accuracy: 0.9563 - mae: 0.0818 - pearson_correlation: 0.7795 - euclidean_distance: 0.1330
Epoch 272/350
152/152 [==============================] - 0s 801us/step - loss: 0.0816 - accuracy: 0.9563 - mae: 0.0816 - pearson_correlation: 0.7839 - euclidean_distance: 0.1327
Epoch 273/350
152/152 [==============================] - 0s 802us/step - loss: 0.0813 - accuracy: 0.9563 - mae: 0.0813 - pearson_correlation: 0.7846 - euclidean_distance: 0.1323
Epoch 274/350
152/152 [==============================] - 0s 798us/step - loss: 0.0806 - accuracy: 0.9563 - mae: 0.0806 - pearson_correlation: 0.7844 - euclidean_distance: 0.1309
Epoch 275/350
152/152 [==============================] - 0s 802us/step - loss: 0.0798 - accuracy: 0.9563 - mae: 0.0798 - pearson_correlation: 0.7868 - euclidean_distance: 0.1295
Epoch 276/350
152/152 [==============================] - 0s 794us/step - loss: 0.0802 - accuracy: 0.9563 - mae: 0.0802 - pearson_correlation: 0.7820 - euclidean_distance: 0.1307
Epoch 277/350
152/152 [==============================] - 0s 802us/step - loss: 0.0796 - accuracy: 0.9563 - mae: 0.0796 - pearson_correlation: 0.7890 - euclidean_distance: 0.1296
Epoch 278/350
152/152 [==============================] - 0s 792us/step - loss: 0.0826 - accuracy: 0.9563 - mae: 0.0826 - pearson_correlation: 0.7813 - euclidean_distance: 0.1338
Epoch 279/350
152/152 [==============================] - 0s 802us/step - loss: 0.0825 - accuracy: 0.9563 - mae: 0.0825 - pearson_correlation: 0.7776 - euclidean_distance: 0.1340
Epoch 280/350
152/152 [==============================] - 0s 802us/step - loss: 0.0812 - accuracy: 0.9563 - mae: 0.0812 - pearson_correlation: 0.7807 - euclidean_distance: 0.1319
Epoch 281/350
152/152 [==============================] - 0s 800us/step - loss: 0.0788 - accuracy: 0.9563 - mae: 0.0788 - pearson_correlation: 0.7879 - euclidean_distance: 0.1284
Epoch 282/350
152/152 [==============================] - 0s 798us/step - loss: 0.0811 - accuracy: 0.9563 - mae: 0.0811 - pearson_correlation: 0.7876 - euclidean_distance: 0.1317
Epoch 283/350
152/152 [==============================] - 0s 792us/step - loss: 0.0793 - accuracy: 0.9563 - mae: 0.0793 - pearson_correlation: 0.7847 - euclidean_distance: 0.1292
Epoch 284/350
152/152 [==============================] - 0s 796us/step - loss: 0.0788 - accuracy: 0.9563 - mae: 0.0788 - pearson_correlation: 0.7865 - euclidean_distance: 0.1279
Epoch 285/350
152/152 [==============================] - 0s 794us/step - loss: 0.0793 - accuracy: 0.9563 - mae: 0.0793 - pearson_correlation: 0.7889 - euclidean_distance: 0.1292
Epoch 286/350
152/152 [==============================] - 0s 792us/step - loss: 0.0792 - accuracy: 0.9563 - mae: 0.0792 - pearson_correlation: 0.7857 - euclidean_distance: 0.1291
Epoch 287/350
152/152 [==============================] - 0s 800us/step - loss: 0.0807 - accuracy: 0.9563 - mae: 0.0807 - pearson_correlation: 0.7821 - euclidean_distance: 0.1310
Epoch 288/350
152/152 [==============================] - 0s 799us/step - loss: 0.0803 - accuracy: 0.9563 - mae: 0.0803 - pearson_correlation: 0.7891 - euclidean_distance: 0.1305
Epoch 289/350
152/152 [==============================] - 0s 794us/step - loss: 0.0804 - accuracy: 0.9563 - mae: 0.0804 - pearson_correlation: 0.7863 - euclidean_distance: 0.1312
Epoch 290/350
152/152 [==============================] - 0s 794us/step - loss: 0.0790 - accuracy: 0.9563 - mae: 0.0790 - pearson_correlation: 0.7867 - euclidean_distance: 0.1290
Epoch 291/350
152/152 [==============================] - 0s 801us/step - loss: 0.0799 - accuracy: 0.9563 - mae: 0.0799 - pearson_correlation: 0.7877 - euclidean_distance: 0.1300
Epoch 292/350
152/152 [==============================] - 0s 803us/step - loss: 0.0786 - accuracy: 0.9563 - mae: 0.0786 - pearson_correlation: 0.7906 - euclidean_distance: 0.1281
Epoch 293/350
152/152 [==============================] - 0s 818us/step - loss: 0.0773 - accuracy: 0.9563 - mae: 0.0773 - pearson_correlation: 0.7898 - euclidean_distance: 0.1262
Epoch 294/350
152/152 [==============================] - 0s 806us/step - loss: 0.0782 - accuracy: 0.9563 - mae: 0.0782 - pearson_correlation: 0.7840 - euclidean_distance: 0.1275
Epoch 295/350
152/152 [==============================] - 0s 799us/step - loss: 0.0777 - accuracy: 0.9563 - mae: 0.0777 - pearson_correlation: 0.7926 - euclidean_distance: 0.1267
Epoch 296/350
152/152 [==============================] - 0s 799us/step - loss: 0.0786 - accuracy: 0.9563 - mae: 0.0786 - pearson_correlation: 0.7893 - euclidean_distance: 0.1276
Epoch 297/350
152/152 [==============================] - 0s 791us/step - loss: 0.0779 - accuracy: 0.9563 - mae: 0.0779 - pearson_correlation: 0.7984 - euclidean_distance: 0.1265
Epoch 298/350
152/152 [==============================] - 0s 794us/step - loss: 0.0784 - accuracy: 0.9563 - mae: 0.0784 - pearson_correlation: 0.7906 - euclidean_distance: 0.1276
Epoch 299/350
152/152 [==============================] - 0s 796us/step - loss: 0.0800 - accuracy: 0.9563 - mae: 0.0800 - pearson_correlation: 0.7848 - euclidean_distance: 0.1299
Epoch 300/350
152/152 [==============================] - 0s 795us/step - loss: 0.0793 - accuracy: 0.9563 - mae: 0.0793 - pearson_correlation: 0.7913 - euclidean_distance: 0.1287
Epoch 301/350
152/152 [==============================] - 0s 796us/step - loss: 0.0772 - accuracy: 0.9563 - mae: 0.0772 - pearson_correlation: 0.7941 - euclidean_distance: 0.1262
Epoch 302/350
152/152 [==============================] - 0s 798us/step - loss: 0.0766 - accuracy: 0.9563 - mae: 0.0766 - pearson_correlation: 0.7927 - euclidean_distance: 0.1248
Epoch 303/350
152/152 [==============================] - 0s 795us/step - loss: 0.0778 - accuracy: 0.9563 - mae: 0.0778 - pearson_correlation: 0.7875 - euclidean_distance: 0.1266
Epoch 304/350
152/152 [==============================] - 0s 792us/step - loss: 0.0807 - accuracy: 0.9563 - mae: 0.0807 - pearson_correlation: 0.7843 - euclidean_distance: 0.1313
Epoch 305/350
152/152 [==============================] - 0s 794us/step - loss: 0.0765 - accuracy: 0.9563 - mae: 0.0765 - pearson_correlation: 0.7959 - euclidean_distance: 0.1247
Epoch 306/350
152/152 [==============================] - 0s 792us/step - loss: 0.0791 - accuracy: 0.9563 - mae: 0.0791 - pearson_correlation: 0.7912 - euclidean_distance: 0.1291
Epoch 307/350
152/152 [==============================] - 0s 793us/step - loss: 0.0771 - accuracy: 0.9563 - mae: 0.0771 - pearson_correlation: 0.7966 - euclidean_distance: 0.1255
Epoch 308/350
152/152 [==============================] - 0s 793us/step - loss: 0.0774 - accuracy: 0.9563 - mae: 0.0774 - pearson_correlation: 0.7882 - euclidean_distance: 0.1263
Epoch 309/350
152/152 [==============================] - 0s 861us/step - loss: 0.0773 - accuracy: 0.9563 - mae: 0.0773 - pearson_correlation: 0.7968 - euclidean_distance: 0.1260
Epoch 310/350
152/152 [==============================] - 0s 874us/step - loss: 0.0785 - accuracy: 0.9563 - mae: 0.0785 - pearson_correlation: 0.7881 - euclidean_distance: 0.1279
Epoch 311/350
152/152 [==============================] - 0s 909us/step - loss: 0.0789 - accuracy: 0.9563 - mae: 0.0789 - pearson_correlation: 0.7883 - euclidean_distance: 0.1282
Epoch 312/350
152/152 [==============================] - 0s 897us/step - loss: 0.0757 - accuracy: 0.9563 - mae: 0.0757 - pearson_correlation: 0.7955 - euclidean_distance: 0.1231
Epoch 313/350
152/152 [==============================] - 0s 852us/step - loss: 0.0783 - accuracy: 0.9563 - mae: 0.0783 - pearson_correlation: 0.7895 - euclidean_distance: 0.1278
Epoch 314/350
152/152 [==============================] - 0s 801us/step - loss: 0.0779 - accuracy: 0.9563 - mae: 0.0779 - pearson_correlation: 0.7925 - euclidean_distance: 0.1265
Epoch 315/350
152/152 [==============================] - 0s 803us/step - loss: 0.0757 - accuracy: 0.9563 - mae: 0.0757 - pearson_correlation: 0.7992 - euclidean_distance: 0.1235
Epoch 316/350
152/152 [==============================] - 0s 794us/step - loss: 0.0763 - accuracy: 0.9563 - mae: 0.0763 - pearson_correlation: 0.7946 - euclidean_distance: 0.1241
Epoch 317/350
152/152 [==============================] - 0s 791us/step - loss: 0.0781 - accuracy: 0.9563 - mae: 0.0781 - pearson_correlation: 0.7955 - euclidean_distance: 0.1266
Epoch 318/350
152/152 [==============================] - 0s 801us/step - loss: 0.0742 - accuracy: 0.9563 - mae: 0.0742 - pearson_correlation: 0.7992 - euclidean_distance: 0.1211
Epoch 319/350
152/152 [==============================] - 0s 792us/step - loss: 0.0755 - accuracy: 0.9563 - mae: 0.0755 - pearson_correlation: 0.7978 - euclidean_distance: 0.1229
Epoch 320/350
152/152 [==============================] - 0s 799us/step - loss: 0.0752 - accuracy: 0.9563 - mae: 0.0752 - pearson_correlation: 0.7987 - euclidean_distance: 0.1229
Epoch 321/350
152/152 [==============================] - 0s 800us/step - loss: 0.0760 - accuracy: 0.9563 - mae: 0.0760 - pearson_correlation: 0.7971 - euclidean_distance: 0.1242
Epoch 322/350
152/152 [==============================] - 0s 827us/step - loss: 0.0763 - accuracy: 0.9563 - mae: 0.0763 - pearson_correlation: 0.7982 - euclidean_distance: 0.1244
Epoch 323/350
152/152 [==============================] - 0s 798us/step - loss: 0.0786 - accuracy: 0.9563 - mae: 0.0786 - pearson_correlation: 0.7918 - euclidean_distance: 0.1277
Epoch 324/350
152/152 [==============================] - 0s 804us/step - loss: 0.0771 - accuracy: 0.9563 - mae: 0.0771 - pearson_correlation: 0.7832 - euclidean_distance: 0.1257
Epoch 325/350
152/152 [==============================] - 0s 798us/step - loss: 0.0776 - accuracy: 0.9563 - mae: 0.0776 - pearson_correlation: 0.7945 - euclidean_distance: 0.1263
Epoch 326/350
152/152 [==============================] - 0s 817us/step - loss: 0.0760 - accuracy: 0.9563 - mae: 0.0760 - pearson_correlation: 0.7925 - euclidean_distance: 0.1236
Epoch 327/350
152/152 [==============================] - 0s 799us/step - loss: 0.0755 - accuracy: 0.9563 - mae: 0.0755 - pearson_correlation: 0.7955 - euclidean_distance: 0.1235
Epoch 328/350
152/152 [==============================] - 0s 801us/step - loss: 0.0751 - accuracy: 0.9563 - mae: 0.0751 - pearson_correlation: 0.7949 - euclidean_distance: 0.1231
Epoch 329/350
152/152 [==============================] - 0s 799us/step - loss: 0.0763 - accuracy: 0.9563 - mae: 0.0763 - pearson_correlation: 0.7943 - euclidean_distance: 0.1242
Epoch 330/350
152/152 [==============================] - 0s 801us/step - loss: 0.0761 - accuracy: 0.9563 - mae: 0.0761 - pearson_correlation: 0.7983 - euclidean_distance: 0.1242
Epoch 331/350
152/152 [==============================] - 0s 792us/step - loss: 0.0744 - accuracy: 0.9563 - mae: 0.0744 - pearson_correlation: 0.7992 - euclidean_distance: 0.1214
Epoch 332/350
152/152 [==============================] - 0s 799us/step - loss: 0.0745 - accuracy: 0.9563 - mae: 0.0745 - pearson_correlation: 0.7983 - euclidean_distance: 0.1219
Epoch 333/350
152/152 [==============================] - 0s 799us/step - loss: 0.0751 - accuracy: 0.9563 - mae: 0.0751 - pearson_correlation: 0.7969 - euclidean_distance: 0.1226
Epoch 334/350
152/152 [==============================] - 0s 801us/step - loss: 0.0754 - accuracy: 0.9563 - mae: 0.0754 - pearson_correlation: 0.7966 - euclidean_distance: 0.1230
Epoch 335/350
152/152 [==============================] - 0s 803us/step - loss: 0.0739 - accuracy: 0.9563 - mae: 0.0739 - pearson_correlation: 0.7993 - euclidean_distance: 0.1207
Epoch 336/350
152/152 [==============================] - 0s 796us/step - loss: 0.0754 - accuracy: 0.9563 - mae: 0.0754 - pearson_correlation: 0.7993 - euclidean_distance: 0.1231
Epoch 337/350
152/152 [==============================] - 0s 805us/step - loss: 0.0747 - accuracy: 0.9563 - mae: 0.0747 - pearson_correlation: 0.7995 - euclidean_distance: 0.1221
Epoch 338/350
152/152 [==============================] - 0s 800us/step - loss: 0.0771 - accuracy: 0.9559 - mae: 0.0771 - pearson_correlation: 0.7972 - euclidean_distance: 0.1256
Epoch 339/350
152/152 [==============================] - 0s 799us/step - loss: 0.0741 - accuracy: 0.9563 - mae: 0.0741 - pearson_correlation: 0.8035 - euclidean_distance: 0.1210
Epoch 340/350
152/152 [==============================] - 0s 800us/step - loss: 0.0738 - accuracy: 0.9563 - mae: 0.0738 - pearson_correlation: 0.8028 - euclidean_distance: 0.1203
Epoch 341/350
152/152 [==============================] - 0s 796us/step - loss: 0.0750 - accuracy: 0.9563 - mae: 0.0750 - pearson_correlation: 0.8012 - euclidean_distance: 0.1224
Epoch 342/350
152/152 [==============================] - 0s 796us/step - loss: 0.0738 - accuracy: 0.9563 - mae: 0.0738 - pearson_correlation: 0.8023 - euclidean_distance: 0.1205
Epoch 343/350
152/152 [==============================] - 0s 797us/step - loss: 0.0761 - accuracy: 0.9563 - mae: 0.0761 - pearson_correlation: 0.7877 - euclidean_distance: 0.1242
Epoch 344/350
152/152 [==============================] - 0s 797us/step - loss: 0.0746 - accuracy: 0.9563 - mae: 0.0746 - pearson_correlation: 0.8001 - euclidean_distance: 0.1214
Epoch 345/350
152/152 [==============================] - 0s 799us/step - loss: 0.0737 - accuracy: 0.9563 - mae: 0.0737 - pearson_correlation: 0.8029 - euclidean_distance: 0.1200
Epoch 346/350
152/152 [==============================] - 0s 790us/step - loss: 0.0761 - accuracy: 0.9563 - mae: 0.0761 - pearson_correlation: 0.7905 - euclidean_distance: 0.1243
Epoch 347/350
152/152 [==============================] - 0s 800us/step - loss: 0.0751 - accuracy: 0.9563 - mae: 0.0751 - pearson_correlation: 0.7997 - euclidean_distance: 0.1220
Epoch 348/350
152/152 [==============================] - 0s 802us/step - loss: 0.0747 - accuracy: 0.9563 - mae: 0.0747 - pearson_correlation: 0.8006 - euclidean_distance: 0.1215
Epoch 349/350
152/152 [==============================] - 0s 789us/step - loss: 0.0729 - accuracy: 0.9563 - mae: 0.0729 - pearson_correlation: 0.8076 - euclidean_distance: 0.1188
Epoch 350/350
152/152 [==============================] - 0s 796us/step - loss: 0.0750 - accuracy: 0.9563 - mae: 0.0750 - pearson_correlation: 0.7988 - euclidean_distance: 0.1224
76/76 [==============================] - 0s 439us/step
Epoch 1/350
152/152 [==============================] - 1s 806us/step - loss: 1.2025 - accuracy: 0.6855 - mae: 1.2025 - pearson_correlation: 0.1676 - euclidean_distance: 1.7251
Epoch 2/350
152/152 [==============================] - 0s 808us/step - loss: 1.1802 - accuracy: 0.6740 - mae: 1.1802 - pearson_correlation: 0.1623 - euclidean_distance: 1.6946
Epoch 3/350
152/152 [==============================] - 0s 803us/step - loss: 1.1607 - accuracy: 0.6745 - mae: 1.1607 - pearson_correlation: 0.1705 - euclidean_distance: 1.6665
Epoch 4/350
152/152 [==============================] - 0s 798us/step - loss: 1.1425 - accuracy: 0.6745 - mae: 1.1425 - pearson_correlation: 0.1613 - euclidean_distance: 1.6415
Epoch 5/350
152/152 [==============================] - 0s 804us/step - loss: 1.1267 - accuracy: 0.6811 - mae: 1.1267 - pearson_correlation: 0.1721 - euclidean_distance: 1.6192
Epoch 6/350
152/152 [==============================] - 0s 807us/step - loss: 1.1054 - accuracy: 0.6718 - mae: 1.1054 - pearson_correlation: 0.1657 - euclidean_distance: 1.5899
Epoch 7/350
152/152 [==============================] - 0s 803us/step - loss: 1.0865 - accuracy: 0.6736 - mae: 1.0865 - pearson_correlation: 0.1710 - euclidean_distance: 1.5633
Epoch 8/350
152/152 [==============================] - 0s 798us/step - loss: 1.0723 - accuracy: 0.6674 - mae: 1.0723 - pearson_correlation: 0.1650 - euclidean_distance: 1.5438
Epoch 9/350
152/152 [==============================] - 0s 802us/step - loss: 1.0546 - accuracy: 0.6665 - mae: 1.0546 - pearson_correlation: 0.1660 - euclidean_distance: 1.5196
Epoch 10/350
152/152 [==============================] - 0s 798us/step - loss: 1.0352 - accuracy: 0.6665 - mae: 1.0352 - pearson_correlation: 0.1604 - euclidean_distance: 1.4927
Epoch 11/350
152/152 [==============================] - 0s 793us/step - loss: 1.0185 - accuracy: 0.6656 - mae: 1.0185 - pearson_correlation: 0.1769 - euclidean_distance: 1.4688
Epoch 12/350
152/152 [==============================] - 0s 794us/step - loss: 1.0015 - accuracy: 0.6656 - mae: 1.0015 - pearson_correlation: 0.1775 - euclidean_distance: 1.4456
Epoch 13/350
152/152 [==============================] - 0s 797us/step - loss: 0.9855 - accuracy: 0.6533 - mae: 0.9855 - pearson_correlation: 0.1665 - euclidean_distance: 1.4236
Epoch 14/350
152/152 [==============================] - 0s 796us/step - loss: 0.9665 - accuracy: 0.6590 - mae: 0.9665 - pearson_correlation: 0.1676 - euclidean_distance: 1.3971
Epoch 15/350
152/152 [==============================] - 0s 796us/step - loss: 0.9540 - accuracy: 0.6608 - mae: 0.9540 - pearson_correlation: 0.1612 - euclidean_distance: 1.3800
Epoch 16/350
152/152 [==============================] - 0s 796us/step - loss: 0.9365 - accuracy: 0.6603 - mae: 0.9365 - pearson_correlation: 0.1698 - euclidean_distance: 1.3554
Epoch 17/350
152/152 [==============================] - 0s 789us/step - loss: 0.9226 - accuracy: 0.6502 - mae: 0.9226 - pearson_correlation: 0.1677 - euclidean_distance: 1.3362
Epoch 18/350
152/152 [==============================] - 0s 795us/step - loss: 0.9058 - accuracy: 0.6595 - mae: 0.9058 - pearson_correlation: 0.1696 - euclidean_distance: 1.3126
Epoch 19/350
152/152 [==============================] - 0s 790us/step - loss: 0.8932 - accuracy: 0.6568 - mae: 0.8932 - pearson_correlation: 0.1636 - euclidean_distance: 1.2955
Epoch 20/350
152/152 [==============================] - 0s 798us/step - loss: 0.8776 - accuracy: 0.6484 - mae: 0.8776 - pearson_correlation: 0.1649 - euclidean_distance: 1.2738
Epoch 21/350
152/152 [==============================] - 0s 799us/step - loss: 0.8642 - accuracy: 0.6515 - mae: 0.8642 - pearson_correlation: 0.1700 - euclidean_distance: 1.2551
Epoch 22/350
152/152 [==============================] - 0s 791us/step - loss: 0.8496 - accuracy: 0.6498 - mae: 0.8496 - pearson_correlation: 0.1706 - euclidean_distance: 1.2349
Epoch 23/350
152/152 [==============================] - 0s 822us/step - loss: 0.8365 - accuracy: 0.6524 - mae: 0.8365 - pearson_correlation: 0.1759 - euclidean_distance: 1.2167
Epoch 24/350
152/152 [==============================] - 0s 832us/step - loss: 0.8243 - accuracy: 0.6603 - mae: 0.8243 - pearson_correlation: 0.1863 - euclidean_distance: 1.1996
Epoch 25/350
152/152 [==============================] - 0s 803us/step - loss: 0.8116 - accuracy: 0.6498 - mae: 0.8116 - pearson_correlation: 0.1788 - euclidean_distance: 1.1821
Epoch 26/350
152/152 [==============================] - 0s 798us/step - loss: 0.7996 - accuracy: 0.6445 - mae: 0.7996 - pearson_correlation: 0.1857 - euclidean_distance: 1.1655
Epoch 27/350
152/152 [==============================] - 0s 803us/step - loss: 0.7874 - accuracy: 0.6427 - mae: 0.7874 - pearson_correlation: 0.1757 - euclidean_distance: 1.1486
Epoch 28/350
152/152 [==============================] - 0s 796us/step - loss: 0.7747 - accuracy: 0.6506 - mae: 0.7747 - pearson_correlation: 0.1943 - euclidean_distance: 1.1305
Epoch 29/350
152/152 [==============================] - 0s 799us/step - loss: 0.7633 - accuracy: 0.6498 - mae: 0.7633 - pearson_correlation: 0.1960 - euclidean_distance: 1.1146
Epoch 30/350
152/152 [==============================] - 0s 800us/step - loss: 0.7526 - accuracy: 0.6493 - mae: 0.7526 - pearson_correlation: 0.2044 - euclidean_distance: 1.0996
Epoch 31/350
152/152 [==============================] - 0s 789us/step - loss: 0.7415 - accuracy: 0.6489 - mae: 0.7415 - pearson_correlation: 0.1948 - euclidean_distance: 1.0846
Epoch 32/350
152/152 [==============================] - 0s 792us/step - loss: 0.7303 - accuracy: 0.6511 - mae: 0.7303 - pearson_correlation: 0.1977 - euclidean_distance: 1.0692
Epoch 33/350
152/152 [==============================] - 0s 788us/step - loss: 0.7191 - accuracy: 0.6524 - mae: 0.7191 - pearson_correlation: 0.2192 - euclidean_distance: 1.0531
Epoch 34/350
152/152 [==============================] - 0s 788us/step - loss: 0.7101 - accuracy: 0.6612 - mae: 0.7101 - pearson_correlation: 0.2222 - euclidean_distance: 1.0394
Epoch 35/350
152/152 [==============================] - 0s 785us/step - loss: 0.7007 - accuracy: 0.6542 - mae: 0.7007 - pearson_correlation: 0.2154 - euclidean_distance: 1.0271
Epoch 36/350
152/152 [==============================] - 0s 796us/step - loss: 0.6901 - accuracy: 0.6524 - mae: 0.6901 - pearson_correlation: 0.2196 - euclidean_distance: 1.0123
Epoch 37/350
152/152 [==============================] - 0s 786us/step - loss: 0.6810 - accuracy: 0.6603 - mae: 0.6810 - pearson_correlation: 0.2365 - euclidean_distance: 0.9990
Epoch 38/350
152/152 [==============================] - 0s 795us/step - loss: 0.6698 - accuracy: 0.6630 - mae: 0.6698 - pearson_correlation: 0.2452 - euclidean_distance: 0.9829
Epoch 39/350
152/152 [==============================] - 0s 799us/step - loss: 0.6603 - accuracy: 0.6564 - mae: 0.6603 - pearson_correlation: 0.2421 - euclidean_distance: 0.9701
Epoch 40/350
152/152 [==============================] - 0s 786us/step - loss: 0.6513 - accuracy: 0.6661 - mae: 0.6513 - pearson_correlation: 0.2531 - euclidean_distance: 0.9572
Epoch 41/350
152/152 [==============================] - 0s 789us/step - loss: 0.6413 - accuracy: 0.6656 - mae: 0.6413 - pearson_correlation: 0.2499 - euclidean_distance: 0.9431
Epoch 42/350
152/152 [==============================] - 0s 793us/step - loss: 0.6324 - accuracy: 0.6656 - mae: 0.6324 - pearson_correlation: 0.2572 - euclidean_distance: 0.9308
Epoch 43/350
152/152 [==============================] - 0s 793us/step - loss: 0.6240 - accuracy: 0.6661 - mae: 0.6240 - pearson_correlation: 0.2688 - euclidean_distance: 0.9186
Epoch 44/350
152/152 [==============================] - 0s 793us/step - loss: 0.6160 - accuracy: 0.6661 - mae: 0.6160 - pearson_correlation: 0.2797 - euclidean_distance: 0.9068
Epoch 45/350
152/152 [==============================] - 0s 787us/step - loss: 0.6069 - accuracy: 0.6731 - mae: 0.6069 - pearson_correlation: 0.2782 - euclidean_distance: 0.8942
Epoch 46/350
152/152 [==============================] - 0s 793us/step - loss: 0.5992 - accuracy: 0.6700 - mae: 0.5992 - pearson_correlation: 0.2898 - euclidean_distance: 0.8830
Epoch 47/350
152/152 [==============================] - 0s 794us/step - loss: 0.5900 - accuracy: 0.6784 - mae: 0.5900 - pearson_correlation: 0.3098 - euclidean_distance: 0.8694
Epoch 48/350
152/152 [==============================] - 0s 788us/step - loss: 0.5822 - accuracy: 0.6723 - mae: 0.5822 - pearson_correlation: 0.3033 - euclidean_distance: 0.8586
Epoch 49/350
152/152 [==============================] - 0s 789us/step - loss: 0.5732 - accuracy: 0.6899 - mae: 0.5732 - pearson_correlation: 0.3276 - euclidean_distance: 0.8451
Epoch 50/350
152/152 [==============================] - 0s 792us/step - loss: 0.5653 - accuracy: 0.6948 - mae: 0.5653 - pearson_correlation: 0.3423 - euclidean_distance: 0.8339
Epoch 51/350
152/152 [==============================] - 0s 787us/step - loss: 0.5574 - accuracy: 0.6921 - mae: 0.5574 - pearson_correlation: 0.3543 - euclidean_distance: 0.8224
Epoch 52/350
152/152 [==============================] - 0s 824us/step - loss: 0.5495 - accuracy: 0.6992 - mae: 0.5495 - pearson_correlation: 0.3630 - euclidean_distance: 0.8108
Epoch 53/350
152/152 [==============================] - 0s 797us/step - loss: 0.5425 - accuracy: 0.6974 - mae: 0.5425 - pearson_correlation: 0.3720 - euclidean_distance: 0.8014
Epoch 54/350
152/152 [==============================] - 0s 798us/step - loss: 0.5348 - accuracy: 0.7071 - mae: 0.5348 - pearson_correlation: 0.3890 - euclidean_distance: 0.7893
Epoch 55/350
152/152 [==============================] - 0s 801us/step - loss: 0.5260 - accuracy: 0.7230 - mae: 0.5260 - pearson_correlation: 0.3951 - euclidean_distance: 0.7771
Epoch 56/350
152/152 [==============================] - 0s 805us/step - loss: 0.5174 - accuracy: 0.7164 - mae: 0.5174 - pearson_correlation: 0.4100 - euclidean_distance: 0.7651
Epoch 57/350
152/152 [==============================] - 0s 791us/step - loss: 0.5119 - accuracy: 0.7142 - mae: 0.5119 - pearson_correlation: 0.4192 - euclidean_distance: 0.7564
Epoch 58/350
152/152 [==============================] - 0s 798us/step - loss: 0.5040 - accuracy: 0.7292 - mae: 0.5040 - pearson_correlation: 0.4320 - euclidean_distance: 0.7451
Epoch 59/350
152/152 [==============================] - 0s 788us/step - loss: 0.4968 - accuracy: 0.7278 - mae: 0.4968 - pearson_correlation: 0.4261 - euclidean_distance: 0.7357
Epoch 60/350
152/152 [==============================] - 0s 796us/step - loss: 0.4894 - accuracy: 0.7331 - mae: 0.4894 - pearson_correlation: 0.4377 - euclidean_distance: 0.7243
Epoch 61/350
152/152 [==============================] - 0s 791us/step - loss: 0.4817 - accuracy: 0.7486 - mae: 0.4817 - pearson_correlation: 0.4558 - euclidean_distance: 0.7132
Epoch 62/350
152/152 [==============================] - 0s 796us/step - loss: 0.4734 - accuracy: 0.7618 - mae: 0.4734 - pearson_correlation: 0.4668 - euclidean_distance: 0.7010
Epoch 63/350
152/152 [==============================] - 0s 797us/step - loss: 0.4667 - accuracy: 0.7667 - mae: 0.4667 - pearson_correlation: 0.4794 - euclidean_distance: 0.6912
Epoch 64/350
152/152 [==============================] - 0s 793us/step - loss: 0.4587 - accuracy: 0.7768 - mae: 0.4587 - pearson_correlation: 0.4866 - euclidean_distance: 0.6799
Epoch 65/350
152/152 [==============================] - 0s 807us/step - loss: 0.4520 - accuracy: 0.7786 - mae: 0.4520 - pearson_correlation: 0.5000 - euclidean_distance: 0.6701
Epoch 66/350
152/152 [==============================] - 0s 794us/step - loss: 0.4445 - accuracy: 0.7936 - mae: 0.4445 - pearson_correlation: 0.5055 - euclidean_distance: 0.6589
Epoch 67/350
152/152 [==============================] - 0s 798us/step - loss: 0.4370 - accuracy: 0.8068 - mae: 0.4370 - pearson_correlation: 0.5172 - euclidean_distance: 0.6485
Epoch 68/350
152/152 [==============================] - 0s 799us/step - loss: 0.4301 - accuracy: 0.8125 - mae: 0.4301 - pearson_correlation: 0.5166 - euclidean_distance: 0.6389
Epoch 69/350
152/152 [==============================] - 0s 801us/step - loss: 0.4223 - accuracy: 0.8222 - mae: 0.4223 - pearson_correlation: 0.5219 - euclidean_distance: 0.6277
Epoch 70/350
152/152 [==============================] - 0s 794us/step - loss: 0.4145 - accuracy: 0.8319 - mae: 0.4145 - pearson_correlation: 0.5391 - euclidean_distance: 0.6166
Epoch 71/350
152/152 [==============================] - 0s 797us/step - loss: 0.4071 - accuracy: 0.8443 - mae: 0.4071 - pearson_correlation: 0.5385 - euclidean_distance: 0.6056
Epoch 72/350
152/152 [==============================] - 0s 791us/step - loss: 0.3984 - accuracy: 0.8478 - mae: 0.3984 - pearson_correlation: 0.5460 - euclidean_distance: 0.5936
Epoch 73/350
152/152 [==============================] - 0s 795us/step - loss: 0.3908 - accuracy: 0.8571 - mae: 0.3908 - pearson_correlation: 0.5413 - euclidean_distance: 0.5832
Epoch 74/350
152/152 [==============================] - 0s 799us/step - loss: 0.3828 - accuracy: 0.8637 - mae: 0.3828 - pearson_correlation: 0.5612 - euclidean_distance: 0.5715
Epoch 75/350
152/152 [==============================] - 0s 795us/step - loss: 0.3750 - accuracy: 0.8747 - mae: 0.3750 - pearson_correlation: 0.5567 - euclidean_distance: 0.5605
Epoch 76/350
152/152 [==============================] - 0s 786us/step - loss: 0.3659 - accuracy: 0.8827 - mae: 0.3659 - pearson_correlation: 0.5679 - euclidean_distance: 0.5474
Epoch 77/350
152/152 [==============================] - 0s 785us/step - loss: 0.3578 - accuracy: 0.8928 - mae: 0.3578 - pearson_correlation: 0.5636 - euclidean_distance: 0.5354
Epoch 78/350
152/152 [==============================] - 0s 797us/step - loss: 0.3494 - accuracy: 0.8981 - mae: 0.3494 - pearson_correlation: 0.5719 - euclidean_distance: 0.5244
Epoch 79/350
152/152 [==============================] - 0s 800us/step - loss: 0.3412 - accuracy: 0.9034 - mae: 0.3412 - pearson_correlation: 0.5824 - euclidean_distance: 0.5127
Epoch 80/350
152/152 [==============================] - 0s 792us/step - loss: 0.3339 - accuracy: 0.9149 - mae: 0.3339 - pearson_correlation: 0.5811 - euclidean_distance: 0.5020
Epoch 81/350
152/152 [==============================] - 0s 789us/step - loss: 0.3242 - accuracy: 0.9144 - mae: 0.3242 - pearson_correlation: 0.5850 - euclidean_distance: 0.4887
Epoch 82/350
152/152 [==============================] - 0s 788us/step - loss: 0.3159 - accuracy: 0.9149 - mae: 0.3159 - pearson_correlation: 0.5878 - euclidean_distance: 0.4770
Epoch 83/350
152/152 [==============================] - 0s 871us/step - loss: 0.3066 - accuracy: 0.9228 - mae: 0.3066 - pearson_correlation: 0.5872 - euclidean_distance: 0.4636
Epoch 84/350
152/152 [==============================] - 0s 893us/step - loss: 0.2961 - accuracy: 0.9316 - mae: 0.2961 - pearson_correlation: 0.5958 - euclidean_distance: 0.4486
Epoch 85/350
152/152 [==============================] - 0s 932us/step - loss: 0.2895 - accuracy: 0.9246 - mae: 0.2895 - pearson_correlation: 0.5897 - euclidean_distance: 0.4399
Epoch 86/350
152/152 [==============================] - 0s 927us/step - loss: 0.2787 - accuracy: 0.9325 - mae: 0.2787 - pearson_correlation: 0.5917 - euclidean_distance: 0.4246
Epoch 87/350
152/152 [==============================] - 0s 830us/step - loss: 0.2729 - accuracy: 0.9343 - mae: 0.2729 - pearson_correlation: 0.5878 - euclidean_distance: 0.4161
Epoch 88/350
152/152 [==============================] - 0s 804us/step - loss: 0.2636 - accuracy: 0.9391 - mae: 0.2636 - pearson_correlation: 0.5918 - euclidean_distance: 0.4024
Epoch 89/350
152/152 [==============================] - 0s 807us/step - loss: 0.2560 - accuracy: 0.9409 - mae: 0.2560 - pearson_correlation: 0.5921 - euclidean_distance: 0.3911
Epoch 90/350
152/152 [==============================] - 0s 799us/step - loss: 0.2474 - accuracy: 0.9382 - mae: 0.2474 - pearson_correlation: 0.5989 - euclidean_distance: 0.3787
Epoch 91/350
152/152 [==============================] - 0s 791us/step - loss: 0.2391 - accuracy: 0.9422 - mae: 0.2391 - pearson_correlation: 0.5863 - euclidean_distance: 0.3669
Epoch 92/350
152/152 [==============================] - 0s 798us/step - loss: 0.2322 - accuracy: 0.9449 - mae: 0.2322 - pearson_correlation: 0.5940 - euclidean_distance: 0.3563
Epoch 93/350
152/152 [==============================] - 0s 803us/step - loss: 0.2252 - accuracy: 0.9444 - mae: 0.2252 - pearson_correlation: 0.5888 - euclidean_distance: 0.3460
Epoch 94/350
152/152 [==============================] - 0s 799us/step - loss: 0.2145 - accuracy: 0.9466 - mae: 0.2145 - pearson_correlation: 0.6041 - euclidean_distance: 0.3301
Epoch 95/350
152/152 [==============================] - 0s 806us/step - loss: 0.2114 - accuracy: 0.9471 - mae: 0.2114 - pearson_correlation: 0.6007 - euclidean_distance: 0.3253
Epoch 96/350
152/152 [==============================] - 0s 798us/step - loss: 0.2030 - accuracy: 0.9484 - mae: 0.2030 - pearson_correlation: 0.6011 - euclidean_distance: 0.3133
Epoch 97/350
152/152 [==============================] - 0s 799us/step - loss: 0.1988 - accuracy: 0.9457 - mae: 0.1988 - pearson_correlation: 0.5949 - euclidean_distance: 0.3076
Epoch 98/350
152/152 [==============================] - 0s 800us/step - loss: 0.1927 - accuracy: 0.9466 - mae: 0.1927 - pearson_correlation: 0.5971 - euclidean_distance: 0.2994
Epoch 99/350
152/152 [==============================] - 0s 788us/step - loss: 0.1864 - accuracy: 0.9488 - mae: 0.1864 - pearson_correlation: 0.5984 - euclidean_distance: 0.2903
Epoch 100/350
152/152 [==============================] - 0s 797us/step - loss: 0.1804 - accuracy: 0.9471 - mae: 0.1804 - pearson_correlation: 0.6039 - euclidean_distance: 0.2803
Epoch 101/350
152/152 [==============================] - 0s 799us/step - loss: 0.1786 - accuracy: 0.9484 - mae: 0.1786 - pearson_correlation: 0.6017 - euclidean_distance: 0.2783
Epoch 102/350
152/152 [==============================] - 0s 793us/step - loss: 0.1750 - accuracy: 0.9471 - mae: 0.1750 - pearson_correlation: 0.5981 - euclidean_distance: 0.2730
Epoch 103/350
152/152 [==============================] - 0s 798us/step - loss: 0.1701 - accuracy: 0.9524 - mae: 0.1701 - pearson_correlation: 0.6006 - euclidean_distance: 0.2658
Epoch 104/350
152/152 [==============================] - 0s 800us/step - loss: 0.1681 - accuracy: 0.9506 - mae: 0.1681 - pearson_correlation: 0.6012 - euclidean_distance: 0.2637
Epoch 105/350
152/152 [==============================] - 0s 786us/step - loss: 0.1656 - accuracy: 0.9471 - mae: 0.1656 - pearson_correlation: 0.6060 - euclidean_distance: 0.2601
Epoch 106/350
152/152 [==============================] - 0s 799us/step - loss: 0.1606 - accuracy: 0.9493 - mae: 0.1606 - pearson_correlation: 0.6045 - euclidean_distance: 0.2526
Epoch 107/350
152/152 [==============================] - 0s 793us/step - loss: 0.1590 - accuracy: 0.9506 - mae: 0.1590 - pearson_correlation: 0.6071 - euclidean_distance: 0.2503
Epoch 108/350
152/152 [==============================] - 0s 796us/step - loss: 0.1558 - accuracy: 0.9493 - mae: 0.1558 - pearson_correlation: 0.6108 - euclidean_distance: 0.2457
Epoch 109/350
152/152 [==============================] - 0s 790us/step - loss: 0.1540 - accuracy: 0.9493 - mae: 0.1540 - pearson_correlation: 0.6213 - euclidean_distance: 0.2436
Epoch 110/350
152/152 [==============================] - 0s 797us/step - loss: 0.1523 - accuracy: 0.9524 - mae: 0.1523 - pearson_correlation: 0.6123 - euclidean_distance: 0.2410
Epoch 111/350
152/152 [==============================] - 0s 797us/step - loss: 0.1496 - accuracy: 0.9502 - mae: 0.1496 - pearson_correlation: 0.6159 - euclidean_distance: 0.2371
Epoch 112/350
152/152 [==============================] - 0s 800us/step - loss: 0.1481 - accuracy: 0.9502 - mae: 0.1481 - pearson_correlation: 0.6223 - euclidean_distance: 0.2339
Epoch 113/350
152/152 [==============================] - 0s 796us/step - loss: 0.1481 - accuracy: 0.9506 - mae: 0.1481 - pearson_correlation: 0.6145 - euclidean_distance: 0.2347
Epoch 114/350
152/152 [==============================] - 0s 795us/step - loss: 0.1434 - accuracy: 0.9502 - mae: 0.1434 - pearson_correlation: 0.6303 - euclidean_distance: 0.2275
Epoch 115/350
152/152 [==============================] - 0s 796us/step - loss: 0.1446 - accuracy: 0.9519 - mae: 0.1446 - pearson_correlation: 0.6182 - euclidean_distance: 0.2292
Epoch 116/350
152/152 [==============================] - 0s 799us/step - loss: 0.1407 - accuracy: 0.9515 - mae: 0.1407 - pearson_correlation: 0.6261 - euclidean_distance: 0.2236
Epoch 117/350
152/152 [==============================] - 0s 792us/step - loss: 0.1416 - accuracy: 0.9502 - mae: 0.1416 - pearson_correlation: 0.6366 - euclidean_distance: 0.2250
Epoch 118/350
152/152 [==============================] - 0s 792us/step - loss: 0.1402 - accuracy: 0.9497 - mae: 0.1402 - pearson_correlation: 0.6326 - euclidean_distance: 0.2229
Epoch 119/350
152/152 [==============================] - 0s 799us/step - loss: 0.1387 - accuracy: 0.9506 - mae: 0.1387 - pearson_correlation: 0.6319 - euclidean_distance: 0.2212
Epoch 120/350
152/152 [==============================] - 0s 800us/step - loss: 0.1377 - accuracy: 0.9510 - mae: 0.1377 - pearson_correlation: 0.6370 - euclidean_distance: 0.2196
Epoch 121/350
152/152 [==============================] - 0s 793us/step - loss: 0.1343 - accuracy: 0.9515 - mae: 0.1343 - pearson_correlation: 0.6405 - euclidean_distance: 0.2137
Epoch 122/350
152/152 [==============================] - 0s 800us/step - loss: 0.1335 - accuracy: 0.9528 - mae: 0.1335 - pearson_correlation: 0.6400 - euclidean_distance: 0.2133
Epoch 123/350
152/152 [==============================] - 0s 794us/step - loss: 0.1312 - accuracy: 0.9515 - mae: 0.1312 - pearson_correlation: 0.6482 - euclidean_distance: 0.2095
Epoch 124/350
152/152 [==============================] - 0s 795us/step - loss: 0.1285 - accuracy: 0.9528 - mae: 0.1285 - pearson_correlation: 0.6535 - euclidean_distance: 0.2057
Epoch 125/350
152/152 [==============================] - 0s 795us/step - loss: 0.1310 - accuracy: 0.9519 - mae: 0.1310 - pearson_correlation: 0.6484 - euclidean_distance: 0.2087
Epoch 126/350
152/152 [==============================] - 0s 797us/step - loss: 0.1291 - accuracy: 0.9519 - mae: 0.1291 - pearson_correlation: 0.6549 - euclidean_distance: 0.2061
Epoch 127/350
152/152 [==============================] - 0s 790us/step - loss: 0.1284 - accuracy: 0.9532 - mae: 0.1284 - pearson_correlation: 0.6591 - euclidean_distance: 0.2054
Epoch 128/350
152/152 [==============================] - 0s 803us/step - loss: 0.1274 - accuracy: 0.9541 - mae: 0.1274 - pearson_correlation: 0.6644 - euclidean_distance: 0.2034
Epoch 129/350
152/152 [==============================] - 0s 794us/step - loss: 0.1240 - accuracy: 0.9554 - mae: 0.1240 - pearson_correlation: 0.6708 - euclidean_distance: 0.1980
Epoch 130/350
152/152 [==============================] - 0s 817us/step - loss: 0.1240 - accuracy: 0.9528 - mae: 0.1240 - pearson_correlation: 0.6722 - euclidean_distance: 0.1983
Epoch 131/350
152/152 [==============================] - 0s 799us/step - loss: 0.1245 - accuracy: 0.9524 - mae: 0.1245 - pearson_correlation: 0.6677 - euclidean_distance: 0.1993
Epoch 132/350
152/152 [==============================] - 0s 801us/step - loss: 0.1225 - accuracy: 0.9524 - mae: 0.1225 - pearson_correlation: 0.6750 - euclidean_distance: 0.1967
Epoch 133/350
152/152 [==============================] - 0s 806us/step - loss: 0.1204 - accuracy: 0.9532 - mae: 0.1204 - pearson_correlation: 0.6826 - euclidean_distance: 0.1931
Epoch 134/350
152/152 [==============================] - 0s 803us/step - loss: 0.1213 - accuracy: 0.9554 - mae: 0.1213 - pearson_correlation: 0.6785 - euclidean_distance: 0.1942
Epoch 135/350
152/152 [==============================] - 0s 800us/step - loss: 0.1204 - accuracy: 0.9524 - mae: 0.1204 - pearson_correlation: 0.6814 - euclidean_distance: 0.1931
Epoch 136/350
152/152 [==============================] - 0s 798us/step - loss: 0.1174 - accuracy: 0.9524 - mae: 0.1174 - pearson_correlation: 0.6903 - euclidean_distance: 0.1879
Epoch 137/350
152/152 [==============================] - 0s 797us/step - loss: 0.1177 - accuracy: 0.9532 - mae: 0.1177 - pearson_correlation: 0.6915 - euclidean_distance: 0.1888
Epoch 138/350
152/152 [==============================] - 0s 796us/step - loss: 0.1154 - accuracy: 0.9532 - mae: 0.1154 - pearson_correlation: 0.6902 - euclidean_distance: 0.1851
Epoch 139/350
152/152 [==============================] - 0s 802us/step - loss: 0.1143 - accuracy: 0.9515 - mae: 0.1143 - pearson_correlation: 0.6931 - euclidean_distance: 0.1837
Epoch 140/350
152/152 [==============================] - 0s 788us/step - loss: 0.1153 - accuracy: 0.9541 - mae: 0.1153 - pearson_correlation: 0.6902 - euclidean_distance: 0.1854
Epoch 141/350
152/152 [==============================] - 0s 792us/step - loss: 0.1137 - accuracy: 0.9537 - mae: 0.1137 - pearson_correlation: 0.6911 - euclidean_distance: 0.1825
Epoch 142/350
152/152 [==============================] - 0s 793us/step - loss: 0.1130 - accuracy: 0.9537 - mae: 0.1130 - pearson_correlation: 0.6929 - euclidean_distance: 0.1818
Epoch 143/350
152/152 [==============================] - 0s 792us/step - loss: 0.1116 - accuracy: 0.9528 - mae: 0.1116 - pearson_correlation: 0.7035 - euclidean_distance: 0.1798
Epoch 144/350
152/152 [==============================] - 0s 796us/step - loss: 0.1119 - accuracy: 0.9537 - mae: 0.1119 - pearson_correlation: 0.7080 - euclidean_distance: 0.1797
Epoch 145/350
152/152 [==============================] - 0s 796us/step - loss: 0.1113 - accuracy: 0.9554 - mae: 0.1113 - pearson_correlation: 0.7041 - euclidean_distance: 0.1796
Epoch 146/350
152/152 [==============================] - 0s 796us/step - loss: 0.1107 - accuracy: 0.9546 - mae: 0.1107 - pearson_correlation: 0.7029 - euclidean_distance: 0.1783
Epoch 147/350
152/152 [==============================] - 0s 795us/step - loss: 0.1063 - accuracy: 0.9550 - mae: 0.1063 - pearson_correlation: 0.7177 - euclidean_distance: 0.1717
Epoch 148/350
152/152 [==============================] - 0s 799us/step - loss: 0.1079 - accuracy: 0.9541 - mae: 0.1079 - pearson_correlation: 0.7102 - euclidean_distance: 0.1743
Epoch 149/350
152/152 [==============================] - 0s 785us/step - loss: 0.1043 - accuracy: 0.9541 - mae: 0.1043 - pearson_correlation: 0.7243 - euclidean_distance: 0.1683
Epoch 150/350
152/152 [==============================] - 0s 792us/step - loss: 0.1080 - accuracy: 0.9541 - mae: 0.1080 - pearson_correlation: 0.7085 - euclidean_distance: 0.1743
Epoch 151/350
152/152 [==============================] - 0s 792us/step - loss: 0.1052 - accuracy: 0.9554 - mae: 0.1052 - pearson_correlation: 0.7187 - euclidean_distance: 0.1700
Epoch 152/350
152/152 [==============================] - 0s 793us/step - loss: 0.1054 - accuracy: 0.9537 - mae: 0.1054 - pearson_correlation: 0.7208 - euclidean_distance: 0.1702
Epoch 153/350
152/152 [==============================] - 0s 793us/step - loss: 0.1038 - accuracy: 0.9541 - mae: 0.1038 - pearson_correlation: 0.7242 - euclidean_distance: 0.1680
Epoch 154/350
152/152 [==============================] - 0s 789us/step - loss: 0.1038 - accuracy: 0.9546 - mae: 0.1038 - pearson_correlation: 0.7241 - euclidean_distance: 0.1676
Epoch 155/350
152/152 [==============================] - 0s 792us/step - loss: 0.1031 - accuracy: 0.9541 - mae: 0.1031 - pearson_correlation: 0.7243 - euclidean_distance: 0.1666
Epoch 156/350
152/152 [==============================] - 0s 793us/step - loss: 0.1030 - accuracy: 0.9550 - mae: 0.1030 - pearson_correlation: 0.7208 - euclidean_distance: 0.1668
Epoch 157/350
152/152 [==============================] - 0s 793us/step - loss: 0.1012 - accuracy: 0.9546 - mae: 0.1012 - pearson_correlation: 0.7333 - euclidean_distance: 0.1634
Epoch 158/350
152/152 [==============================] - 0s 795us/step - loss: 0.1004 - accuracy: 0.9537 - mae: 0.1004 - pearson_correlation: 0.7353 - euclidean_distance: 0.1623
Epoch 159/350
152/152 [==============================] - 0s 794us/step - loss: 0.0974 - accuracy: 0.9554 - mae: 0.0974 - pearson_correlation: 0.7378 - euclidean_distance: 0.1580
Epoch 160/350
152/152 [==============================] - 0s 794us/step - loss: 0.0983 - accuracy: 0.9541 - mae: 0.0983 - pearson_correlation: 0.7361 - euclidean_distance: 0.1595
Epoch 161/350
152/152 [==============================] - 0s 795us/step - loss: 0.0979 - accuracy: 0.9546 - mae: 0.0979 - pearson_correlation: 0.7373 - euclidean_distance: 0.1588
Epoch 162/350
152/152 [==============================] - 0s 792us/step - loss: 0.1004 - accuracy: 0.9546 - mae: 0.1004 - pearson_correlation: 0.7319 - euclidean_distance: 0.1630
Epoch 163/350
152/152 [==============================] - 0s 806us/step - loss: 0.0967 - accuracy: 0.9550 - mae: 0.0967 - pearson_correlation: 0.7417 - euclidean_distance: 0.1566
Epoch 164/350
152/152 [==============================] - 0s 794us/step - loss: 0.0987 - accuracy: 0.9550 - mae: 0.0987 - pearson_correlation: 0.7331 - euclidean_distance: 0.1601
Epoch 165/350
152/152 [==============================] - 0s 796us/step - loss: 0.0960 - accuracy: 0.9550 - mae: 0.0960 - pearson_correlation: 0.7437 - euclidean_distance: 0.1551
Epoch 166/350
152/152 [==============================] - 0s 793us/step - loss: 0.0982 - accuracy: 0.9554 - mae: 0.0982 - pearson_correlation: 0.7375 - euclidean_distance: 0.1590
Epoch 167/350
152/152 [==============================] - 0s 788us/step - loss: 0.0983 - accuracy: 0.9550 - mae: 0.0983 - pearson_correlation: 0.7385 - euclidean_distance: 0.1592
Epoch 168/350
152/152 [==============================] - 0s 788us/step - loss: 0.0959 - accuracy: 0.9550 - mae: 0.0959 - pearson_correlation: 0.7405 - euclidean_distance: 0.1563
Epoch 169/350
152/152 [==============================] - 0s 789us/step - loss: 0.0954 - accuracy: 0.9550 - mae: 0.0954 - pearson_correlation: 0.7392 - euclidean_distance: 0.1545
Epoch 170/350
152/152 [==============================] - 0s 797us/step - loss: 0.0946 - accuracy: 0.9550 - mae: 0.0946 - pearson_correlation: 0.7469 - euclidean_distance: 0.1535
Epoch 171/350
152/152 [==============================] - 0s 795us/step - loss: 0.0935 - accuracy: 0.9554 - mae: 0.0935 - pearson_correlation: 0.7528 - euclidean_distance: 0.1517
Epoch 172/350
152/152 [==============================] - 0s 794us/step - loss: 0.0941 - accuracy: 0.9550 - mae: 0.0941 - pearson_correlation: 0.7446 - euclidean_distance: 0.1527
Epoch 173/350
152/152 [==============================] - 0s 789us/step - loss: 0.0935 - accuracy: 0.9541 - mae: 0.0935 - pearson_correlation: 0.7443 - euclidean_distance: 0.1524
Epoch 174/350
152/152 [==============================] - 0s 787us/step - loss: 0.0936 - accuracy: 0.9554 - mae: 0.0936 - pearson_correlation: 0.7467 - euclidean_distance: 0.1520
Epoch 175/350
152/152 [==============================] - 0s 785us/step - loss: 0.0963 - accuracy: 0.9554 - mae: 0.0963 - pearson_correlation: 0.7377 - euclidean_distance: 0.1568
Epoch 176/350
152/152 [==============================] - 0s 798us/step - loss: 0.0922 - accuracy: 0.9550 - mae: 0.0922 - pearson_correlation: 0.7466 - euclidean_distance: 0.1504
Epoch 177/350
152/152 [==============================] - 0s 788us/step - loss: 0.0930 - accuracy: 0.9550 - mae: 0.0930 - pearson_correlation: 0.7501 - euclidean_distance: 0.1513
Epoch 178/350
152/152 [==============================] - 0s 796us/step - loss: 0.0926 - accuracy: 0.9554 - mae: 0.0926 - pearson_correlation: 0.7422 - euclidean_distance: 0.1506
Epoch 179/350
152/152 [==============================] - 0s 802us/step - loss: 0.0917 - accuracy: 0.9554 - mae: 0.0917 - pearson_correlation: 0.7533 - euclidean_distance: 0.1497
Epoch 180/350
152/152 [==============================] - 0s 792us/step - loss: 0.0911 - accuracy: 0.9554 - mae: 0.0911 - pearson_correlation: 0.7530 - euclidean_distance: 0.1487
Epoch 181/350
152/152 [==============================] - 0s 787us/step - loss: 0.0931 - accuracy: 0.9554 - mae: 0.0931 - pearson_correlation: 0.7494 - euclidean_distance: 0.1516
Epoch 182/350
152/152 [==============================] - 0s 795us/step - loss: 0.0909 - accuracy: 0.9554 - mae: 0.0909 - pearson_correlation: 0.7511 - euclidean_distance: 0.1482
Epoch 183/350
152/152 [==============================] - 0s 785us/step - loss: 0.0892 - accuracy: 0.9554 - mae: 0.0892 - pearson_correlation: 0.7607 - euclidean_distance: 0.1451
Epoch 184/350
152/152 [==============================] - 0s 782us/step - loss: 0.0924 - accuracy: 0.9554 - mae: 0.0924 - pearson_correlation: 0.7451 - euclidean_distance: 0.1502
Epoch 185/350
152/152 [==============================] - 0s 793us/step - loss: 0.0885 - accuracy: 0.9554 - mae: 0.0885 - pearson_correlation: 0.7607 - euclidean_distance: 0.1446
Epoch 186/350
152/152 [==============================] - 0s 792us/step - loss: 0.0912 - accuracy: 0.9554 - mae: 0.0912 - pearson_correlation: 0.7478 - euclidean_distance: 0.1487
Epoch 187/350
152/152 [==============================] - 0s 794us/step - loss: 0.0889 - accuracy: 0.9554 - mae: 0.0889 - pearson_correlation: 0.7599 - euclidean_distance: 0.1450
Epoch 188/350
152/152 [==============================] - 0s 788us/step - loss: 0.0917 - accuracy: 0.9550 - mae: 0.0917 - pearson_correlation: 0.7486 - euclidean_distance: 0.1495
Epoch 189/350
152/152 [==============================] - 0s 795us/step - loss: 0.0900 - accuracy: 0.9554 - mae: 0.0900 - pearson_correlation: 0.7520 - euclidean_distance: 0.1470
Epoch 190/350
152/152 [==============================] - 0s 796us/step - loss: 0.0871 - accuracy: 0.9554 - mae: 0.0871 - pearson_correlation: 0.7686 - euclidean_distance: 0.1417
Epoch 191/350
152/152 [==============================] - 0s 795us/step - loss: 0.0892 - accuracy: 0.9554 - mae: 0.0892 - pearson_correlation: 0.7564 - euclidean_distance: 0.1457
Epoch 192/350
152/152 [==============================] - 0s 800us/step - loss: 0.0883 - accuracy: 0.9554 - mae: 0.0883 - pearson_correlation: 0.7544 - euclidean_distance: 0.1442
Epoch 193/350
152/152 [==============================] - 0s 798us/step - loss: 0.0880 - accuracy: 0.9554 - mae: 0.0880 - pearson_correlation: 0.7607 - euclidean_distance: 0.1434
Epoch 194/350
152/152 [==============================] - 0s 790us/step - loss: 0.0869 - accuracy: 0.9554 - mae: 0.0869 - pearson_correlation: 0.7649 - euclidean_distance: 0.1425
Epoch 195/350
152/152 [==============================] - 0s 793us/step - loss: 0.0886 - accuracy: 0.9554 - mae: 0.0886 - pearson_correlation: 0.7613 - euclidean_distance: 0.1446
Epoch 196/350
152/152 [==============================] - 0s 794us/step - loss: 0.0885 - accuracy: 0.9554 - mae: 0.0885 - pearson_correlation: 0.7587 - euclidean_distance: 0.1448
Epoch 197/350
152/152 [==============================] - 0s 793us/step - loss: 0.0882 - accuracy: 0.9550 - mae: 0.0882 - pearson_correlation: 0.7524 - euclidean_distance: 0.1446
Epoch 198/350
152/152 [==============================] - 0s 796us/step - loss: 0.0859 - accuracy: 0.9554 - mae: 0.0859 - pearson_correlation: 0.7670 - euclidean_distance: 0.1406
Epoch 199/350
152/152 [==============================] - 0s 794us/step - loss: 0.0869 - accuracy: 0.9554 - mae: 0.0869 - pearson_correlation: 0.7626 - euclidean_distance: 0.1417
Epoch 200/350
152/152 [==============================] - 0s 792us/step - loss: 0.0857 - accuracy: 0.9550 - mae: 0.0857 - pearson_correlation: 0.7601 - euclidean_distance: 0.1401
Epoch 201/350
152/152 [==============================] - 0s 790us/step - loss: 0.0878 - accuracy: 0.9546 - mae: 0.0878 - pearson_correlation: 0.7599 - euclidean_distance: 0.1437
Epoch 202/350
152/152 [==============================] - 0s 796us/step - loss: 0.0863 - accuracy: 0.9554 - mae: 0.0863 - pearson_correlation: 0.7646 - euclidean_distance: 0.1413
Epoch 203/350
152/152 [==============================] - 0s 793us/step - loss: 0.0861 - accuracy: 0.9550 - mae: 0.0861 - pearson_correlation: 0.7638 - euclidean_distance: 0.1406
Epoch 204/350
152/152 [==============================] - 0s 796us/step - loss: 0.0864 - accuracy: 0.9554 - mae: 0.0864 - pearson_correlation: 0.7625 - euclidean_distance: 0.1421
Epoch 205/350
152/152 [==============================] - 0s 787us/step - loss: 0.0876 - accuracy: 0.9554 - mae: 0.0876 - pearson_correlation: 0.7554 - euclidean_distance: 0.1434
Epoch 206/350
152/152 [==============================] - 0s 795us/step - loss: 0.0867 - accuracy: 0.9554 - mae: 0.0867 - pearson_correlation: 0.7571 - euclidean_distance: 0.1418
Epoch 207/350
152/152 [==============================] - 0s 785us/step - loss: 0.0847 - accuracy: 0.9554 - mae: 0.0847 - pearson_correlation: 0.7674 - euclidean_distance: 0.1383
Epoch 208/350
152/152 [==============================] - 0s 789us/step - loss: 0.0864 - accuracy: 0.9554 - mae: 0.0864 - pearson_correlation: 0.7659 - euclidean_distance: 0.1411
Epoch 209/350
152/152 [==============================] - 0s 796us/step - loss: 0.0849 - accuracy: 0.9554 - mae: 0.0849 - pearson_correlation: 0.7663 - euclidean_distance: 0.1390
Epoch 210/350
152/152 [==============================] - 0s 792us/step - loss: 0.0857 - accuracy: 0.9554 - mae: 0.0857 - pearson_correlation: 0.7663 - euclidean_distance: 0.1398
Epoch 211/350
152/152 [==============================] - 0s 793us/step - loss: 0.0845 - accuracy: 0.9554 - mae: 0.0845 - pearson_correlation: 0.7739 - euclidean_distance: 0.1383
Epoch 212/350
152/152 [==============================] - 0s 804us/step - loss: 0.0853 - accuracy: 0.9554 - mae: 0.0853 - pearson_correlation: 0.7651 - euclidean_distance: 0.1396
Epoch 213/350
152/152 [==============================] - 0s 873us/step - loss: 0.0849 - accuracy: 0.9554 - mae: 0.0849 - pearson_correlation: 0.7704 - euclidean_distance: 0.1391
Epoch 214/350
152/152 [==============================] - 0s 879us/step - loss: 0.0855 - accuracy: 0.9554 - mae: 0.0855 - pearson_correlation: 0.7713 - euclidean_distance: 0.1398
Epoch 215/350
152/152 [==============================] - 0s 940us/step - loss: 0.0849 - accuracy: 0.9554 - mae: 0.0849 - pearson_correlation: 0.7659 - euclidean_distance: 0.1388
Epoch 216/350
152/152 [==============================] - 0s 924us/step - loss: 0.0851 - accuracy: 0.9554 - mae: 0.0851 - pearson_correlation: 0.7662 - euclidean_distance: 0.1398
Epoch 217/350
152/152 [==============================] - 0s 817us/step - loss: 0.0843 - accuracy: 0.9554 - mae: 0.0843 - pearson_correlation: 0.7686 - euclidean_distance: 0.1381
Epoch 218/350
152/152 [==============================] - 0s 800us/step - loss: 0.0842 - accuracy: 0.9554 - mae: 0.0842 - pearson_correlation: 0.7668 - euclidean_distance: 0.1384
Epoch 219/350
152/152 [==============================] - 0s 798us/step - loss: 0.0838 - accuracy: 0.9554 - mae: 0.0838 - pearson_correlation: 0.7732 - euclidean_distance: 0.1375
Epoch 220/350
152/152 [==============================] - 0s 801us/step - loss: 0.0857 - accuracy: 0.9554 - mae: 0.0857 - pearson_correlation: 0.7620 - euclidean_distance: 0.1405
Epoch 221/350
152/152 [==============================] - 0s 793us/step - loss: 0.0817 - accuracy: 0.9554 - mae: 0.0817 - pearson_correlation: 0.7774 - euclidean_distance: 0.1337
Epoch 222/350
152/152 [==============================] - 0s 799us/step - loss: 0.0840 - accuracy: 0.9554 - mae: 0.0840 - pearson_correlation: 0.7708 - euclidean_distance: 0.1375
Epoch 223/350
152/152 [==============================] - 0s 791us/step - loss: 0.0839 - accuracy: 0.9554 - mae: 0.0839 - pearson_correlation: 0.7687 - euclidean_distance: 0.1374
Epoch 224/350
152/152 [==============================] - 0s 798us/step - loss: 0.0829 - accuracy: 0.9554 - mae: 0.0829 - pearson_correlation: 0.7682 - euclidean_distance: 0.1362
Epoch 225/350
152/152 [==============================] - 0s 822us/step - loss: 0.0837 - accuracy: 0.9554 - mae: 0.0837 - pearson_correlation: 0.7631 - euclidean_distance: 0.1376
Epoch 226/350
152/152 [==============================] - 0s 796us/step - loss: 0.0837 - accuracy: 0.9554 - mae: 0.0837 - pearson_correlation: 0.7741 - euclidean_distance: 0.1374
Epoch 227/350
152/152 [==============================] - 0s 799us/step - loss: 0.0802 - accuracy: 0.9554 - mae: 0.0802 - pearson_correlation: 0.7834 - euclidean_distance: 0.1321
Epoch 228/350
152/152 [==============================] - 0s 807us/step - loss: 0.0828 - accuracy: 0.9554 - mae: 0.0828 - pearson_correlation: 0.7735 - euclidean_distance: 0.1358
Epoch 229/350
152/152 [==============================] - 0s 799us/step - loss: 0.0852 - accuracy: 0.9554 - mae: 0.0852 - pearson_correlation: 0.7643 - euclidean_distance: 0.1401
Epoch 230/350
152/152 [==============================] - 0s 794us/step - loss: 0.0818 - accuracy: 0.9554 - mae: 0.0818 - pearson_correlation: 0.7707 - euclidean_distance: 0.1348
Epoch 231/350
152/152 [==============================] - 0s 794us/step - loss: 0.0847 - accuracy: 0.9554 - mae: 0.0847 - pearson_correlation: 0.7698 - euclidean_distance: 0.1391
Epoch 232/350
152/152 [==============================] - 0s 793us/step - loss: 0.0829 - accuracy: 0.9554 - mae: 0.0829 - pearson_correlation: 0.7725 - euclidean_distance: 0.1360
Epoch 233/350
152/152 [==============================] - 0s 795us/step - loss: 0.0820 - accuracy: 0.9554 - mae: 0.0820 - pearson_correlation: 0.7714 - euclidean_distance: 0.1346
Epoch 234/350
152/152 [==============================] - 0s 790us/step - loss: 0.0817 - accuracy: 0.9554 - mae: 0.0817 - pearson_correlation: 0.7731 - euclidean_distance: 0.1342
Epoch 235/350
152/152 [==============================] - 0s 796us/step - loss: 0.0804 - accuracy: 0.9554 - mae: 0.0804 - pearson_correlation: 0.7786 - euclidean_distance: 0.1319
Epoch 236/350
152/152 [==============================] - 0s 799us/step - loss: 0.0839 - accuracy: 0.9554 - mae: 0.0839 - pearson_correlation: 0.7680 - euclidean_distance: 0.1378
Epoch 237/350
152/152 [==============================] - 0s 790us/step - loss: 0.0824 - accuracy: 0.9554 - mae: 0.0824 - pearson_correlation: 0.7735 - euclidean_distance: 0.1354
Epoch 238/350
152/152 [==============================] - 0s 788us/step - loss: 0.0833 - accuracy: 0.9554 - mae: 0.0833 - pearson_correlation: 0.7727 - euclidean_distance: 0.1365
Epoch 239/350
152/152 [==============================] - 0s 791us/step - loss: 0.0828 - accuracy: 0.9554 - mae: 0.0828 - pearson_correlation: 0.7735 - euclidean_distance: 0.1363
Epoch 240/350
152/152 [==============================] - 0s 798us/step - loss: 0.0828 - accuracy: 0.9554 - mae: 0.0828 - pearson_correlation: 0.7699 - euclidean_distance: 0.1364
Epoch 241/350
152/152 [==============================] - 0s 794us/step - loss: 0.0817 - accuracy: 0.9554 - mae: 0.0817 - pearson_correlation: 0.7717 - euclidean_distance: 0.1340
Epoch 242/350
152/152 [==============================] - 0s 798us/step - loss: 0.0812 - accuracy: 0.9554 - mae: 0.0812 - pearson_correlation: 0.7725 - euclidean_distance: 0.1331
Epoch 243/350
152/152 [==============================] - 0s 798us/step - loss: 0.0800 - accuracy: 0.9554 - mae: 0.0800 - pearson_correlation: 0.7807 - euclidean_distance: 0.1313
Epoch 244/350
152/152 [==============================] - 0s 801us/step - loss: 0.0793 - accuracy: 0.9554 - mae: 0.0793 - pearson_correlation: 0.7826 - euclidean_distance: 0.1307
Epoch 245/350
152/152 [==============================] - 0s 789us/step - loss: 0.0802 - accuracy: 0.9554 - mae: 0.0802 - pearson_correlation: 0.7788 - euclidean_distance: 0.1318
Epoch 246/350
152/152 [==============================] - 0s 794us/step - loss: 0.0794 - accuracy: 0.9554 - mae: 0.0794 - pearson_correlation: 0.7800 - euclidean_distance: 0.1305
Epoch 247/350
152/152 [==============================] - 0s 796us/step - loss: 0.0816 - accuracy: 0.9554 - mae: 0.0816 - pearson_correlation: 0.7771 - euclidean_distance: 0.1340
Epoch 248/350
152/152 [==============================] - 0s 798us/step - loss: 0.0809 - accuracy: 0.9554 - mae: 0.0809 - pearson_correlation: 0.7778 - euclidean_distance: 0.1329
Epoch 249/350
152/152 [==============================] - 0s 791us/step - loss: 0.0790 - accuracy: 0.9554 - mae: 0.0790 - pearson_correlation: 0.7814 - euclidean_distance: 0.1302
Epoch 250/350
152/152 [==============================] - 0s 788us/step - loss: 0.0785 - accuracy: 0.9554 - mae: 0.0785 - pearson_correlation: 0.7833 - euclidean_distance: 0.1295
Epoch 251/350
152/152 [==============================] - 0s 794us/step - loss: 0.0781 - accuracy: 0.9554 - mae: 0.0781 - pearson_correlation: 0.7842 - euclidean_distance: 0.1282
Epoch 252/350
152/152 [==============================] - 0s 793us/step - loss: 0.0800 - accuracy: 0.9554 - mae: 0.0800 - pearson_correlation: 0.7773 - euclidean_distance: 0.1316
Epoch 253/350
152/152 [==============================] - 0s 790us/step - loss: 0.0804 - accuracy: 0.9554 - mae: 0.0804 - pearson_correlation: 0.7728 - euclidean_distance: 0.1323
Epoch 254/350
152/152 [==============================] - 0s 791us/step - loss: 0.0804 - accuracy: 0.9554 - mae: 0.0804 - pearson_correlation: 0.7769 - euclidean_distance: 0.1325
Epoch 255/350
152/152 [==============================] - 0s 791us/step - loss: 0.0792 - accuracy: 0.9554 - mae: 0.0792 - pearson_correlation: 0.7858 - euclidean_distance: 0.1301
Epoch 256/350
152/152 [==============================] - 0s 795us/step - loss: 0.0788 - accuracy: 0.9554 - mae: 0.0788 - pearson_correlation: 0.7851 - euclidean_distance: 0.1295
Epoch 257/350
152/152 [==============================] - 0s 792us/step - loss: 0.0791 - accuracy: 0.9554 - mae: 0.0791 - pearson_correlation: 0.7830 - euclidean_distance: 0.1299
Epoch 258/350
152/152 [==============================] - 0s 789us/step - loss: 0.0795 - accuracy: 0.9554 - mae: 0.0795 - pearson_correlation: 0.7795 - euclidean_distance: 0.1309
Epoch 259/350
152/152 [==============================] - 0s 791us/step - loss: 0.0786 - accuracy: 0.9554 - mae: 0.0786 - pearson_correlation: 0.7858 - euclidean_distance: 0.1295
Epoch 260/350
152/152 [==============================] - 0s 792us/step - loss: 0.0801 - accuracy: 0.9554 - mae: 0.0801 - pearson_correlation: 0.7794 - euclidean_distance: 0.1316
Epoch 261/350
152/152 [==============================] - 0s 801us/step - loss: 0.0794 - accuracy: 0.9554 - mae: 0.0794 - pearson_correlation: 0.7803 - euclidean_distance: 0.1307
Epoch 262/350
152/152 [==============================] - 0s 793us/step - loss: 0.0780 - accuracy: 0.9550 - mae: 0.0780 - pearson_correlation: 0.7888 - euclidean_distance: 0.1283
Epoch 263/350
152/152 [==============================] - 0s 794us/step - loss: 0.0808 - accuracy: 0.9550 - mae: 0.0808 - pearson_correlation: 0.7774 - euclidean_distance: 0.1327
Epoch 264/350
152/152 [==============================] - 0s 789us/step - loss: 0.0768 - accuracy: 0.9554 - mae: 0.0768 - pearson_correlation: 0.7822 - euclidean_distance: 0.1264
Epoch 265/350
152/152 [==============================] - 0s 790us/step - loss: 0.0775 - accuracy: 0.9554 - mae: 0.0775 - pearson_correlation: 0.7861 - euclidean_distance: 0.1276
Epoch 266/350
152/152 [==============================] - 0s 824us/step - loss: 0.0800 - accuracy: 0.9554 - mae: 0.0800 - pearson_correlation: 0.7744 - euclidean_distance: 0.1322
Epoch 267/350
152/152 [==============================] - 0s 796us/step - loss: 0.0779 - accuracy: 0.9554 - mae: 0.0779 - pearson_correlation: 0.7812 - euclidean_distance: 0.1286
Epoch 268/350
152/152 [==============================] - 0s 795us/step - loss: 0.0779 - accuracy: 0.9554 - mae: 0.0779 - pearson_correlation: 0.7815 - euclidean_distance: 0.1283
Epoch 269/350
152/152 [==============================] - 0s 798us/step - loss: 0.0768 - accuracy: 0.9554 - mae: 0.0768 - pearson_correlation: 0.7875 - euclidean_distance: 0.1264
Epoch 270/350
152/152 [==============================] - 0s 799us/step - loss: 0.0780 - accuracy: 0.9554 - mae: 0.0780 - pearson_correlation: 0.7862 - euclidean_distance: 0.1287
Epoch 271/350
152/152 [==============================] - 0s 792us/step - loss: 0.0797 - accuracy: 0.9554 - mae: 0.0797 - pearson_correlation: 0.7780 - euclidean_distance: 0.1316
Epoch 272/350
152/152 [==============================] - 0s 788us/step - loss: 0.0785 - accuracy: 0.9554 - mae: 0.0785 - pearson_correlation: 0.7787 - euclidean_distance: 0.1289
Epoch 273/350
152/152 [==============================] - 0s 795us/step - loss: 0.0795 - accuracy: 0.9554 - mae: 0.0795 - pearson_correlation: 0.7813 - euclidean_distance: 0.1311
Epoch 274/350
152/152 [==============================] - 0s 831us/step - loss: 0.0782 - accuracy: 0.9554 - mae: 0.0782 - pearson_correlation: 0.7816 - euclidean_distance: 0.1284
Epoch 275/350
152/152 [==============================] - 0s 820us/step - loss: 0.0784 - accuracy: 0.9554 - mae: 0.0784 - pearson_correlation: 0.7806 - euclidean_distance: 0.1290
Epoch 276/350
152/152 [==============================] - 0s 801us/step - loss: 0.0773 - accuracy: 0.9554 - mae: 0.0773 - pearson_correlation: 0.7892 - euclidean_distance: 0.1273
Epoch 277/350
152/152 [==============================] - 0s 804us/step - loss: 0.0766 - accuracy: 0.9554 - mae: 0.0766 - pearson_correlation: 0.7890 - euclidean_distance: 0.1258
Epoch 278/350
152/152 [==============================] - 0s 796us/step - loss: 0.0771 - accuracy: 0.9554 - mae: 0.0771 - pearson_correlation: 0.7861 - euclidean_distance: 0.1271
Epoch 279/350
152/152 [==============================] - 0s 799us/step - loss: 0.0762 - accuracy: 0.9554 - mae: 0.0762 - pearson_correlation: 0.7887 - euclidean_distance: 0.1260
Epoch 280/350
152/152 [==============================] - 0s 788us/step - loss: 0.0760 - accuracy: 0.9554 - mae: 0.0760 - pearson_correlation: 0.7892 - euclidean_distance: 0.1255
Epoch 281/350
152/152 [==============================] - 0s 784us/step - loss: 0.0761 - accuracy: 0.9554 - mae: 0.0761 - pearson_correlation: 0.7874 - euclidean_distance: 0.1250
Epoch 282/350
152/152 [==============================] - 0s 790us/step - loss: 0.0773 - accuracy: 0.9554 - mae: 0.0773 - pearson_correlation: 0.7882 - euclidean_distance: 0.1275
Epoch 283/350
152/152 [==============================] - 0s 793us/step - loss: 0.0778 - accuracy: 0.9554 - mae: 0.0778 - pearson_correlation: 0.7818 - euclidean_distance: 0.1280
Epoch 284/350
152/152 [==============================] - 0s 794us/step - loss: 0.0766 - accuracy: 0.9554 - mae: 0.0766 - pearson_correlation: 0.7865 - euclidean_distance: 0.1264
Epoch 285/350
152/152 [==============================] - 0s 796us/step - loss: 0.0784 - accuracy: 0.9554 - mae: 0.0784 - pearson_correlation: 0.7864 - euclidean_distance: 0.1294
Epoch 286/350
152/152 [==============================] - 0s 797us/step - loss: 0.0756 - accuracy: 0.9554 - mae: 0.0756 - pearson_correlation: 0.7843 - euclidean_distance: 0.1248
Epoch 287/350
152/152 [==============================] - 0s 786us/step - loss: 0.0774 - accuracy: 0.9554 - mae: 0.0774 - pearson_correlation: 0.7808 - euclidean_distance: 0.1277
Epoch 288/350
152/152 [==============================] - 0s 797us/step - loss: 0.0770 - accuracy: 0.9554 - mae: 0.0770 - pearson_correlation: 0.7883 - euclidean_distance: 0.1264
Epoch 289/350
152/152 [==============================] - 0s 791us/step - loss: 0.0788 - accuracy: 0.9554 - mae: 0.0788 - pearson_correlation: 0.7827 - euclidean_distance: 0.1300
Epoch 290/350
152/152 [==============================] - 0s 791us/step - loss: 0.0741 - accuracy: 0.9554 - mae: 0.0741 - pearson_correlation: 0.7933 - euclidean_distance: 0.1221
Epoch 291/350
152/152 [==============================] - 0s 789us/step - loss: 0.0775 - accuracy: 0.9554 - mae: 0.0775 - pearson_correlation: 0.7859 - euclidean_distance: 0.1278
Epoch 292/350
152/152 [==============================] - 0s 794us/step - loss: 0.0758 - accuracy: 0.9554 - mae: 0.0758 - pearson_correlation: 0.7892 - euclidean_distance: 0.1249
Epoch 293/350
152/152 [==============================] - 0s 792us/step - loss: 0.0749 - accuracy: 0.9554 - mae: 0.0749 - pearson_correlation: 0.7927 - euclidean_distance: 0.1238
Epoch 294/350
152/152 [==============================] - 0s 799us/step - loss: 0.0748 - accuracy: 0.9554 - mae: 0.0748 - pearson_correlation: 0.7966 - euclidean_distance: 0.1238
Epoch 295/350
152/152 [==============================] - 0s 792us/step - loss: 0.0768 - accuracy: 0.9554 - mae: 0.0768 - pearson_correlation: 0.7875 - euclidean_distance: 0.1270
Epoch 296/350
152/152 [==============================] - 0s 791us/step - loss: 0.0751 - accuracy: 0.9554 - mae: 0.0751 - pearson_correlation: 0.7964 - euclidean_distance: 0.1239
Epoch 297/350
152/152 [==============================] - 0s 810us/step - loss: 0.0766 - accuracy: 0.9554 - mae: 0.0766 - pearson_correlation: 0.7840 - euclidean_distance: 0.1263
Epoch 298/350
152/152 [==============================] - 0s 796us/step - loss: 0.0747 - accuracy: 0.9554 - mae: 0.0747 - pearson_correlation: 0.7918 - euclidean_distance: 0.1235
Epoch 299/350
152/152 [==============================] - 0s 797us/step - loss: 0.0773 - accuracy: 0.9554 - mae: 0.0773 - pearson_correlation: 0.7841 - euclidean_distance: 0.1276
Epoch 300/350
152/152 [==============================] - 0s 789us/step - loss: 0.0778 - accuracy: 0.9554 - mae: 0.0778 - pearson_correlation: 0.7820 - euclidean_distance: 0.1285
Epoch 301/350
152/152 [==============================] - 0s 796us/step - loss: 0.0748 - accuracy: 0.9554 - mae: 0.0748 - pearson_correlation: 0.7897 - euclidean_distance: 0.1236
Epoch 302/350
152/152 [==============================] - 0s 797us/step - loss: 0.0751 - accuracy: 0.9554 - mae: 0.0751 - pearson_correlation: 0.7896 - euclidean_distance: 0.1243
Epoch 303/350
152/152 [==============================] - 0s 789us/step - loss: 0.0730 - accuracy: 0.9554 - mae: 0.0730 - pearson_correlation: 0.7935 - euclidean_distance: 0.1204
Epoch 304/350
152/152 [==============================] - 0s 795us/step - loss: 0.0740 - accuracy: 0.9554 - mae: 0.0740 - pearson_correlation: 0.7972 - euclidean_distance: 0.1225
Epoch 305/350
152/152 [==============================] - 0s 798us/step - loss: 0.0766 - accuracy: 0.9554 - mae: 0.0766 - pearson_correlation: 0.7856 - euclidean_distance: 0.1268
Epoch 306/350
152/152 [==============================] - 0s 797us/step - loss: 0.0758 - accuracy: 0.9554 - mae: 0.0758 - pearson_correlation: 0.7859 - euclidean_distance: 0.1254
Epoch 307/350
152/152 [==============================] - 0s 792us/step - loss: 0.0760 - accuracy: 0.9554 - mae: 0.0760 - pearson_correlation: 0.7919 - euclidean_distance: 0.1255
Epoch 308/350
152/152 [==============================] - 0s 789us/step - loss: 0.0754 - accuracy: 0.9554 - mae: 0.0754 - pearson_correlation: 0.7838 - euclidean_distance: 0.1246
Epoch 309/350
152/152 [==============================] - 0s 786us/step - loss: 0.0741 - accuracy: 0.9554 - mae: 0.0741 - pearson_correlation: 0.7903 - euclidean_distance: 0.1226
Epoch 310/350
152/152 [==============================] - 0s 800us/step - loss: 0.0741 - accuracy: 0.9554 - mae: 0.0741 - pearson_correlation: 0.7868 - euclidean_distance: 0.1228
Epoch 311/350
152/152 [==============================] - 0s 791us/step - loss: 0.0740 - accuracy: 0.9554 - mae: 0.0740 - pearson_correlation: 0.7965 - euclidean_distance: 0.1218
Epoch 312/350
152/152 [==============================] - 0s 790us/step - loss: 0.0745 - accuracy: 0.9554 - mae: 0.0745 - pearson_correlation: 0.7903 - euclidean_distance: 0.1234
Epoch 313/350
152/152 [==============================] - 0s 787us/step - loss: 0.0742 - accuracy: 0.9554 - mae: 0.0742 - pearson_correlation: 0.7945 - euclidean_distance: 0.1225
Epoch 314/350
152/152 [==============================] - 0s 794us/step - loss: 0.0736 - accuracy: 0.9554 - mae: 0.0736 - pearson_correlation: 0.7925 - euclidean_distance: 0.1218
Epoch 315/350
152/152 [==============================] - 0s 790us/step - loss: 0.0734 - accuracy: 0.9554 - mae: 0.0734 - pearson_correlation: 0.7956 - euclidean_distance: 0.1218
Epoch 316/350
152/152 [==============================] - 0s 790us/step - loss: 0.0737 - accuracy: 0.9554 - mae: 0.0737 - pearson_correlation: 0.7923 - euclidean_distance: 0.1216
Epoch 317/350
152/152 [==============================] - 0s 796us/step - loss: 0.0741 - accuracy: 0.9554 - mae: 0.0741 - pearson_correlation: 0.7924 - euclidean_distance: 0.1225
Epoch 318/350
152/152 [==============================] - 0s 795us/step - loss: 0.0760 - accuracy: 0.9554 - mae: 0.0760 - pearson_correlation: 0.7920 - euclidean_distance: 0.1251
Epoch 319/350
152/152 [==============================] - 0s 790us/step - loss: 0.0757 - accuracy: 0.9554 - mae: 0.0757 - pearson_correlation: 0.7909 - euclidean_distance: 0.1253
Epoch 320/350
152/152 [==============================] - 0s 785us/step - loss: 0.0726 - accuracy: 0.9554 - mae: 0.0726 - pearson_correlation: 0.7933 - euclidean_distance: 0.1204
Epoch 321/350
152/152 [==============================] - 0s 792us/step - loss: 0.0735 - accuracy: 0.9554 - mae: 0.0735 - pearson_correlation: 0.7959 - euclidean_distance: 0.1216
Epoch 322/350
152/152 [==============================] - 0s 789us/step - loss: 0.0746 - accuracy: 0.9554 - mae: 0.0746 - pearson_correlation: 0.7918 - euclidean_distance: 0.1236
Epoch 323/350
152/152 [==============================] - 0s 789us/step - loss: 0.0731 - accuracy: 0.9554 - mae: 0.0731 - pearson_correlation: 0.7994 - euclidean_distance: 0.1203
Epoch 324/350
152/152 [==============================] - 0s 789us/step - loss: 0.0758 - accuracy: 0.9554 - mae: 0.0758 - pearson_correlation: 0.7898 - euclidean_distance: 0.1252
Epoch 325/350
152/152 [==============================] - 0s 791us/step - loss: 0.0727 - accuracy: 0.9554 - mae: 0.0727 - pearson_correlation: 0.7957 - euclidean_distance: 0.1201
Epoch 326/350
152/152 [==============================] - 0s 787us/step - loss: 0.0746 - accuracy: 0.9554 - mae: 0.0746 - pearson_correlation: 0.7938 - euclidean_distance: 0.1231
Epoch 327/350
152/152 [==============================] - 0s 792us/step - loss: 0.0744 - accuracy: 0.9554 - mae: 0.0744 - pearson_correlation: 0.7928 - euclidean_distance: 0.1226
Epoch 328/350
152/152 [==============================] - 0s 789us/step - loss: 0.0732 - accuracy: 0.9554 - mae: 0.0732 - pearson_correlation: 0.7931 - euclidean_distance: 0.1215
Epoch 329/350
152/152 [==============================] - 0s 794us/step - loss: 0.0719 - accuracy: 0.9554 - mae: 0.0719 - pearson_correlation: 0.7991 - euclidean_distance: 0.1190
Epoch 330/350
152/152 [==============================] - 0s 792us/step - loss: 0.0730 - accuracy: 0.9554 - mae: 0.0730 - pearson_correlation: 0.7924 - euclidean_distance: 0.1212
Epoch 331/350
152/152 [==============================] - 0s 790us/step - loss: 0.0726 - accuracy: 0.9554 - mae: 0.0726 - pearson_correlation: 0.7883 - euclidean_distance: 0.1205
Epoch 332/350
152/152 [==============================] - 0s 792us/step - loss: 0.0724 - accuracy: 0.9554 - mae: 0.0724 - pearson_correlation: 0.7965 - euclidean_distance: 0.1201
Epoch 333/350
152/152 [==============================] - 0s 783us/step - loss: 0.0735 - accuracy: 0.9554 - mae: 0.0735 - pearson_correlation: 0.7849 - euclidean_distance: 0.1219
Epoch 334/350
152/152 [==============================] - 0s 797us/step - loss: 0.0726 - accuracy: 0.9554 - mae: 0.0726 - pearson_correlation: 0.7975 - euclidean_distance: 0.1203
Epoch 335/350
152/152 [==============================] - 0s 795us/step - loss: 0.0749 - accuracy: 0.9554 - mae: 0.0749 - pearson_correlation: 0.7910 - euclidean_distance: 0.1237
Epoch 336/350
152/152 [==============================] - 0s 795us/step - loss: 0.0722 - accuracy: 0.9554 - mae: 0.0722 - pearson_correlation: 0.8001 - euclidean_distance: 0.1196
Epoch 337/350
152/152 [==============================] - 0s 798us/step - loss: 0.0741 - accuracy: 0.9554 - mae: 0.0741 - pearson_correlation: 0.7864 - euclidean_distance: 0.1227
Epoch 338/350
152/152 [==============================] - 0s 797us/step - loss: 0.0719 - accuracy: 0.9554 - mae: 0.0719 - pearson_correlation: 0.7988 - euclidean_distance: 0.1190
Epoch 339/350
152/152 [==============================] - 0s 794us/step - loss: 0.0745 - accuracy: 0.9554 - mae: 0.0745 - pearson_correlation: 0.7924 - euclidean_distance: 0.1234
Epoch 340/350
152/152 [==============================] - 0s 789us/step - loss: 0.0726 - accuracy: 0.9554 - mae: 0.0726 - pearson_correlation: 0.7927 - euclidean_distance: 0.1207
Epoch 341/350
152/152 [==============================] - 0s 783us/step - loss: 0.0726 - accuracy: 0.9554 - mae: 0.0726 - pearson_correlation: 0.7969 - euclidean_distance: 0.1204
Epoch 342/350
152/152 [==============================] - 0s 791us/step - loss: 0.0722 - accuracy: 0.9554 - mae: 0.0722 - pearson_correlation: 0.7970 - euclidean_distance: 0.1199
Epoch 343/350
152/152 [==============================] - 0s 882us/step - loss: 0.0737 - accuracy: 0.9554 - mae: 0.0737 - pearson_correlation: 0.7925 - euclidean_distance: 0.1214
Epoch 344/350
152/152 [==============================] - 0s 877us/step - loss: 0.0720 - accuracy: 0.9554 - mae: 0.0720 - pearson_correlation: 0.7995 - euclidean_distance: 0.1187
Epoch 345/350
152/152 [==============================] - 0s 910us/step - loss: 0.0733 - accuracy: 0.9554 - mae: 0.0733 - pearson_correlation: 0.7883 - euclidean_distance: 0.1211
Epoch 346/350
152/152 [==============================] - 0s 915us/step - loss: 0.0724 - accuracy: 0.9554 - mae: 0.0724 - pearson_correlation: 0.7972 - euclidean_distance: 0.1198
Epoch 347/350
152/152 [==============================] - 0s 828us/step - loss: 0.0714 - accuracy: 0.9554 - mae: 0.0714 - pearson_correlation: 0.7984 - euclidean_distance: 0.1177
Epoch 348/350
152/152 [==============================] - 0s 794us/step - loss: 0.0711 - accuracy: 0.9554 - mae: 0.0711 - pearson_correlation: 0.8013 - euclidean_distance: 0.1179
Epoch 349/350
152/152 [==============================] - 0s 803us/step - loss: 0.0723 - accuracy: 0.9554 - mae: 0.0723 - pearson_correlation: 0.7948 - euclidean_distance: 0.1196
Epoch 350/350
152/152 [==============================] - 0s 798us/step - loss: 0.0732 - accuracy: 0.9554 - mae: 0.0732 - pearson_correlation: 0.7936 - euclidean_distance: 0.1213
76/76 [==============================] - 0s 428us/step
Epoch 1/350
152/152 [==============================] - 1s 826us/step - loss: 0.7356 - accuracy: 0.5741 - mae: 0.7356 - pearson_correlation: 0.1483 - euclidean_distance: 1.0862
Epoch 2/350
152/152 [==============================] - 0s 813us/step - loss: 0.7260 - accuracy: 0.5913 - mae: 0.7260 - pearson_correlation: 0.1595 - euclidean_distance: 1.0723
Epoch 3/350
152/152 [==============================] - 0s 810us/step - loss: 0.7170 - accuracy: 0.5732 - mae: 0.7170 - pearson_correlation: 0.1450 - euclidean_distance: 1.0612
Epoch 4/350
152/152 [==============================] - 0s 806us/step - loss: 0.7069 - accuracy: 0.5719 - mae: 0.7069 - pearson_correlation: 0.1362 - euclidean_distance: 1.0483
Epoch 5/350
152/152 [==============================] - 0s 810us/step - loss: 0.6954 - accuracy: 0.5705 - mae: 0.6954 - pearson_correlation: 0.1369 - euclidean_distance: 1.0329
Epoch 6/350
152/152 [==============================] - 0s 808us/step - loss: 0.6854 - accuracy: 0.5631 - mae: 0.6854 - pearson_correlation: 0.1272 - euclidean_distance: 1.0209
Epoch 7/350
152/152 [==============================] - 0s 804us/step - loss: 0.6714 - accuracy: 0.5750 - mae: 0.6714 - pearson_correlation: 0.1504 - euclidean_distance: 0.9995
Epoch 8/350
152/152 [==============================] - 0s 806us/step - loss: 0.6620 - accuracy: 0.5728 - mae: 0.6620 - pearson_correlation: 0.1490 - euclidean_distance: 0.9870
Epoch 9/350
152/152 [==============================] - 0s 802us/step - loss: 0.6503 - accuracy: 0.5679 - mae: 0.6503 - pearson_correlation: 0.1507 - euclidean_distance: 0.9715
Epoch 10/350
152/152 [==============================] - 0s 798us/step - loss: 0.6391 - accuracy: 0.5635 - mae: 0.6391 - pearson_correlation: 0.1460 - euclidean_distance: 0.9556
Epoch 11/350
152/152 [==============================] - 0s 802us/step - loss: 0.6272 - accuracy: 0.5481 - mae: 0.6272 - pearson_correlation: 0.1337 - euclidean_distance: 0.9421
Epoch 12/350
152/152 [==============================] - 0s 805us/step - loss: 0.6155 - accuracy: 0.5476 - mae: 0.6155 - pearson_correlation: 0.1415 - euclidean_distance: 0.9255
Epoch 13/350
152/152 [==============================] - 0s 808us/step - loss: 0.6039 - accuracy: 0.5569 - mae: 0.6039 - pearson_correlation: 0.1360 - euclidean_distance: 0.9093
Epoch 14/350
152/152 [==============================] - 0s 801us/step - loss: 0.5904 - accuracy: 0.5511 - mae: 0.5904 - pearson_correlation: 0.1288 - euclidean_distance: 0.8927
Epoch 15/350
152/152 [==============================] - 0s 803us/step - loss: 0.5805 - accuracy: 0.5432 - mae: 0.5805 - pearson_correlation: 0.1302 - euclidean_distance: 0.8803
Epoch 16/350
152/152 [==============================] - 0s 802us/step - loss: 0.5655 - accuracy: 0.5423 - mae: 0.5655 - pearson_correlation: 0.1228 - euclidean_distance: 0.8589
Epoch 17/350
152/152 [==============================] - 0s 806us/step - loss: 0.5538 - accuracy: 0.5459 - mae: 0.5538 - pearson_correlation: 0.1381 - euclidean_distance: 0.8436
Epoch 18/350
152/152 [==============================] - 0s 804us/step - loss: 0.5416 - accuracy: 0.5273 - mae: 0.5416 - pearson_correlation: 0.1306 - euclidean_distance: 0.8268
Epoch 19/350
152/152 [==============================] - 0s 815us/step - loss: 0.5281 - accuracy: 0.5331 - mae: 0.5281 - pearson_correlation: 0.1405 - euclidean_distance: 0.8081
Epoch 20/350
152/152 [==============================] - 0s 822us/step - loss: 0.5172 - accuracy: 0.5234 - mae: 0.5172 - pearson_correlation: 0.1268 - euclidean_distance: 0.7940
Epoch 21/350
152/152 [==============================] - 0s 803us/step - loss: 0.5067 - accuracy: 0.5344 - mae: 0.5067 - pearson_correlation: 0.1381 - euclidean_distance: 0.7801
Epoch 22/350
152/152 [==============================] - 0s 804us/step - loss: 0.4944 - accuracy: 0.5273 - mae: 0.4944 - pearson_correlation: 0.1269 - euclidean_distance: 0.7623
Epoch 23/350
152/152 [==============================] - 0s 817us/step - loss: 0.4826 - accuracy: 0.5357 - mae: 0.4826 - pearson_correlation: 0.1369 - euclidean_distance: 0.7453
Epoch 24/350
152/152 [==============================] - 0s 804us/step - loss: 0.4711 - accuracy: 0.5295 - mae: 0.4711 - pearson_correlation: 0.1299 - euclidean_distance: 0.7304
Epoch 25/350
152/152 [==============================] - 0s 805us/step - loss: 0.4598 - accuracy: 0.5260 - mae: 0.4598 - pearson_correlation: 0.1431 - euclidean_distance: 0.7131
Epoch 26/350
152/152 [==============================] - 0s 802us/step - loss: 0.4489 - accuracy: 0.5168 - mae: 0.4489 - pearson_correlation: 0.1294 - euclidean_distance: 0.6984
Epoch 27/350
152/152 [==============================] - 0s 805us/step - loss: 0.4375 - accuracy: 0.5225 - mae: 0.4375 - pearson_correlation: 0.1489 - euclidean_distance: 0.6801
Epoch 28/350
152/152 [==============================] - 0s 805us/step - loss: 0.4280 - accuracy: 0.5317 - mae: 0.4280 - pearson_correlation: 0.1507 - euclidean_distance: 0.6687
Epoch 29/350
152/152 [==============================] - 0s 805us/step - loss: 0.4160 - accuracy: 0.5428 - mae: 0.4160 - pearson_correlation: 0.1638 - euclidean_distance: 0.6487
Epoch 30/350
152/152 [==============================] - 0s 800us/step - loss: 0.4063 - accuracy: 0.5481 - mae: 0.4063 - pearson_correlation: 0.1710 - euclidean_distance: 0.6355
Epoch 31/350
152/152 [==============================] - 0s 799us/step - loss: 0.3965 - accuracy: 0.5485 - mae: 0.3965 - pearson_correlation: 0.1663 - euclidean_distance: 0.6205
Epoch 32/350
152/152 [==============================] - 0s 802us/step - loss: 0.3884 - accuracy: 0.5419 - mae: 0.3884 - pearson_correlation: 0.1566 - euclidean_distance: 0.6093
Epoch 33/350
152/152 [==============================] - 0s 804us/step - loss: 0.3775 - accuracy: 0.5661 - mae: 0.3775 - pearson_correlation: 0.1740 - euclidean_distance: 0.5940
Epoch 34/350
152/152 [==============================] - 0s 801us/step - loss: 0.3690 - accuracy: 0.5507 - mae: 0.3690 - pearson_correlation: 0.1658 - euclidean_distance: 0.5819
Epoch 35/350
152/152 [==============================] - 0s 803us/step - loss: 0.3613 - accuracy: 0.5745 - mae: 0.3613 - pearson_correlation: 0.1835 - euclidean_distance: 0.5704
Epoch 36/350
152/152 [==============================] - 0s 804us/step - loss: 0.3537 - accuracy: 0.5816 - mae: 0.3537 - pearson_correlation: 0.1940 - euclidean_distance: 0.5575
Epoch 37/350
152/152 [==============================] - 0s 803us/step - loss: 0.3469 - accuracy: 0.5860 - mae: 0.3469 - pearson_correlation: 0.1967 - euclidean_distance: 0.5462
Epoch 38/350
152/152 [==============================] - 0s 804us/step - loss: 0.3355 - accuracy: 0.6129 - mae: 0.3355 - pearson_correlation: 0.2047 - euclidean_distance: 0.5297
Epoch 39/350
152/152 [==============================] - 0s 797us/step - loss: 0.3300 - accuracy: 0.6133 - mae: 0.3300 - pearson_correlation: 0.2077 - euclidean_distance: 0.5210
Epoch 40/350
152/152 [==============================] - 0s 800us/step - loss: 0.3217 - accuracy: 0.6208 - mae: 0.3217 - pearson_correlation: 0.2222 - euclidean_distance: 0.5079
Epoch 41/350
152/152 [==============================] - 0s 802us/step - loss: 0.3130 - accuracy: 0.6261 - mae: 0.3130 - pearson_correlation: 0.2319 - euclidean_distance: 0.4954
Epoch 42/350
152/152 [==============================] - 0s 801us/step - loss: 0.3082 - accuracy: 0.6274 - mae: 0.3082 - pearson_correlation: 0.2373 - euclidean_distance: 0.4867
Epoch 43/350
152/152 [==============================] - 0s 804us/step - loss: 0.3017 - accuracy: 0.6336 - mae: 0.3017 - pearson_correlation: 0.2464 - euclidean_distance: 0.4782
Epoch 44/350
152/152 [==============================] - 0s 805us/step - loss: 0.2968 - accuracy: 0.6455 - mae: 0.2968 - pearson_correlation: 0.2365 - euclidean_distance: 0.4701
Epoch 45/350
152/152 [==============================] - 0s 800us/step - loss: 0.2906 - accuracy: 0.6578 - mae: 0.2906 - pearson_correlation: 0.2576 - euclidean_distance: 0.4604
Epoch 46/350
152/152 [==============================] - 0s 798us/step - loss: 0.2838 - accuracy: 0.6795 - mae: 0.2838 - pearson_correlation: 0.2601 - euclidean_distance: 0.4490
Epoch 47/350
152/152 [==============================] - 0s 795us/step - loss: 0.2797 - accuracy: 0.6662 - mae: 0.2797 - pearson_correlation: 0.2686 - euclidean_distance: 0.4443
Epoch 48/350
152/152 [==============================] - 0s 803us/step - loss: 0.2764 - accuracy: 0.6821 - mae: 0.2764 - pearson_correlation: 0.2642 - euclidean_distance: 0.4377
Epoch 49/350
152/152 [==============================] - 0s 801us/step - loss: 0.2685 - accuracy: 0.6900 - mae: 0.2685 - pearson_correlation: 0.2901 - euclidean_distance: 0.4262
Epoch 50/350
152/152 [==============================] - 0s 804us/step - loss: 0.2646 - accuracy: 0.7081 - mae: 0.2646 - pearson_correlation: 0.2922 - euclidean_distance: 0.4188
Epoch 51/350
152/152 [==============================] - 0s 805us/step - loss: 0.2617 - accuracy: 0.7086 - mae: 0.2617 - pearson_correlation: 0.2974 - euclidean_distance: 0.4160
Epoch 52/350
152/152 [==============================] - 0s 803us/step - loss: 0.2537 - accuracy: 0.7169 - mae: 0.2537 - pearson_correlation: 0.3033 - euclidean_distance: 0.4023
Epoch 53/350
152/152 [==============================] - 0s 796us/step - loss: 0.2522 - accuracy: 0.7033 - mae: 0.2522 - pearson_correlation: 0.3128 - euclidean_distance: 0.4000
Epoch 54/350
152/152 [==============================] - 0s 802us/step - loss: 0.2453 - accuracy: 0.7359 - mae: 0.2453 - pearson_correlation: 0.3272 - euclidean_distance: 0.3895
Epoch 55/350
152/152 [==============================] - 0s 804us/step - loss: 0.2411 - accuracy: 0.7438 - mae: 0.2411 - pearson_correlation: 0.3391 - euclidean_distance: 0.3828
Epoch 56/350
152/152 [==============================] - 0s 806us/step - loss: 0.2397 - accuracy: 0.7451 - mae: 0.2397 - pearson_correlation: 0.3383 - euclidean_distance: 0.3807
Epoch 57/350
152/152 [==============================] - 0s 805us/step - loss: 0.2338 - accuracy: 0.7575 - mae: 0.2338 - pearson_correlation: 0.3538 - euclidean_distance: 0.3719
Epoch 58/350
152/152 [==============================] - 0s 805us/step - loss: 0.2309 - accuracy: 0.7575 - mae: 0.2309 - pearson_correlation: 0.3485 - euclidean_distance: 0.3683
Epoch 59/350
152/152 [==============================] - 0s 801us/step - loss: 0.2308 - accuracy: 0.7597 - mae: 0.2308 - pearson_correlation: 0.3525 - euclidean_distance: 0.3665
Epoch 60/350
152/152 [==============================] - 0s 802us/step - loss: 0.2211 - accuracy: 0.7791 - mae: 0.2211 - pearson_correlation: 0.3790 - euclidean_distance: 0.3512
Epoch 61/350
152/152 [==============================] - 0s 805us/step - loss: 0.2221 - accuracy: 0.7866 - mae: 0.2221 - pearson_correlation: 0.3753 - euclidean_distance: 0.3521
Epoch 62/350
152/152 [==============================] - 0s 802us/step - loss: 0.2169 - accuracy: 0.7809 - mae: 0.2169 - pearson_correlation: 0.3750 - euclidean_distance: 0.3453
Epoch 63/350
152/152 [==============================] - 0s 800us/step - loss: 0.2168 - accuracy: 0.7897 - mae: 0.2168 - pearson_correlation: 0.3902 - euclidean_distance: 0.3440
Epoch 64/350
152/152 [==============================] - 0s 800us/step - loss: 0.2093 - accuracy: 0.7985 - mae: 0.2093 - pearson_correlation: 0.4002 - euclidean_distance: 0.3323
Epoch 65/350
152/152 [==============================] - 0s 804us/step - loss: 0.2057 - accuracy: 0.8020 - mae: 0.2057 - pearson_correlation: 0.4108 - euclidean_distance: 0.3273
Epoch 66/350
152/152 [==============================] - 0s 802us/step - loss: 0.2015 - accuracy: 0.8025 - mae: 0.2015 - pearson_correlation: 0.4153 - euclidean_distance: 0.3201
Epoch 67/350
152/152 [==============================] - 0s 803us/step - loss: 0.2029 - accuracy: 0.7998 - mae: 0.2029 - pearson_correlation: 0.4115 - euclidean_distance: 0.3237
Epoch 68/350
152/152 [==============================] - 0s 812us/step - loss: 0.1989 - accuracy: 0.8117 - mae: 0.1989 - pearson_correlation: 0.4267 - euclidean_distance: 0.3173
Epoch 69/350
152/152 [==============================] - 0s 803us/step - loss: 0.1945 - accuracy: 0.8210 - mae: 0.1945 - pearson_correlation: 0.4396 - euclidean_distance: 0.3095
Epoch 70/350
152/152 [==============================] - 0s 800us/step - loss: 0.1976 - accuracy: 0.8210 - mae: 0.1976 - pearson_correlation: 0.4377 - euclidean_distance: 0.3137
Epoch 71/350
152/152 [==============================] - 0s 796us/step - loss: 0.1906 - accuracy: 0.8267 - mae: 0.1906 - pearson_correlation: 0.4389 - euclidean_distance: 0.3040
Epoch 72/350
152/152 [==============================] - 0s 800us/step - loss: 0.1898 - accuracy: 0.8263 - mae: 0.1898 - pearson_correlation: 0.4459 - euclidean_distance: 0.3025
Epoch 73/350
152/152 [==============================] - 0s 796us/step - loss: 0.1873 - accuracy: 0.8232 - mae: 0.1873 - pearson_correlation: 0.4526 - euclidean_distance: 0.2982
Epoch 74/350
152/152 [==============================] - 0s 802us/step - loss: 0.1862 - accuracy: 0.8298 - mae: 0.1862 - pearson_correlation: 0.4650 - euclidean_distance: 0.2966
Epoch 75/350
152/152 [==============================] - 0s 800us/step - loss: 0.1816 - accuracy: 0.8417 - mae: 0.1816 - pearson_correlation: 0.4695 - euclidean_distance: 0.2895
Epoch 76/350
152/152 [==============================] - 0s 797us/step - loss: 0.1845 - accuracy: 0.8373 - mae: 0.1845 - pearson_correlation: 0.4676 - euclidean_distance: 0.2944
Epoch 77/350
152/152 [==============================] - 0s 805us/step - loss: 0.1806 - accuracy: 0.8342 - mae: 0.1806 - pearson_correlation: 0.4722 - euclidean_distance: 0.2895
Epoch 78/350
152/152 [==============================] - 0s 803us/step - loss: 0.1764 - accuracy: 0.8466 - mae: 0.1764 - pearson_correlation: 0.4849 - euclidean_distance: 0.2808
Epoch 79/350
152/152 [==============================] - 0s 797us/step - loss: 0.1773 - accuracy: 0.8514 - mae: 0.1773 - pearson_correlation: 0.4864 - euclidean_distance: 0.2827
Epoch 80/350
152/152 [==============================] - 0s 803us/step - loss: 0.1774 - accuracy: 0.8523 - mae: 0.1774 - pearson_correlation: 0.4884 - euclidean_distance: 0.2829
Epoch 81/350
152/152 [==============================] - 0s 801us/step - loss: 0.1730 - accuracy: 0.8470 - mae: 0.1730 - pearson_correlation: 0.4954 - euclidean_distance: 0.2769
Epoch 82/350
152/152 [==============================] - 0s 803us/step - loss: 0.1695 - accuracy: 0.8607 - mae: 0.1695 - pearson_correlation: 0.5061 - euclidean_distance: 0.2702
Epoch 83/350
152/152 [==============================] - 0s 795us/step - loss: 0.1720 - accuracy: 0.8483 - mae: 0.1720 - pearson_correlation: 0.5015 - euclidean_distance: 0.2753
Epoch 84/350
152/152 [==============================] - 0s 802us/step - loss: 0.1696 - accuracy: 0.8642 - mae: 0.1696 - pearson_correlation: 0.5090 - euclidean_distance: 0.2710
Epoch 85/350
152/152 [==============================] - 0s 804us/step - loss: 0.1690 - accuracy: 0.8668 - mae: 0.1690 - pearson_correlation: 0.5114 - euclidean_distance: 0.2701
Epoch 86/350
152/152 [==============================] - 0s 804us/step - loss: 0.1657 - accuracy: 0.8739 - mae: 0.1657 - pearson_correlation: 0.5212 - euclidean_distance: 0.2645
Epoch 87/350
152/152 [==============================] - 0s 797us/step - loss: 0.1668 - accuracy: 0.8699 - mae: 0.1668 - pearson_correlation: 0.5170 - euclidean_distance: 0.2652
Epoch 88/350
152/152 [==============================] - 0s 804us/step - loss: 0.1634 - accuracy: 0.8889 - mae: 0.1634 - pearson_correlation: 0.5241 - euclidean_distance: 0.2613
Epoch 89/350
152/152 [==============================] - 0s 801us/step - loss: 0.1659 - accuracy: 0.8823 - mae: 0.1659 - pearson_correlation: 0.5276 - euclidean_distance: 0.2651
Epoch 90/350
152/152 [==============================] - 0s 803us/step - loss: 0.1625 - accuracy: 0.8902 - mae: 0.1625 - pearson_correlation: 0.5402 - euclidean_distance: 0.2598
Epoch 91/350
152/152 [==============================] - 0s 798us/step - loss: 0.1608 - accuracy: 0.8889 - mae: 0.1608 - pearson_correlation: 0.5299 - euclidean_distance: 0.2575
Epoch 92/350
152/152 [==============================] - 0s 802us/step - loss: 0.1613 - accuracy: 0.8911 - mae: 0.1613 - pearson_correlation: 0.5354 - euclidean_distance: 0.2578
Epoch 93/350
152/152 [==============================] - 0s 798us/step - loss: 0.1573 - accuracy: 0.8946 - mae: 0.1573 - pearson_correlation: 0.5487 - euclidean_distance: 0.2519
Epoch 94/350
152/152 [==============================] - 0s 799us/step - loss: 0.1585 - accuracy: 0.8915 - mae: 0.1585 - pearson_correlation: 0.5445 - euclidean_distance: 0.2533
Epoch 95/350
152/152 [==============================] - 0s 801us/step - loss: 0.1559 - accuracy: 0.8915 - mae: 0.1559 - pearson_correlation: 0.5526 - euclidean_distance: 0.2499
Epoch 96/350
152/152 [==============================] - 0s 802us/step - loss: 0.1573 - accuracy: 0.8977 - mae: 0.1573 - pearson_correlation: 0.5453 - euclidean_distance: 0.2523
Epoch 97/350
152/152 [==============================] - 0s 798us/step - loss: 0.1532 - accuracy: 0.9092 - mae: 0.1532 - pearson_correlation: 0.5700 - euclidean_distance: 0.2438
Epoch 98/350
152/152 [==============================] - 0s 798us/step - loss: 0.1544 - accuracy: 0.8999 - mae: 0.1544 - pearson_correlation: 0.5562 - euclidean_distance: 0.2473
Epoch 99/350
152/152 [==============================] - 0s 800us/step - loss: 0.1549 - accuracy: 0.8999 - mae: 0.1549 - pearson_correlation: 0.5504 - euclidean_distance: 0.2477
Epoch 100/350
152/152 [==============================] - 0s 804us/step - loss: 0.1510 - accuracy: 0.9030 - mae: 0.1510 - pearson_correlation: 0.5660 - euclidean_distance: 0.2424
Epoch 101/350
152/152 [==============================] - 0s 797us/step - loss: 0.1507 - accuracy: 0.9109 - mae: 0.1507 - pearson_correlation: 0.5741 - euclidean_distance: 0.2413
Epoch 102/350
152/152 [==============================] - 0s 803us/step - loss: 0.1519 - accuracy: 0.9153 - mae: 0.1519 - pearson_correlation: 0.5691 - euclidean_distance: 0.2428
Epoch 103/350
152/152 [==============================] - 0s 803us/step - loss: 0.1482 - accuracy: 0.9211 - mae: 0.1482 - pearson_correlation: 0.5812 - euclidean_distance: 0.2373
Epoch 104/350
152/152 [==============================] - 0s 818us/step - loss: 0.1497 - accuracy: 0.9215 - mae: 0.1497 - pearson_correlation: 0.5727 - euclidean_distance: 0.2393
Epoch 105/350
152/152 [==============================] - 0s 807us/step - loss: 0.1483 - accuracy: 0.9202 - mae: 0.1483 - pearson_correlation: 0.5786 - euclidean_distance: 0.2371
Epoch 106/350
152/152 [==============================] - 0s 804us/step - loss: 0.1496 - accuracy: 0.9211 - mae: 0.1496 - pearson_correlation: 0.5728 - euclidean_distance: 0.2400
Epoch 107/350
152/152 [==============================] - 0s 800us/step - loss: 0.1454 - accuracy: 0.9246 - mae: 0.1454 - pearson_correlation: 0.5893 - euclidean_distance: 0.2330
Epoch 108/350
152/152 [==============================] - 0s 800us/step - loss: 0.1460 - accuracy: 0.9233 - mae: 0.1460 - pearson_correlation: 0.5859 - euclidean_distance: 0.2332
Epoch 109/350
152/152 [==============================] - 0s 811us/step - loss: 0.1428 - accuracy: 0.9228 - mae: 0.1428 - pearson_correlation: 0.5935 - euclidean_distance: 0.2296
Epoch 110/350
152/152 [==============================] - 0s 805us/step - loss: 0.1422 - accuracy: 0.9281 - mae: 0.1422 - pearson_correlation: 0.5985 - euclidean_distance: 0.2281
Epoch 111/350
152/152 [==============================] - 0s 797us/step - loss: 0.1439 - accuracy: 0.9317 - mae: 0.1439 - pearson_correlation: 0.5948 - euclidean_distance: 0.2302
Epoch 112/350
152/152 [==============================] - 0s 802us/step - loss: 0.1403 - accuracy: 0.9286 - mae: 0.1403 - pearson_correlation: 0.6011 - euclidean_distance: 0.2253
Epoch 113/350
152/152 [==============================] - 0s 802us/step - loss: 0.1409 - accuracy: 0.9308 - mae: 0.1409 - pearson_correlation: 0.5981 - euclidean_distance: 0.2263
Epoch 114/350
152/152 [==============================] - 0s 796us/step - loss: 0.1414 - accuracy: 0.9299 - mae: 0.1414 - pearson_correlation: 0.6024 - euclidean_distance: 0.2264
Epoch 115/350
152/152 [==============================] - 0s 804us/step - loss: 0.1397 - accuracy: 0.9312 - mae: 0.1397 - pearson_correlation: 0.6121 - euclidean_distance: 0.2236
Epoch 116/350
152/152 [==============================] - 0s 871us/step - loss: 0.1383 - accuracy: 0.9343 - mae: 0.1383 - pearson_correlation: 0.6111 - euclidean_distance: 0.2219
Epoch 117/350
152/152 [==============================] - 0s 866us/step - loss: 0.1385 - accuracy: 0.9255 - mae: 0.1385 - pearson_correlation: 0.6107 - euclidean_distance: 0.2218
Epoch 118/350
152/152 [==============================] - 0s 917us/step - loss: 0.1377 - accuracy: 0.9378 - mae: 0.1377 - pearson_correlation: 0.6080 - euclidean_distance: 0.2209
Epoch 119/350
152/152 [==============================] - 0s 892us/step - loss: 0.1374 - accuracy: 0.9352 - mae: 0.1374 - pearson_correlation: 0.6216 - euclidean_distance: 0.2193
Epoch 120/350
152/152 [==============================] - 0s 886us/step - loss: 0.1386 - accuracy: 0.9356 - mae: 0.1386 - pearson_correlation: 0.6162 - euclidean_distance: 0.2211
Epoch 121/350
152/152 [==============================] - 0s 809us/step - loss: 0.1346 - accuracy: 0.9339 - mae: 0.1346 - pearson_correlation: 0.6200 - euclidean_distance: 0.2158
Epoch 122/350
152/152 [==============================] - 0s 806us/step - loss: 0.1333 - accuracy: 0.9374 - mae: 0.1333 - pearson_correlation: 0.6293 - euclidean_distance: 0.2142
Epoch 123/350
152/152 [==============================] - 0s 808us/step - loss: 0.1349 - accuracy: 0.9361 - mae: 0.1349 - pearson_correlation: 0.6254 - euclidean_distance: 0.2167
Epoch 124/350
152/152 [==============================] - 0s 803us/step - loss: 0.1343 - accuracy: 0.9418 - mae: 0.1343 - pearson_correlation: 0.6278 - euclidean_distance: 0.2145
Epoch 125/350
152/152 [==============================] - 0s 807us/step - loss: 0.1319 - accuracy: 0.9365 - mae: 0.1319 - pearson_correlation: 0.6396 - euclidean_distance: 0.2108
Epoch 126/350
152/152 [==============================] - 0s 803us/step - loss: 0.1298 - accuracy: 0.9414 - mae: 0.1298 - pearson_correlation: 0.6357 - euclidean_distance: 0.2091
Epoch 127/350
152/152 [==============================] - 0s 804us/step - loss: 0.1305 - accuracy: 0.9427 - mae: 0.1305 - pearson_correlation: 0.6402 - euclidean_distance: 0.2082
Epoch 128/350
152/152 [==============================] - 0s 801us/step - loss: 0.1322 - accuracy: 0.9392 - mae: 0.1322 - pearson_correlation: 0.6298 - euclidean_distance: 0.2120
Epoch 129/350
152/152 [==============================] - 0s 803us/step - loss: 0.1303 - accuracy: 0.9400 - mae: 0.1303 - pearson_correlation: 0.6447 - euclidean_distance: 0.2084
Epoch 130/350
152/152 [==============================] - 0s 802us/step - loss: 0.1290 - accuracy: 0.9387 - mae: 0.1290 - pearson_correlation: 0.6455 - euclidean_distance: 0.2068
Epoch 131/350
152/152 [==============================] - 0s 803us/step - loss: 0.1267 - accuracy: 0.9405 - mae: 0.1267 - pearson_correlation: 0.6453 - euclidean_distance: 0.2037
Epoch 132/350
152/152 [==============================] - 0s 803us/step - loss: 0.1301 - accuracy: 0.9400 - mae: 0.1301 - pearson_correlation: 0.6430 - euclidean_distance: 0.2083
Epoch 133/350
152/152 [==============================] - 0s 801us/step - loss: 0.1267 - accuracy: 0.9471 - mae: 0.1267 - pearson_correlation: 0.6525 - euclidean_distance: 0.2035
Epoch 134/350
152/152 [==============================] - 0s 804us/step - loss: 0.1252 - accuracy: 0.9431 - mae: 0.1252 - pearson_correlation: 0.6588 - euclidean_distance: 0.2006
Epoch 135/350
152/152 [==============================] - 0s 801us/step - loss: 0.1229 - accuracy: 0.9436 - mae: 0.1229 - pearson_correlation: 0.6604 - euclidean_distance: 0.1977
Epoch 136/350
152/152 [==============================] - 0s 802us/step - loss: 0.1275 - accuracy: 0.9409 - mae: 0.1275 - pearson_correlation: 0.6477 - euclidean_distance: 0.2045
Epoch 137/350
152/152 [==============================] - 0s 804us/step - loss: 0.1269 - accuracy: 0.9396 - mae: 0.1269 - pearson_correlation: 0.6524 - euclidean_distance: 0.2034
Epoch 138/350
152/152 [==============================] - 0s 799us/step - loss: 0.1223 - accuracy: 0.9462 - mae: 0.1223 - pearson_correlation: 0.6621 - euclidean_distance: 0.1963
Epoch 139/350
152/152 [==============================] - 0s 805us/step - loss: 0.1239 - accuracy: 0.9453 - mae: 0.1239 - pearson_correlation: 0.6622 - euclidean_distance: 0.1985
Epoch 140/350
152/152 [==============================] - 0s 801us/step - loss: 0.1261 - accuracy: 0.9449 - mae: 0.1261 - pearson_correlation: 0.6550 - euclidean_distance: 0.2015
Epoch 141/350
152/152 [==============================] - 0s 801us/step - loss: 0.1215 - accuracy: 0.9458 - mae: 0.1215 - pearson_correlation: 0.6669 - euclidean_distance: 0.1948
Epoch 142/350
152/152 [==============================] - 0s 806us/step - loss: 0.1226 - accuracy: 0.9440 - mae: 0.1226 - pearson_correlation: 0.6655 - euclidean_distance: 0.1962
Epoch 143/350
152/152 [==============================] - 0s 800us/step - loss: 0.1249 - accuracy: 0.9436 - mae: 0.1249 - pearson_correlation: 0.6629 - euclidean_distance: 0.2008
Epoch 144/350
152/152 [==============================] - 0s 802us/step - loss: 0.1235 - accuracy: 0.9453 - mae: 0.1235 - pearson_correlation: 0.6645 - euclidean_distance: 0.1972
Epoch 145/350
152/152 [==============================] - 0s 803us/step - loss: 0.1217 - accuracy: 0.9444 - mae: 0.1217 - pearson_correlation: 0.6778 - euclidean_distance: 0.1950
Epoch 146/350
152/152 [==============================] - 0s 803us/step - loss: 0.1199 - accuracy: 0.9449 - mae: 0.1199 - pearson_correlation: 0.6777 - euclidean_distance: 0.1916
Epoch 147/350
152/152 [==============================] - 0s 805us/step - loss: 0.1194 - accuracy: 0.9436 - mae: 0.1194 - pearson_correlation: 0.6751 - euclidean_distance: 0.1920
Epoch 148/350
152/152 [==============================] - 0s 802us/step - loss: 0.1177 - accuracy: 0.9444 - mae: 0.1177 - pearson_correlation: 0.6823 - euclidean_distance: 0.1889
Epoch 149/350
152/152 [==============================] - 0s 805us/step - loss: 0.1166 - accuracy: 0.9484 - mae: 0.1166 - pearson_correlation: 0.6857 - euclidean_distance: 0.1865
Epoch 150/350
152/152 [==============================] - 0s 807us/step - loss: 0.1206 - accuracy: 0.9471 - mae: 0.1206 - pearson_correlation: 0.6789 - euclidean_distance: 0.1935
Epoch 151/350
152/152 [==============================] - 0s 803us/step - loss: 0.1187 - accuracy: 0.9475 - mae: 0.1187 - pearson_correlation: 0.6803 - euclidean_distance: 0.1907
Epoch 152/350
152/152 [==============================] - 0s 803us/step - loss: 0.1163 - accuracy: 0.9484 - mae: 0.1163 - pearson_correlation: 0.6837 - euclidean_distance: 0.1859
Epoch 153/350
152/152 [==============================] - 0s 804us/step - loss: 0.1161 - accuracy: 0.9475 - mae: 0.1161 - pearson_correlation: 0.6828 - euclidean_distance: 0.1860
Epoch 154/350
152/152 [==============================] - 0s 801us/step - loss: 0.1162 - accuracy: 0.9489 - mae: 0.1162 - pearson_correlation: 0.6875 - euclidean_distance: 0.1868
Epoch 155/350
152/152 [==============================] - 0s 802us/step - loss: 0.1137 - accuracy: 0.9453 - mae: 0.1137 - pearson_correlation: 0.6903 - euclidean_distance: 0.1833
Epoch 156/350
152/152 [==============================] - 0s 857us/step - loss: 0.1147 - accuracy: 0.9458 - mae: 0.1147 - pearson_correlation: 0.6901 - euclidean_distance: 0.1840
Epoch 157/350
152/152 [==============================] - 0s 803us/step - loss: 0.1113 - accuracy: 0.9489 - mae: 0.1113 - pearson_correlation: 0.6965 - euclidean_distance: 0.1793
Epoch 158/350
152/152 [==============================] - 0s 808us/step - loss: 0.1148 - accuracy: 0.9489 - mae: 0.1148 - pearson_correlation: 0.6862 - euclidean_distance: 0.1843
Epoch 159/350
152/152 [==============================] - 0s 802us/step - loss: 0.1123 - accuracy: 0.9453 - mae: 0.1123 - pearson_correlation: 0.7044 - euclidean_distance: 0.1799
Epoch 160/350
152/152 [==============================] - 0s 933us/step - loss: 0.1143 - accuracy: 0.9502 - mae: 0.1143 - pearson_correlation: 0.6928 - euclidean_distance: 0.1831
Epoch 161/350
152/152 [==============================] - 0s 868us/step - loss: 0.1131 - accuracy: 0.9489 - mae: 0.1131 - pearson_correlation: 0.6960 - euclidean_distance: 0.1814
Epoch 162/350
152/152 [==============================] - 0s 797us/step - loss: 0.1100 - accuracy: 0.9506 - mae: 0.1100 - pearson_correlation: 0.7045 - euclidean_distance: 0.1768
Epoch 163/350
152/152 [==============================] - 0s 803us/step - loss: 0.1100 - accuracy: 0.9480 - mae: 0.1100 - pearson_correlation: 0.7009 - euclidean_distance: 0.1770
Epoch 164/350
152/152 [==============================] - 0s 805us/step - loss: 0.1090 - accuracy: 0.9484 - mae: 0.1090 - pearson_correlation: 0.7094 - euclidean_distance: 0.1747
Epoch 165/350
152/152 [==============================] - 0s 800us/step - loss: 0.1125 - accuracy: 0.9493 - mae: 0.1125 - pearson_correlation: 0.6953 - euclidean_distance: 0.1806
Epoch 166/350
152/152 [==============================] - 0s 805us/step - loss: 0.1098 - accuracy: 0.9489 - mae: 0.1098 - pearson_correlation: 0.7094 - euclidean_distance: 0.1764
Epoch 167/350
152/152 [==============================] - 0s 800us/step - loss: 0.1116 - accuracy: 0.9489 - mae: 0.1116 - pearson_correlation: 0.7010 - euclidean_distance: 0.1791
Epoch 168/350
152/152 [==============================] - 0s 801us/step - loss: 0.1080 - accuracy: 0.9484 - mae: 0.1080 - pearson_correlation: 0.7126 - euclidean_distance: 0.1736
Epoch 169/350
152/152 [==============================] - 0s 804us/step - loss: 0.1069 - accuracy: 0.9511 - mae: 0.1069 - pearson_correlation: 0.7074 - euclidean_distance: 0.1718
Epoch 170/350
152/152 [==============================] - 0s 795us/step - loss: 0.1055 - accuracy: 0.9506 - mae: 0.1055 - pearson_correlation: 0.7146 - euclidean_distance: 0.1695
Epoch 171/350
152/152 [==============================] - 0s 803us/step - loss: 0.1087 - accuracy: 0.9480 - mae: 0.1087 - pearson_correlation: 0.7035 - euclidean_distance: 0.1753
Epoch 172/350
152/152 [==============================] - 0s 806us/step - loss: 0.1099 - accuracy: 0.9480 - mae: 0.1099 - pearson_correlation: 0.7054 - euclidean_distance: 0.1766
Epoch 173/350
152/152 [==============================] - 0s 803us/step - loss: 0.1058 - accuracy: 0.9497 - mae: 0.1058 - pearson_correlation: 0.7167 - euclidean_distance: 0.1700
Epoch 174/350
152/152 [==============================] - 0s 801us/step - loss: 0.1081 - accuracy: 0.9489 - mae: 0.1081 - pearson_correlation: 0.7128 - euclidean_distance: 0.1733
Epoch 175/350
152/152 [==============================] - 0s 805us/step - loss: 0.1069 - accuracy: 0.9493 - mae: 0.1069 - pearson_correlation: 0.7103 - euclidean_distance: 0.1718
Epoch 176/350
152/152 [==============================] - 0s 805us/step - loss: 0.1052 - accuracy: 0.9502 - mae: 0.1052 - pearson_correlation: 0.7191 - euclidean_distance: 0.1689
Epoch 177/350
152/152 [==============================] - 0s 801us/step - loss: 0.1046 - accuracy: 0.9497 - mae: 0.1046 - pearson_correlation: 0.7189 - euclidean_distance: 0.1687
Epoch 178/350
152/152 [==============================] - 0s 804us/step - loss: 0.1061 - accuracy: 0.9511 - mae: 0.1061 - pearson_correlation: 0.7114 - euclidean_distance: 0.1703
Epoch 179/350
152/152 [==============================] - 0s 804us/step - loss: 0.1025 - accuracy: 0.9502 - mae: 0.1025 - pearson_correlation: 0.7251 - euclidean_distance: 0.1649
Epoch 180/350
152/152 [==============================] - 0s 806us/step - loss: 0.1028 - accuracy: 0.9515 - mae: 0.1028 - pearson_correlation: 0.7267 - euclidean_distance: 0.1654
Epoch 181/350
152/152 [==============================] - 0s 802us/step - loss: 0.1064 - accuracy: 0.9502 - mae: 0.1064 - pearson_correlation: 0.7152 - euclidean_distance: 0.1705
Epoch 182/350
152/152 [==============================] - 0s 811us/step - loss: 0.1052 - accuracy: 0.9506 - mae: 0.1052 - pearson_correlation: 0.7176 - euclidean_distance: 0.1683
Epoch 183/350
152/152 [==============================] - 0s 794us/step - loss: 0.1030 - accuracy: 0.9489 - mae: 0.1030 - pearson_correlation: 0.7229 - euclidean_distance: 0.1657
Epoch 184/350
152/152 [==============================] - 0s 803us/step - loss: 0.1051 - accuracy: 0.9524 - mae: 0.1051 - pearson_correlation: 0.7194 - euclidean_distance: 0.1690
Epoch 185/350
152/152 [==============================] - 0s 821us/step - loss: 0.1024 - accuracy: 0.9511 - mae: 0.1024 - pearson_correlation: 0.7226 - euclidean_distance: 0.1645
Epoch 186/350
152/152 [==============================] - 0s 814us/step - loss: 0.1043 - accuracy: 0.9506 - mae: 0.1043 - pearson_correlation: 0.7254 - euclidean_distance: 0.1674
Epoch 187/350
152/152 [==============================] - 0s 807us/step - loss: 0.1003 - accuracy: 0.9511 - mae: 0.1003 - pearson_correlation: 0.7331 - euclidean_distance: 0.1609
Epoch 188/350
152/152 [==============================] - 0s 808us/step - loss: 0.1034 - accuracy: 0.9511 - mae: 0.1034 - pearson_correlation: 0.7302 - euclidean_distance: 0.1658
Epoch 189/350
152/152 [==============================] - 0s 807us/step - loss: 0.1053 - accuracy: 0.9502 - mae: 0.1053 - pearson_correlation: 0.7249 - euclidean_distance: 0.1690
Epoch 190/350
152/152 [==============================] - 0s 810us/step - loss: 0.0993 - accuracy: 0.9515 - mae: 0.0993 - pearson_correlation: 0.7409 - euclidean_distance: 0.1600
Epoch 191/350
152/152 [==============================] - 0s 807us/step - loss: 0.0989 - accuracy: 0.9524 - mae: 0.0989 - pearson_correlation: 0.7400 - euclidean_distance: 0.1589
Epoch 192/350
152/152 [==============================] - 0s 808us/step - loss: 0.1038 - accuracy: 0.9524 - mae: 0.1038 - pearson_correlation: 0.7207 - euclidean_distance: 0.1674
Epoch 193/350
152/152 [==============================] - 0s 808us/step - loss: 0.1016 - accuracy: 0.9515 - mae: 0.1016 - pearson_correlation: 0.7306 - euclidean_distance: 0.1635
Epoch 194/350
152/152 [==============================] - 0s 804us/step - loss: 0.1013 - accuracy: 0.9515 - mae: 0.1013 - pearson_correlation: 0.7301 - euclidean_distance: 0.1631
Epoch 195/350
152/152 [==============================] - 0s 805us/step - loss: 0.1024 - accuracy: 0.9533 - mae: 0.1024 - pearson_correlation: 0.7275 - euclidean_distance: 0.1641
Epoch 196/350
152/152 [==============================] - 0s 802us/step - loss: 0.0983 - accuracy: 0.9524 - mae: 0.0983 - pearson_correlation: 0.7436 - euclidean_distance: 0.1579
Epoch 197/350
152/152 [==============================] - 0s 805us/step - loss: 0.1004 - accuracy: 0.9502 - mae: 0.1004 - pearson_correlation: 0.7318 - euclidean_distance: 0.1610
Epoch 198/350
152/152 [==============================] - 0s 804us/step - loss: 0.1002 - accuracy: 0.9515 - mae: 0.1002 - pearson_correlation: 0.7350 - euclidean_distance: 0.1615
Epoch 199/350
152/152 [==============================] - 0s 805us/step - loss: 0.0999 - accuracy: 0.9533 - mae: 0.0999 - pearson_correlation: 0.7316 - euclidean_distance: 0.1608
Epoch 200/350
152/152 [==============================] - 0s 804us/step - loss: 0.0979 - accuracy: 0.9506 - mae: 0.0979 - pearson_correlation: 0.7388 - euclidean_distance: 0.1573
Epoch 201/350
152/152 [==============================] - 0s 801us/step - loss: 0.0990 - accuracy: 0.9524 - mae: 0.0990 - pearson_correlation: 0.7325 - euclidean_distance: 0.1594
Epoch 202/350
152/152 [==============================] - 0s 803us/step - loss: 0.0983 - accuracy: 0.9515 - mae: 0.0983 - pearson_correlation: 0.7446 - euclidean_distance: 0.1573
Epoch 203/350
152/152 [==============================] - 0s 807us/step - loss: 0.0975 - accuracy: 0.9528 - mae: 0.0975 - pearson_correlation: 0.7437 - euclidean_distance: 0.1568
Epoch 204/350
152/152 [==============================] - 0s 803us/step - loss: 0.0988 - accuracy: 0.9511 - mae: 0.0988 - pearson_correlation: 0.7346 - euclidean_distance: 0.1587
Epoch 205/350
152/152 [==============================] - 0s 796us/step - loss: 0.0989 - accuracy: 0.9511 - mae: 0.0989 - pearson_correlation: 0.7357 - euclidean_distance: 0.1593
Epoch 206/350
152/152 [==============================] - 0s 798us/step - loss: 0.0986 - accuracy: 0.9515 - mae: 0.0986 - pearson_correlation: 0.7391 - euclidean_distance: 0.1588
Epoch 207/350
152/152 [==============================] - 0s 803us/step - loss: 0.0974 - accuracy: 0.9519 - mae: 0.0974 - pearson_correlation: 0.7425 - euclidean_distance: 0.1566
Epoch 208/350
152/152 [==============================] - 0s 800us/step - loss: 0.0984 - accuracy: 0.9533 - mae: 0.0984 - pearson_correlation: 0.7458 - euclidean_distance: 0.1578
Epoch 209/350
152/152 [==============================] - 0s 802us/step - loss: 0.0972 - accuracy: 0.9524 - mae: 0.0972 - pearson_correlation: 0.7394 - euclidean_distance: 0.1568
Epoch 210/350
152/152 [==============================] - 0s 804us/step - loss: 0.0965 - accuracy: 0.9524 - mae: 0.0965 - pearson_correlation: 0.7365 - euclidean_distance: 0.1551
Epoch 211/350
152/152 [==============================] - 0s 803us/step - loss: 0.0970 - accuracy: 0.9533 - mae: 0.0970 - pearson_correlation: 0.7434 - euclidean_distance: 0.1560
Epoch 212/350
152/152 [==============================] - 0s 798us/step - loss: 0.0962 - accuracy: 0.9519 - mae: 0.0962 - pearson_correlation: 0.7446 - euclidean_distance: 0.1543
Epoch 213/350
152/152 [==============================] - 0s 803us/step - loss: 0.0940 - accuracy: 0.9515 - mae: 0.0940 - pearson_correlation: 0.7548 - euclidean_distance: 0.1510
Epoch 214/350
152/152 [==============================] - 0s 801us/step - loss: 0.0969 - accuracy: 0.9541 - mae: 0.0969 - pearson_correlation: 0.7382 - euclidean_distance: 0.1561
Epoch 215/350
152/152 [==============================] - 0s 802us/step - loss: 0.0986 - accuracy: 0.9511 - mae: 0.0986 - pearson_correlation: 0.7394 - euclidean_distance: 0.1587
Epoch 216/350
152/152 [==============================] - 0s 849us/step - loss: 0.0956 - accuracy: 0.9519 - mae: 0.0956 - pearson_correlation: 0.7412 - euclidean_distance: 0.1543
Epoch 217/350
152/152 [==============================] - 0s 811us/step - loss: 0.0956 - accuracy: 0.9511 - mae: 0.0956 - pearson_correlation: 0.7425 - euclidean_distance: 0.1534
Epoch 218/350
152/152 [==============================] - 0s 805us/step - loss: 0.0962 - accuracy: 0.9533 - mae: 0.0962 - pearson_correlation: 0.7475 - euclidean_distance: 0.1546
Epoch 219/350
152/152 [==============================] - 0s 805us/step - loss: 0.0971 - accuracy: 0.9550 - mae: 0.0971 - pearson_correlation: 0.7458 - euclidean_distance: 0.1559
Epoch 220/350
152/152 [==============================] - 0s 803us/step - loss: 0.0950 - accuracy: 0.9546 - mae: 0.0950 - pearson_correlation: 0.7497 - euclidean_distance: 0.1531
Epoch 221/350
152/152 [==============================] - 0s 803us/step - loss: 0.0921 - accuracy: 0.9541 - mae: 0.0921 - pearson_correlation: 0.7606 - euclidean_distance: 0.1477
Epoch 222/350
152/152 [==============================] - 0s 799us/step - loss: 0.0950 - accuracy: 0.9511 - mae: 0.0950 - pearson_correlation: 0.7521 - euclidean_distance: 0.1532
Epoch 223/350
152/152 [==============================] - 0s 804us/step - loss: 0.0962 - accuracy: 0.9528 - mae: 0.0962 - pearson_correlation: 0.7441 - euclidean_distance: 0.1547
Epoch 224/350
152/152 [==============================] - 0s 801us/step - loss: 0.0941 - accuracy: 0.9546 - mae: 0.0941 - pearson_correlation: 0.7490 - euclidean_distance: 0.1513
Epoch 225/350
152/152 [==============================] - 0s 804us/step - loss: 0.0928 - accuracy: 0.9550 - mae: 0.0928 - pearson_correlation: 0.7566 - euclidean_distance: 0.1499
Epoch 226/350
152/152 [==============================] - 0s 800us/step - loss: 0.0926 - accuracy: 0.9511 - mae: 0.0926 - pearson_correlation: 0.7513 - euclidean_distance: 0.1491
Epoch 227/350
152/152 [==============================] - 0s 800us/step - loss: 0.0933 - accuracy: 0.9537 - mae: 0.0933 - pearson_correlation: 0.7478 - euclidean_distance: 0.1505
Epoch 228/350
152/152 [==============================] - 0s 803us/step - loss: 0.0938 - accuracy: 0.9537 - mae: 0.0938 - pearson_correlation: 0.7497 - euclidean_distance: 0.1508
Epoch 229/350
152/152 [==============================] - 0s 804us/step - loss: 0.0956 - accuracy: 0.9555 - mae: 0.0956 - pearson_correlation: 0.7477 - euclidean_distance: 0.1533
Epoch 230/350
152/152 [==============================] - 0s 799us/step - loss: 0.0911 - accuracy: 0.9528 - mae: 0.0911 - pearson_correlation: 0.7593 - euclidean_distance: 0.1466
Epoch 231/350
152/152 [==============================] - 0s 803us/step - loss: 0.0943 - accuracy: 0.9546 - mae: 0.0943 - pearson_correlation: 0.7506 - euclidean_distance: 0.1516
Epoch 232/350
152/152 [==============================] - 0s 801us/step - loss: 0.0910 - accuracy: 0.9537 - mae: 0.0910 - pearson_correlation: 0.7590 - euclidean_distance: 0.1465
Epoch 233/350
152/152 [==============================] - 0s 803us/step - loss: 0.0948 - accuracy: 0.9533 - mae: 0.0948 - pearson_correlation: 0.7556 - euclidean_distance: 0.1522
Epoch 234/350
152/152 [==============================] - 0s 797us/step - loss: 0.0907 - accuracy: 0.9555 - mae: 0.0907 - pearson_correlation: 0.7585 - euclidean_distance: 0.1459
Epoch 235/350
152/152 [==============================] - 0s 797us/step - loss: 0.0911 - accuracy: 0.9533 - mae: 0.0911 - pearson_correlation: 0.7572 - euclidean_distance: 0.1468
Epoch 236/350
152/152 [==============================] - 0s 800us/step - loss: 0.0922 - accuracy: 0.9533 - mae: 0.0922 - pearson_correlation: 0.7517 - euclidean_distance: 0.1481
Epoch 237/350
152/152 [==============================] - 0s 801us/step - loss: 0.0936 - accuracy: 0.9533 - mae: 0.0936 - pearson_correlation: 0.7498 - euclidean_distance: 0.1502
Epoch 238/350
152/152 [==============================] - 0s 795us/step - loss: 0.0921 - accuracy: 0.9533 - mae: 0.0921 - pearson_correlation: 0.7571 - euclidean_distance: 0.1482
Epoch 239/350
152/152 [==============================] - 0s 806us/step - loss: 0.0930 - accuracy: 0.9550 - mae: 0.0930 - pearson_correlation: 0.7528 - euclidean_distance: 0.1498
Epoch 240/350
152/152 [==============================] - 0s 791us/step - loss: 0.0905 - accuracy: 0.9546 - mae: 0.0905 - pearson_correlation: 0.7632 - euclidean_distance: 0.1454
Epoch 241/350
152/152 [==============================] - 0s 801us/step - loss: 0.0910 - accuracy: 0.9546 - mae: 0.0910 - pearson_correlation: 0.7581 - euclidean_distance: 0.1467
Epoch 242/350
152/152 [==============================] - 0s 799us/step - loss: 0.0897 - accuracy: 0.9524 - mae: 0.0897 - pearson_correlation: 0.7557 - euclidean_distance: 0.1445
Epoch 243/350
152/152 [==============================] - 0s 801us/step - loss: 0.0903 - accuracy: 0.9550 - mae: 0.0903 - pearson_correlation: 0.7637 - euclidean_distance: 0.1457
Epoch 244/350
152/152 [==============================] - 0s 850us/step - loss: 0.0896 - accuracy: 0.9537 - mae: 0.0896 - pearson_correlation: 0.7604 - euclidean_distance: 0.1440
Epoch 245/350
152/152 [==============================] - 0s 890us/step - loss: 0.0910 - accuracy: 0.9541 - mae: 0.0910 - pearson_correlation: 0.7611 - euclidean_distance: 0.1465
Epoch 246/350
152/152 [==============================] - 0s 866us/step - loss: 0.0883 - accuracy: 0.9533 - mae: 0.0883 - pearson_correlation: 0.7651 - euclidean_distance: 0.1422
Epoch 247/350
152/152 [==============================] - 0s 919us/step - loss: 0.0901 - accuracy: 0.9546 - mae: 0.0901 - pearson_correlation: 0.7597 - euclidean_distance: 0.1455
Epoch 248/350
152/152 [==============================] - 0s 925us/step - loss: 0.0910 - accuracy: 0.9550 - mae: 0.0910 - pearson_correlation: 0.7577 - euclidean_distance: 0.1464
Epoch 249/350
152/152 [==============================] - 0s 827us/step - loss: 0.0898 - accuracy: 0.9533 - mae: 0.0898 - pearson_correlation: 0.7641 - euclidean_distance: 0.1451
Epoch 250/350
152/152 [==============================] - 0s 804us/step - loss: 0.0915 - accuracy: 0.9541 - mae: 0.0915 - pearson_correlation: 0.7502 - euclidean_distance: 0.1476
Epoch 251/350
152/152 [==============================] - 0s 807us/step - loss: 0.0897 - accuracy: 0.9550 - mae: 0.0897 - pearson_correlation: 0.7574 - euclidean_distance: 0.1446
Epoch 252/350
152/152 [==============================] - 0s 808us/step - loss: 0.0908 - accuracy: 0.9537 - mae: 0.0908 - pearson_correlation: 0.7579 - euclidean_distance: 0.1457
Epoch 253/350
152/152 [==============================] - 0s 806us/step - loss: 0.0870 - accuracy: 0.9546 - mae: 0.0870 - pearson_correlation: 0.7695 - euclidean_distance: 0.1409
Epoch 254/350
152/152 [==============================] - 0s 808us/step - loss: 0.0898 - accuracy: 0.9541 - mae: 0.0898 - pearson_correlation: 0.7574 - euclidean_distance: 0.1446
Epoch 255/350
152/152 [==============================] - 0s 803us/step - loss: 0.0890 - accuracy: 0.9533 - mae: 0.0890 - pearson_correlation: 0.7630 - euclidean_distance: 0.1436
Epoch 256/350
152/152 [==============================] - 0s 809us/step - loss: 0.0898 - accuracy: 0.9550 - mae: 0.0898 - pearson_correlation: 0.7597 - euclidean_distance: 0.1448
Epoch 257/350
152/152 [==============================] - 0s 802us/step - loss: 0.0879 - accuracy: 0.9546 - mae: 0.0879 - pearson_correlation: 0.7674 - euclidean_distance: 0.1416
Epoch 258/350
152/152 [==============================] - 0s 802us/step - loss: 0.0903 - accuracy: 0.9559 - mae: 0.0903 - pearson_correlation: 0.7571 - euclidean_distance: 0.1455
Epoch 259/350
152/152 [==============================] - 0s 803us/step - loss: 0.0856 - accuracy: 0.9524 - mae: 0.0856 - pearson_correlation: 0.7732 - euclidean_distance: 0.1386
Epoch 260/350
152/152 [==============================] - 0s 800us/step - loss: 0.0889 - accuracy: 0.9550 - mae: 0.0889 - pearson_correlation: 0.7658 - euclidean_distance: 0.1428
Epoch 261/350
152/152 [==============================] - 0s 806us/step - loss: 0.0899 - accuracy: 0.9546 - mae: 0.0899 - pearson_correlation: 0.7566 - euclidean_distance: 0.1444
Epoch 262/350
152/152 [==============================] - 0s 800us/step - loss: 0.0864 - accuracy: 0.9550 - mae: 0.0864 - pearson_correlation: 0.7654 - euclidean_distance: 0.1397
Epoch 263/350
152/152 [==============================] - 0s 803us/step - loss: 0.0891 - accuracy: 0.9541 - mae: 0.0891 - pearson_correlation: 0.7592 - euclidean_distance: 0.1439
Epoch 264/350
152/152 [==============================] - 0s 799us/step - loss: 0.0872 - accuracy: 0.9533 - mae: 0.0872 - pearson_correlation: 0.7695 - euclidean_distance: 0.1401
Epoch 265/350
152/152 [==============================] - 0s 817us/step - loss: 0.0848 - accuracy: 0.9550 - mae: 0.0848 - pearson_correlation: 0.7751 - euclidean_distance: 0.1370
Epoch 266/350
152/152 [==============================] - 0s 811us/step - loss: 0.0860 - accuracy: 0.9550 - mae: 0.0860 - pearson_correlation: 0.7706 - euclidean_distance: 0.1385
Epoch 267/350
152/152 [==============================] - 0s 804us/step - loss: 0.0844 - accuracy: 0.9537 - mae: 0.0844 - pearson_correlation: 0.7720 - euclidean_distance: 0.1367
Epoch 268/350
152/152 [==============================] - 0s 796us/step - loss: 0.0877 - accuracy: 0.9550 - mae: 0.0877 - pearson_correlation: 0.7673 - euclidean_distance: 0.1417
Epoch 269/350
152/152 [==============================] - 0s 803us/step - loss: 0.0860 - accuracy: 0.9533 - mae: 0.0860 - pearson_correlation: 0.7648 - euclidean_distance: 0.1391
Epoch 270/350
152/152 [==============================] - 0s 811us/step - loss: 0.0885 - accuracy: 0.9550 - mae: 0.0885 - pearson_correlation: 0.7666 - euclidean_distance: 0.1427
Epoch 271/350
152/152 [==============================] - 0s 826us/step - loss: 0.0877 - accuracy: 0.9546 - mae: 0.0877 - pearson_correlation: 0.7664 - euclidean_distance: 0.1420
Epoch 272/350
152/152 [==============================] - 0s 802us/step - loss: 0.0877 - accuracy: 0.9550 - mae: 0.0877 - pearson_correlation: 0.7655 - euclidean_distance: 0.1413
Epoch 273/350
152/152 [==============================] - 0s 806us/step - loss: 0.0887 - accuracy: 0.9546 - mae: 0.0887 - pearson_correlation: 0.7633 - euclidean_distance: 0.1427
Epoch 274/350
152/152 [==============================] - 0s 803us/step - loss: 0.0851 - accuracy: 0.9546 - mae: 0.0851 - pearson_correlation: 0.7714 - euclidean_distance: 0.1379
Epoch 275/350
152/152 [==============================] - 0s 809us/step - loss: 0.0859 - accuracy: 0.9546 - mae: 0.0859 - pearson_correlation: 0.7684 - euclidean_distance: 0.1386
Epoch 276/350
152/152 [==============================] - 0s 805us/step - loss: 0.0870 - accuracy: 0.9528 - mae: 0.0870 - pearson_correlation: 0.7698 - euclidean_distance: 0.1398
Epoch 277/350
152/152 [==============================] - 0s 805us/step - loss: 0.0862 - accuracy: 0.9550 - mae: 0.0862 - pearson_correlation: 0.7720 - euclidean_distance: 0.1389
Epoch 278/350
152/152 [==============================] - 0s 799us/step - loss: 0.0867 - accuracy: 0.9528 - mae: 0.0867 - pearson_correlation: 0.7693 - euclidean_distance: 0.1397
Epoch 279/350
152/152 [==============================] - 0s 805us/step - loss: 0.0882 - accuracy: 0.9559 - mae: 0.0882 - pearson_correlation: 0.7652 - euclidean_distance: 0.1417
Epoch 280/350
152/152 [==============================] - 0s 797us/step - loss: 0.0881 - accuracy: 0.9537 - mae: 0.0881 - pearson_correlation: 0.7664 - euclidean_distance: 0.1417
Epoch 281/350
152/152 [==============================] - 0s 802us/step - loss: 0.0860 - accuracy: 0.9550 - mae: 0.0860 - pearson_correlation: 0.7681 - euclidean_distance: 0.1391
Epoch 282/350
152/152 [==============================] - 0s 805us/step - loss: 0.0847 - accuracy: 0.9537 - mae: 0.0847 - pearson_correlation: 0.7761 - euclidean_distance: 0.1370
Epoch 283/350
152/152 [==============================] - 0s 800us/step - loss: 0.0868 - accuracy: 0.9563 - mae: 0.0868 - pearson_correlation: 0.7710 - euclidean_distance: 0.1397
Epoch 284/350
152/152 [==============================] - 0s 805us/step - loss: 0.0835 - accuracy: 0.9546 - mae: 0.0835 - pearson_correlation: 0.7756 - euclidean_distance: 0.1348
Epoch 285/350
152/152 [==============================] - 0s 798us/step - loss: 0.0857 - accuracy: 0.9546 - mae: 0.0857 - pearson_correlation: 0.7704 - euclidean_distance: 0.1384
Epoch 286/350
152/152 [==============================] - 0s 800us/step - loss: 0.0842 - accuracy: 0.9555 - mae: 0.0842 - pearson_correlation: 0.7742 - euclidean_distance: 0.1359
Epoch 287/350
152/152 [==============================] - 0s 804us/step - loss: 0.0860 - accuracy: 0.9541 - mae: 0.0860 - pearson_correlation: 0.7726 - euclidean_distance: 0.1387
Epoch 288/350
152/152 [==============================] - 0s 803us/step - loss: 0.0876 - accuracy: 0.9555 - mae: 0.0876 - pearson_correlation: 0.7686 - euclidean_distance: 0.1416
Epoch 289/350
152/152 [==============================] - 0s 798us/step - loss: 0.0838 - accuracy: 0.9550 - mae: 0.0838 - pearson_correlation: 0.7754 - euclidean_distance: 0.1356
Epoch 290/350
152/152 [==============================] - 0s 802us/step - loss: 0.0866 - accuracy: 0.9550 - mae: 0.0866 - pearson_correlation: 0.7680 - euclidean_distance: 0.1398
Epoch 291/350
152/152 [==============================] - 0s 801us/step - loss: 0.0845 - accuracy: 0.9541 - mae: 0.0845 - pearson_correlation: 0.7671 - euclidean_distance: 0.1362
Epoch 292/350
152/152 [==============================] - 0s 814us/step - loss: 0.0848 - accuracy: 0.9555 - mae: 0.0848 - pearson_correlation: 0.7751 - euclidean_distance: 0.1369
Epoch 293/350
152/152 [==============================] - 0s 806us/step - loss: 0.0838 - accuracy: 0.9546 - mae: 0.0838 - pearson_correlation: 0.7806 - euclidean_distance: 0.1353
Epoch 294/350
152/152 [==============================] - 0s 801us/step - loss: 0.0848 - accuracy: 0.9541 - mae: 0.0848 - pearson_correlation: 0.7735 - euclidean_distance: 0.1368
Epoch 295/350
152/152 [==============================] - 0s 805us/step - loss: 0.0831 - accuracy: 0.9559 - mae: 0.0831 - pearson_correlation: 0.7742 - euclidean_distance: 0.1340
Epoch 296/350
152/152 [==============================] - 0s 800us/step - loss: 0.0840 - accuracy: 0.9559 - mae: 0.0840 - pearson_correlation: 0.7696 - euclidean_distance: 0.1357
Epoch 297/350
152/152 [==============================] - 0s 797us/step - loss: 0.0858 - accuracy: 0.9559 - mae: 0.0858 - pearson_correlation: 0.7673 - euclidean_distance: 0.1386
Epoch 298/350
152/152 [==============================] - 0s 800us/step - loss: 0.0851 - accuracy: 0.9555 - mae: 0.0851 - pearson_correlation: 0.7708 - euclidean_distance: 0.1374
Epoch 299/350
152/152 [==============================] - 0s 805us/step - loss: 0.0796 - accuracy: 0.9537 - mae: 0.0796 - pearson_correlation: 0.7771 - euclidean_distance: 0.1289
Epoch 300/350
152/152 [==============================] - 0s 802us/step - loss: 0.0835 - accuracy: 0.9568 - mae: 0.0835 - pearson_correlation: 0.7811 - euclidean_distance: 0.1346
Epoch 301/350
152/152 [==============================] - 0s 801us/step - loss: 0.0841 - accuracy: 0.9546 - mae: 0.0841 - pearson_correlation: 0.7767 - euclidean_distance: 0.1362
Epoch 302/350
152/152 [==============================] - 0s 803us/step - loss: 0.0857 - accuracy: 0.9550 - mae: 0.0857 - pearson_correlation: 0.7738 - euclidean_distance: 0.1380
Epoch 303/350
152/152 [==============================] - 0s 800us/step - loss: 0.0816 - accuracy: 0.9550 - mae: 0.0816 - pearson_correlation: 0.7856 - euclidean_distance: 0.1322
Epoch 304/350
152/152 [==============================] - 0s 802us/step - loss: 0.0846 - accuracy: 0.9559 - mae: 0.0846 - pearson_correlation: 0.7728 - euclidean_distance: 0.1366
Epoch 305/350
152/152 [==============================] - 0s 804us/step - loss: 0.0841 - accuracy: 0.9550 - mae: 0.0841 - pearson_correlation: 0.7800 - euclidean_distance: 0.1359
Epoch 306/350
152/152 [==============================] - 0s 798us/step - loss: 0.0836 - accuracy: 0.9555 - mae: 0.0836 - pearson_correlation: 0.7787 - euclidean_distance: 0.1353
Epoch 307/350
152/152 [==============================] - 0s 799us/step - loss: 0.0827 - accuracy: 0.9555 - mae: 0.0827 - pearson_correlation: 0.7799 - euclidean_distance: 0.1337
Epoch 308/350
152/152 [==============================] - 0s 802us/step - loss: 0.0828 - accuracy: 0.9550 - mae: 0.0828 - pearson_correlation: 0.7770 - euclidean_distance: 0.1340
Epoch 309/350
152/152 [==============================] - 0s 800us/step - loss: 0.0857 - accuracy: 0.9550 - mae: 0.0857 - pearson_correlation: 0.7743 - euclidean_distance: 0.1381
Epoch 310/350
152/152 [==============================] - 0s 805us/step - loss: 0.0828 - accuracy: 0.9563 - mae: 0.0828 - pearson_correlation: 0.7792 - euclidean_distance: 0.1332
Epoch 311/350
152/152 [==============================] - 0s 799us/step - loss: 0.0807 - accuracy: 0.9555 - mae: 0.0807 - pearson_correlation: 0.7867 - euclidean_distance: 0.1304
Epoch 312/350
152/152 [==============================] - 0s 803us/step - loss: 0.0825 - accuracy: 0.9559 - mae: 0.0825 - pearson_correlation: 0.7801 - euclidean_distance: 0.1331
Epoch 313/350
152/152 [==============================] - 0s 802us/step - loss: 0.0839 - accuracy: 0.9555 - mae: 0.0839 - pearson_correlation: 0.7857 - euclidean_distance: 0.1349
Epoch 314/350
152/152 [==============================] - 0s 804us/step - loss: 0.0832 - accuracy: 0.9546 - mae: 0.0832 - pearson_correlation: 0.7791 - euclidean_distance: 0.1345
Epoch 315/350
152/152 [==============================] - 0s 801us/step - loss: 0.0822 - accuracy: 0.9555 - mae: 0.0822 - pearson_correlation: 0.7751 - euclidean_distance: 0.1332
Epoch 316/350
152/152 [==============================] - 0s 802us/step - loss: 0.0817 - accuracy: 0.9559 - mae: 0.0817 - pearson_correlation: 0.7824 - euclidean_distance: 0.1321
Epoch 317/350
152/152 [==============================] - 0s 805us/step - loss: 0.0818 - accuracy: 0.9550 - mae: 0.0818 - pearson_correlation: 0.7857 - euclidean_distance: 0.1322
Epoch 318/350
152/152 [==============================] - 0s 799us/step - loss: 0.0843 - accuracy: 0.9550 - mae: 0.0843 - pearson_correlation: 0.7777 - euclidean_distance: 0.1356
Epoch 319/350
152/152 [==============================] - 0s 799us/step - loss: 0.0837 - accuracy: 0.9555 - mae: 0.0837 - pearson_correlation: 0.7703 - euclidean_distance: 0.1353
Epoch 320/350
152/152 [==============================] - 0s 802us/step - loss: 0.0816 - accuracy: 0.9546 - mae: 0.0816 - pearson_correlation: 0.7817 - euclidean_distance: 0.1319
Epoch 321/350
152/152 [==============================] - 0s 802us/step - loss: 0.0821 - accuracy: 0.9555 - mae: 0.0821 - pearson_correlation: 0.7759 - euclidean_distance: 0.1330
Epoch 322/350
152/152 [==============================] - 0s 801us/step - loss: 0.0806 - accuracy: 0.9546 - mae: 0.0806 - pearson_correlation: 0.7838 - euclidean_distance: 0.1303
Epoch 323/350
152/152 [==============================] - 0s 799us/step - loss: 0.0796 - accuracy: 0.9563 - mae: 0.0796 - pearson_correlation: 0.7834 - euclidean_distance: 0.1290
Epoch 324/350
152/152 [==============================] - 0s 801us/step - loss: 0.0822 - accuracy: 0.9546 - mae: 0.0822 - pearson_correlation: 0.7810 - euclidean_distance: 0.1328
Epoch 325/350
152/152 [==============================] - 0s 804us/step - loss: 0.0806 - accuracy: 0.9559 - mae: 0.0806 - pearson_correlation: 0.7843 - euclidean_distance: 0.1303
Epoch 326/350
152/152 [==============================] - 0s 800us/step - loss: 0.0811 - accuracy: 0.9555 - mae: 0.0811 - pearson_correlation: 0.7799 - euclidean_distance: 0.1314
Epoch 327/350
152/152 [==============================] - 0s 802us/step - loss: 0.0805 - accuracy: 0.9559 - mae: 0.0805 - pearson_correlation: 0.7805 - euclidean_distance: 0.1299
Epoch 328/350
152/152 [==============================] - 0s 805us/step - loss: 0.0806 - accuracy: 0.9559 - mae: 0.0806 - pearson_correlation: 0.7840 - euclidean_distance: 0.1304
Epoch 329/350
152/152 [==============================] - 0s 799us/step - loss: 0.0814 - accuracy: 0.9546 - mae: 0.0814 - pearson_correlation: 0.7768 - euclidean_distance: 0.1322
Epoch 330/350
152/152 [==============================] - 0s 799us/step - loss: 0.0793 - accuracy: 0.9559 - mae: 0.0793 - pearson_correlation: 0.7878 - euclidean_distance: 0.1282
Epoch 331/350
152/152 [==============================] - 0s 799us/step - loss: 0.0800 - accuracy: 0.9550 - mae: 0.0800 - pearson_correlation: 0.7826 - euclidean_distance: 0.1295
Epoch 332/350
152/152 [==============================] - 0s 801us/step - loss: 0.0785 - accuracy: 0.9559 - mae: 0.0785 - pearson_correlation: 0.7903 - euclidean_distance: 0.1271
Epoch 333/350
152/152 [==============================] - 0s 800us/step - loss: 0.0802 - accuracy: 0.9537 - mae: 0.0802 - pearson_correlation: 0.7804 - euclidean_distance: 0.1302
Epoch 334/350
152/152 [==============================] - 0s 801us/step - loss: 0.0817 - accuracy: 0.9559 - mae: 0.0817 - pearson_correlation: 0.7832 - euclidean_distance: 0.1317
Epoch 335/350
152/152 [==============================] - 0s 803us/step - loss: 0.0824 - accuracy: 0.9559 - mae: 0.0824 - pearson_correlation: 0.7748 - euclidean_distance: 0.1333
Epoch 336/350
152/152 [==============================] - 0s 805us/step - loss: 0.0813 - accuracy: 0.9550 - mae: 0.0813 - pearson_correlation: 0.7817 - euclidean_distance: 0.1314
Epoch 337/350
152/152 [==============================] - 0s 805us/step - loss: 0.0789 - accuracy: 0.9559 - mae: 0.0789 - pearson_correlation: 0.7888 - euclidean_distance: 0.1272
Epoch 338/350
152/152 [==============================] - 0s 799us/step - loss: 0.0808 - accuracy: 0.9555 - mae: 0.0808 - pearson_correlation: 0.7822 - euclidean_distance: 0.1304
Epoch 339/350
152/152 [==============================] - 0s 797us/step - loss: 0.0804 - accuracy: 0.9555 - mae: 0.0804 - pearson_correlation: 0.7824 - euclidean_distance: 0.1305
Epoch 340/350
152/152 [==============================] - 0s 801us/step - loss: 0.0786 - accuracy: 0.9555 - mae: 0.0786 - pearson_correlation: 0.7914 - euclidean_distance: 0.1270
Epoch 341/350
152/152 [==============================] - 0s 804us/step - loss: 0.0798 - accuracy: 0.9559 - mae: 0.0798 - pearson_correlation: 0.7873 - euclidean_distance: 0.1290
Epoch 342/350
152/152 [==============================] - 0s 796us/step - loss: 0.0788 - accuracy: 0.9559 - mae: 0.0788 - pearson_correlation: 0.7836 - euclidean_distance: 0.1278
Epoch 343/350
152/152 [==============================] - 0s 802us/step - loss: 0.0793 - accuracy: 0.9555 - mae: 0.0793 - pearson_correlation: 0.7879 - euclidean_distance: 0.1281
Epoch 344/350
152/152 [==============================] - 0s 824us/step - loss: 0.0780 - accuracy: 0.9559 - mae: 0.0780 - pearson_correlation: 0.7909 - euclidean_distance: 0.1264
Epoch 345/350
152/152 [==============================] - 0s 808us/step - loss: 0.0789 - accuracy: 0.9559 - mae: 0.0789 - pearson_correlation: 0.7869 - euclidean_distance: 0.1277
Epoch 346/350
152/152 [==============================] - 0s 803us/step - loss: 0.0796 - accuracy: 0.9559 - mae: 0.0796 - pearson_correlation: 0.7861 - euclidean_distance: 0.1288
Epoch 347/350
152/152 [==============================] - 0s 816us/step - loss: 0.0794 - accuracy: 0.9559 - mae: 0.0794 - pearson_correlation: 0.7841 - euclidean_distance: 0.1284
Epoch 348/350
152/152 [==============================] - 0s 802us/step - loss: 0.0790 - accuracy: 0.9559 - mae: 0.0790 - pearson_correlation: 0.7852 - euclidean_distance: 0.1276
Epoch 349/350
152/152 [==============================] - 0s 800us/step - loss: 0.0782 - accuracy: 0.9555 - mae: 0.0782 - pearson_correlation: 0.7879 - euclidean_distance: 0.1264
Epoch 350/350
152/152 [==============================] - 0s 802us/step - loss: 0.0783 - accuracy: 0.9559 - mae: 0.0783 - pearson_correlation: 0.7878 - euclidean_distance: 0.1269
76/76 [==============================] - 0s 442us/step
Epoch 1/100
76/76 [==============================] - 1s 847us/step - loss: 0.5220 - accuracy: 0.0437 - mae: 0.5220 - pearson_correlation: -0.7431 - euclidean_distance: 0.9103
Epoch 2/100
76/76 [==============================] - 0s 841us/step - loss: 0.5179 - accuracy: 0.0437 - mae: 0.5179 - pearson_correlation: -0.7423 - euclidean_distance: 0.9047
Epoch 3/100
76/76 [==============================] - 0s 836us/step - loss: 0.5138 - accuracy: 0.0437 - mae: 0.5138 - pearson_correlation: -0.7403 - euclidean_distance: 0.8982
Epoch 4/100
76/76 [==============================] - 0s 834us/step - loss: 0.5094 - accuracy: 0.0437 - mae: 0.5094 - pearson_correlation: -0.7392 - euclidean_distance: 0.8922
Epoch 5/100
76/76 [==============================] - 0s 835us/step - loss: 0.5047 - accuracy: 0.0437 - mae: 0.5047 - pearson_correlation: -0.7395 - euclidean_distance: 0.8857
Epoch 6/100
76/76 [==============================] - 0s 840us/step - loss: 0.5026 - accuracy: 0.0437 - mae: 0.5026 - pearson_correlation: -0.7377 - euclidean_distance: 0.8805
Epoch 7/100
76/76 [==============================] - 0s 840us/step - loss: 0.4972 - accuracy: 0.0437 - mae: 0.4972 - pearson_correlation: -0.7375 - euclidean_distance: 0.8732
Epoch 8/100
76/76 [==============================] - 0s 838us/step - loss: 0.4926 - accuracy: 0.0437 - mae: 0.4926 - pearson_correlation: -0.7361 - euclidean_distance: 0.8678
Epoch 9/100
76/76 [==============================] - 0s 839us/step - loss: 0.4911 - accuracy: 0.0441 - mae: 0.4911 - pearson_correlation: -0.7325 - euclidean_distance: 0.8637
Epoch 10/100
76/76 [==============================] - 0s 837us/step - loss: 0.4854 - accuracy: 0.0441 - mae: 0.4854 - pearson_correlation: -0.7346 - euclidean_distance: 0.8565
Epoch 11/100
76/76 [==============================] - 0s 842us/step - loss: 0.4823 - accuracy: 0.0437 - mae: 0.4823 - pearson_correlation: -0.7348 - euclidean_distance: 0.8506
Epoch 12/100
76/76 [==============================] - 0s 839us/step - loss: 0.4784 - accuracy: 0.0446 - mae: 0.4784 - pearson_correlation: -0.7331 - euclidean_distance: 0.8449
Epoch 13/100
76/76 [==============================] - 0s 834us/step - loss: 0.4748 - accuracy: 0.0441 - mae: 0.4748 - pearson_correlation: -0.7320 - euclidean_distance: 0.8392
Epoch 14/100
76/76 [==============================] - 0s 836us/step - loss: 0.4699 - accuracy: 0.0446 - mae: 0.4699 - pearson_correlation: -0.7310 - euclidean_distance: 0.8326
Epoch 15/100
76/76 [==============================] - 0s 833us/step - loss: 0.4684 - accuracy: 0.0437 - mae: 0.4684 - pearson_correlation: -0.7324 - euclidean_distance: 0.8282
Epoch 16/100
76/76 [==============================] - 0s 837us/step - loss: 0.4642 - accuracy: 0.0450 - mae: 0.4642 - pearson_correlation: -0.7288 - euclidean_distance: 0.8218
Epoch 17/100
76/76 [==============================] - 0s 834us/step - loss: 0.4619 - accuracy: 0.0441 - mae: 0.4619 - pearson_correlation: -0.7273 - euclidean_distance: 0.8168
Epoch 18/100
76/76 [==============================] - 0s 834us/step - loss: 0.4578 - accuracy: 0.0432 - mae: 0.4578 - pearson_correlation: -0.7211 - euclidean_distance: 0.8098
Epoch 19/100
76/76 [==============================] - 0s 837us/step - loss: 0.4551 - accuracy: 0.0454 - mae: 0.4551 - pearson_correlation: -0.7203 - euclidean_distance: 0.8050
Epoch 20/100
76/76 [==============================] - 0s 829us/step - loss: 0.4508 - accuracy: 0.0446 - mae: 0.4508 - pearson_correlation: -0.7188 - euclidean_distance: 0.7982
Epoch 21/100
76/76 [==============================] - 0s 837us/step - loss: 0.4471 - accuracy: 0.0454 - mae: 0.4471 - pearson_correlation: -0.7151 - euclidean_distance: 0.7912
Epoch 22/100
76/76 [==============================] - 0s 835us/step - loss: 0.4446 - accuracy: 0.0476 - mae: 0.4446 - pearson_correlation: -0.7202 - euclidean_distance: 0.7868
Epoch 23/100
76/76 [==============================] - 0s 835us/step - loss: 0.4413 - accuracy: 0.0454 - mae: 0.4413 - pearson_correlation: -0.7139 - euclidean_distance: 0.7812
Epoch 24/100
76/76 [==============================] - 0s 830us/step - loss: 0.4374 - accuracy: 0.0454 - mae: 0.4374 - pearson_correlation: -0.7075 - euclidean_distance: 0.7748
Epoch 25/100
76/76 [==============================] - 0s 839us/step - loss: 0.4352 - accuracy: 0.0476 - mae: 0.4352 - pearson_correlation: -0.7061 - euclidean_distance: 0.7689
Epoch 26/100
76/76 [==============================] - 0s 839us/step - loss: 0.4303 - accuracy: 0.0459 - mae: 0.4303 - pearson_correlation: -0.7081 - euclidean_distance: 0.7614
Epoch 27/100
76/76 [==============================] - 0s 832us/step - loss: 0.4284 - accuracy: 0.0476 - mae: 0.4284 - pearson_correlation: -0.7013 - euclidean_distance: 0.7578
Epoch 28/100
76/76 [==============================] - 0s 832us/step - loss: 0.4231 - accuracy: 0.0507 - mae: 0.4231 - pearson_correlation: -0.7033 - euclidean_distance: 0.7501
Epoch 29/100
76/76 [==============================] - 0s 838us/step - loss: 0.4202 - accuracy: 0.0512 - mae: 0.4202 - pearson_correlation: -0.6914 - euclidean_distance: 0.7440
Epoch 30/100
76/76 [==============================] - 0s 835us/step - loss: 0.4167 - accuracy: 0.0490 - mae: 0.4167 - pearson_correlation: -0.6930 - euclidean_distance: 0.7370
Epoch 31/100
76/76 [==============================] - 0s 837us/step - loss: 0.4133 - accuracy: 0.0490 - mae: 0.4133 - pearson_correlation: -0.6907 - euclidean_distance: 0.7311
Epoch 32/100
76/76 [==============================] - 0s 889us/step - loss: 0.4101 - accuracy: 0.0498 - mae: 0.4101 - pearson_correlation: -0.6861 - euclidean_distance: 0.7242
Epoch 33/100
76/76 [==============================] - 0s 920us/step - loss: 0.4067 - accuracy: 0.0556 - mae: 0.4067 - pearson_correlation: -0.6779 - euclidean_distance: 0.7177
Epoch 34/100
76/76 [==============================] - 0s 947us/step - loss: 0.4024 - accuracy: 0.0543 - mae: 0.4024 - pearson_correlation: -0.6762 - euclidean_distance: 0.7113
Epoch 35/100
76/76 [==============================] - 0s 889us/step - loss: 0.3983 - accuracy: 0.0538 - mae: 0.3983 - pearson_correlation: -0.6686 - euclidean_distance: 0.7036
Epoch 36/100
76/76 [==============================] - 0s 960us/step - loss: 0.3948 - accuracy: 0.0565 - mae: 0.3948 - pearson_correlation: -0.6626 - euclidean_distance: 0.6967
Epoch 37/100
76/76 [==============================] - 0s 911us/step - loss: 0.3914 - accuracy: 0.0600 - mae: 0.3914 - pearson_correlation: -0.6589 - euclidean_distance: 0.6908
Epoch 38/100
76/76 [==============================] - 0s 912us/step - loss: 0.3890 - accuracy: 0.0648 - mae: 0.3890 - pearson_correlation: -0.6416 - euclidean_distance: 0.6830
Epoch 39/100
76/76 [==============================] - 0s 947us/step - loss: 0.3832 - accuracy: 0.0648 - mae: 0.3832 - pearson_correlation: -0.6389 - euclidean_distance: 0.6748
Epoch 40/100
76/76 [==============================] - 0s 902us/step - loss: 0.3802 - accuracy: 0.0666 - mae: 0.3802 - pearson_correlation: -0.6294 - euclidean_distance: 0.6685
Epoch 41/100
76/76 [==============================] - 0s 836us/step - loss: 0.3742 - accuracy: 0.0750 - mae: 0.3742 - pearson_correlation: -0.6157 - euclidean_distance: 0.6586
Epoch 42/100
76/76 [==============================] - 0s 840us/step - loss: 0.3702 - accuracy: 0.0865 - mae: 0.3702 - pearson_correlation: -0.6066 - euclidean_distance: 0.6513
Epoch 43/100
76/76 [==============================] - 0s 841us/step - loss: 0.3672 - accuracy: 0.0931 - mae: 0.3672 - pearson_correlation: -0.5968 - euclidean_distance: 0.6451
Epoch 44/100
76/76 [==============================] - 0s 838us/step - loss: 0.3627 - accuracy: 0.1120 - mae: 0.3627 - pearson_correlation: -0.5790 - euclidean_distance: 0.6357
Epoch 45/100
76/76 [==============================] - 0s 839us/step - loss: 0.3586 - accuracy: 0.1178 - mae: 0.3586 - pearson_correlation: -0.5669 - euclidean_distance: 0.6291
Epoch 46/100
76/76 [==============================] - 0s 845us/step - loss: 0.3558 - accuracy: 0.1275 - mae: 0.3558 - pearson_correlation: -0.5676 - euclidean_distance: 0.6236
Epoch 47/100
76/76 [==============================] - 0s 841us/step - loss: 0.3490 - accuracy: 0.1350 - mae: 0.3490 - pearson_correlation: -0.5482 - euclidean_distance: 0.6136
Epoch 48/100
76/76 [==============================] - 0s 836us/step - loss: 0.3461 - accuracy: 0.1473 - mae: 0.3461 - pearson_correlation: -0.5314 - euclidean_distance: 0.6060
Epoch 49/100
76/76 [==============================] - 0s 838us/step - loss: 0.3422 - accuracy: 0.1641 - mae: 0.3422 - pearson_correlation: -0.5160 - euclidean_distance: 0.5986
Epoch 50/100
76/76 [==============================] - 0s 832us/step - loss: 0.3386 - accuracy: 0.1676 - mae: 0.3386 - pearson_correlation: -0.4988 - euclidean_distance: 0.5915
Epoch 51/100
76/76 [==============================] - 0s 835us/step - loss: 0.3341 - accuracy: 0.1875 - mae: 0.3341 - pearson_correlation: -0.4854 - euclidean_distance: 0.5841
Epoch 52/100
76/76 [==============================] - 0s 839us/step - loss: 0.3325 - accuracy: 0.1835 - mae: 0.3325 - pearson_correlation: -0.4785 - euclidean_distance: 0.5794
Epoch 53/100
76/76 [==============================] - 0s 838us/step - loss: 0.3273 - accuracy: 0.1945 - mae: 0.3273 - pearson_correlation: -0.4561 - euclidean_distance: 0.5714
Epoch 54/100
76/76 [==============================] - 0s 837us/step - loss: 0.3237 - accuracy: 0.2047 - mae: 0.3237 - pearson_correlation: -0.4509 - euclidean_distance: 0.5637
Epoch 55/100
76/76 [==============================] - 0s 833us/step - loss: 0.3194 - accuracy: 0.2100 - mae: 0.3194 - pearson_correlation: -0.4297 - euclidean_distance: 0.5572
Epoch 56/100
76/76 [==============================] - 0s 838us/step - loss: 0.3145 - accuracy: 0.2241 - mae: 0.3145 - pearson_correlation: -0.4113 - euclidean_distance: 0.5477
Epoch 57/100
76/76 [==============================] - 0s 838us/step - loss: 0.3115 - accuracy: 0.2289 - mae: 0.3115 - pearson_correlation: -0.3964 - euclidean_distance: 0.5435
Epoch 58/100
76/76 [==============================] - 0s 838us/step - loss: 0.3086 - accuracy: 0.2426 - mae: 0.3086 - pearson_correlation: -0.3829 - euclidean_distance: 0.5369
Epoch 59/100
76/76 [==============================] - 0s 837us/step - loss: 0.3054 - accuracy: 0.2475 - mae: 0.3054 - pearson_correlation: -0.3696 - euclidean_distance: 0.5313
Epoch 60/100
76/76 [==============================] - 0s 839us/step - loss: 0.2990 - accuracy: 0.2576 - mae: 0.2990 - pearson_correlation: -0.3548 - euclidean_distance: 0.5206
Epoch 61/100
76/76 [==============================] - 0s 844us/step - loss: 0.2992 - accuracy: 0.2585 - mae: 0.2992 - pearson_correlation: -0.3348 - euclidean_distance: 0.5180
Epoch 62/100
76/76 [==============================] - 0s 837us/step - loss: 0.2941 - accuracy: 0.2673 - mae: 0.2941 - pearson_correlation: -0.3266 - euclidean_distance: 0.5112
Epoch 63/100
76/76 [==============================] - 0s 837us/step - loss: 0.2910 - accuracy: 0.2704 - mae: 0.2910 - pearson_correlation: -0.3067 - euclidean_distance: 0.5049
Epoch 64/100
76/76 [==============================] - 0s 835us/step - loss: 0.2868 - accuracy: 0.2783 - mae: 0.2868 - pearson_correlation: -0.2968 - euclidean_distance: 0.4976
Epoch 65/100
76/76 [==============================] - 0s 833us/step - loss: 0.2843 - accuracy: 0.2858 - mae: 0.2843 - pearson_correlation: -0.2783 - euclidean_distance: 0.4922
Epoch 66/100
76/76 [==============================] - 0s 835us/step - loss: 0.2824 - accuracy: 0.2889 - mae: 0.2824 - pearson_correlation: -0.2671 - euclidean_distance: 0.4887
Epoch 67/100
76/76 [==============================] - 0s 837us/step - loss: 0.2775 - accuracy: 0.2964 - mae: 0.2775 - pearson_correlation: -0.2460 - euclidean_distance: 0.4806
Epoch 68/100
76/76 [==============================] - 0s 839us/step - loss: 0.2738 - accuracy: 0.3008 - mae: 0.2738 - pearson_correlation: -0.2371 - euclidean_distance: 0.4746
Epoch 69/100
76/76 [==============================] - 0s 834us/step - loss: 0.2708 - accuracy: 0.3075 - mae: 0.2708 - pearson_correlation: -0.2186 - euclidean_distance: 0.4681
Epoch 70/100
76/76 [==============================] - 0s 833us/step - loss: 0.2690 - accuracy: 0.3097 - mae: 0.2690 - pearson_correlation: -0.2123 - euclidean_distance: 0.4643
Epoch 71/100
76/76 [==============================] - 0s 842us/step - loss: 0.2677 - accuracy: 0.3158 - mae: 0.2677 - pearson_correlation: -0.2049 - euclidean_distance: 0.4619
Epoch 72/100
76/76 [==============================] - 0s 832us/step - loss: 0.2643 - accuracy: 0.3269 - mae: 0.2643 - pearson_correlation: -0.1887 - euclidean_distance: 0.4548
Epoch 73/100
76/76 [==============================] - 0s 879us/step - loss: 0.2602 - accuracy: 0.3260 - mae: 0.2602 - pearson_correlation: -0.1673 - euclidean_distance: 0.4482
Epoch 74/100
76/76 [==============================] - 0s 849us/step - loss: 0.2569 - accuracy: 0.3330 - mae: 0.2569 - pearson_correlation: -0.1509 - euclidean_distance: 0.4425
Epoch 75/100
76/76 [==============================] - 0s 841us/step - loss: 0.2552 - accuracy: 0.3489 - mae: 0.2552 - pearson_correlation: -0.1389 - euclidean_distance: 0.4390
Epoch 76/100
76/76 [==============================] - 0s 840us/step - loss: 0.2517 - accuracy: 0.3520 - mae: 0.2517 - pearson_correlation: -0.1316 - euclidean_distance: 0.4328
Epoch 77/100
76/76 [==============================] - 0s 840us/step - loss: 0.2500 - accuracy: 0.3511 - mae: 0.2500 - pearson_correlation: -0.1179 - euclidean_distance: 0.4284
Epoch 78/100
76/76 [==============================] - 0s 844us/step - loss: 0.2470 - accuracy: 0.3674 - mae: 0.2470 - pearson_correlation: -0.0954 - euclidean_distance: 0.4223
Epoch 79/100
76/76 [==============================] - 0s 838us/step - loss: 0.2435 - accuracy: 0.3745 - mae: 0.2435 - pearson_correlation: -0.0854 - euclidean_distance: 0.4179
Epoch 80/100
76/76 [==============================] - 0s 836us/step - loss: 0.2405 - accuracy: 0.3895 - mae: 0.2405 - pearson_correlation: -0.0729 - euclidean_distance: 0.4125
Epoch 81/100
76/76 [==============================] - 0s 835us/step - loss: 0.2364 - accuracy: 0.3939 - mae: 0.2364 - pearson_correlation: -0.0511 - euclidean_distance: 0.4051
Epoch 82/100
76/76 [==============================] - 0s 836us/step - loss: 0.2345 - accuracy: 0.4133 - mae: 0.2345 - pearson_correlation: -0.0366 - euclidean_distance: 0.4013
Epoch 83/100
76/76 [==============================] - 0s 830us/step - loss: 0.2326 - accuracy: 0.4208 - mae: 0.2326 - pearson_correlation: -0.0256 - euclidean_distance: 0.3974
Epoch 84/100
76/76 [==============================] - 0s 834us/step - loss: 0.2266 - accuracy: 0.4442 - mae: 0.2266 - pearson_correlation: -0.0039 - euclidean_distance: 0.3886
Epoch 85/100
76/76 [==============================] - 0s 834us/step - loss: 0.2268 - accuracy: 0.4508 - mae: 0.2268 - pearson_correlation: 0.0063 - euclidean_distance: 0.3867
Epoch 86/100
76/76 [==============================] - 0s 837us/step - loss: 0.2255 - accuracy: 0.4790 - mae: 0.2255 - pearson_correlation: 0.0301 - euclidean_distance: 0.3832
Epoch 87/100
76/76 [==============================] - 0s 833us/step - loss: 0.2211 - accuracy: 0.4980 - mae: 0.2211 - pearson_correlation: 0.0391 - euclidean_distance: 0.3760
Epoch 88/100
76/76 [==============================] - 0s 835us/step - loss: 0.2180 - accuracy: 0.5192 - mae: 0.2180 - pearson_correlation: 0.0506 - euclidean_distance: 0.3710
Epoch 89/100
76/76 [==============================] - 0s 846us/step - loss: 0.2179 - accuracy: 0.5271 - mae: 0.2179 - pearson_correlation: 0.0717 - euclidean_distance: 0.3685
Epoch 90/100
76/76 [==============================] - 0s 912us/step - loss: 0.2117 - accuracy: 0.5386 - mae: 0.2117 - pearson_correlation: 0.0870 - euclidean_distance: 0.3598
Epoch 91/100
76/76 [==============================] - 0s 849us/step - loss: 0.2130 - accuracy: 0.5571 - mae: 0.2130 - pearson_correlation: 0.0975 - euclidean_distance: 0.3600
Epoch 92/100
76/76 [==============================] - 0s 845us/step - loss: 0.2103 - accuracy: 0.5655 - mae: 0.2103 - pearson_correlation: 0.1069 - euclidean_distance: 0.3558
Epoch 93/100
76/76 [==============================] - 0s 829us/step - loss: 0.2075 - accuracy: 0.5770 - mae: 0.2075 - pearson_correlation: 0.1266 - euclidean_distance: 0.3510
Epoch 94/100
76/76 [==============================] - 0s 835us/step - loss: 0.2031 - accuracy: 0.5831 - mae: 0.2031 - pearson_correlation: 0.1428 - euclidean_distance: 0.3435
Epoch 95/100
76/76 [==============================] - 0s 833us/step - loss: 0.2024 - accuracy: 0.6048 - mae: 0.2024 - pearson_correlation: 0.1530 - euclidean_distance: 0.3416
Epoch 96/100
76/76 [==============================] - 0s 834us/step - loss: 0.2002 - accuracy: 0.6145 - mae: 0.2002 - pearson_correlation: 0.1689 - euclidean_distance: 0.3363
Epoch 97/100
76/76 [==============================] - 0s 839us/step - loss: 0.1980 - accuracy: 0.6056 - mae: 0.1980 - pearson_correlation: 0.1790 - euclidean_distance: 0.3331
Epoch 98/100
76/76 [==============================] - 0s 833us/step - loss: 0.1947 - accuracy: 0.6246 - mae: 0.1947 - pearson_correlation: 0.2000 - euclidean_distance: 0.3273
Epoch 99/100
76/76 [==============================] - 0s 831us/step - loss: 0.1922 - accuracy: 0.6453 - mae: 0.1922 - pearson_correlation: 0.2144 - euclidean_distance: 0.3233
Epoch 100/100
76/76 [==============================] - 0s 837us/step - loss: 0.1911 - accuracy: 0.6453 - mae: 0.1911 - pearson_correlation: 0.2282 - euclidean_distance: 0.3203
38/38 [==============================] - 0s 462us/step
Epoch 1/100
76/76 [==============================] - 1s 864us/step - loss: 0.5383 - accuracy: 0.0446 - mae: 0.5383 - pearson_correlation: -0.6045 - euclidean_distance: 0.9020
Epoch 2/100
76/76 [==============================] - 0s 875us/step - loss: 0.5331 - accuracy: 0.0446 - mae: 0.5331 - pearson_correlation: -0.6034 - euclidean_distance: 0.8956
Epoch 3/100
76/76 [==============================] - 0s 838us/step - loss: 0.5290 - accuracy: 0.0450 - mae: 0.5290 - pearson_correlation: -0.6029 - euclidean_distance: 0.8885
Epoch 4/100
76/76 [==============================] - 0s 842us/step - loss: 0.5253 - accuracy: 0.0446 - mae: 0.5253 - pearson_correlation: -0.6009 - euclidean_distance: 0.8834
Epoch 5/100
76/76 [==============================] - 0s 841us/step - loss: 0.5218 - accuracy: 0.0446 - mae: 0.5218 - pearson_correlation: -0.5972 - euclidean_distance: 0.8774
Epoch 6/100
76/76 [==============================] - 0s 841us/step - loss: 0.5164 - accuracy: 0.0454 - mae: 0.5164 - pearson_correlation: -0.5971 - euclidean_distance: 0.8707
Epoch 7/100
76/76 [==============================] - 0s 838us/step - loss: 0.5131 - accuracy: 0.0446 - mae: 0.5131 - pearson_correlation: -0.5945 - euclidean_distance: 0.8648
Epoch 8/100
76/76 [==============================] - 0s 840us/step - loss: 0.5092 - accuracy: 0.0446 - mae: 0.5092 - pearson_correlation: -0.5932 - euclidean_distance: 0.8596
Epoch 9/100
76/76 [==============================] - 0s 838us/step - loss: 0.5040 - accuracy: 0.0446 - mae: 0.5040 - pearson_correlation: -0.5949 - euclidean_distance: 0.8522
Epoch 10/100
76/76 [==============================] - 0s 838us/step - loss: 0.4998 - accuracy: 0.0446 - mae: 0.4998 - pearson_correlation: -0.5912 - euclidean_distance: 0.8447
Epoch 11/100
76/76 [==============================] - 0s 837us/step - loss: 0.4954 - accuracy: 0.0450 - mae: 0.4954 - pearson_correlation: -0.5909 - euclidean_distance: 0.8381
Epoch 12/100
76/76 [==============================] - 0s 842us/step - loss: 0.4909 - accuracy: 0.0446 - mae: 0.4909 - pearson_correlation: -0.5867 - euclidean_distance: 0.8312
Epoch 13/100
76/76 [==============================] - 0s 835us/step - loss: 0.4862 - accuracy: 0.0446 - mae: 0.4862 - pearson_correlation: -0.5903 - euclidean_distance: 0.8250
Epoch 14/100
76/76 [==============================] - 0s 840us/step - loss: 0.4825 - accuracy: 0.0446 - mae: 0.4825 - pearson_correlation: -0.5824 - euclidean_distance: 0.8191
Epoch 15/100
76/76 [==============================] - 0s 837us/step - loss: 0.4784 - accuracy: 0.0446 - mae: 0.4784 - pearson_correlation: -0.5842 - euclidean_distance: 0.8125
Epoch 16/100
76/76 [==============================] - 0s 837us/step - loss: 0.4747 - accuracy: 0.0446 - mae: 0.4747 - pearson_correlation: -0.5778 - euclidean_distance: 0.8054
Epoch 17/100
76/76 [==============================] - 0s 840us/step - loss: 0.4694 - accuracy: 0.0454 - mae: 0.4694 - pearson_correlation: -0.5743 - euclidean_distance: 0.7987
Epoch 18/100
76/76 [==============================] - 0s 836us/step - loss: 0.4666 - accuracy: 0.0446 - mae: 0.4666 - pearson_correlation: -0.5775 - euclidean_distance: 0.7931
Epoch 19/100
76/76 [==============================] - 0s 840us/step - loss: 0.4615 - accuracy: 0.0450 - mae: 0.4615 - pearson_correlation: -0.5737 - euclidean_distance: 0.7850
Epoch 20/100
76/76 [==============================] - 0s 890us/step - loss: 0.4582 - accuracy: 0.0446 - mae: 0.4582 - pearson_correlation: -0.5712 - euclidean_distance: 0.7791
Epoch 21/100
76/76 [==============================] - 0s 842us/step - loss: 0.4543 - accuracy: 0.0446 - mae: 0.4543 - pearson_correlation: -0.5632 - euclidean_distance: 0.7723
Epoch 22/100
76/76 [==============================] - 0s 847us/step - loss: 0.4496 - accuracy: 0.0454 - mae: 0.4496 - pearson_correlation: -0.5615 - euclidean_distance: 0.7665
Epoch 23/100
76/76 [==============================] - 0s 845us/step - loss: 0.4453 - accuracy: 0.0450 - mae: 0.4453 - pearson_correlation: -0.5513 - euclidean_distance: 0.7588
Epoch 24/100
76/76 [==============================] - 0s 835us/step - loss: 0.4413 - accuracy: 0.0463 - mae: 0.4413 - pearson_correlation: -0.5553 - euclidean_distance: 0.7521
Epoch 25/100
76/76 [==============================] - 0s 860us/step - loss: 0.4382 - accuracy: 0.0454 - mae: 0.4382 - pearson_correlation: -0.5496 - euclidean_distance: 0.7459
Epoch 26/100
76/76 [==============================] - 0s 850us/step - loss: 0.4347 - accuracy: 0.0463 - mae: 0.4347 - pearson_correlation: -0.5442 - euclidean_distance: 0.7405
Epoch 27/100
76/76 [==============================] - 0s 836us/step - loss: 0.4298 - accuracy: 0.0454 - mae: 0.4298 - pearson_correlation: -0.5446 - euclidean_distance: 0.7326
Epoch 28/100
76/76 [==============================] - 0s 834us/step - loss: 0.4276 - accuracy: 0.0481 - mae: 0.4276 - pearson_correlation: -0.5328 - euclidean_distance: 0.7291
Epoch 29/100
76/76 [==============================] - 0s 837us/step - loss: 0.4215 - accuracy: 0.0454 - mae: 0.4215 - pearson_correlation: -0.5380 - euclidean_distance: 0.7194
Epoch 30/100
76/76 [==============================] - 0s 840us/step - loss: 0.4194 - accuracy: 0.0472 - mae: 0.4194 - pearson_correlation: -0.5307 - euclidean_distance: 0.7153
Epoch 31/100
76/76 [==============================] - 0s 839us/step - loss: 0.4132 - accuracy: 0.0468 - mae: 0.4132 - pearson_correlation: -0.5226 - euclidean_distance: 0.7059
Epoch 32/100
76/76 [==============================] - 0s 835us/step - loss: 0.4103 - accuracy: 0.0472 - mae: 0.4103 - pearson_correlation: -0.5173 - euclidean_distance: 0.7006
Epoch 33/100
76/76 [==============================] - 0s 834us/step - loss: 0.4065 - accuracy: 0.0503 - mae: 0.4065 - pearson_correlation: -0.5147 - euclidean_distance: 0.6951
Epoch 34/100
76/76 [==============================] - 0s 830us/step - loss: 0.4029 - accuracy: 0.0503 - mae: 0.4029 - pearson_correlation: -0.5043 - euclidean_distance: 0.6882
Epoch 35/100
76/76 [==============================] - 0s 840us/step - loss: 0.3991 - accuracy: 0.0600 - mae: 0.3991 - pearson_correlation: -0.4994 - euclidean_distance: 0.6801
Epoch 36/100
76/76 [==============================] - 0s 833us/step - loss: 0.3956 - accuracy: 0.0657 - mae: 0.3956 - pearson_correlation: -0.4883 - euclidean_distance: 0.6751
Epoch 37/100
76/76 [==============================] - 0s 839us/step - loss: 0.3899 - accuracy: 0.0622 - mae: 0.3899 - pearson_correlation: -0.4812 - euclidean_distance: 0.6661
Epoch 38/100
76/76 [==============================] - 0s 835us/step - loss: 0.3870 - accuracy: 0.0768 - mae: 0.3870 - pearson_correlation: -0.4768 - euclidean_distance: 0.6612
Epoch 39/100
76/76 [==============================] - 0s 834us/step - loss: 0.3832 - accuracy: 0.0873 - mae: 0.3832 - pearson_correlation: -0.4684 - euclidean_distance: 0.6547
Epoch 40/100
76/76 [==============================] - 0s 828us/step - loss: 0.3806 - accuracy: 0.0918 - mae: 0.3806 - pearson_correlation: -0.4569 - euclidean_distance: 0.6481
Epoch 41/100
76/76 [==============================] - 0s 843us/step - loss: 0.3761 - accuracy: 0.1041 - mae: 0.3761 - pearson_correlation: -0.4545 - euclidean_distance: 0.6426
Epoch 42/100
76/76 [==============================] - 0s 835us/step - loss: 0.3703 - accuracy: 0.1094 - mae: 0.3703 - pearson_correlation: -0.4461 - euclidean_distance: 0.6321
Epoch 43/100
76/76 [==============================] - 0s 841us/step - loss: 0.3680 - accuracy: 0.1195 - mae: 0.3680 - pearson_correlation: -0.4345 - euclidean_distance: 0.6278
Epoch 44/100
76/76 [==============================] - 0s 870us/step - loss: 0.3642 - accuracy: 0.1226 - mae: 0.3642 - pearson_correlation: -0.4292 - euclidean_distance: 0.6211
Epoch 45/100
76/76 [==============================] - 0s 890us/step - loss: 0.3604 - accuracy: 0.1297 - mae: 0.3604 - pearson_correlation: -0.4193 - euclidean_distance: 0.6148
Epoch 46/100
76/76 [==============================] - 0s 890us/step - loss: 0.3559 - accuracy: 0.1390 - mae: 0.3559 - pearson_correlation: -0.4040 - euclidean_distance: 0.6057
Epoch 47/100
76/76 [==============================] - 0s 840us/step - loss: 0.3534 - accuracy: 0.1495 - mae: 0.3534 - pearson_correlation: -0.3967 - euclidean_distance: 0.6020
Epoch 48/100
76/76 [==============================] - 0s 832us/step - loss: 0.3480 - accuracy: 0.1500 - mae: 0.3480 - pearson_correlation: -0.3891 - euclidean_distance: 0.5928
Epoch 49/100
76/76 [==============================] - 0s 832us/step - loss: 0.3442 - accuracy: 0.1557 - mae: 0.3442 - pearson_correlation: -0.3817 - euclidean_distance: 0.5859
Epoch 50/100
76/76 [==============================] - 0s 837us/step - loss: 0.3416 - accuracy: 0.1645 - mae: 0.3416 - pearson_correlation: -0.3696 - euclidean_distance: 0.5824
Epoch 51/100
76/76 [==============================] - 0s 837us/step - loss: 0.3381 - accuracy: 0.1738 - mae: 0.3381 - pearson_correlation: -0.3574 - euclidean_distance: 0.5741
Epoch 52/100
76/76 [==============================] - 0s 843us/step - loss: 0.3335 - accuracy: 0.1778 - mae: 0.3335 - pearson_correlation: -0.3451 - euclidean_distance: 0.5665
Epoch 53/100
76/76 [==============================] - 0s 838us/step - loss: 0.3295 - accuracy: 0.1831 - mae: 0.3295 - pearson_correlation: -0.3324 - euclidean_distance: 0.5605
Epoch 54/100
76/76 [==============================] - 0s 839us/step - loss: 0.3255 - accuracy: 0.1932 - mae: 0.3255 - pearson_correlation: -0.3333 - euclidean_distance: 0.5537
Epoch 55/100
76/76 [==============================] - 0s 841us/step - loss: 0.3227 - accuracy: 0.2038 - mae: 0.3227 - pearson_correlation: -0.3072 - euclidean_distance: 0.5478
Epoch 56/100
76/76 [==============================] - 0s 839us/step - loss: 0.3182 - accuracy: 0.1985 - mae: 0.3182 - pearson_correlation: -0.3047 - euclidean_distance: 0.5418
Epoch 57/100
76/76 [==============================] - 0s 832us/step - loss: 0.3153 - accuracy: 0.2056 - mae: 0.3153 - pearson_correlation: -0.2949 - euclidean_distance: 0.5352
Epoch 58/100
76/76 [==============================] - 0s 835us/step - loss: 0.3119 - accuracy: 0.2219 - mae: 0.3119 - pearson_correlation: -0.2794 - euclidean_distance: 0.5296
Epoch 59/100
76/76 [==============================] - 0s 840us/step - loss: 0.3078 - accuracy: 0.2219 - mae: 0.3078 - pearson_correlation: -0.2593 - euclidean_distance: 0.5218
Epoch 60/100
76/76 [==============================] - 0s 836us/step - loss: 0.3048 - accuracy: 0.2289 - mae: 0.3048 - pearson_correlation: -0.2527 - euclidean_distance: 0.5170
Epoch 61/100
76/76 [==============================] - 0s 839us/step - loss: 0.3020 - accuracy: 0.2364 - mae: 0.3020 - pearson_correlation: -0.2383 - euclidean_distance: 0.5107
Epoch 62/100
76/76 [==============================] - 0s 830us/step - loss: 0.2988 - accuracy: 0.2501 - mae: 0.2988 - pearson_correlation: -0.2283 - euclidean_distance: 0.5049
Epoch 63/100
76/76 [==============================] - 0s 830us/step - loss: 0.2946 - accuracy: 0.2466 - mae: 0.2946 - pearson_correlation: -0.2209 - euclidean_distance: 0.4988
Epoch 64/100
76/76 [==============================] - 0s 835us/step - loss: 0.2906 - accuracy: 0.2492 - mae: 0.2906 - pearson_correlation: -0.2049 - euclidean_distance: 0.4917
Epoch 65/100
76/76 [==============================] - 0s 832us/step - loss: 0.2872 - accuracy: 0.2633 - mae: 0.2872 - pearson_correlation: -0.1990 - euclidean_distance: 0.4863
Epoch 66/100
76/76 [==============================] - 0s 835us/step - loss: 0.2858 - accuracy: 0.2761 - mae: 0.2858 - pearson_correlation: -0.1907 - euclidean_distance: 0.4823
Epoch 67/100
76/76 [==============================] - 0s 827us/step - loss: 0.2796 - accuracy: 0.2986 - mae: 0.2796 - pearson_correlation: -0.1724 - euclidean_distance: 0.4737
Epoch 68/100
76/76 [==============================] - 0s 842us/step - loss: 0.2783 - accuracy: 0.3057 - mae: 0.2783 - pearson_correlation: -0.1606 - euclidean_distance: 0.4706
Epoch 69/100
76/76 [==============================] - 0s 835us/step - loss: 0.2759 - accuracy: 0.3313 - mae: 0.2759 - pearson_correlation: -0.1468 - euclidean_distance: 0.4653
Epoch 70/100
76/76 [==============================] - 0s 834us/step - loss: 0.2728 - accuracy: 0.3251 - mae: 0.2728 - pearson_correlation: -0.1475 - euclidean_distance: 0.4598
Epoch 71/100
76/76 [==============================] - 0s 835us/step - loss: 0.2683 - accuracy: 0.3423 - mae: 0.2683 - pearson_correlation: -0.1331 - euclidean_distance: 0.4529
Epoch 72/100
76/76 [==============================] - 0s 842us/step - loss: 0.2659 - accuracy: 0.3577 - mae: 0.2659 - pearson_correlation: -0.1154 - euclidean_distance: 0.4479
Epoch 73/100
76/76 [==============================] - 0s 835us/step - loss: 0.2648 - accuracy: 0.3595 - mae: 0.2648 - pearson_correlation: -0.1088 - euclidean_distance: 0.4453
Epoch 74/100
76/76 [==============================] - 0s 839us/step - loss: 0.2595 - accuracy: 0.3754 - mae: 0.2595 - pearson_correlation: -0.0922 - euclidean_distance: 0.4373
Epoch 75/100
76/76 [==============================] - 0s 836us/step - loss: 0.2557 - accuracy: 0.3917 - mae: 0.2557 - pearson_correlation: -0.0809 - euclidean_distance: 0.4312
Epoch 76/100
76/76 [==============================] - 0s 838us/step - loss: 0.2540 - accuracy: 0.3983 - mae: 0.2540 - pearson_correlation: -0.0710 - euclidean_distance: 0.4268
Epoch 77/100
76/76 [==============================] - 0s 832us/step - loss: 0.2510 - accuracy: 0.3992 - mae: 0.2510 - pearson_correlation: -0.0638 - euclidean_distance: 0.4228
Epoch 78/100
76/76 [==============================] - 0s 839us/step - loss: 0.2513 - accuracy: 0.4071 - mae: 0.2513 - pearson_correlation: -0.0530 - euclidean_distance: 0.4218
Epoch 79/100
76/76 [==============================] - 0s 836us/step - loss: 0.2454 - accuracy: 0.4270 - mae: 0.2454 - pearson_correlation: -0.0357 - euclidean_distance: 0.4126
Epoch 80/100
76/76 [==============================] - 0s 833us/step - loss: 0.2466 - accuracy: 0.4279 - mae: 0.2466 - pearson_correlation: -0.0312 - euclidean_distance: 0.4144
Epoch 81/100
76/76 [==============================] - 0s 839us/step - loss: 0.2415 - accuracy: 0.4354 - mae: 0.2415 - pearson_correlation: -0.0145 - euclidean_distance: 0.4050
Epoch 82/100
76/76 [==============================] - 0s 834us/step - loss: 0.2370 - accuracy: 0.4460 - mae: 0.2370 - pearson_correlation: -0.0053 - euclidean_distance: 0.3990
Epoch 83/100
76/76 [==============================] - 0s 835us/step - loss: 0.2359 - accuracy: 0.4579 - mae: 0.2359 - pearson_correlation: 0.0115 - euclidean_distance: 0.3961
Epoch 84/100
76/76 [==============================] - 0s 836us/step - loss: 0.2329 - accuracy: 0.4618 - mae: 0.2329 - pearson_correlation: 0.0145 - euclidean_distance: 0.3915
Epoch 85/100
76/76 [==============================] - 0s 833us/step - loss: 0.2314 - accuracy: 0.4685 - mae: 0.2314 - pearson_correlation: 0.0272 - euclidean_distance: 0.3891
Epoch 86/100
76/76 [==============================] - 0s 833us/step - loss: 0.2283 - accuracy: 0.4799 - mae: 0.2283 - pearson_correlation: 0.0357 - euclidean_distance: 0.3826
Epoch 87/100
76/76 [==============================] - 0s 836us/step - loss: 0.2257 - accuracy: 0.4980 - mae: 0.2257 - pearson_correlation: 0.0506 - euclidean_distance: 0.3787
Epoch 88/100
76/76 [==============================] - 0s 836us/step - loss: 0.2233 - accuracy: 0.4888 - mae: 0.2233 - pearson_correlation: 0.0603 - euclidean_distance: 0.3749
Epoch 89/100
76/76 [==============================] - 0s 834us/step - loss: 0.2204 - accuracy: 0.5037 - mae: 0.2204 - pearson_correlation: 0.0709 - euclidean_distance: 0.3694
Epoch 90/100
76/76 [==============================] - 0s 840us/step - loss: 0.2195 - accuracy: 0.5055 - mae: 0.2195 - pearson_correlation: 0.0826 - euclidean_distance: 0.3679
Epoch 91/100
76/76 [==============================] - 0s 834us/step - loss: 0.2179 - accuracy: 0.5179 - mae: 0.2179 - pearson_correlation: 0.0889 - euclidean_distance: 0.3653
Epoch 92/100
76/76 [==============================] - 0s 831us/step - loss: 0.2155 - accuracy: 0.5121 - mae: 0.2155 - pearson_correlation: 0.1026 - euclidean_distance: 0.3611
Epoch 93/100
76/76 [==============================] - 0s 834us/step - loss: 0.2120 - accuracy: 0.5271 - mae: 0.2120 - pearson_correlation: 0.1148 - euclidean_distance: 0.3558
Epoch 94/100
76/76 [==============================] - 0s 834us/step - loss: 0.2117 - accuracy: 0.5346 - mae: 0.2117 - pearson_correlation: 0.1217 - euclidean_distance: 0.3536
Epoch 95/100
76/76 [==============================] - 0s 832us/step - loss: 0.2092 - accuracy: 0.5426 - mae: 0.2092 - pearson_correlation: 0.1276 - euclidean_distance: 0.3499
Epoch 96/100
76/76 [==============================] - 0s 835us/step - loss: 0.2071 - accuracy: 0.5540 - mae: 0.2071 - pearson_correlation: 0.1367 - euclidean_distance: 0.3459
Epoch 97/100
76/76 [==============================] - 0s 830us/step - loss: 0.2057 - accuracy: 0.5615 - mae: 0.2057 - pearson_correlation: 0.1560 - euclidean_distance: 0.3448
Epoch 98/100
76/76 [==============================] - 0s 831us/step - loss: 0.2014 - accuracy: 0.5668 - mae: 0.2014 - pearson_correlation: 0.1602 - euclidean_distance: 0.3362
Epoch 99/100
76/76 [==============================] - 0s 836us/step - loss: 0.2009 - accuracy: 0.5651 - mae: 0.2009 - pearson_correlation: 0.1683 - euclidean_distance: 0.3360
Epoch 100/100
76/76 [==============================] - 0s 832us/step - loss: 0.1980 - accuracy: 0.5823 - mae: 0.1980 - pearson_correlation: 0.1822 - euclidean_distance: 0.3307
38/38 [==============================] - 0s 473us/step
Epoch 1/100
76/76 [==============================] - 1s 859us/step - loss: 0.6863 - accuracy: 0.7822 - mae: 0.6863 - pearson_correlation: 0.5211 - euclidean_distance: 1.0115
Epoch 2/100
76/76 [==============================] - 0s 842us/step - loss: 0.6799 - accuracy: 0.7897 - mae: 0.6799 - pearson_correlation: 0.5240 - euclidean_distance: 1.0020
Epoch 3/100
76/76 [==============================] - 0s 851us/step - loss: 0.6731 - accuracy: 0.7972 - mae: 0.6731 - pearson_correlation: 0.5367 - euclidean_distance: 0.9930
Epoch 4/100
76/76 [==============================] - 0s 838us/step - loss: 0.6677 - accuracy: 0.8011 - mae: 0.6677 - pearson_correlation: 0.5429 - euclidean_distance: 0.9862
Epoch 5/100
76/76 [==============================] - 0s 833us/step - loss: 0.6619 - accuracy: 0.8025 - mae: 0.6619 - pearson_correlation: 0.5442 - euclidean_distance: 0.9785
Epoch 6/100
76/76 [==============================] - 0s 834us/step - loss: 0.6557 - accuracy: 0.8131 - mae: 0.6557 - pearson_correlation: 0.5529 - euclidean_distance: 0.9698
Epoch 7/100
76/76 [==============================] - 0s 832us/step - loss: 0.6491 - accuracy: 0.8161 - mae: 0.6491 - pearson_correlation: 0.5631 - euclidean_distance: 0.9618
Epoch 8/100
76/76 [==============================] - 0s 840us/step - loss: 0.6427 - accuracy: 0.8210 - mae: 0.6427 - pearson_correlation: 0.5701 - euclidean_distance: 0.9528
Epoch 9/100
76/76 [==============================] - 0s 835us/step - loss: 0.6360 - accuracy: 0.8280 - mae: 0.6360 - pearson_correlation: 0.5747 - euclidean_distance: 0.9437
Epoch 10/100
76/76 [==============================] - 0s 834us/step - loss: 0.6305 - accuracy: 0.8333 - mae: 0.6305 - pearson_correlation: 0.5793 - euclidean_distance: 0.9371
Epoch 11/100
76/76 [==============================] - 0s 835us/step - loss: 0.6248 - accuracy: 0.8364 - mae: 0.6248 - pearson_correlation: 0.5818 - euclidean_distance: 0.9291
Epoch 12/100
76/76 [==============================] - 0s 836us/step - loss: 0.6191 - accuracy: 0.8391 - mae: 0.6191 - pearson_correlation: 0.5908 - euclidean_distance: 0.9223
Epoch 13/100
76/76 [==============================] - 0s 836us/step - loss: 0.6138 - accuracy: 0.8514 - mae: 0.6138 - pearson_correlation: 0.5956 - euclidean_distance: 0.9153
Epoch 14/100
76/76 [==============================] - 0s 841us/step - loss: 0.6078 - accuracy: 0.8483 - mae: 0.6078 - pearson_correlation: 0.6009 - euclidean_distance: 0.9071
Epoch 15/100
76/76 [==============================] - 0s 838us/step - loss: 0.6024 - accuracy: 0.8532 - mae: 0.6024 - pearson_correlation: 0.6070 - euclidean_distance: 0.9003
Epoch 16/100
76/76 [==============================] - 0s 834us/step - loss: 0.5985 - accuracy: 0.8519 - mae: 0.5985 - pearson_correlation: 0.6099 - euclidean_distance: 0.8946
Epoch 17/100
76/76 [==============================] - 0s 836us/step - loss: 0.5931 - accuracy: 0.8607 - mae: 0.5931 - pearson_correlation: 0.6144 - euclidean_distance: 0.8884
Epoch 18/100
76/76 [==============================] - 0s 840us/step - loss: 0.5886 - accuracy: 0.8624 - mae: 0.5886 - pearson_correlation: 0.6171 - euclidean_distance: 0.8815
Epoch 19/100
76/76 [==============================] - 0s 840us/step - loss: 0.5825 - accuracy: 0.8699 - mae: 0.5825 - pearson_correlation: 0.6203 - euclidean_distance: 0.8747
Epoch 20/100
76/76 [==============================] - 0s 845us/step - loss: 0.5784 - accuracy: 0.8660 - mae: 0.5784 - pearson_correlation: 0.6254 - euclidean_distance: 0.8691
Epoch 21/100
76/76 [==============================] - 0s 833us/step - loss: 0.5739 - accuracy: 0.8752 - mae: 0.5739 - pearson_correlation: 0.6247 - euclidean_distance: 0.8631
Epoch 22/100
76/76 [==============================] - 0s 840us/step - loss: 0.5690 - accuracy: 0.8765 - mae: 0.5690 - pearson_correlation: 0.6341 - euclidean_distance: 0.8572
Epoch 23/100
76/76 [==============================] - 0s 835us/step - loss: 0.5650 - accuracy: 0.8902 - mae: 0.5650 - pearson_correlation: 0.6351 - euclidean_distance: 0.8519
Epoch 24/100
76/76 [==============================] - 0s 836us/step - loss: 0.5607 - accuracy: 0.8805 - mae: 0.5607 - pearson_correlation: 0.6393 - euclidean_distance: 0.8462
Epoch 25/100
76/76 [==============================] - 0s 842us/step - loss: 0.5561 - accuracy: 0.8924 - mae: 0.5561 - pearson_correlation: 0.6429 - euclidean_distance: 0.8401
Epoch 26/100
76/76 [==============================] - 0s 839us/step - loss: 0.5537 - accuracy: 0.8942 - mae: 0.5537 - pearson_correlation: 0.6390 - euclidean_distance: 0.8371
Epoch 27/100
76/76 [==============================] - 0s 842us/step - loss: 0.5482 - accuracy: 0.8951 - mae: 0.5482 - pearson_correlation: 0.6447 - euclidean_distance: 0.8298
Epoch 28/100
76/76 [==============================] - 0s 836us/step - loss: 0.5428 - accuracy: 0.9030 - mae: 0.5428 - pearson_correlation: 0.6491 - euclidean_distance: 0.8229
Epoch 29/100
76/76 [==============================] - 0s 840us/step - loss: 0.5403 - accuracy: 0.9083 - mae: 0.5403 - pearson_correlation: 0.6495 - euclidean_distance: 0.8196
Epoch 30/100
76/76 [==============================] - 0s 837us/step - loss: 0.5354 - accuracy: 0.9145 - mae: 0.5354 - pearson_correlation: 0.6529 - euclidean_distance: 0.8142
Epoch 31/100
76/76 [==============================] - 0s 839us/step - loss: 0.5312 - accuracy: 0.9167 - mae: 0.5312 - pearson_correlation: 0.6575 - euclidean_distance: 0.8091
Epoch 32/100
76/76 [==============================] - 0s 829us/step - loss: 0.5288 - accuracy: 0.9175 - mae: 0.5288 - pearson_correlation: 0.6552 - euclidean_distance: 0.8057
Epoch 33/100
76/76 [==============================] - 0s 830us/step - loss: 0.5244 - accuracy: 0.9189 - mae: 0.5244 - pearson_correlation: 0.6637 - euclidean_distance: 0.8001
Epoch 34/100
76/76 [==============================] - 0s 843us/step - loss: 0.5220 - accuracy: 0.9352 - mae: 0.5220 - pearson_correlation: 0.6637 - euclidean_distance: 0.7962
Epoch 35/100
76/76 [==============================] - 0s 845us/step - loss: 0.5177 - accuracy: 0.9312 - mae: 0.5177 - pearson_correlation: 0.6670 - euclidean_distance: 0.7914
Epoch 36/100
76/76 [==============================] - 0s 841us/step - loss: 0.5126 - accuracy: 0.9321 - mae: 0.5126 - pearson_correlation: 0.6654 - euclidean_distance: 0.7859
Epoch 37/100
76/76 [==============================] - 0s 839us/step - loss: 0.5104 - accuracy: 0.9339 - mae: 0.5104 - pearson_correlation: 0.6683 - euclidean_distance: 0.7816
Epoch 38/100
76/76 [==============================] - 0s 834us/step - loss: 0.5062 - accuracy: 0.9387 - mae: 0.5062 - pearson_correlation: 0.6727 - euclidean_distance: 0.7770
Epoch 39/100
76/76 [==============================] - 0s 838us/step - loss: 0.5021 - accuracy: 0.9444 - mae: 0.5021 - pearson_correlation: 0.6753 - euclidean_distance: 0.7724
Epoch 40/100
76/76 [==============================] - 0s 841us/step - loss: 0.5001 - accuracy: 0.9418 - mae: 0.5001 - pearson_correlation: 0.6719 - euclidean_distance: 0.7693
Epoch 41/100
76/76 [==============================] - 0s 838us/step - loss: 0.4963 - accuracy: 0.9409 - mae: 0.4963 - pearson_correlation: 0.6790 - euclidean_distance: 0.7639
Epoch 42/100
76/76 [==============================] - 0s 837us/step - loss: 0.4929 - accuracy: 0.9480 - mae: 0.4929 - pearson_correlation: 0.6800 - euclidean_distance: 0.7610
Epoch 43/100
76/76 [==============================] - 0s 838us/step - loss: 0.4897 - accuracy: 0.9480 - mae: 0.4897 - pearson_correlation: 0.6794 - euclidean_distance: 0.7557
Epoch 44/100
76/76 [==============================] - 0s 834us/step - loss: 0.4867 - accuracy: 0.9502 - mae: 0.4867 - pearson_correlation: 0.6854 - euclidean_distance: 0.7510
Epoch 45/100
76/76 [==============================] - 0s 835us/step - loss: 0.4844 - accuracy: 0.9511 - mae: 0.4844 - pearson_correlation: 0.6820 - euclidean_distance: 0.7481
Epoch 46/100
76/76 [==============================] - 0s 837us/step - loss: 0.4806 - accuracy: 0.9480 - mae: 0.4806 - pearson_correlation: 0.6857 - euclidean_distance: 0.7435
Epoch 47/100
76/76 [==============================] - 0s 838us/step - loss: 0.4785 - accuracy: 0.9533 - mae: 0.4785 - pearson_correlation: 0.6846 - euclidean_distance: 0.7403
Epoch 48/100
76/76 [==============================] - 0s 836us/step - loss: 0.4734 - accuracy: 0.9497 - mae: 0.4734 - pearson_correlation: 0.6896 - euclidean_distance: 0.7342
Epoch 49/100
76/76 [==============================] - 0s 840us/step - loss: 0.4701 - accuracy: 0.9519 - mae: 0.4701 - pearson_correlation: 0.6935 - euclidean_distance: 0.7299
Epoch 50/100
76/76 [==============================] - 0s 839us/step - loss: 0.4680 - accuracy: 0.9524 - mae: 0.4680 - pearson_correlation: 0.6915 - euclidean_distance: 0.7261
Epoch 51/100
76/76 [==============================] - 0s 829us/step - loss: 0.4648 - accuracy: 0.9546 - mae: 0.4648 - pearson_correlation: 0.6945 - euclidean_distance: 0.7228
Epoch 52/100
76/76 [==============================] - 0s 829us/step - loss: 0.4628 - accuracy: 0.9537 - mae: 0.4628 - pearson_correlation: 0.6913 - euclidean_distance: 0.7189
Epoch 53/100
76/76 [==============================] - 0s 834us/step - loss: 0.4589 - accuracy: 0.9541 - mae: 0.4589 - pearson_correlation: 0.6962 - euclidean_distance: 0.7137
Epoch 54/100
76/76 [==============================] - 0s 847us/step - loss: 0.4558 - accuracy: 0.9533 - mae: 0.4558 - pearson_correlation: 0.7022 - euclidean_distance: 0.7098
Epoch 55/100
76/76 [==============================] - 0s 926us/step - loss: 0.4528 - accuracy: 0.9519 - mae: 0.4528 - pearson_correlation: 0.7000 - euclidean_distance: 0.7057
Epoch 56/100
76/76 [==============================] - 0s 917us/step - loss: 0.4500 - accuracy: 0.9550 - mae: 0.4500 - pearson_correlation: 0.6982 - euclidean_distance: 0.7020
Epoch 57/100
76/76 [==============================] - 0s 925us/step - loss: 0.4463 - accuracy: 0.9537 - mae: 0.4463 - pearson_correlation: 0.7018 - euclidean_distance: 0.6974
Epoch 58/100
76/76 [==============================] - 0s 918us/step - loss: 0.4427 - accuracy: 0.9550 - mae: 0.4427 - pearson_correlation: 0.7020 - euclidean_distance: 0.6938
Epoch 59/100
76/76 [==============================] - 0s 891us/step - loss: 0.4400 - accuracy: 0.9555 - mae: 0.4400 - pearson_correlation: 0.7054 - euclidean_distance: 0.6875
Epoch 60/100
76/76 [==============================] - 0s 887us/step - loss: 0.4377 - accuracy: 0.9550 - mae: 0.4377 - pearson_correlation: 0.7078 - euclidean_distance: 0.6842
Epoch 61/100
76/76 [==============================] - 0s 973us/step - loss: 0.4348 - accuracy: 0.9550 - mae: 0.4348 - pearson_correlation: 0.7050 - euclidean_distance: 0.6812
Epoch 62/100
76/76 [==============================] - 0s 883us/step - loss: 0.4321 - accuracy: 0.9541 - mae: 0.4321 - pearson_correlation: 0.7108 - euclidean_distance: 0.6768
Epoch 63/100
76/76 [==============================] - 0s 992us/step - loss: 0.4287 - accuracy: 0.9550 - mae: 0.4287 - pearson_correlation: 0.7071 - euclidean_distance: 0.6725
Epoch 64/100
76/76 [==============================] - 0s 931us/step - loss: 0.4262 - accuracy: 0.9546 - mae: 0.4262 - pearson_correlation: 0.7071 - euclidean_distance: 0.6676
Epoch 65/100
76/76 [==============================] - 0s 852us/step - loss: 0.4222 - accuracy: 0.9555 - mae: 0.4222 - pearson_correlation: 0.7095 - euclidean_distance: 0.6635
Epoch 66/100
76/76 [==============================] - 0s 838us/step - loss: 0.4196 - accuracy: 0.9546 - mae: 0.4196 - pearson_correlation: 0.7122 - euclidean_distance: 0.6598
Epoch 67/100
76/76 [==============================] - 0s 864us/step - loss: 0.4170 - accuracy: 0.9559 - mae: 0.4170 - pearson_correlation: 0.7131 - euclidean_distance: 0.6554
Epoch 68/100
76/76 [==============================] - 0s 843us/step - loss: 0.4128 - accuracy: 0.9555 - mae: 0.4128 - pearson_correlation: 0.7160 - euclidean_distance: 0.6500
Epoch 69/100
76/76 [==============================] - 0s 836us/step - loss: 0.4099 - accuracy: 0.9555 - mae: 0.4099 - pearson_correlation: 0.7167 - euclidean_distance: 0.6455
Epoch 70/100
76/76 [==============================] - 0s 839us/step - loss: 0.4068 - accuracy: 0.9546 - mae: 0.4068 - pearson_correlation: 0.7179 - euclidean_distance: 0.6411
Epoch 71/100
76/76 [==============================] - 0s 840us/step - loss: 0.4047 - accuracy: 0.9555 - mae: 0.4047 - pearson_correlation: 0.7174 - euclidean_distance: 0.6365
Epoch 72/100
76/76 [==============================] - 0s 838us/step - loss: 0.4022 - accuracy: 0.9559 - mae: 0.4022 - pearson_correlation: 0.7150 - euclidean_distance: 0.6330
Epoch 73/100
76/76 [==============================] - 0s 835us/step - loss: 0.3984 - accuracy: 0.9550 - mae: 0.3984 - pearson_correlation: 0.7165 - euclidean_distance: 0.6282
Epoch 74/100
76/76 [==============================] - 0s 838us/step - loss: 0.3950 - accuracy: 0.9559 - mae: 0.3950 - pearson_correlation: 0.7191 - euclidean_distance: 0.6224
Epoch 75/100
76/76 [==============================] - 0s 833us/step - loss: 0.3915 - accuracy: 0.9555 - mae: 0.3915 - pearson_correlation: 0.7194 - euclidean_distance: 0.6189
Epoch 76/100
76/76 [==============================] - 0s 837us/step - loss: 0.3902 - accuracy: 0.9546 - mae: 0.3902 - pearson_correlation: 0.7187 - euclidean_distance: 0.6152
Epoch 77/100
76/76 [==============================] - 0s 835us/step - loss: 0.3853 - accuracy: 0.9550 - mae: 0.3853 - pearson_correlation: 0.7222 - euclidean_distance: 0.6095
Epoch 78/100
76/76 [==============================] - 0s 838us/step - loss: 0.3819 - accuracy: 0.9559 - mae: 0.3819 - pearson_correlation: 0.7256 - euclidean_distance: 0.6038
Epoch 79/100
76/76 [==============================] - 0s 836us/step - loss: 0.3787 - accuracy: 0.9559 - mae: 0.3787 - pearson_correlation: 0.7259 - euclidean_distance: 0.5985
Epoch 80/100
76/76 [==============================] - 0s 837us/step - loss: 0.3763 - accuracy: 0.9555 - mae: 0.3763 - pearson_correlation: 0.7234 - euclidean_distance: 0.5950
Epoch 81/100
76/76 [==============================] - 0s 839us/step - loss: 0.3733 - accuracy: 0.9559 - mae: 0.3733 - pearson_correlation: 0.7207 - euclidean_distance: 0.5901
Epoch 82/100
76/76 [==============================] - 0s 835us/step - loss: 0.3701 - accuracy: 0.9555 - mae: 0.3701 - pearson_correlation: 0.7231 - euclidean_distance: 0.5847
Epoch 83/100
76/76 [==============================] - 0s 839us/step - loss: 0.3657 - accuracy: 0.9559 - mae: 0.3657 - pearson_correlation: 0.7250 - euclidean_distance: 0.5793
Epoch 84/100
76/76 [==============================] - 0s 836us/step - loss: 0.3617 - accuracy: 0.9555 - mae: 0.3617 - pearson_correlation: 0.7258 - euclidean_distance: 0.5730
Epoch 85/100
76/76 [==============================] - 0s 833us/step - loss: 0.3589 - accuracy: 0.9555 - mae: 0.3589 - pearson_correlation: 0.7246 - euclidean_distance: 0.5693
Epoch 86/100
76/76 [==============================] - 0s 836us/step - loss: 0.3555 - accuracy: 0.9559 - mae: 0.3555 - pearson_correlation: 0.7322 - euclidean_distance: 0.5631
Epoch 87/100
76/76 [==============================] - 0s 836us/step - loss: 0.3536 - accuracy: 0.9555 - mae: 0.3536 - pearson_correlation: 0.7264 - euclidean_distance: 0.5582
Epoch 88/100
76/76 [==============================] - 0s 835us/step - loss: 0.3487 - accuracy: 0.9559 - mae: 0.3487 - pearson_correlation: 0.7274 - euclidean_distance: 0.5518
Epoch 89/100
76/76 [==============================] - 0s 837us/step - loss: 0.3448 - accuracy: 0.9555 - mae: 0.3448 - pearson_correlation: 0.7297 - euclidean_distance: 0.5464
Epoch 90/100
76/76 [==============================] - 0s 839us/step - loss: 0.3412 - accuracy: 0.9559 - mae: 0.3412 - pearson_correlation: 0.7269 - euclidean_distance: 0.5405
Epoch 91/100
76/76 [==============================] - 0s 838us/step - loss: 0.3377 - accuracy: 0.9559 - mae: 0.3377 - pearson_correlation: 0.7261 - euclidean_distance: 0.5344
Epoch 92/100
76/76 [==============================] - 0s 837us/step - loss: 0.3331 - accuracy: 0.9559 - mae: 0.3331 - pearson_correlation: 0.7310 - euclidean_distance: 0.5282
Epoch 93/100
76/76 [==============================] - 0s 836us/step - loss: 0.3299 - accuracy: 0.9550 - mae: 0.3299 - pearson_correlation: 0.7299 - euclidean_distance: 0.5225
Epoch 94/100
76/76 [==============================] - 0s 834us/step - loss: 0.3259 - accuracy: 0.9555 - mae: 0.3259 - pearson_correlation: 0.7309 - euclidean_distance: 0.5157
Epoch 95/100
76/76 [==============================] - 0s 834us/step - loss: 0.3234 - accuracy: 0.9555 - mae: 0.3234 - pearson_correlation: 0.7299 - euclidean_distance: 0.5108
Epoch 96/100
76/76 [==============================] - 0s 836us/step - loss: 0.3183 - accuracy: 0.9559 - mae: 0.3183 - pearson_correlation: 0.7280 - euclidean_distance: 0.5043
Epoch 97/100
76/76 [==============================] - 0s 841us/step - loss: 0.3144 - accuracy: 0.9559 - mae: 0.3144 - pearson_correlation: 0.7286 - euclidean_distance: 0.4971
Epoch 98/100
76/76 [==============================] - 0s 837us/step - loss: 0.3088 - accuracy: 0.9559 - mae: 0.3088 - pearson_correlation: 0.7289 - euclidean_distance: 0.4900
Epoch 99/100
76/76 [==============================] - 0s 840us/step - loss: 0.3061 - accuracy: 0.9559 - mae: 0.3061 - pearson_correlation: 0.7274 - euclidean_distance: 0.4846
Epoch 100/100
76/76 [==============================] - 0s 839us/step - loss: 0.3022 - accuracy: 0.9559 - mae: 0.3022 - pearson_correlation: 0.7293 - euclidean_distance: 0.4782
38/38 [==============================] - 0s 465us/step
Epoch 1/150
76/76 [==============================] - 1s 859us/step - loss: 0.5086 - accuracy: 0.3555 - mae: 0.5086 - pearson_correlation: -0.1177 - euclidean_distance: 0.7857
Epoch 2/150
76/76 [==============================] - 0s 849us/step - loss: 0.5022 - accuracy: 0.3555 - mae: 0.5022 - pearson_correlation: -0.1176 - euclidean_distance: 0.7774
Epoch 3/150
76/76 [==============================] - 0s 851us/step - loss: 0.4999 - accuracy: 0.3480 - mae: 0.4999 - pearson_correlation: -0.1133 - euclidean_distance: 0.7735
Epoch 4/150
76/76 [==============================] - 0s 846us/step - loss: 0.4931 - accuracy: 0.3595 - mae: 0.4931 - pearson_correlation: -0.1109 - euclidean_distance: 0.7635
Epoch 5/150
76/76 [==============================] - 0s 842us/step - loss: 0.4889 - accuracy: 0.3569 - mae: 0.4889 - pearson_correlation: -0.1068 - euclidean_distance: 0.7571
Epoch 6/150
76/76 [==============================] - 0s 838us/step - loss: 0.4820 - accuracy: 0.3683 - mae: 0.4820 - pearson_correlation: -0.0929 - euclidean_distance: 0.7477
Epoch 7/150
76/76 [==============================] - 0s 839us/step - loss: 0.4787 - accuracy: 0.3692 - mae: 0.4787 - pearson_correlation: -0.0870 - euclidean_distance: 0.7430
Epoch 8/150
76/76 [==============================] - 0s 841us/step - loss: 0.4718 - accuracy: 0.3613 - mae: 0.4718 - pearson_correlation: -0.0809 - euclidean_distance: 0.7335
Epoch 9/150
76/76 [==============================] - 0s 839us/step - loss: 0.4648 - accuracy: 0.3820 - mae: 0.4648 - pearson_correlation: -0.0819 - euclidean_distance: 0.7226
Epoch 10/150
76/76 [==============================] - 0s 838us/step - loss: 0.4596 - accuracy: 0.3855 - mae: 0.4596 - pearson_correlation: -0.0763 - euclidean_distance: 0.7150
Epoch 11/150
76/76 [==============================] - 0s 834us/step - loss: 0.4535 - accuracy: 0.3908 - mae: 0.4535 - pearson_correlation: -0.0671 - euclidean_distance: 0.7063
Epoch 12/150
76/76 [==============================] - 0s 835us/step - loss: 0.4472 - accuracy: 0.4076 - mae: 0.4472 - pearson_correlation: -0.0567 - euclidean_distance: 0.6962
Epoch 13/150
76/76 [==============================] - 0s 840us/step - loss: 0.4400 - accuracy: 0.4085 - mae: 0.4400 - pearson_correlation: -0.0443 - euclidean_distance: 0.6859
Epoch 14/150
76/76 [==============================] - 0s 837us/step - loss: 0.4350 - accuracy: 0.4177 - mae: 0.4350 - pearson_correlation: -0.0371 - euclidean_distance: 0.6779
Epoch 15/150
76/76 [==============================] - 0s 841us/step - loss: 0.4278 - accuracy: 0.4146 - mae: 0.4278 - pearson_correlation: -0.0316 - euclidean_distance: 0.6681
Epoch 16/150
76/76 [==============================] - 0s 847us/step - loss: 0.4213 - accuracy: 0.4336 - mae: 0.4213 - pearson_correlation: -0.0116 - euclidean_distance: 0.6567
Epoch 17/150
76/76 [==============================] - 0s 845us/step - loss: 0.4141 - accuracy: 0.4460 - mae: 0.4141 - pearson_correlation: 0.0015 - euclidean_distance: 0.6460
Epoch 18/150
76/76 [==============================] - 0s 838us/step - loss: 0.4075 - accuracy: 0.4605 - mae: 0.4075 - pearson_correlation: 0.0107 - euclidean_distance: 0.6368
Epoch 19/150
76/76 [==============================] - 0s 840us/step - loss: 0.3996 - accuracy: 0.4835 - mae: 0.3996 - pearson_correlation: 0.0263 - euclidean_distance: 0.6239
Epoch 20/150
76/76 [==============================] - 0s 835us/step - loss: 0.3959 - accuracy: 0.5002 - mae: 0.3959 - pearson_correlation: 0.0350 - euclidean_distance: 0.6175
Epoch 21/150
76/76 [==============================] - 0s 841us/step - loss: 0.3884 - accuracy: 0.5020 - mae: 0.3884 - pearson_correlation: 0.0394 - euclidean_distance: 0.6062
Epoch 22/150
76/76 [==============================] - 0s 839us/step - loss: 0.3792 - accuracy: 0.5174 - mae: 0.3792 - pearson_correlation: 0.0607 - euclidean_distance: 0.5930
Epoch 23/150
76/76 [==============================] - 0s 839us/step - loss: 0.3739 - accuracy: 0.5373 - mae: 0.3739 - pearson_correlation: 0.0674 - euclidean_distance: 0.5844
Epoch 24/150
76/76 [==============================] - 0s 840us/step - loss: 0.3677 - accuracy: 0.5611 - mae: 0.3677 - pearson_correlation: 0.0778 - euclidean_distance: 0.5737
Epoch 25/150
76/76 [==============================] - 0s 835us/step - loss: 0.3603 - accuracy: 0.5831 - mae: 0.3603 - pearson_correlation: 0.0902 - euclidean_distance: 0.5621
Epoch 26/150
76/76 [==============================] - 0s 843us/step - loss: 0.3538 - accuracy: 0.5906 - mae: 0.3538 - pearson_correlation: 0.1047 - euclidean_distance: 0.5520
Epoch 27/150
76/76 [==============================] - 0s 835us/step - loss: 0.3466 - accuracy: 0.6118 - mae: 0.3466 - pearson_correlation: 0.1152 - euclidean_distance: 0.5412
Epoch 28/150
76/76 [==============================] - 0s 838us/step - loss: 0.3401 - accuracy: 0.6374 - mae: 0.3401 - pearson_correlation: 0.1260 - euclidean_distance: 0.5300
Epoch 29/150
76/76 [==============================] - 0s 839us/step - loss: 0.3328 - accuracy: 0.6458 - mae: 0.3328 - pearson_correlation: 0.1349 - euclidean_distance: 0.5195
Epoch 30/150
76/76 [==============================] - 0s 835us/step - loss: 0.3287 - accuracy: 0.6506 - mae: 0.3287 - pearson_correlation: 0.1486 - euclidean_distance: 0.5130
Epoch 31/150
76/76 [==============================] - 0s 842us/step - loss: 0.3226 - accuracy: 0.6740 - mae: 0.3226 - pearson_correlation: 0.1611 - euclidean_distance: 0.5023
Epoch 32/150
76/76 [==============================] - 0s 843us/step - loss: 0.3169 - accuracy: 0.6718 - mae: 0.3169 - pearson_correlation: 0.1733 - euclidean_distance: 0.4936
Epoch 33/150
76/76 [==============================] - 0s 844us/step - loss: 0.3116 - accuracy: 0.6824 - mae: 0.3116 - pearson_correlation: 0.1793 - euclidean_distance: 0.4857
Epoch 34/150
76/76 [==============================] - 0s 830us/step - loss: 0.3065 - accuracy: 0.6930 - mae: 0.3065 - pearson_correlation: 0.1966 - euclidean_distance: 0.4764
Epoch 35/150
76/76 [==============================] - 0s 860us/step - loss: 0.2998 - accuracy: 0.6921 - mae: 0.2998 - pearson_correlation: 0.2040 - euclidean_distance: 0.4670
Epoch 36/150
76/76 [==============================] - 0s 850us/step - loss: 0.2944 - accuracy: 0.7164 - mae: 0.2944 - pearson_correlation: 0.2160 - euclidean_distance: 0.4573
Epoch 37/150
76/76 [==============================] - 0s 843us/step - loss: 0.2905 - accuracy: 0.7120 - mae: 0.2905 - pearson_correlation: 0.2222 - euclidean_distance: 0.4517
Epoch 38/150
76/76 [==============================] - 0s 838us/step - loss: 0.2846 - accuracy: 0.7239 - mae: 0.2846 - pearson_correlation: 0.2295 - euclidean_distance: 0.4428
Epoch 39/150
76/76 [==============================] - 0s 835us/step - loss: 0.2805 - accuracy: 0.7331 - mae: 0.2805 - pearson_correlation: 0.2455 - euclidean_distance: 0.4359
Epoch 40/150
76/76 [==============================] - 0s 839us/step - loss: 0.2760 - accuracy: 0.7371 - mae: 0.2760 - pearson_correlation: 0.2555 - euclidean_distance: 0.4285
Epoch 41/150
76/76 [==============================] - 0s 835us/step - loss: 0.2725 - accuracy: 0.7371 - mae: 0.2725 - pearson_correlation: 0.2599 - euclidean_distance: 0.4232
Epoch 42/150
76/76 [==============================] - 0s 835us/step - loss: 0.2682 - accuracy: 0.7353 - mae: 0.2682 - pearson_correlation: 0.2657 - euclidean_distance: 0.4171
Epoch 43/150
76/76 [==============================] - 0s 837us/step - loss: 0.2630 - accuracy: 0.7472 - mae: 0.2630 - pearson_correlation: 0.2845 - euclidean_distance: 0.4078
Epoch 44/150
76/76 [==============================] - 0s 840us/step - loss: 0.2605 - accuracy: 0.7486 - mae: 0.2605 - pearson_correlation: 0.2822 - euclidean_distance: 0.4042
Epoch 45/150
76/76 [==============================] - 0s 836us/step - loss: 0.2567 - accuracy: 0.7481 - mae: 0.2567 - pearson_correlation: 0.2947 - euclidean_distance: 0.3991
Epoch 46/150
76/76 [==============================] - 0s 838us/step - loss: 0.2519 - accuracy: 0.7592 - mae: 0.2519 - pearson_correlation: 0.3081 - euclidean_distance: 0.3913
Epoch 47/150
76/76 [==============================] - 0s 842us/step - loss: 0.2517 - accuracy: 0.7636 - mae: 0.2517 - pearson_correlation: 0.3107 - euclidean_distance: 0.3921
Epoch 48/150
76/76 [==============================] - 0s 842us/step - loss: 0.2452 - accuracy: 0.7706 - mae: 0.2452 - pearson_correlation: 0.3211 - euclidean_distance: 0.3811
Epoch 49/150
76/76 [==============================] - 0s 845us/step - loss: 0.2415 - accuracy: 0.7781 - mae: 0.2415 - pearson_correlation: 0.3258 - euclidean_distance: 0.3761
Epoch 50/150
76/76 [==============================] - 0s 834us/step - loss: 0.2367 - accuracy: 0.7786 - mae: 0.2367 - pearson_correlation: 0.3390 - euclidean_distance: 0.3692
Epoch 51/150
76/76 [==============================] - 0s 838us/step - loss: 0.2350 - accuracy: 0.7755 - mae: 0.2350 - pearson_correlation: 0.3387 - euclidean_distance: 0.3650
Epoch 52/150
76/76 [==============================] - 0s 835us/step - loss: 0.2332 - accuracy: 0.7821 - mae: 0.2332 - pearson_correlation: 0.3482 - euclidean_distance: 0.3633
Epoch 53/150
76/76 [==============================] - 0s 839us/step - loss: 0.2303 - accuracy: 0.7891 - mae: 0.2303 - pearson_correlation: 0.3603 - euclidean_distance: 0.3575
Epoch 54/150
76/76 [==============================] - 0s 843us/step - loss: 0.2263 - accuracy: 0.7847 - mae: 0.2263 - pearson_correlation: 0.3671 - euclidean_distance: 0.3517
Epoch 55/150
76/76 [==============================] - 0s 837us/step - loss: 0.2255 - accuracy: 0.7905 - mae: 0.2255 - pearson_correlation: 0.3723 - euclidean_distance: 0.3511
Epoch 56/150
76/76 [==============================] - 0s 838us/step - loss: 0.2207 - accuracy: 0.7900 - mae: 0.2207 - pearson_correlation: 0.3732 - euclidean_distance: 0.3437
Epoch 57/150
76/76 [==============================] - 0s 842us/step - loss: 0.2172 - accuracy: 0.7984 - mae: 0.2172 - pearson_correlation: 0.3818 - euclidean_distance: 0.3389
Epoch 58/150
76/76 [==============================] - 0s 842us/step - loss: 0.2156 - accuracy: 0.7958 - mae: 0.2156 - pearson_correlation: 0.3914 - euclidean_distance: 0.3364
Epoch 59/150
76/76 [==============================] - 0s 838us/step - loss: 0.2124 - accuracy: 0.8028 - mae: 0.2124 - pearson_correlation: 0.3975 - euclidean_distance: 0.3310
Epoch 60/150
76/76 [==============================] - 0s 835us/step - loss: 0.2087 - accuracy: 0.8024 - mae: 0.2087 - pearson_correlation: 0.4044 - euclidean_distance: 0.3258
Epoch 61/150
76/76 [==============================] - 0s 841us/step - loss: 0.2081 - accuracy: 0.7975 - mae: 0.2081 - pearson_correlation: 0.4087 - euclidean_distance: 0.3250
Epoch 62/150
76/76 [==============================] - 0s 838us/step - loss: 0.2038 - accuracy: 0.8015 - mae: 0.2038 - pearson_correlation: 0.4194 - euclidean_distance: 0.3184
Epoch 63/150
76/76 [==============================] - 0s 843us/step - loss: 0.2009 - accuracy: 0.8213 - mae: 0.2009 - pearson_correlation: 0.4235 - euclidean_distance: 0.3146
Epoch 64/150
76/76 [==============================] - 0s 842us/step - loss: 0.2017 - accuracy: 0.8103 - mae: 0.2017 - pearson_correlation: 0.4275 - euclidean_distance: 0.3152
Epoch 65/150
76/76 [==============================] - 0s 841us/step - loss: 0.1979 - accuracy: 0.8196 - mae: 0.1979 - pearson_correlation: 0.4349 - euclidean_distance: 0.3095
Epoch 66/150
76/76 [==============================] - 0s 839us/step - loss: 0.1961 - accuracy: 0.8209 - mae: 0.1961 - pearson_correlation: 0.4431 - euclidean_distance: 0.3060
Epoch 67/150
76/76 [==============================] - 0s 840us/step - loss: 0.1970 - accuracy: 0.8205 - mae: 0.1970 - pearson_correlation: 0.4453 - euclidean_distance: 0.3080
Epoch 68/150
76/76 [==============================] - 0s 839us/step - loss: 0.1934 - accuracy: 0.8236 - mae: 0.1934 - pearson_correlation: 0.4544 - euclidean_distance: 0.3021
Epoch 69/150
76/76 [==============================] - 0s 836us/step - loss: 0.1910 - accuracy: 0.8297 - mae: 0.1910 - pearson_correlation: 0.4540 - euclidean_distance: 0.2991
Epoch 70/150
76/76 [==============================] - 0s 843us/step - loss: 0.1882 - accuracy: 0.8275 - mae: 0.1882 - pearson_correlation: 0.4615 - euclidean_distance: 0.2935
Epoch 71/150
76/76 [==============================] - 0s 838us/step - loss: 0.1877 - accuracy: 0.8359 - mae: 0.1877 - pearson_correlation: 0.4692 - euclidean_distance: 0.2935
Epoch 72/150
76/76 [==============================] - 0s 834us/step - loss: 0.1827 - accuracy: 0.8408 - mae: 0.1827 - pearson_correlation: 0.4717 - euclidean_distance: 0.2863
Epoch 73/150
76/76 [==============================] - 0s 839us/step - loss: 0.1818 - accuracy: 0.8469 - mae: 0.1818 - pearson_correlation: 0.4842 - euclidean_distance: 0.2845
Epoch 74/150
76/76 [==============================] - 0s 835us/step - loss: 0.1802 - accuracy: 0.8434 - mae: 0.1802 - pearson_correlation: 0.4781 - euclidean_distance: 0.2827
Epoch 75/150
76/76 [==============================] - 0s 834us/step - loss: 0.1784 - accuracy: 0.8465 - mae: 0.1784 - pearson_correlation: 0.4924 - euclidean_distance: 0.2797
Epoch 76/150
76/76 [==============================] - 0s 833us/step - loss: 0.1788 - accuracy: 0.8452 - mae: 0.1788 - pearson_correlation: 0.4872 - euclidean_distance: 0.2799
Epoch 77/150
76/76 [==============================] - 0s 837us/step - loss: 0.1780 - accuracy: 0.8430 - mae: 0.1780 - pearson_correlation: 0.4940 - euclidean_distance: 0.2787
Epoch 78/150
76/76 [==============================] - 0s 829us/step - loss: 0.1766 - accuracy: 0.8522 - mae: 0.1766 - pearson_correlation: 0.5019 - euclidean_distance: 0.2769
Epoch 79/150
76/76 [==============================] - 0s 840us/step - loss: 0.1731 - accuracy: 0.8531 - mae: 0.1731 - pearson_correlation: 0.5102 - euclidean_distance: 0.2716
Epoch 80/150
76/76 [==============================] - 0s 830us/step - loss: 0.1706 - accuracy: 0.8571 - mae: 0.1706 - pearson_correlation: 0.5096 - euclidean_distance: 0.2678
Epoch 81/150
76/76 [==============================] - 0s 838us/step - loss: 0.1701 - accuracy: 0.8619 - mae: 0.1701 - pearson_correlation: 0.5180 - euclidean_distance: 0.2671
Epoch 82/150
76/76 [==============================] - 0s 834us/step - loss: 0.1708 - accuracy: 0.8610 - mae: 0.1708 - pearson_correlation: 0.5193 - euclidean_distance: 0.2681
Epoch 83/150
76/76 [==============================] - 0s 836us/step - loss: 0.1672 - accuracy: 0.8659 - mae: 0.1672 - pearson_correlation: 0.5257 - euclidean_distance: 0.2619
Epoch 84/150
76/76 [==============================] - 0s 833us/step - loss: 0.1709 - accuracy: 0.8659 - mae: 0.1709 - pearson_correlation: 0.5217 - euclidean_distance: 0.2680
Epoch 85/150
76/76 [==============================] - 0s 833us/step - loss: 0.1681 - accuracy: 0.8659 - mae: 0.1681 - pearson_correlation: 0.5352 - euclidean_distance: 0.2636
Epoch 86/150
76/76 [==============================] - 0s 835us/step - loss: 0.1660 - accuracy: 0.8721 - mae: 0.1660 - pearson_correlation: 0.5312 - euclidean_distance: 0.2609
Epoch 87/150
76/76 [==============================] - 0s 840us/step - loss: 0.1633 - accuracy: 0.8681 - mae: 0.1633 - pearson_correlation: 0.5354 - euclidean_distance: 0.2566
Epoch 88/150
76/76 [==============================] - 0s 831us/step - loss: 0.1611 - accuracy: 0.8760 - mae: 0.1611 - pearson_correlation: 0.5448 - euclidean_distance: 0.2534
Epoch 89/150
76/76 [==============================] - 0s 838us/step - loss: 0.1610 - accuracy: 0.8809 - mae: 0.1610 - pearson_correlation: 0.5482 - euclidean_distance: 0.2528
Epoch 90/150
76/76 [==============================] - 0s 834us/step - loss: 0.1603 - accuracy: 0.8738 - mae: 0.1603 - pearson_correlation: 0.5450 - euclidean_distance: 0.2523
Epoch 91/150
76/76 [==============================] - 0s 837us/step - loss: 0.1576 - accuracy: 0.8827 - mae: 0.1576 - pearson_correlation: 0.5551 - euclidean_distance: 0.2474
Epoch 92/150
76/76 [==============================] - 0s 839us/step - loss: 0.1574 - accuracy: 0.8862 - mae: 0.1574 - pearson_correlation: 0.5595 - euclidean_distance: 0.2474
Epoch 93/150
76/76 [==============================] - 0s 837us/step - loss: 0.1578 - accuracy: 0.8835 - mae: 0.1578 - pearson_correlation: 0.5561 - euclidean_distance: 0.2481
Epoch 94/150
76/76 [==============================] - 0s 833us/step - loss: 0.1556 - accuracy: 0.8844 - mae: 0.1556 - pearson_correlation: 0.5640 - euclidean_distance: 0.2450
Epoch 95/150
76/76 [==============================] - 0s 841us/step - loss: 0.1558 - accuracy: 0.8871 - mae: 0.1558 - pearson_correlation: 0.5654 - euclidean_distance: 0.2446
Epoch 96/150
76/76 [==============================] - 0s 834us/step - loss: 0.1552 - accuracy: 0.8928 - mae: 0.1552 - pearson_correlation: 0.5695 - euclidean_distance: 0.2435
Epoch 97/150
76/76 [==============================] - 0s 837us/step - loss: 0.1519 - accuracy: 0.8910 - mae: 0.1519 - pearson_correlation: 0.5746 - euclidean_distance: 0.2391
Epoch 98/150
76/76 [==============================] - 0s 834us/step - loss: 0.1535 - accuracy: 0.8915 - mae: 0.1535 - pearson_correlation: 0.5724 - euclidean_distance: 0.2419
Epoch 99/150
76/76 [==============================] - 0s 840us/step - loss: 0.1535 - accuracy: 0.8959 - mae: 0.1535 - pearson_correlation: 0.5740 - euclidean_distance: 0.2413
Epoch 100/150
76/76 [==============================] - 0s 836us/step - loss: 0.1522 - accuracy: 0.9003 - mae: 0.1522 - pearson_correlation: 0.5783 - euclidean_distance: 0.2390
Epoch 101/150
76/76 [==============================] - 0s 828us/step - loss: 0.1493 - accuracy: 0.9047 - mae: 0.1493 - pearson_correlation: 0.5838 - euclidean_distance: 0.2352
Epoch 102/150
76/76 [==============================] - 0s 839us/step - loss: 0.1486 - accuracy: 0.9069 - mae: 0.1486 - pearson_correlation: 0.5890 - euclidean_distance: 0.2349
Epoch 103/150
76/76 [==============================] - 0s 835us/step - loss: 0.1475 - accuracy: 0.9034 - mae: 0.1475 - pearson_correlation: 0.5915 - euclidean_distance: 0.2328
Epoch 104/150
76/76 [==============================] - 0s 840us/step - loss: 0.1460 - accuracy: 0.9056 - mae: 0.1460 - pearson_correlation: 0.5905 - euclidean_distance: 0.2303
Epoch 105/150
76/76 [==============================] - 0s 836us/step - loss: 0.1450 - accuracy: 0.9069 - mae: 0.1450 - pearson_correlation: 0.6003 - euclidean_distance: 0.2284
Epoch 106/150
76/76 [==============================] - 0s 833us/step - loss: 0.1452 - accuracy: 0.9047 - mae: 0.1452 - pearson_correlation: 0.6002 - euclidean_distance: 0.2291
Epoch 107/150
76/76 [==============================] - 0s 835us/step - loss: 0.1426 - accuracy: 0.9135 - mae: 0.1426 - pearson_correlation: 0.6013 - euclidean_distance: 0.2252
Epoch 108/150
76/76 [==============================] - 0s 840us/step - loss: 0.1438 - accuracy: 0.9113 - mae: 0.1438 - pearson_correlation: 0.6040 - euclidean_distance: 0.2270
Epoch 109/150
76/76 [==============================] - 0s 832us/step - loss: 0.1430 - accuracy: 0.9109 - mae: 0.1430 - pearson_correlation: 0.6071 - euclidean_distance: 0.2259
Epoch 110/150
76/76 [==============================] - 0s 837us/step - loss: 0.1404 - accuracy: 0.9144 - mae: 0.1404 - pearson_correlation: 0.6130 - euclidean_distance: 0.2220
Epoch 111/150
76/76 [==============================] - 0s 856us/step - loss: 0.1401 - accuracy: 0.9237 - mae: 0.1401 - pearson_correlation: 0.6072 - euclidean_distance: 0.2214
Epoch 112/150
76/76 [==============================] - 0s 848us/step - loss: 0.1386 - accuracy: 0.9228 - mae: 0.1386 - pearson_correlation: 0.6131 - euclidean_distance: 0.2183
Epoch 113/150
76/76 [==============================] - 0s 840us/step - loss: 0.1414 - accuracy: 0.9188 - mae: 0.1414 - pearson_correlation: 0.6078 - euclidean_distance: 0.2233
Epoch 114/150
76/76 [==============================] - 0s 835us/step - loss: 0.1376 - accuracy: 0.9219 - mae: 0.1376 - pearson_correlation: 0.6164 - euclidean_distance: 0.2182
Epoch 115/150
76/76 [==============================] - 0s 839us/step - loss: 0.1386 - accuracy: 0.9210 - mae: 0.1386 - pearson_correlation: 0.6155 - euclidean_distance: 0.2189
Epoch 116/150
76/76 [==============================] - 0s 841us/step - loss: 0.1392 - accuracy: 0.9241 - mae: 0.1392 - pearson_correlation: 0.6185 - euclidean_distance: 0.2198
Epoch 117/150
76/76 [==============================] - 0s 839us/step - loss: 0.1355 - accuracy: 0.9268 - mae: 0.1355 - pearson_correlation: 0.6252 - euclidean_distance: 0.2142
Epoch 118/150
76/76 [==============================] - 0s 840us/step - loss: 0.1368 - accuracy: 0.9325 - mae: 0.1368 - pearson_correlation: 0.6226 - euclidean_distance: 0.2161
Epoch 119/150
76/76 [==============================] - 0s 836us/step - loss: 0.1334 - accuracy: 0.9299 - mae: 0.1334 - pearson_correlation: 0.6310 - euclidean_distance: 0.2107
Epoch 120/150
76/76 [==============================] - 0s 835us/step - loss: 0.1343 - accuracy: 0.9321 - mae: 0.1343 - pearson_correlation: 0.6316 - euclidean_distance: 0.2127
Epoch 121/150
76/76 [==============================] - 0s 842us/step - loss: 0.1334 - accuracy: 0.9290 - mae: 0.1334 - pearson_correlation: 0.6325 - euclidean_distance: 0.2110
Epoch 122/150
76/76 [==============================] - 0s 840us/step - loss: 0.1338 - accuracy: 0.9307 - mae: 0.1338 - pearson_correlation: 0.6369 - euclidean_distance: 0.2115
Epoch 123/150
76/76 [==============================] - 0s 837us/step - loss: 0.1308 - accuracy: 0.9365 - mae: 0.1308 - pearson_correlation: 0.6457 - euclidean_distance: 0.2074
Epoch 124/150
76/76 [==============================] - 0s 837us/step - loss: 0.1322 - accuracy: 0.9365 - mae: 0.1322 - pearson_correlation: 0.6366 - euclidean_distance: 0.2097
Epoch 125/150
76/76 [==============================] - 0s 842us/step - loss: 0.1300 - accuracy: 0.9391 - mae: 0.1300 - pearson_correlation: 0.6501 - euclidean_distance: 0.2058
Epoch 126/150
76/76 [==============================] - 0s 840us/step - loss: 0.1299 - accuracy: 0.9382 - mae: 0.1299 - pearson_correlation: 0.6464 - euclidean_distance: 0.2055
Epoch 127/150
76/76 [==============================] - 0s 835us/step - loss: 0.1308 - accuracy: 0.9409 - mae: 0.1308 - pearson_correlation: 0.6437 - euclidean_distance: 0.2075
Epoch 128/150
76/76 [==============================] - 0s 833us/step - loss: 0.1275 - accuracy: 0.9453 - mae: 0.1275 - pearson_correlation: 0.6495 - euclidean_distance: 0.2030
Epoch 129/150
76/76 [==============================] - 0s 841us/step - loss: 0.1283 - accuracy: 0.9453 - mae: 0.1283 - pearson_correlation: 0.6504 - euclidean_distance: 0.2034
Epoch 130/150
76/76 [==============================] - 0s 837us/step - loss: 0.1290 - accuracy: 0.9400 - mae: 0.1290 - pearson_correlation: 0.6540 - euclidean_distance: 0.2043
Epoch 131/150
76/76 [==============================] - 0s 832us/step - loss: 0.1258 - accuracy: 0.9435 - mae: 0.1258 - pearson_correlation: 0.6497 - euclidean_distance: 0.2003
Epoch 132/150
76/76 [==============================] - 0s 837us/step - loss: 0.1278 - accuracy: 0.9444 - mae: 0.1278 - pearson_correlation: 0.6546 - euclidean_distance: 0.2022
Epoch 133/150
76/76 [==============================] - 0s 831us/step - loss: 0.1264 - accuracy: 0.9475 - mae: 0.1264 - pearson_correlation: 0.6511 - euclidean_distance: 0.2010
Epoch 134/150
76/76 [==============================] - 0s 833us/step - loss: 0.1260 - accuracy: 0.9449 - mae: 0.1260 - pearson_correlation: 0.6606 - euclidean_distance: 0.2000
Epoch 135/150
76/76 [==============================] - 0s 831us/step - loss: 0.1244 - accuracy: 0.9484 - mae: 0.1244 - pearson_correlation: 0.6617 - euclidean_distance: 0.1973
Epoch 136/150
76/76 [==============================] - 0s 834us/step - loss: 0.1250 - accuracy: 0.9471 - mae: 0.1250 - pearson_correlation: 0.6615 - euclidean_distance: 0.1989
Epoch 137/150
76/76 [==============================] - 0s 848us/step - loss: 0.1241 - accuracy: 0.9444 - mae: 0.1241 - pearson_correlation: 0.6574 - euclidean_distance: 0.1970
Epoch 138/150
76/76 [==============================] - 0s 839us/step - loss: 0.1234 - accuracy: 0.9493 - mae: 0.1234 - pearson_correlation: 0.6679 - euclidean_distance: 0.1961
Epoch 139/150
76/76 [==============================] - 0s 834us/step - loss: 0.1230 - accuracy: 0.9479 - mae: 0.1230 - pearson_correlation: 0.6657 - euclidean_distance: 0.1957
Epoch 140/150
76/76 [==============================] - 0s 832us/step - loss: 0.1216 - accuracy: 0.9471 - mae: 0.1216 - pearson_correlation: 0.6693 - euclidean_distance: 0.1934
Epoch 141/150
76/76 [==============================] - 0s 845us/step - loss: 0.1220 - accuracy: 0.9488 - mae: 0.1220 - pearson_correlation: 0.6628 - euclidean_distance: 0.1936
Epoch 142/150
76/76 [==============================] - 0s 840us/step - loss: 0.1213 - accuracy: 0.9502 - mae: 0.1213 - pearson_correlation: 0.6764 - euclidean_distance: 0.1929
Epoch 143/150
76/76 [==============================] - 0s 836us/step - loss: 0.1194 - accuracy: 0.9524 - mae: 0.1194 - pearson_correlation: 0.6746 - euclidean_distance: 0.1897
Epoch 144/150
76/76 [==============================] - 0s 832us/step - loss: 0.1209 - accuracy: 0.9510 - mae: 0.1209 - pearson_correlation: 0.6670 - euclidean_distance: 0.1928
Epoch 145/150
76/76 [==============================] - 0s 838us/step - loss: 0.1218 - accuracy: 0.9506 - mae: 0.1218 - pearson_correlation: 0.6712 - euclidean_distance: 0.1935
Epoch 146/150
76/76 [==============================] - 0s 832us/step - loss: 0.1183 - accuracy: 0.9519 - mae: 0.1183 - pearson_correlation: 0.6851 - euclidean_distance: 0.1883
Epoch 147/150
76/76 [==============================] - 0s 836us/step - loss: 0.1172 - accuracy: 0.9506 - mae: 0.1172 - pearson_correlation: 0.6775 - euclidean_distance: 0.1869
Epoch 148/150
76/76 [==============================] - 0s 786us/step - loss: 0.1182 - accuracy: 0.9524 - mae: 0.1182 - pearson_correlation: 0.6750 - euclidean_distance: 0.1878
Epoch 149/150
76/76 [==============================] - 0s 777us/step - loss: 0.1205 - accuracy: 0.9515 - mae: 0.1205 - pearson_correlation: 0.6730 - euclidean_distance: 0.1920
Epoch 150/150
76/76 [==============================] - 0s 791us/step - loss: 0.1168 - accuracy: 0.9515 - mae: 0.1168 - pearson_correlation: 0.6808 - euclidean_distance: 0.1857
38/38 [==============================] - 0s 475us/step
Epoch 1/150
76/76 [==============================] - 1s 863us/step - loss: 0.5249 - accuracy: 0.9131 - mae: 0.5249 - pearson_correlation: 0.6480 - euclidean_distance: 0.7852
Epoch 2/150
76/76 [==============================] - 0s 845us/step - loss: 0.5187 - accuracy: 0.9100 - mae: 0.5187 - pearson_correlation: 0.6458 - euclidean_distance: 0.7776
Epoch 3/150
76/76 [==============================] - 0s 840us/step - loss: 0.5131 - accuracy: 0.9131 - mae: 0.5131 - pearson_correlation: 0.6452 - euclidean_distance: 0.7703
Epoch 4/150
76/76 [==============================] - 0s 838us/step - loss: 0.5083 - accuracy: 0.9069 - mae: 0.5083 - pearson_correlation: 0.6433 - euclidean_distance: 0.7628
Epoch 5/150
76/76 [==============================] - 0s 838us/step - loss: 0.5017 - accuracy: 0.9082 - mae: 0.5017 - pearson_correlation: 0.6319 - euclidean_distance: 0.7543
Epoch 6/150
76/76 [==============================] - 0s 842us/step - loss: 0.4956 - accuracy: 0.9034 - mae: 0.4956 - pearson_correlation: 0.6326 - euclidean_distance: 0.7460
Epoch 7/150
76/76 [==============================] - 0s 839us/step - loss: 0.4893 - accuracy: 0.9012 - mae: 0.4893 - pearson_correlation: 0.6300 - euclidean_distance: 0.7374
Epoch 8/150
76/76 [==============================] - 0s 842us/step - loss: 0.4810 - accuracy: 0.9043 - mae: 0.4810 - pearson_correlation: 0.6288 - euclidean_distance: 0.7255
Epoch 9/150
76/76 [==============================] - 0s 842us/step - loss: 0.4756 - accuracy: 0.9007 - mae: 0.4756 - pearson_correlation: 0.6237 - euclidean_distance: 0.7182
Epoch 10/150
76/76 [==============================] - 0s 839us/step - loss: 0.4707 - accuracy: 0.8994 - mae: 0.4707 - pearson_correlation: 0.6158 - euclidean_distance: 0.7124
Epoch 11/150
76/76 [==============================] - 0s 837us/step - loss: 0.4638 - accuracy: 0.8946 - mae: 0.4638 - pearson_correlation: 0.6103 - euclidean_distance: 0.7033
Epoch 12/150
76/76 [==============================] - 0s 842us/step - loss: 0.4571 - accuracy: 0.9003 - mae: 0.4571 - pearson_correlation: 0.6120 - euclidean_distance: 0.6928
Epoch 13/150
76/76 [==============================] - 0s 835us/step - loss: 0.4511 - accuracy: 0.9007 - mae: 0.4511 - pearson_correlation: 0.6069 - euclidean_distance: 0.6841
Epoch 14/150
76/76 [==============================] - 0s 839us/step - loss: 0.4453 - accuracy: 0.8941 - mae: 0.4453 - pearson_correlation: 0.6015 - euclidean_distance: 0.6768
Epoch 15/150
76/76 [==============================] - 0s 841us/step - loss: 0.4395 - accuracy: 0.8963 - mae: 0.4395 - pearson_correlation: 0.6022 - euclidean_distance: 0.6676
Epoch 16/150
76/76 [==============================] - 0s 838us/step - loss: 0.4326 - accuracy: 0.8906 - mae: 0.4326 - pearson_correlation: 0.5931 - euclidean_distance: 0.6588
Epoch 17/150
76/76 [==============================] - 0s 837us/step - loss: 0.4257 - accuracy: 0.8853 - mae: 0.4257 - pearson_correlation: 0.5892 - euclidean_distance: 0.6489
Epoch 18/150
76/76 [==============================] - 0s 835us/step - loss: 0.4193 - accuracy: 0.8924 - mae: 0.4193 - pearson_correlation: 0.5841 - euclidean_distance: 0.6398
Epoch 19/150
76/76 [==============================] - 0s 841us/step - loss: 0.4140 - accuracy: 0.8827 - mae: 0.4140 - pearson_correlation: 0.5832 - euclidean_distance: 0.6313
Epoch 20/150
76/76 [==============================] - 0s 835us/step - loss: 0.4090 - accuracy: 0.8800 - mae: 0.4090 - pearson_correlation: 0.5709 - euclidean_distance: 0.6255
Epoch 21/150
76/76 [==============================] - 0s 837us/step - loss: 0.4048 - accuracy: 0.8796 - mae: 0.4048 - pearson_correlation: 0.5758 - euclidean_distance: 0.6182
Epoch 22/150
76/76 [==============================] - 0s 839us/step - loss: 0.3971 - accuracy: 0.8809 - mae: 0.3971 - pearson_correlation: 0.5674 - euclidean_distance: 0.6081
Epoch 23/150
76/76 [==============================] - 0s 835us/step - loss: 0.3917 - accuracy: 0.8725 - mae: 0.3917 - pearson_correlation: 0.5676 - euclidean_distance: 0.6001
Epoch 24/150
76/76 [==============================] - 0s 837us/step - loss: 0.3852 - accuracy: 0.8774 - mae: 0.3852 - pearson_correlation: 0.5638 - euclidean_distance: 0.5912
Epoch 25/150
76/76 [==============================] - 0s 840us/step - loss: 0.3815 - accuracy: 0.8694 - mae: 0.3815 - pearson_correlation: 0.5592 - euclidean_distance: 0.5863
Epoch 26/150
76/76 [==============================] - 0s 842us/step - loss: 0.3766 - accuracy: 0.8738 - mae: 0.3766 - pearson_correlation: 0.5576 - euclidean_distance: 0.5787
Epoch 27/150
76/76 [==============================] - 0s 875us/step - loss: 0.3718 - accuracy: 0.8708 - mae: 0.3718 - pearson_correlation: 0.5542 - euclidean_distance: 0.5717
Epoch 28/150
76/76 [==============================] - 0s 919us/step - loss: 0.3685 - accuracy: 0.8725 - mae: 0.3685 - pearson_correlation: 0.5518 - euclidean_distance: 0.5651
Epoch 29/150
76/76 [==============================] - 0s 905us/step - loss: 0.3617 - accuracy: 0.8769 - mae: 0.3617 - pearson_correlation: 0.5504 - euclidean_distance: 0.5566
Epoch 30/150
76/76 [==============================] - 0s 907us/step - loss: 0.3575 - accuracy: 0.8699 - mae: 0.3575 - pearson_correlation: 0.5471 - euclidean_distance: 0.5506
Epoch 31/150
76/76 [==============================] - 0s 901us/step - loss: 0.3513 - accuracy: 0.8708 - mae: 0.3513 - pearson_correlation: 0.5448 - euclidean_distance: 0.5411
Epoch 32/150
76/76 [==============================] - 0s 964us/step - loss: 0.3514 - accuracy: 0.8659 - mae: 0.3514 - pearson_correlation: 0.5356 - euclidean_distance: 0.5412
Epoch 33/150
76/76 [==============================] - 0s 932us/step - loss: 0.3427 - accuracy: 0.8730 - mae: 0.3427 - pearson_correlation: 0.5440 - euclidean_distance: 0.5282
Epoch 34/150
76/76 [==============================] - 0s 923us/step - loss: 0.3395 - accuracy: 0.8677 - mae: 0.3395 - pearson_correlation: 0.5372 - euclidean_distance: 0.5234
Epoch 35/150
76/76 [==============================] - 0s 957us/step - loss: 0.3349 - accuracy: 0.8677 - mae: 0.3349 - pearson_correlation: 0.5355 - euclidean_distance: 0.5176
Epoch 36/150
76/76 [==============================] - 0s 867us/step - loss: 0.3313 - accuracy: 0.8663 - mae: 0.3313 - pearson_correlation: 0.5347 - euclidean_distance: 0.5118
Epoch 37/150
76/76 [==============================] - 0s 852us/step - loss: 0.3277 - accuracy: 0.8637 - mae: 0.3277 - pearson_correlation: 0.5343 - euclidean_distance: 0.5071
Epoch 38/150
76/76 [==============================] - 0s 847us/step - loss: 0.3228 - accuracy: 0.8663 - mae: 0.3228 - pearson_correlation: 0.5366 - euclidean_distance: 0.4994
Epoch 39/150
76/76 [==============================] - 0s 842us/step - loss: 0.3171 - accuracy: 0.8597 - mae: 0.3171 - pearson_correlation: 0.5330 - euclidean_distance: 0.4917
Epoch 40/150
76/76 [==============================] - 0s 842us/step - loss: 0.3137 - accuracy: 0.8628 - mae: 0.3137 - pearson_correlation: 0.5303 - euclidean_distance: 0.4865
Epoch 41/150
76/76 [==============================] - 0s 842us/step - loss: 0.3104 - accuracy: 0.8637 - mae: 0.3104 - pearson_correlation: 0.5323 - euclidean_distance: 0.4808
Epoch 42/150
76/76 [==============================] - 0s 847us/step - loss: 0.3071 - accuracy: 0.8606 - mae: 0.3071 - pearson_correlation: 0.5298 - euclidean_distance: 0.4768
Epoch 43/150
76/76 [==============================] - 0s 840us/step - loss: 0.3030 - accuracy: 0.8624 - mae: 0.3030 - pearson_correlation: 0.5303 - euclidean_distance: 0.4711
Epoch 44/150
76/76 [==============================] - 0s 841us/step - loss: 0.3014 - accuracy: 0.8685 - mae: 0.3014 - pearson_correlation: 0.5314 - euclidean_distance: 0.4686
Epoch 45/150
76/76 [==============================] - 0s 841us/step - loss: 0.2949 - accuracy: 0.8580 - mae: 0.2949 - pearson_correlation: 0.5297 - euclidean_distance: 0.4589
Epoch 46/150
76/76 [==============================] - 0s 842us/step - loss: 0.2927 - accuracy: 0.8659 - mae: 0.2927 - pearson_correlation: 0.5262 - euclidean_distance: 0.4564
Epoch 47/150
76/76 [==============================] - 0s 842us/step - loss: 0.2905 - accuracy: 0.8641 - mae: 0.2905 - pearson_correlation: 0.5256 - euclidean_distance: 0.4537
Epoch 48/150
76/76 [==============================] - 0s 840us/step - loss: 0.2865 - accuracy: 0.8602 - mae: 0.2865 - pearson_correlation: 0.5302 - euclidean_distance: 0.4479
Epoch 49/150
76/76 [==============================] - 0s 841us/step - loss: 0.2815 - accuracy: 0.8628 - mae: 0.2815 - pearson_correlation: 0.5289 - euclidean_distance: 0.4407
Epoch 50/150
76/76 [==============================] - 0s 833us/step - loss: 0.2777 - accuracy: 0.8708 - mae: 0.2777 - pearson_correlation: 0.5307 - euclidean_distance: 0.4346
Epoch 51/150
76/76 [==============================] - 0s 844us/step - loss: 0.2772 - accuracy: 0.8641 - mae: 0.2772 - pearson_correlation: 0.5229 - euclidean_distance: 0.4342
Epoch 52/150
76/76 [==============================] - 0s 838us/step - loss: 0.2731 - accuracy: 0.8650 - mae: 0.2731 - pearson_correlation: 0.5266 - euclidean_distance: 0.4277
Epoch 53/150
76/76 [==============================] - 0s 842us/step - loss: 0.2715 - accuracy: 0.8694 - mae: 0.2715 - pearson_correlation: 0.5243 - euclidean_distance: 0.4249
Epoch 54/150
76/76 [==============================] - 0s 837us/step - loss: 0.2664 - accuracy: 0.8624 - mae: 0.2664 - pearson_correlation: 0.5263 - euclidean_distance: 0.4183
Epoch 55/150
76/76 [==============================] - 0s 836us/step - loss: 0.2657 - accuracy: 0.8619 - mae: 0.2657 - pearson_correlation: 0.5272 - euclidean_distance: 0.4176
Epoch 56/150
76/76 [==============================] - 0s 837us/step - loss: 0.2603 - accuracy: 0.8677 - mae: 0.2603 - pearson_correlation: 0.5272 - euclidean_distance: 0.4091
Epoch 57/150
76/76 [==============================] - 0s 840us/step - loss: 0.2577 - accuracy: 0.8606 - mae: 0.2577 - pearson_correlation: 0.5263 - euclidean_distance: 0.4061
Epoch 58/150
76/76 [==============================] - 0s 841us/step - loss: 0.2573 - accuracy: 0.8677 - mae: 0.2573 - pearson_correlation: 0.5270 - euclidean_distance: 0.4052
Epoch 59/150
76/76 [==============================] - 0s 835us/step - loss: 0.2526 - accuracy: 0.8690 - mae: 0.2526 - pearson_correlation: 0.5330 - euclidean_distance: 0.3979
Epoch 60/150
76/76 [==============================] - 0s 837us/step - loss: 0.2497 - accuracy: 0.8690 - mae: 0.2497 - pearson_correlation: 0.5240 - euclidean_distance: 0.3939
Epoch 61/150
76/76 [==============================] - 0s 837us/step - loss: 0.2468 - accuracy: 0.8646 - mae: 0.2468 - pearson_correlation: 0.5298 - euclidean_distance: 0.3896
Epoch 62/150
76/76 [==============================] - 0s 836us/step - loss: 0.2472 - accuracy: 0.8672 - mae: 0.2472 - pearson_correlation: 0.5235 - euclidean_distance: 0.3903
Epoch 63/150
76/76 [==============================] - 0s 838us/step - loss: 0.2425 - accuracy: 0.8619 - mae: 0.2425 - pearson_correlation: 0.5257 - euclidean_distance: 0.3847
Epoch 64/150
76/76 [==============================] - 0s 834us/step - loss: 0.2390 - accuracy: 0.8672 - mae: 0.2390 - pearson_correlation: 0.5296 - euclidean_distance: 0.3788
Epoch 65/150
76/76 [==============================] - 0s 836us/step - loss: 0.2405 - accuracy: 0.8752 - mae: 0.2405 - pearson_correlation: 0.5267 - euclidean_distance: 0.3811
Epoch 66/150
76/76 [==============================] - 0s 830us/step - loss: 0.2363 - accuracy: 0.8681 - mae: 0.2363 - pearson_correlation: 0.5287 - euclidean_distance: 0.3752
Epoch 67/150
76/76 [==============================] - 0s 834us/step - loss: 0.2332 - accuracy: 0.8624 - mae: 0.2332 - pearson_correlation: 0.5354 - euclidean_distance: 0.3707
Epoch 68/150
76/76 [==============================] - 0s 835us/step - loss: 0.2330 - accuracy: 0.8756 - mae: 0.2330 - pearson_correlation: 0.5325 - euclidean_distance: 0.3691
Epoch 69/150
76/76 [==============================] - 0s 837us/step - loss: 0.2285 - accuracy: 0.8703 - mae: 0.2285 - pearson_correlation: 0.5335 - euclidean_distance: 0.3643
Epoch 70/150
76/76 [==============================] - 0s 833us/step - loss: 0.2283 - accuracy: 0.8580 - mae: 0.2283 - pearson_correlation: 0.5342 - euclidean_distance: 0.3634
Epoch 71/150
76/76 [==============================] - 0s 831us/step - loss: 0.2272 - accuracy: 0.8756 - mae: 0.2272 - pearson_correlation: 0.5325 - euclidean_distance: 0.3604
Epoch 72/150
76/76 [==============================] - 0s 837us/step - loss: 0.2252 - accuracy: 0.8752 - mae: 0.2252 - pearson_correlation: 0.5330 - euclidean_distance: 0.3582
Epoch 73/150
76/76 [==============================] - 0s 842us/step - loss: 0.2225 - accuracy: 0.8703 - mae: 0.2225 - pearson_correlation: 0.5339 - euclidean_distance: 0.3540
Epoch 74/150
76/76 [==============================] - 0s 837us/step - loss: 0.2207 - accuracy: 0.8694 - mae: 0.2207 - pearson_correlation: 0.5351 - euclidean_distance: 0.3516
Epoch 75/150
76/76 [==============================] - 0s 838us/step - loss: 0.2155 - accuracy: 0.8685 - mae: 0.2155 - pearson_correlation: 0.5388 - euclidean_distance: 0.3459
Epoch 76/150
76/76 [==============================] - 0s 842us/step - loss: 0.2180 - accuracy: 0.8672 - mae: 0.2180 - pearson_correlation: 0.5311 - euclidean_distance: 0.3480
Epoch 77/150
76/76 [==============================] - 0s 843us/step - loss: 0.2154 - accuracy: 0.8765 - mae: 0.2154 - pearson_correlation: 0.5419 - euclidean_distance: 0.3440
Epoch 78/150
76/76 [==============================] - 0s 841us/step - loss: 0.2133 - accuracy: 0.8721 - mae: 0.2133 - pearson_correlation: 0.5419 - euclidean_distance: 0.3408
Epoch 79/150
76/76 [==============================] - 0s 838us/step - loss: 0.2119 - accuracy: 0.8791 - mae: 0.2119 - pearson_correlation: 0.5466 - euclidean_distance: 0.3387
Epoch 80/150
76/76 [==============================] - 0s 838us/step - loss: 0.2125 - accuracy: 0.8747 - mae: 0.2125 - pearson_correlation: 0.5442 - euclidean_distance: 0.3386
Epoch 81/150
76/76 [==============================] - 0s 842us/step - loss: 0.2080 - accuracy: 0.8716 - mae: 0.2080 - pearson_correlation: 0.5440 - euclidean_distance: 0.3336
Epoch 82/150
76/76 [==============================] - 0s 837us/step - loss: 0.2054 - accuracy: 0.8831 - mae: 0.2054 - pearson_correlation: 0.5487 - euclidean_distance: 0.3285
Epoch 83/150
76/76 [==============================] - 0s 843us/step - loss: 0.2043 - accuracy: 0.8747 - mae: 0.2043 - pearson_correlation: 0.5468 - euclidean_distance: 0.3279
Epoch 84/150
76/76 [==============================] - 0s 835us/step - loss: 0.2044 - accuracy: 0.8778 - mae: 0.2044 - pearson_correlation: 0.5507 - euclidean_distance: 0.3272
Epoch 85/150
76/76 [==============================] - 0s 840us/step - loss: 0.2030 - accuracy: 0.8791 - mae: 0.2030 - pearson_correlation: 0.5492 - euclidean_distance: 0.3252
Epoch 86/150
76/76 [==============================] - 0s 840us/step - loss: 0.2017 - accuracy: 0.8747 - mae: 0.2017 - pearson_correlation: 0.5472 - euclidean_distance: 0.3239
Epoch 87/150
76/76 [==============================] - 0s 840us/step - loss: 0.1990 - accuracy: 0.8827 - mae: 0.1990 - pearson_correlation: 0.5514 - euclidean_distance: 0.3200
Epoch 88/150
76/76 [==============================] - 0s 837us/step - loss: 0.1979 - accuracy: 0.8787 - mae: 0.1979 - pearson_correlation: 0.5529 - euclidean_distance: 0.3186
Epoch 89/150
76/76 [==============================] - 0s 841us/step - loss: 0.1945 - accuracy: 0.8844 - mae: 0.1945 - pearson_correlation: 0.5602 - euclidean_distance: 0.3139
Epoch 90/150
76/76 [==============================] - 0s 836us/step - loss: 0.1930 - accuracy: 0.8862 - mae: 0.1930 - pearson_correlation: 0.5566 - euclidean_distance: 0.3112
Epoch 91/150
76/76 [==============================] - 0s 839us/step - loss: 0.1928 - accuracy: 0.8809 - mae: 0.1928 - pearson_correlation: 0.5597 - euclidean_distance: 0.3100
Epoch 92/150
76/76 [==============================] - 0s 833us/step - loss: 0.1941 - accuracy: 0.8871 - mae: 0.1941 - pearson_correlation: 0.5530 - euclidean_distance: 0.3117
Epoch 93/150
76/76 [==============================] - 0s 826us/step - loss: 0.1897 - accuracy: 0.8919 - mae: 0.1897 - pearson_correlation: 0.5620 - euclidean_distance: 0.3055
Epoch 94/150
76/76 [==============================] - 0s 837us/step - loss: 0.1882 - accuracy: 0.8822 - mae: 0.1882 - pearson_correlation: 0.5623 - euclidean_distance: 0.3042
Epoch 95/150
76/76 [==============================] - 0s 838us/step - loss: 0.1878 - accuracy: 0.8902 - mae: 0.1878 - pearson_correlation: 0.5677 - euclidean_distance: 0.3027
Epoch 96/150
76/76 [==============================] - 0s 834us/step - loss: 0.1879 - accuracy: 0.8906 - mae: 0.1879 - pearson_correlation: 0.5645 - euclidean_distance: 0.3025
Epoch 97/150
76/76 [==============================] - 0s 839us/step - loss: 0.1860 - accuracy: 0.8866 - mae: 0.1860 - pearson_correlation: 0.5683 - euclidean_distance: 0.2992
Epoch 98/150
76/76 [==============================] - 0s 833us/step - loss: 0.1847 - accuracy: 0.8897 - mae: 0.1847 - pearson_correlation: 0.5686 - euclidean_distance: 0.2980
Epoch 99/150
76/76 [==============================] - 0s 855us/step - loss: 0.1826 - accuracy: 0.8937 - mae: 0.1826 - pearson_correlation: 0.5705 - euclidean_distance: 0.2949
Epoch 100/150
76/76 [==============================] - 0s 846us/step - loss: 0.1805 - accuracy: 0.8924 - mae: 0.1805 - pearson_correlation: 0.5748 - euclidean_distance: 0.2910
Epoch 101/150
76/76 [==============================] - 0s 837us/step - loss: 0.1854 - accuracy: 0.8902 - mae: 0.1854 - pearson_correlation: 0.5657 - euclidean_distance: 0.2986
Epoch 102/150
76/76 [==============================] - 0s 839us/step - loss: 0.1803 - accuracy: 0.8933 - mae: 0.1803 - pearson_correlation: 0.5723 - euclidean_distance: 0.2913
Epoch 103/150
76/76 [==============================] - 0s 836us/step - loss: 0.1774 - accuracy: 0.8906 - mae: 0.1774 - pearson_correlation: 0.5739 - euclidean_distance: 0.2869
Epoch 104/150
76/76 [==============================] - 0s 869us/step - loss: 0.1789 - accuracy: 0.8968 - mae: 0.1789 - pearson_correlation: 0.5701 - euclidean_distance: 0.2881
Epoch 105/150
76/76 [==============================] - 0s 846us/step - loss: 0.1744 - accuracy: 0.8941 - mae: 0.1744 - pearson_correlation: 0.5827 - euclidean_distance: 0.2827
Epoch 106/150
76/76 [==============================] - 0s 835us/step - loss: 0.1745 - accuracy: 0.9003 - mae: 0.1745 - pearson_correlation: 0.5813 - euclidean_distance: 0.2827
Epoch 107/150
76/76 [==============================] - 0s 835us/step - loss: 0.1745 - accuracy: 0.8981 - mae: 0.1745 - pearson_correlation: 0.5777 - euclidean_distance: 0.2822
Epoch 108/150
76/76 [==============================] - 0s 839us/step - loss: 0.1730 - accuracy: 0.8994 - mae: 0.1730 - pearson_correlation: 0.5837 - euclidean_distance: 0.2804
Epoch 109/150
76/76 [==============================] - 0s 843us/step - loss: 0.1710 - accuracy: 0.8994 - mae: 0.1710 - pearson_correlation: 0.5831 - euclidean_distance: 0.2772
Epoch 110/150
76/76 [==============================] - 0s 833us/step - loss: 0.1713 - accuracy: 0.8999 - mae: 0.1713 - pearson_correlation: 0.5870 - euclidean_distance: 0.2764
Epoch 111/150
76/76 [==============================] - 0s 840us/step - loss: 0.1723 - accuracy: 0.8990 - mae: 0.1723 - pearson_correlation: 0.5848 - euclidean_distance: 0.2782
Epoch 112/150
76/76 [==============================] - 0s 838us/step - loss: 0.1689 - accuracy: 0.9030 - mae: 0.1689 - pearson_correlation: 0.5871 - euclidean_distance: 0.2733
Epoch 113/150
76/76 [==============================] - 0s 837us/step - loss: 0.1669 - accuracy: 0.9047 - mae: 0.1669 - pearson_correlation: 0.5972 - euclidean_distance: 0.2702
Epoch 114/150
76/76 [==============================] - 0s 847us/step - loss: 0.1672 - accuracy: 0.9007 - mae: 0.1672 - pearson_correlation: 0.5865 - euclidean_distance: 0.2706
Epoch 115/150
76/76 [==============================] - 0s 843us/step - loss: 0.1657 - accuracy: 0.9038 - mae: 0.1657 - pearson_correlation: 0.5925 - euclidean_distance: 0.2683
Epoch 116/150
76/76 [==============================] - 0s 841us/step - loss: 0.1661 - accuracy: 0.9056 - mae: 0.1661 - pearson_correlation: 0.5942 - euclidean_distance: 0.2679
Epoch 117/150
76/76 [==============================] - 0s 837us/step - loss: 0.1658 - accuracy: 0.9012 - mae: 0.1658 - pearson_correlation: 0.5909 - euclidean_distance: 0.2684
Epoch 118/150
76/76 [==============================] - 0s 837us/step - loss: 0.1632 - accuracy: 0.9025 - mae: 0.1632 - pearson_correlation: 0.5968 - euclidean_distance: 0.2646
Epoch 119/150
76/76 [==============================] - 0s 840us/step - loss: 0.1644 - accuracy: 0.9091 - mae: 0.1644 - pearson_correlation: 0.5937 - euclidean_distance: 0.2661
Epoch 120/150
76/76 [==============================] - 0s 835us/step - loss: 0.1636 - accuracy: 0.9069 - mae: 0.1636 - pearson_correlation: 0.6025 - euclidean_distance: 0.2637
Epoch 121/150
76/76 [==============================] - 0s 839us/step - loss: 0.1634 - accuracy: 0.9056 - mae: 0.1634 - pearson_correlation: 0.6007 - euclidean_distance: 0.2637
Epoch 122/150
76/76 [==============================] - 0s 836us/step - loss: 0.1598 - accuracy: 0.9105 - mae: 0.1598 - pearson_correlation: 0.6047 - euclidean_distance: 0.2582
Epoch 123/150
76/76 [==============================] - 0s 836us/step - loss: 0.1615 - accuracy: 0.9069 - mae: 0.1615 - pearson_correlation: 0.6057 - euclidean_distance: 0.2596
Epoch 124/150
76/76 [==============================] - 0s 841us/step - loss: 0.1598 - accuracy: 0.9100 - mae: 0.1598 - pearson_correlation: 0.5994 - euclidean_distance: 0.2587
Epoch 125/150
76/76 [==============================] - 0s 835us/step - loss: 0.1587 - accuracy: 0.9105 - mae: 0.1587 - pearson_correlation: 0.6093 - euclidean_distance: 0.2567
Epoch 126/150
76/76 [==============================] - 0s 834us/step - loss: 0.1597 - accuracy: 0.9082 - mae: 0.1597 - pearson_correlation: 0.6067 - euclidean_distance: 0.2578
Epoch 127/150
76/76 [==============================] - 0s 836us/step - loss: 0.1586 - accuracy: 0.9118 - mae: 0.1586 - pearson_correlation: 0.6064 - euclidean_distance: 0.2563
Epoch 128/150
76/76 [==============================] - 0s 840us/step - loss: 0.1581 - accuracy: 0.9109 - mae: 0.1581 - pearson_correlation: 0.6038 - euclidean_distance: 0.2551
Epoch 129/150
76/76 [==============================] - 0s 834us/step - loss: 0.1547 - accuracy: 0.9087 - mae: 0.1547 - pearson_correlation: 0.6161 - euclidean_distance: 0.2502
Epoch 130/150
76/76 [==============================] - 0s 837us/step - loss: 0.1550 - accuracy: 0.9127 - mae: 0.1550 - pearson_correlation: 0.6117 - euclidean_distance: 0.2503
Epoch 131/150
76/76 [==============================] - 0s 837us/step - loss: 0.1549 - accuracy: 0.9087 - mae: 0.1549 - pearson_correlation: 0.6138 - euclidean_distance: 0.2500
Epoch 132/150
76/76 [==============================] - 0s 832us/step - loss: 0.1532 - accuracy: 0.9153 - mae: 0.1532 - pearson_correlation: 0.6128 - euclidean_distance: 0.2480
Epoch 133/150
76/76 [==============================] - 0s 837us/step - loss: 0.1530 - accuracy: 0.9118 - mae: 0.1530 - pearson_correlation: 0.6209 - euclidean_distance: 0.2472
Epoch 134/150
76/76 [==============================] - 0s 837us/step - loss: 0.1526 - accuracy: 0.9105 - mae: 0.1526 - pearson_correlation: 0.6157 - euclidean_distance: 0.2472
Epoch 135/150
76/76 [==============================] - 0s 837us/step - loss: 0.1517 - accuracy: 0.9135 - mae: 0.1517 - pearson_correlation: 0.6156 - euclidean_distance: 0.2452
Epoch 136/150
76/76 [==============================] - 0s 838us/step - loss: 0.1515 - accuracy: 0.9105 - mae: 0.1515 - pearson_correlation: 0.6190 - euclidean_distance: 0.2446
Epoch 137/150
76/76 [==============================] - 0s 832us/step - loss: 0.1508 - accuracy: 0.9144 - mae: 0.1508 - pearson_correlation: 0.6178 - euclidean_distance: 0.2442
Epoch 138/150
76/76 [==============================] - 0s 837us/step - loss: 0.1533 - accuracy: 0.9118 - mae: 0.1533 - pearson_correlation: 0.6142 - euclidean_distance: 0.2467
Epoch 139/150
76/76 [==============================] - 0s 834us/step - loss: 0.1491 - accuracy: 0.9118 - mae: 0.1491 - pearson_correlation: 0.6206 - euclidean_distance: 0.2409
Epoch 140/150
76/76 [==============================] - 0s 835us/step - loss: 0.1488 - accuracy: 0.9127 - mae: 0.1488 - pearson_correlation: 0.6239 - euclidean_distance: 0.2403
Epoch 141/150
76/76 [==============================] - 0s 841us/step - loss: 0.1469 - accuracy: 0.9157 - mae: 0.1469 - pearson_correlation: 0.6202 - euclidean_distance: 0.2380
Epoch 142/150
76/76 [==============================] - 0s 837us/step - loss: 0.1489 - accuracy: 0.9157 - mae: 0.1489 - pearson_correlation: 0.6299 - euclidean_distance: 0.2403
Epoch 143/150
76/76 [==============================] - 0s 837us/step - loss: 0.1456 - accuracy: 0.9188 - mae: 0.1456 - pearson_correlation: 0.6299 - euclidean_distance: 0.2358
Epoch 144/150
76/76 [==============================] - 0s 832us/step - loss: 0.1450 - accuracy: 0.9180 - mae: 0.1450 - pearson_correlation: 0.6307 - euclidean_distance: 0.2347
Epoch 145/150
76/76 [==============================] - 0s 836us/step - loss: 0.1447 - accuracy: 0.9149 - mae: 0.1447 - pearson_correlation: 0.6290 - euclidean_distance: 0.2341
Epoch 146/150
76/76 [==============================] - 0s 843us/step - loss: 0.1450 - accuracy: 0.9197 - mae: 0.1450 - pearson_correlation: 0.6334 - euclidean_distance: 0.2340
Epoch 147/150
76/76 [==============================] - 0s 831us/step - loss: 0.1420 - accuracy: 0.9184 - mae: 0.1420 - pearson_correlation: 0.6376 - euclidean_distance: 0.2298
Epoch 148/150
76/76 [==============================] - 0s 836us/step - loss: 0.1427 - accuracy: 0.9162 - mae: 0.1427 - pearson_correlation: 0.6373 - euclidean_distance: 0.2311
Epoch 149/150
76/76 [==============================] - 0s 836us/step - loss: 0.1437 - accuracy: 0.9188 - mae: 0.1437 - pearson_correlation: 0.6358 - euclidean_distance: 0.2311
Epoch 150/150
76/76 [==============================] - 0s 842us/step - loss: 0.1402 - accuracy: 0.9224 - mae: 0.1402 - pearson_correlation: 0.6397 - euclidean_distance: 0.2278
38/38 [==============================] - 0s 513us/step
Epoch 1/150
76/76 [==============================] - 1s 941us/step - loss: 0.5488 - accuracy: 0.6442 - mae: 0.5488 - pearson_correlation: 0.1113 - euclidean_distance: 0.8164
Epoch 2/150
76/76 [==============================] - 0s 853us/step - loss: 0.5430 - accuracy: 0.6310 - mae: 0.5430 - pearson_correlation: 0.1112 - euclidean_distance: 0.8085
Epoch 3/150
76/76 [==============================] - 0s 894us/step - loss: 0.5363 - accuracy: 0.6310 - mae: 0.5363 - pearson_correlation: 0.1101 - euclidean_distance: 0.7995
Epoch 4/150
76/76 [==============================] - 0s 849us/step - loss: 0.5320 - accuracy: 0.6415 - mae: 0.5320 - pearson_correlation: 0.1071 - euclidean_distance: 0.7931
Epoch 5/150
76/76 [==============================] - 0s 855us/step - loss: 0.5275 - accuracy: 0.6279 - mae: 0.5275 - pearson_correlation: 0.1071 - euclidean_distance: 0.7872
Epoch 6/150
76/76 [==============================] - 0s 840us/step - loss: 0.5215 - accuracy: 0.6376 - mae: 0.5215 - pearson_correlation: 0.1018 - euclidean_distance: 0.7790
Epoch 7/150
76/76 [==============================] - 0s 845us/step - loss: 0.5156 - accuracy: 0.6446 - mae: 0.5156 - pearson_correlation: 0.1086 - euclidean_distance: 0.7702
Epoch 8/150
76/76 [==============================] - 0s 841us/step - loss: 0.5090 - accuracy: 0.6446 - mae: 0.5090 - pearson_correlation: 0.1102 - euclidean_distance: 0.7611
Epoch 9/150
76/76 [==============================] - 0s 842us/step - loss: 0.5033 - accuracy: 0.6477 - mae: 0.5033 - pearson_correlation: 0.1045 - euclidean_distance: 0.7534
Epoch 10/150
76/76 [==============================] - 0s 846us/step - loss: 0.4979 - accuracy: 0.6305 - mae: 0.4979 - pearson_correlation: 0.0971 - euclidean_distance: 0.7459
Epoch 11/150
76/76 [==============================] - 0s 841us/step - loss: 0.4902 - accuracy: 0.6468 - mae: 0.4902 - pearson_correlation: 0.1068 - euclidean_distance: 0.7351
Epoch 12/150
76/76 [==============================] - 0s 844us/step - loss: 0.4828 - accuracy: 0.6415 - mae: 0.4828 - pearson_correlation: 0.0993 - euclidean_distance: 0.7254
Epoch 13/150
76/76 [==============================] - 0s 838us/step - loss: 0.4791 - accuracy: 0.6345 - mae: 0.4791 - pearson_correlation: 0.1018 - euclidean_distance: 0.7199
Epoch 14/150
76/76 [==============================] - 0s 838us/step - loss: 0.4719 - accuracy: 0.6521 - mae: 0.4719 - pearson_correlation: 0.0971 - euclidean_distance: 0.7100
Epoch 15/150
76/76 [==============================] - 0s 843us/step - loss: 0.4667 - accuracy: 0.6561 - mae: 0.4667 - pearson_correlation: 0.0997 - euclidean_distance: 0.7029
Epoch 16/150
76/76 [==============================] - 0s 838us/step - loss: 0.4607 - accuracy: 0.6561 - mae: 0.4607 - pearson_correlation: 0.1045 - euclidean_distance: 0.6948
Epoch 17/150
76/76 [==============================] - 0s 840us/step - loss: 0.4534 - accuracy: 0.6649 - mae: 0.4534 - pearson_correlation: 0.1018 - euclidean_distance: 0.6846
Epoch 18/150
76/76 [==============================] - 0s 841us/step - loss: 0.4475 - accuracy: 0.6750 - mae: 0.4475 - pearson_correlation: 0.1056 - euclidean_distance: 0.6766
Epoch 19/150
76/76 [==============================] - 0s 841us/step - loss: 0.4406 - accuracy: 0.6786 - mae: 0.4406 - pearson_correlation: 0.1034 - euclidean_distance: 0.6674
Epoch 20/150
76/76 [==============================] - 0s 840us/step - loss: 0.4343 - accuracy: 0.6843 - mae: 0.4343 - pearson_correlation: 0.1098 - euclidean_distance: 0.6588
Epoch 21/150
76/76 [==============================] - 0s 838us/step - loss: 0.4275 - accuracy: 0.6803 - mae: 0.4275 - pearson_correlation: 0.1060 - euclidean_distance: 0.6495
Epoch 22/150
76/76 [==============================] - 0s 835us/step - loss: 0.4219 - accuracy: 0.6918 - mae: 0.4219 - pearson_correlation: 0.1004 - euclidean_distance: 0.6427
Epoch 23/150
76/76 [==============================] - 0s 840us/step - loss: 0.4150 - accuracy: 0.6958 - mae: 0.4150 - pearson_correlation: 0.1105 - euclidean_distance: 0.6333
Epoch 24/150
76/76 [==============================] - 0s 833us/step - loss: 0.4097 - accuracy: 0.6927 - mae: 0.4097 - pearson_correlation: 0.1115 - euclidean_distance: 0.6258
Epoch 25/150
76/76 [==============================] - 0s 838us/step - loss: 0.4035 - accuracy: 0.7041 - mae: 0.4035 - pearson_correlation: 0.1166 - euclidean_distance: 0.6171
Epoch 26/150
76/76 [==============================] - 0s 842us/step - loss: 0.3965 - accuracy: 0.7099 - mae: 0.3965 - pearson_correlation: 0.1168 - euclidean_distance: 0.6075
Epoch 27/150
76/76 [==============================] - 0s 845us/step - loss: 0.3903 - accuracy: 0.7134 - mae: 0.3903 - pearson_correlation: 0.1190 - euclidean_distance: 0.5993
Epoch 28/150
76/76 [==============================] - 0s 837us/step - loss: 0.3843 - accuracy: 0.7297 - mae: 0.3843 - pearson_correlation: 0.1215 - euclidean_distance: 0.5916
Epoch 29/150
76/76 [==============================] - 0s 840us/step - loss: 0.3795 - accuracy: 0.7346 - mae: 0.3795 - pearson_correlation: 0.1271 - euclidean_distance: 0.5838
Epoch 30/150
76/76 [==============================] - 0s 839us/step - loss: 0.3726 - accuracy: 0.7332 - mae: 0.3726 - pearson_correlation: 0.1280 - euclidean_distance: 0.5746
Epoch 31/150
76/76 [==============================] - 0s 836us/step - loss: 0.3670 - accuracy: 0.7407 - mae: 0.3670 - pearson_correlation: 0.1329 - euclidean_distance: 0.5661
Epoch 32/150
76/76 [==============================] - 0s 841us/step - loss: 0.3617 - accuracy: 0.7372 - mae: 0.3617 - pearson_correlation: 0.1338 - euclidean_distance: 0.5594
Epoch 33/150
76/76 [==============================] - 0s 835us/step - loss: 0.3568 - accuracy: 0.7456 - mae: 0.3568 - pearson_correlation: 0.1427 - euclidean_distance: 0.5514
Epoch 34/150
76/76 [==============================] - 0s 836us/step - loss: 0.3506 - accuracy: 0.7522 - mae: 0.3506 - pearson_correlation: 0.1450 - euclidean_distance: 0.5428
Epoch 35/150
76/76 [==============================] - 0s 844us/step - loss: 0.3457 - accuracy: 0.7628 - mae: 0.3457 - pearson_correlation: 0.1533 - euclidean_distance: 0.5345
Epoch 36/150
76/76 [==============================] - 0s 839us/step - loss: 0.3406 - accuracy: 0.7663 - mae: 0.3406 - pearson_correlation: 0.1525 - euclidean_distance: 0.5282
Epoch 37/150
76/76 [==============================] - 0s 832us/step - loss: 0.3359 - accuracy: 0.7703 - mae: 0.3359 - pearson_correlation: 0.1583 - euclidean_distance: 0.5207
Epoch 38/150
76/76 [==============================] - 0s 834us/step - loss: 0.3299 - accuracy: 0.7716 - mae: 0.3299 - pearson_correlation: 0.1640 - euclidean_distance: 0.5129
Epoch 39/150
76/76 [==============================] - 0s 834us/step - loss: 0.3228 - accuracy: 0.7773 - mae: 0.3228 - pearson_correlation: 0.1701 - euclidean_distance: 0.5027
Epoch 40/150
76/76 [==============================] - 0s 836us/step - loss: 0.3209 - accuracy: 0.7857 - mae: 0.3209 - pearson_correlation: 0.1730 - euclidean_distance: 0.4989
Epoch 41/150
76/76 [==============================] - 0s 838us/step - loss: 0.3160 - accuracy: 0.7844 - mae: 0.3160 - pearson_correlation: 0.1804 - euclidean_distance: 0.4914
Epoch 42/150
76/76 [==============================] - 0s 839us/step - loss: 0.3132 - accuracy: 0.7901 - mae: 0.3132 - pearson_correlation: 0.1871 - euclidean_distance: 0.4865
Epoch 43/150
76/76 [==============================] - 0s 843us/step - loss: 0.3085 - accuracy: 0.7906 - mae: 0.3085 - pearson_correlation: 0.1926 - euclidean_distance: 0.4794
Epoch 44/150
76/76 [==============================] - 0s 839us/step - loss: 0.3019 - accuracy: 0.7972 - mae: 0.3019 - pearson_correlation: 0.2039 - euclidean_distance: 0.4706
Epoch 45/150
76/76 [==============================] - 0s 839us/step - loss: 0.2972 - accuracy: 0.8003 - mae: 0.2972 - pearson_correlation: 0.2070 - euclidean_distance: 0.4632
Epoch 46/150
76/76 [==============================] - 0s 834us/step - loss: 0.2923 - accuracy: 0.8011 - mae: 0.2923 - pearson_correlation: 0.2162 - euclidean_distance: 0.4549
Epoch 47/150
76/76 [==============================] - 0s 840us/step - loss: 0.2859 - accuracy: 0.8179 - mae: 0.2859 - pearson_correlation: 0.2257 - euclidean_distance: 0.4461
Epoch 48/150
76/76 [==============================] - 0s 838us/step - loss: 0.2864 - accuracy: 0.8100 - mae: 0.2864 - pearson_correlation: 0.2297 - euclidean_distance: 0.4457
Epoch 49/150
76/76 [==============================] - 0s 836us/step - loss: 0.2802 - accuracy: 0.8236 - mae: 0.2802 - pearson_correlation: 0.2380 - euclidean_distance: 0.4360
Epoch 50/150
76/76 [==============================] - 0s 840us/step - loss: 0.2774 - accuracy: 0.8214 - mae: 0.2774 - pearson_correlation: 0.2445 - euclidean_distance: 0.4319
Epoch 51/150
76/76 [==============================] - 0s 842us/step - loss: 0.2723 - accuracy: 0.8316 - mae: 0.2723 - pearson_correlation: 0.2529 - euclidean_distance: 0.4235
Epoch 52/150
76/76 [==============================] - 0s 836us/step - loss: 0.2691 - accuracy: 0.8280 - mae: 0.2691 - pearson_correlation: 0.2559 - euclidean_distance: 0.4193
Epoch 53/150
76/76 [==============================] - 0s 840us/step - loss: 0.2658 - accuracy: 0.8391 - mae: 0.2658 - pearson_correlation: 0.2651 - euclidean_distance: 0.4133
Epoch 54/150
76/76 [==============================] - 0s 842us/step - loss: 0.2591 - accuracy: 0.8399 - mae: 0.2591 - pearson_correlation: 0.2719 - euclidean_distance: 0.4035
Epoch 55/150
76/76 [==============================] - 0s 836us/step - loss: 0.2605 - accuracy: 0.8360 - mae: 0.2605 - pearson_correlation: 0.2798 - euclidean_distance: 0.4048
Epoch 56/150
76/76 [==============================] - 0s 838us/step - loss: 0.2542 - accuracy: 0.8479 - mae: 0.2542 - pearson_correlation: 0.2936 - euclidean_distance: 0.3969
Epoch 57/150
76/76 [==============================] - 0s 837us/step - loss: 0.2512 - accuracy: 0.8461 - mae: 0.2512 - pearson_correlation: 0.3017 - euclidean_distance: 0.3915
Epoch 58/150
76/76 [==============================] - 0s 836us/step - loss: 0.2484 - accuracy: 0.8461 - mae: 0.2484 - pearson_correlation: 0.2952 - euclidean_distance: 0.3867
Epoch 59/150
76/76 [==============================] - 0s 838us/step - loss: 0.2466 - accuracy: 0.8541 - mae: 0.2466 - pearson_correlation: 0.3086 - euclidean_distance: 0.3841
Epoch 60/150
76/76 [==============================] - 0s 839us/step - loss: 0.2423 - accuracy: 0.8549 - mae: 0.2423 - pearson_correlation: 0.3151 - euclidean_distance: 0.3776
Epoch 61/150
76/76 [==============================] - 0s 836us/step - loss: 0.2384 - accuracy: 0.8536 - mae: 0.2384 - pearson_correlation: 0.3275 - euclidean_distance: 0.3711
Epoch 62/150
76/76 [==============================] - 0s 840us/step - loss: 0.2353 - accuracy: 0.8580 - mae: 0.2353 - pearson_correlation: 0.3339 - euclidean_distance: 0.3664
Epoch 63/150
76/76 [==============================] - 0s 843us/step - loss: 0.2321 - accuracy: 0.8629 - mae: 0.2321 - pearson_correlation: 0.3436 - euclidean_distance: 0.3620
Epoch 64/150
76/76 [==============================] - 0s 844us/step - loss: 0.2293 - accuracy: 0.8611 - mae: 0.2293 - pearson_correlation: 0.3489 - euclidean_distance: 0.3572
Epoch 65/150
76/76 [==============================] - 0s 842us/step - loss: 0.2260 - accuracy: 0.8638 - mae: 0.2260 - pearson_correlation: 0.3525 - euclidean_distance: 0.3525
Epoch 66/150
76/76 [==============================] - 0s 840us/step - loss: 0.2250 - accuracy: 0.8660 - mae: 0.2250 - pearson_correlation: 0.3557 - euclidean_distance: 0.3510
Epoch 67/150
76/76 [==============================] - 0s 840us/step - loss: 0.2192 - accuracy: 0.8633 - mae: 0.2192 - pearson_correlation: 0.3676 - euclidean_distance: 0.3426
Epoch 68/150
76/76 [==============================] - 0s 837us/step - loss: 0.2193 - accuracy: 0.8717 - mae: 0.2193 - pearson_correlation: 0.3699 - euclidean_distance: 0.3423
Epoch 69/150
76/76 [==============================] - 0s 846us/step - loss: 0.2154 - accuracy: 0.8699 - mae: 0.2154 - pearson_correlation: 0.3785 - euclidean_distance: 0.3368
Epoch 70/150
76/76 [==============================] - 0s 840us/step - loss: 0.2157 - accuracy: 0.8682 - mae: 0.2157 - pearson_correlation: 0.3803 - euclidean_distance: 0.3365
Epoch 71/150
76/76 [==============================] - 0s 839us/step - loss: 0.2105 - accuracy: 0.8752 - mae: 0.2105 - pearson_correlation: 0.3937 - euclidean_distance: 0.3284
Epoch 72/150
76/76 [==============================] - 0s 840us/step - loss: 0.2070 - accuracy: 0.8757 - mae: 0.2070 - pearson_correlation: 0.4031 - euclidean_distance: 0.3242
Epoch 73/150
76/76 [==============================] - 0s 835us/step - loss: 0.2036 - accuracy: 0.8814 - mae: 0.2036 - pearson_correlation: 0.4070 - euclidean_distance: 0.3192
Epoch 74/150
76/76 [==============================] - 0s 837us/step - loss: 0.2043 - accuracy: 0.8796 - mae: 0.2043 - pearson_correlation: 0.4115 - euclidean_distance: 0.3192
Epoch 75/150
76/76 [==============================] - 0s 835us/step - loss: 0.2001 - accuracy: 0.8814 - mae: 0.2001 - pearson_correlation: 0.4208 - euclidean_distance: 0.3128
Epoch 76/150
76/76 [==============================] - 0s 831us/step - loss: 0.1974 - accuracy: 0.8801 - mae: 0.1974 - pearson_correlation: 0.4232 - euclidean_distance: 0.3094
Epoch 77/150
76/76 [==============================] - 0s 834us/step - loss: 0.1977 - accuracy: 0.8805 - mae: 0.1977 - pearson_correlation: 0.4243 - euclidean_distance: 0.3101
Epoch 78/150
76/76 [==============================] - 0s 838us/step - loss: 0.1925 - accuracy: 0.8810 - mae: 0.1925 - pearson_correlation: 0.4417 - euclidean_distance: 0.3021
Epoch 79/150
76/76 [==============================] - 0s 841us/step - loss: 0.1886 - accuracy: 0.8871 - mae: 0.1886 - pearson_correlation: 0.4447 - euclidean_distance: 0.2962
Epoch 80/150
76/76 [==============================] - 0s 838us/step - loss: 0.1898 - accuracy: 0.8854 - mae: 0.1898 - pearson_correlation: 0.4415 - euclidean_distance: 0.2974
Epoch 81/150
76/76 [==============================] - 0s 839us/step - loss: 0.1832 - accuracy: 0.8862 - mae: 0.1832 - pearson_correlation: 0.4603 - euclidean_distance: 0.2879
Epoch 82/150
76/76 [==============================] - 0s 839us/step - loss: 0.1844 - accuracy: 0.8876 - mae: 0.1844 - pearson_correlation: 0.4617 - euclidean_distance: 0.2889
Epoch 83/150
76/76 [==============================] - 0s 832us/step - loss: 0.1827 - accuracy: 0.8889 - mae: 0.1827 - pearson_correlation: 0.4627 - euclidean_distance: 0.2866
Epoch 84/150
76/76 [==============================] - 0s 835us/step - loss: 0.1822 - accuracy: 0.8880 - mae: 0.1822 - pearson_correlation: 0.4688 - euclidean_distance: 0.2863
Epoch 85/150
76/76 [==============================] - 0s 833us/step - loss: 0.1762 - accuracy: 0.8876 - mae: 0.1762 - pearson_correlation: 0.4803 - euclidean_distance: 0.2776
Epoch 86/150
76/76 [==============================] - 0s 832us/step - loss: 0.1774 - accuracy: 0.8946 - mae: 0.1774 - pearson_correlation: 0.4823 - euclidean_distance: 0.2787
Epoch 87/150
76/76 [==============================] - 0s 837us/step - loss: 0.1762 - accuracy: 0.8929 - mae: 0.1762 - pearson_correlation: 0.4900 - euclidean_distance: 0.2766
Epoch 88/150
76/76 [==============================] - 0s 837us/step - loss: 0.1751 - accuracy: 0.8924 - mae: 0.1751 - pearson_correlation: 0.4886 - euclidean_distance: 0.2757
Epoch 89/150
76/76 [==============================] - 0s 834us/step - loss: 0.1720 - accuracy: 0.8955 - mae: 0.1720 - pearson_correlation: 0.4948 - euclidean_distance: 0.2708
Epoch 90/150
76/76 [==============================] - 0s 831us/step - loss: 0.1676 - accuracy: 0.8964 - mae: 0.1676 - pearson_correlation: 0.5063 - euclidean_distance: 0.2637
Epoch 91/150
76/76 [==============================] - 0s 833us/step - loss: 0.1664 - accuracy: 0.8977 - mae: 0.1664 - pearson_correlation: 0.5096 - euclidean_distance: 0.2618
Epoch 92/150
76/76 [==============================] - 0s 881us/step - loss: 0.1632 - accuracy: 0.8942 - mae: 0.1632 - pearson_correlation: 0.5120 - euclidean_distance: 0.2578
Epoch 93/150
76/76 [==============================] - 0s 840us/step - loss: 0.1644 - accuracy: 0.8973 - mae: 0.1644 - pearson_correlation: 0.5177 - euclidean_distance: 0.2593
Epoch 94/150
76/76 [==============================] - 0s 836us/step - loss: 0.1623 - accuracy: 0.8995 - mae: 0.1623 - pearson_correlation: 0.5162 - euclidean_distance: 0.2559
Epoch 95/150
76/76 [==============================] - 0s 837us/step - loss: 0.1620 - accuracy: 0.9034 - mae: 0.1620 - pearson_correlation: 0.5238 - euclidean_distance: 0.2555
Epoch 96/150
76/76 [==============================] - 0s 837us/step - loss: 0.1596 - accuracy: 0.9021 - mae: 0.1596 - pearson_correlation: 0.5286 - euclidean_distance: 0.2524
Epoch 97/150
76/76 [==============================] - 0s 870us/step - loss: 0.1613 - accuracy: 0.9061 - mae: 0.1613 - pearson_correlation: 0.5230 - euclidean_distance: 0.2547
Epoch 98/150
76/76 [==============================] - 0s 846us/step - loss: 0.1569 - accuracy: 0.9083 - mae: 0.1569 - pearson_correlation: 0.5377 - euclidean_distance: 0.2477
Epoch 99/150
76/76 [==============================] - 0s 836us/step - loss: 0.1571 - accuracy: 0.9065 - mae: 0.1571 - pearson_correlation: 0.5349 - euclidean_distance: 0.2480
Epoch 100/150
76/76 [==============================] - 0s 834us/step - loss: 0.1552 - accuracy: 0.9074 - mae: 0.1552 - pearson_correlation: 0.5461 - euclidean_distance: 0.2453
Epoch 101/150
76/76 [==============================] - 0s 837us/step - loss: 0.1480 - accuracy: 0.9056 - mae: 0.1480 - pearson_correlation: 0.5517 - euclidean_distance: 0.2350
Epoch 102/150
76/76 [==============================] - 0s 828us/step - loss: 0.1515 - accuracy: 0.9083 - mae: 0.1515 - pearson_correlation: 0.5545 - euclidean_distance: 0.2398
Epoch 103/150
76/76 [==============================] - 0s 837us/step - loss: 0.1460 - accuracy: 0.9096 - mae: 0.1460 - pearson_correlation: 0.5686 - euclidean_distance: 0.2317
Epoch 104/150
76/76 [==============================] - 0s 838us/step - loss: 0.1473 - accuracy: 0.9131 - mae: 0.1473 - pearson_correlation: 0.5616 - euclidean_distance: 0.2332
Epoch 105/150
76/76 [==============================] - 0s 842us/step - loss: 0.1520 - accuracy: 0.9162 - mae: 0.1520 - pearson_correlation: 0.5550 - euclidean_distance: 0.2397
Epoch 106/150
76/76 [==============================] - 0s 839us/step - loss: 0.1454 - accuracy: 0.9145 - mae: 0.1454 - pearson_correlation: 0.5718 - euclidean_distance: 0.2305
Epoch 107/150
76/76 [==============================] - 0s 832us/step - loss: 0.1475 - accuracy: 0.9083 - mae: 0.1475 - pearson_correlation: 0.5597 - euclidean_distance: 0.2333
Epoch 108/150
76/76 [==============================] - 0s 843us/step - loss: 0.1412 - accuracy: 0.9145 - mae: 0.1412 - pearson_correlation: 0.5780 - euclidean_distance: 0.2242
Epoch 109/150
76/76 [==============================] - 0s 843us/step - loss: 0.1405 - accuracy: 0.9167 - mae: 0.1405 - pearson_correlation: 0.5790 - euclidean_distance: 0.2231
Epoch 110/150
76/76 [==============================] - 0s 896us/step - loss: 0.1419 - accuracy: 0.9162 - mae: 0.1419 - pearson_correlation: 0.5821 - euclidean_distance: 0.2257
Epoch 111/150
76/76 [==============================] - 0s 932us/step - loss: 0.1402 - accuracy: 0.9158 - mae: 0.1402 - pearson_correlation: 0.5882 - euclidean_distance: 0.2223
Epoch 112/150
76/76 [==============================] - 0s 915us/step - loss: 0.1398 - accuracy: 0.9153 - mae: 0.1398 - pearson_correlation: 0.5870 - euclidean_distance: 0.2221
Epoch 113/150
76/76 [==============================] - 0s 932us/step - loss: 0.1358 - accuracy: 0.9184 - mae: 0.1358 - pearson_correlation: 0.5993 - euclidean_distance: 0.2160
Epoch 114/150
76/76 [==============================] - 0s 1ms/step - loss: 0.1393 - accuracy: 0.9202 - mae: 0.1393 - pearson_correlation: 0.5889 - euclidean_distance: 0.2209
Epoch 115/150
76/76 [==============================] - 0s 946us/step - loss: 0.1344 - accuracy: 0.9167 - mae: 0.1344 - pearson_correlation: 0.5990 - euclidean_distance: 0.2139
Epoch 116/150
76/76 [==============================] - 0s 953us/step - loss: 0.1311 - accuracy: 0.9189 - mae: 0.1311 - pearson_correlation: 0.6085 - euclidean_distance: 0.2087
Epoch 117/150
76/76 [==============================] - 0s 984us/step - loss: 0.1340 - accuracy: 0.9193 - mae: 0.1340 - pearson_correlation: 0.5999 - euclidean_distance: 0.2134
Epoch 118/150
76/76 [==============================] - 0s 848us/step - loss: 0.1346 - accuracy: 0.9202 - mae: 0.1346 - pearson_correlation: 0.6009 - euclidean_distance: 0.2141
Epoch 119/150
76/76 [==============================] - 0s 850us/step - loss: 0.1291 - accuracy: 0.9215 - mae: 0.1291 - pearson_correlation: 0.6134 - euclidean_distance: 0.2057
Epoch 120/150
76/76 [==============================] - 0s 842us/step - loss: 0.1302 - accuracy: 0.9228 - mae: 0.1302 - pearson_correlation: 0.6139 - euclidean_distance: 0.2076
Epoch 121/150
76/76 [==============================] - 0s 841us/step - loss: 0.1294 - accuracy: 0.9228 - mae: 0.1294 - pearson_correlation: 0.6214 - euclidean_distance: 0.2064
Epoch 122/150
76/76 [==============================] - 0s 845us/step - loss: 0.1268 - accuracy: 0.9250 - mae: 0.1268 - pearson_correlation: 0.6237 - euclidean_distance: 0.2028
Epoch 123/150
76/76 [==============================] - 0s 837us/step - loss: 0.1274 - accuracy: 0.9259 - mae: 0.1274 - pearson_correlation: 0.6218 - euclidean_distance: 0.2035
Epoch 124/150
76/76 [==============================] - 0s 845us/step - loss: 0.1261 - accuracy: 0.9228 - mae: 0.1261 - pearson_correlation: 0.6234 - euclidean_distance: 0.2011
Epoch 125/150
76/76 [==============================] - 0s 841us/step - loss: 0.1260 - accuracy: 0.9281 - mae: 0.1260 - pearson_correlation: 0.6303 - euclidean_distance: 0.2011
Epoch 126/150
76/76 [==============================] - 0s 828us/step - loss: 0.1271 - accuracy: 0.9277 - mae: 0.1271 - pearson_correlation: 0.6215 - euclidean_distance: 0.2032
Epoch 127/150
76/76 [==============================] - 0s 850us/step - loss: 0.1235 - accuracy: 0.9250 - mae: 0.1235 - pearson_correlation: 0.6325 - euclidean_distance: 0.1971
Epoch 128/150
76/76 [==============================] - 0s 839us/step - loss: 0.1228 - accuracy: 0.9264 - mae: 0.1228 - pearson_correlation: 0.6392 - euclidean_distance: 0.1967
Epoch 129/150
76/76 [==============================] - 0s 835us/step - loss: 0.1218 - accuracy: 0.9286 - mae: 0.1218 - pearson_correlation: 0.6434 - euclidean_distance: 0.1946
Epoch 130/150
76/76 [==============================] - 0s 846us/step - loss: 0.1208 - accuracy: 0.9272 - mae: 0.1208 - pearson_correlation: 0.6425 - euclidean_distance: 0.1933
Epoch 131/150
76/76 [==============================] - 0s 839us/step - loss: 0.1248 - accuracy: 0.9295 - mae: 0.1248 - pearson_correlation: 0.6336 - euclidean_distance: 0.1993
Epoch 132/150
76/76 [==============================] - 0s 840us/step - loss: 0.1200 - accuracy: 0.9286 - mae: 0.1200 - pearson_correlation: 0.6466 - euclidean_distance: 0.1920
Epoch 133/150
76/76 [==============================] - 0s 835us/step - loss: 0.1208 - accuracy: 0.9250 - mae: 0.1208 - pearson_correlation: 0.6453 - euclidean_distance: 0.1933
Epoch 134/150
76/76 [==============================] - 0s 839us/step - loss: 0.1215 - accuracy: 0.9299 - mae: 0.1215 - pearson_correlation: 0.6439 - euclidean_distance: 0.1947
Epoch 135/150
76/76 [==============================] - 0s 840us/step - loss: 0.1181 - accuracy: 0.9299 - mae: 0.1181 - pearson_correlation: 0.6516 - euclidean_distance: 0.1893
Epoch 136/150
76/76 [==============================] - 0s 837us/step - loss: 0.1185 - accuracy: 0.9286 - mae: 0.1185 - pearson_correlation: 0.6552 - euclidean_distance: 0.1894
Epoch 137/150
76/76 [==============================] - 0s 833us/step - loss: 0.1192 - accuracy: 0.9308 - mae: 0.1192 - pearson_correlation: 0.6494 - euclidean_distance: 0.1911
Epoch 138/150
76/76 [==============================] - 0s 843us/step - loss: 0.1153 - accuracy: 0.9312 - mae: 0.1153 - pearson_correlation: 0.6553 - euclidean_distance: 0.1846
Epoch 139/150
76/76 [==============================] - 0s 837us/step - loss: 0.1165 - accuracy: 0.9321 - mae: 0.1165 - pearson_correlation: 0.6585 - euclidean_distance: 0.1871
Epoch 140/150
76/76 [==============================] - 0s 866us/step - loss: 0.1155 - accuracy: 0.9312 - mae: 0.1155 - pearson_correlation: 0.6607 - euclidean_distance: 0.1854
Epoch 141/150
76/76 [==============================] - 0s 841us/step - loss: 0.1150 - accuracy: 0.9308 - mae: 0.1150 - pearson_correlation: 0.6629 - euclidean_distance: 0.1848
Epoch 142/150
76/76 [==============================] - 0s 836us/step - loss: 0.1107 - accuracy: 0.9356 - mae: 0.1107 - pearson_correlation: 0.6686 - euclidean_distance: 0.1781
Epoch 143/150
76/76 [==============================] - 0s 835us/step - loss: 0.1146 - accuracy: 0.9308 - mae: 0.1146 - pearson_correlation: 0.6641 - euclidean_distance: 0.1842
Epoch 144/150
76/76 [==============================] - 0s 836us/step - loss: 0.1167 - accuracy: 0.9312 - mae: 0.1167 - pearson_correlation: 0.6599 - euclidean_distance: 0.1873
Epoch 145/150
76/76 [==============================] - 0s 835us/step - loss: 0.1155 - accuracy: 0.9343 - mae: 0.1155 - pearson_correlation: 0.6629 - euclidean_distance: 0.1850
Epoch 146/150
76/76 [==============================] - 0s 839us/step - loss: 0.1136 - accuracy: 0.9378 - mae: 0.1136 - pearson_correlation: 0.6708 - euclidean_distance: 0.1820
Epoch 147/150
76/76 [==============================] - 0s 836us/step - loss: 0.1105 - accuracy: 0.9325 - mae: 0.1105 - pearson_correlation: 0.6742 - euclidean_distance: 0.1781
Epoch 148/150
76/76 [==============================] - 0s 835us/step - loss: 0.1144 - accuracy: 0.9330 - mae: 0.1144 - pearson_correlation: 0.6681 - euclidean_distance: 0.1836
Epoch 149/150
76/76 [==============================] - 0s 839us/step - loss: 0.1119 - accuracy: 0.9325 - mae: 0.1119 - pearson_correlation: 0.6704 - euclidean_distance: 0.1794
Epoch 150/150
76/76 [==============================] - 0s 837us/step - loss: 0.1124 - accuracy: 0.9343 - mae: 0.1124 - pearson_correlation: 0.6706 - euclidean_distance: 0.1805
38/38 [==============================] - 0s 481us/step
Epoch 1/200
76/76 [==============================] - 1s 839us/step - loss: 0.4530 - accuracy: 0.5699 - mae: 0.4530 - pearson_correlation: 0.1354 - euclidean_distance: 0.6877
Epoch 2/200
76/76 [==============================] - 0s 832us/step - loss: 0.4479 - accuracy: 0.5659 - mae: 0.4479 - pearson_correlation: 0.1310 - euclidean_distance: 0.6810
Epoch 3/200
76/76 [==============================] - 0s 843us/step - loss: 0.4446 - accuracy: 0.5704 - mae: 0.4446 - pearson_correlation: 0.1322 - euclidean_distance: 0.6765
Epoch 4/200
76/76 [==============================] - 0s 841us/step - loss: 0.4417 - accuracy: 0.5642 - mae: 0.4417 - pearson_correlation: 0.1205 - euclidean_distance: 0.6730
Epoch 5/200
76/76 [==============================] - 0s 845us/step - loss: 0.4376 - accuracy: 0.5527 - mae: 0.4376 - pearson_correlation: 0.1204 - euclidean_distance: 0.6679
Epoch 6/200
76/76 [==============================] - 0s 838us/step - loss: 0.4343 - accuracy: 0.5686 - mae: 0.4343 - pearson_correlation: 0.1277 - euclidean_distance: 0.6630
Epoch 7/200
76/76 [==============================] - 0s 839us/step - loss: 0.4307 - accuracy: 0.5611 - mae: 0.4307 - pearson_correlation: 0.1218 - euclidean_distance: 0.6584
Epoch 8/200
76/76 [==============================] - 0s 844us/step - loss: 0.4270 - accuracy: 0.5452 - mae: 0.4270 - pearson_correlation: 0.1150 - euclidean_distance: 0.6533
Epoch 9/200
76/76 [==============================] - 0s 840us/step - loss: 0.4224 - accuracy: 0.5514 - mae: 0.4224 - pearson_correlation: 0.1128 - euclidean_distance: 0.6475
Epoch 10/200
76/76 [==============================] - 0s 846us/step - loss: 0.4191 - accuracy: 0.5509 - mae: 0.4191 - pearson_correlation: 0.1060 - euclidean_distance: 0.6435
Epoch 11/200
76/76 [==============================] - 0s 838us/step - loss: 0.4144 - accuracy: 0.5593 - mae: 0.4144 - pearson_correlation: 0.1167 - euclidean_distance: 0.6365
Epoch 12/200
76/76 [==============================] - 0s 840us/step - loss: 0.4106 - accuracy: 0.5554 - mae: 0.4106 - pearson_correlation: 0.1052 - euclidean_distance: 0.6318
Epoch 13/200
76/76 [==============================] - 0s 842us/step - loss: 0.4065 - accuracy: 0.5589 - mae: 0.4065 - pearson_correlation: 0.1075 - euclidean_distance: 0.6262
Epoch 14/200
76/76 [==============================] - 0s 837us/step - loss: 0.4018 - accuracy: 0.5501 - mae: 0.4018 - pearson_correlation: 0.1029 - euclidean_distance: 0.6200
Epoch 15/200
76/76 [==============================] - 0s 838us/step - loss: 0.3991 - accuracy: 0.5448 - mae: 0.3991 - pearson_correlation: 0.0995 - euclidean_distance: 0.6162
Epoch 16/200
76/76 [==============================] - 0s 831us/step - loss: 0.3936 - accuracy: 0.5496 - mae: 0.3936 - pearson_correlation: 0.1005 - euclidean_distance: 0.6087
Epoch 17/200
76/76 [==============================] - 0s 830us/step - loss: 0.3901 - accuracy: 0.5457 - mae: 0.3901 - pearson_correlation: 0.0955 - euclidean_distance: 0.6044
Epoch 18/200
76/76 [==============================] - 0s 835us/step - loss: 0.3844 - accuracy: 0.5527 - mae: 0.3844 - pearson_correlation: 0.0909 - euclidean_distance: 0.5969
Epoch 19/200
76/76 [==============================] - 0s 827us/step - loss: 0.3805 - accuracy: 0.5527 - mae: 0.3805 - pearson_correlation: 0.0944 - euclidean_distance: 0.5918
Epoch 20/200
76/76 [==============================] - 0s 833us/step - loss: 0.3778 - accuracy: 0.5461 - mae: 0.3778 - pearson_correlation: 0.0905 - euclidean_distance: 0.5875
Epoch 21/200
76/76 [==============================] - 0s 832us/step - loss: 0.3715 - accuracy: 0.5523 - mae: 0.3715 - pearson_correlation: 0.0907 - euclidean_distance: 0.5797
Epoch 22/200
76/76 [==============================] - 0s 833us/step - loss: 0.3686 - accuracy: 0.5549 - mae: 0.3686 - pearson_correlation: 0.0949 - euclidean_distance: 0.5746
Epoch 23/200
76/76 [==============================] - 0s 832us/step - loss: 0.3645 - accuracy: 0.5421 - mae: 0.3645 - pearson_correlation: 0.0905 - euclidean_distance: 0.5695
Epoch 24/200
76/76 [==============================] - 0s 849us/step - loss: 0.3596 - accuracy: 0.5390 - mae: 0.3596 - pearson_correlation: 0.0918 - euclidean_distance: 0.5629
Epoch 25/200
76/76 [==============================] - 0s 839us/step - loss: 0.3543 - accuracy: 0.5496 - mae: 0.3543 - pearson_correlation: 0.0916 - euclidean_distance: 0.5558
Epoch 26/200
76/76 [==============================] - 0s 863us/step - loss: 0.3497 - accuracy: 0.5439 - mae: 0.3497 - pearson_correlation: 0.0897 - euclidean_distance: 0.5497
Epoch 27/200
76/76 [==============================] - 0s 858us/step - loss: 0.3459 - accuracy: 0.5523 - mae: 0.3459 - pearson_correlation: 0.0892 - euclidean_distance: 0.5444
Epoch 28/200
76/76 [==============================] - 0s 865us/step - loss: 0.3423 - accuracy: 0.5492 - mae: 0.3423 - pearson_correlation: 0.0861 - euclidean_distance: 0.5394
Epoch 29/200
76/76 [==============================] - 0s 856us/step - loss: 0.3382 - accuracy: 0.5558 - mae: 0.3382 - pearson_correlation: 0.0811 - euclidean_distance: 0.5336
Epoch 30/200
76/76 [==============================] - 0s 855us/step - loss: 0.3334 - accuracy: 0.5452 - mae: 0.3334 - pearson_correlation: 0.0904 - euclidean_distance: 0.5278
Epoch 31/200
76/76 [==============================] - 0s 841us/step - loss: 0.3286 - accuracy: 0.5461 - mae: 0.3286 - pearson_correlation: 0.0840 - euclidean_distance: 0.5202
Epoch 32/200
76/76 [==============================] - 0s 859us/step - loss: 0.3244 - accuracy: 0.5540 - mae: 0.3244 - pearson_correlation: 0.0862 - euclidean_distance: 0.5146
Epoch 33/200
76/76 [==============================] - 0s 840us/step - loss: 0.3203 - accuracy: 0.5461 - mae: 0.3203 - pearson_correlation: 0.0908 - euclidean_distance: 0.5098
Epoch 34/200
76/76 [==============================] - 0s 843us/step - loss: 0.3159 - accuracy: 0.5549 - mae: 0.3159 - pearson_correlation: 0.0807 - euclidean_distance: 0.5032
Epoch 35/200
76/76 [==============================] - 0s 842us/step - loss: 0.3126 - accuracy: 0.5492 - mae: 0.3126 - pearson_correlation: 0.0924 - euclidean_distance: 0.4984
Epoch 36/200
76/76 [==============================] - 0s 834us/step - loss: 0.3092 - accuracy: 0.5501 - mae: 0.3092 - pearson_correlation: 0.0845 - euclidean_distance: 0.4926
Epoch 37/200
76/76 [==============================] - 0s 836us/step - loss: 0.3051 - accuracy: 0.5470 - mae: 0.3051 - pearson_correlation: 0.0867 - euclidean_distance: 0.4880
Epoch 38/200
76/76 [==============================] - 0s 835us/step - loss: 0.3021 - accuracy: 0.5576 - mae: 0.3021 - pearson_correlation: 0.0929 - euclidean_distance: 0.4824
Epoch 39/200
76/76 [==============================] - 0s 834us/step - loss: 0.2977 - accuracy: 0.5611 - mae: 0.2977 - pearson_correlation: 0.0996 - euclidean_distance: 0.4753
Epoch 40/200
76/76 [==============================] - 0s 836us/step - loss: 0.2936 - accuracy: 0.5620 - mae: 0.2936 - pearson_correlation: 0.0963 - euclidean_distance: 0.4703
Epoch 41/200
76/76 [==============================] - 0s 831us/step - loss: 0.2898 - accuracy: 0.5615 - mae: 0.2898 - pearson_correlation: 0.0998 - euclidean_distance: 0.4654
Epoch 42/200
76/76 [==============================] - 0s 833us/step - loss: 0.2877 - accuracy: 0.5571 - mae: 0.2877 - pearson_correlation: 0.0938 - euclidean_distance: 0.4616
Epoch 43/200
76/76 [==============================] - 0s 831us/step - loss: 0.2837 - accuracy: 0.5637 - mae: 0.2837 - pearson_correlation: 0.1070 - euclidean_distance: 0.4557
Epoch 44/200
76/76 [==============================] - 0s 835us/step - loss: 0.2799 - accuracy: 0.5730 - mae: 0.2799 - pearson_correlation: 0.1111 - euclidean_distance: 0.4499
Epoch 45/200
76/76 [==============================] - 0s 835us/step - loss: 0.2771 - accuracy: 0.5695 - mae: 0.2771 - pearson_correlation: 0.1164 - euclidean_distance: 0.4459
Epoch 46/200
76/76 [==============================] - 0s 837us/step - loss: 0.2731 - accuracy: 0.5686 - mae: 0.2731 - pearson_correlation: 0.1088 - euclidean_distance: 0.4405
Epoch 47/200
76/76 [==============================] - 0s 840us/step - loss: 0.2726 - accuracy: 0.5761 - mae: 0.2726 - pearson_correlation: 0.1150 - euclidean_distance: 0.4381
Epoch 48/200
76/76 [==============================] - 0s 838us/step - loss: 0.2663 - accuracy: 0.5774 - mae: 0.2663 - pearson_correlation: 0.1207 - euclidean_distance: 0.4304
Epoch 49/200
76/76 [==============================] - 0s 833us/step - loss: 0.2650 - accuracy: 0.5739 - mae: 0.2650 - pearson_correlation: 0.1183 - euclidean_distance: 0.4272
Epoch 50/200
76/76 [==============================] - 0s 832us/step - loss: 0.2619 - accuracy: 0.5783 - mae: 0.2619 - pearson_correlation: 0.1267 - euclidean_distance: 0.4229
Epoch 51/200
76/76 [==============================] - 0s 833us/step - loss: 0.2586 - accuracy: 0.5840 - mae: 0.2586 - pearson_correlation: 0.1269 - euclidean_distance: 0.4172
Epoch 52/200
76/76 [==============================] - 0s 830us/step - loss: 0.2542 - accuracy: 0.5946 - mae: 0.2542 - pearson_correlation: 0.1320 - euclidean_distance: 0.4108
Epoch 53/200
76/76 [==============================] - 0s 834us/step - loss: 0.2524 - accuracy: 0.5898 - mae: 0.2524 - pearson_correlation: 0.1403 - euclidean_distance: 0.4076
Epoch 54/200
76/76 [==============================] - 0s 835us/step - loss: 0.2503 - accuracy: 0.5920 - mae: 0.2503 - pearson_correlation: 0.1409 - euclidean_distance: 0.4044
Epoch 55/200
76/76 [==============================] - 0s 828us/step - loss: 0.2467 - accuracy: 0.5889 - mae: 0.2467 - pearson_correlation: 0.1419 - euclidean_distance: 0.3989
Epoch 56/200
76/76 [==============================] - 0s 830us/step - loss: 0.2440 - accuracy: 0.5977 - mae: 0.2440 - pearson_correlation: 0.1582 - euclidean_distance: 0.3945
Epoch 57/200
76/76 [==============================] - 0s 837us/step - loss: 0.2420 - accuracy: 0.6026 - mae: 0.2420 - pearson_correlation: 0.1550 - euclidean_distance: 0.3910
Epoch 58/200
76/76 [==============================] - 0s 833us/step - loss: 0.2403 - accuracy: 0.5973 - mae: 0.2403 - pearson_correlation: 0.1631 - euclidean_distance: 0.3880
Epoch 59/200
76/76 [==============================] - 0s 836us/step - loss: 0.2352 - accuracy: 0.6105 - mae: 0.2352 - pearson_correlation: 0.1716 - euclidean_distance: 0.3804
Epoch 60/200
76/76 [==============================] - 0s 839us/step - loss: 0.2346 - accuracy: 0.6154 - mae: 0.2346 - pearson_correlation: 0.1751 - euclidean_distance: 0.3796
Epoch 61/200
76/76 [==============================] - 0s 837us/step - loss: 0.2299 - accuracy: 0.6149 - mae: 0.2299 - pearson_correlation: 0.1822 - euclidean_distance: 0.3720
Epoch 62/200
76/76 [==============================] - 0s 834us/step - loss: 0.2280 - accuracy: 0.6255 - mae: 0.2280 - pearson_correlation: 0.1834 - euclidean_distance: 0.3695
Epoch 63/200
76/76 [==============================] - 0s 827us/step - loss: 0.2265 - accuracy: 0.6268 - mae: 0.2265 - pearson_correlation: 0.1880 - euclidean_distance: 0.3664
Epoch 64/200
76/76 [==============================] - 0s 832us/step - loss: 0.2224 - accuracy: 0.6321 - mae: 0.2224 - pearson_correlation: 0.2019 - euclidean_distance: 0.3604
Epoch 65/200
76/76 [==============================] - 0s 833us/step - loss: 0.2210 - accuracy: 0.6365 - mae: 0.2210 - pearson_correlation: 0.2056 - euclidean_distance: 0.3581
Epoch 66/200
76/76 [==============================] - 0s 833us/step - loss: 0.2188 - accuracy: 0.6467 - mae: 0.2188 - pearson_correlation: 0.2145 - euclidean_distance: 0.3545
Epoch 67/200
76/76 [==============================] - 0s 831us/step - loss: 0.2151 - accuracy: 0.6374 - mae: 0.2151 - pearson_correlation: 0.2214 - euclidean_distance: 0.3491
Epoch 68/200
76/76 [==============================] - 0s 835us/step - loss: 0.2144 - accuracy: 0.6524 - mae: 0.2144 - pearson_correlation: 0.2289 - euclidean_distance: 0.3475
Epoch 69/200
76/76 [==============================] - 0s 830us/step - loss: 0.2122 - accuracy: 0.6533 - mae: 0.2122 - pearson_correlation: 0.2324 - euclidean_distance: 0.3434
Epoch 70/200
76/76 [==============================] - 0s 829us/step - loss: 0.2093 - accuracy: 0.6577 - mae: 0.2093 - pearson_correlation: 0.2435 - euclidean_distance: 0.3389
Epoch 71/200
76/76 [==============================] - 0s 835us/step - loss: 0.2069 - accuracy: 0.6648 - mae: 0.2069 - pearson_correlation: 0.2522 - euclidean_distance: 0.3353
Epoch 72/200
76/76 [==============================] - 0s 832us/step - loss: 0.2047 - accuracy: 0.6678 - mae: 0.2047 - pearson_correlation: 0.2538 - euclidean_distance: 0.3332
Epoch 73/200
76/76 [==============================] - 0s 837us/step - loss: 0.2046 - accuracy: 0.6789 - mae: 0.2046 - pearson_correlation: 0.2619 - euclidean_distance: 0.3300
Epoch 74/200
76/76 [==============================] - 0s 835us/step - loss: 0.2008 - accuracy: 0.6749 - mae: 0.2008 - pearson_correlation: 0.2663 - euclidean_distance: 0.3255
Epoch 75/200
76/76 [==============================] - 0s 827us/step - loss: 0.1983 - accuracy: 0.6837 - mae: 0.1983 - pearson_correlation: 0.2726 - euclidean_distance: 0.3213
Epoch 76/200
76/76 [==============================] - 0s 828us/step - loss: 0.1970 - accuracy: 0.6850 - mae: 0.1970 - pearson_correlation: 0.2772 - euclidean_distance: 0.3199
Epoch 77/200
76/76 [==============================] - 0s 835us/step - loss: 0.1948 - accuracy: 0.6965 - mae: 0.1948 - pearson_correlation: 0.2912 - euclidean_distance: 0.3156
Epoch 78/200
76/76 [==============================] - 0s 837us/step - loss: 0.1921 - accuracy: 0.6939 - mae: 0.1921 - pearson_correlation: 0.2979 - euclidean_distance: 0.3114
Epoch 79/200
76/76 [==============================] - 0s 835us/step - loss: 0.1896 - accuracy: 0.7018 - mae: 0.1896 - pearson_correlation: 0.2994 - euclidean_distance: 0.3076
Epoch 80/200
76/76 [==============================] - 0s 836us/step - loss: 0.1897 - accuracy: 0.7058 - mae: 0.1897 - pearson_correlation: 0.3063 - euclidean_distance: 0.3072
Epoch 81/200
76/76 [==============================] - 0s 836us/step - loss: 0.1869 - accuracy: 0.7075 - mae: 0.1869 - pearson_correlation: 0.3181 - euclidean_distance: 0.3029
Epoch 82/200
76/76 [==============================] - 0s 833us/step - loss: 0.1852 - accuracy: 0.7181 - mae: 0.1852 - pearson_correlation: 0.3290 - euclidean_distance: 0.2998
Epoch 83/200
76/76 [==============================] - 0s 838us/step - loss: 0.1827 - accuracy: 0.7208 - mae: 0.1827 - pearson_correlation: 0.3365 - euclidean_distance: 0.2967
Epoch 84/200
76/76 [==============================] - 0s 877us/step - loss: 0.1812 - accuracy: 0.7270 - mae: 0.1812 - pearson_correlation: 0.3384 - euclidean_distance: 0.2944
Epoch 85/200
76/76 [==============================] - 0s 831us/step - loss: 0.1802 - accuracy: 0.7292 - mae: 0.1802 - pearson_correlation: 0.3469 - euclidean_distance: 0.2919
Epoch 86/200
76/76 [==============================] - 0s 833us/step - loss: 0.1775 - accuracy: 0.7292 - mae: 0.1775 - pearson_correlation: 0.3529 - euclidean_distance: 0.2877
Epoch 87/200
76/76 [==============================] - 0s 834us/step - loss: 0.1763 - accuracy: 0.7322 - mae: 0.1763 - pearson_correlation: 0.3574 - euclidean_distance: 0.2858
Epoch 88/200
76/76 [==============================] - 0s 828us/step - loss: 0.1748 - accuracy: 0.7415 - mae: 0.1748 - pearson_correlation: 0.3682 - euclidean_distance: 0.2838
Epoch 89/200
76/76 [==============================] - 0s 863us/step - loss: 0.1731 - accuracy: 0.7543 - mae: 0.1731 - pearson_correlation: 0.3727 - euclidean_distance: 0.2805
Epoch 90/200
76/76 [==============================] - 0s 844us/step - loss: 0.1729 - accuracy: 0.7508 - mae: 0.1729 - pearson_correlation: 0.3788 - euclidean_distance: 0.2797
Epoch 91/200
76/76 [==============================] - 0s 838us/step - loss: 0.1699 - accuracy: 0.7539 - mae: 0.1699 - pearson_correlation: 0.3864 - euclidean_distance: 0.2755
Epoch 92/200
76/76 [==============================] - 0s 827us/step - loss: 0.1685 - accuracy: 0.7569 - mae: 0.1685 - pearson_correlation: 0.3902 - euclidean_distance: 0.2727
Epoch 93/200
76/76 [==============================] - 0s 844us/step - loss: 0.1672 - accuracy: 0.7622 - mae: 0.1672 - pearson_correlation: 0.4019 - euclidean_distance: 0.2712
Epoch 94/200
76/76 [==============================] - 0s 835us/step - loss: 0.1653 - accuracy: 0.7812 - mae: 0.1653 - pearson_correlation: 0.4079 - euclidean_distance: 0.2677
Epoch 95/200
76/76 [==============================] - 0s 831us/step - loss: 0.1648 - accuracy: 0.7671 - mae: 0.1648 - pearson_correlation: 0.4122 - euclidean_distance: 0.2664
Epoch 96/200
76/76 [==============================] - 0s 831us/step - loss: 0.1622 - accuracy: 0.7812 - mae: 0.1622 - pearson_correlation: 0.4164 - euclidean_distance: 0.2631
Epoch 97/200
76/76 [==============================] - 0s 829us/step - loss: 0.1628 - accuracy: 0.7865 - mae: 0.1628 - pearson_correlation: 0.4215 - euclidean_distance: 0.2633
Epoch 98/200
76/76 [==============================] - 0s 830us/step - loss: 0.1599 - accuracy: 0.7891 - mae: 0.1599 - pearson_correlation: 0.4268 - euclidean_distance: 0.2594
Epoch 99/200
76/76 [==============================] - 0s 833us/step - loss: 0.1583 - accuracy: 0.7900 - mae: 0.1583 - pearson_correlation: 0.4377 - euclidean_distance: 0.2560
Epoch 100/200
76/76 [==============================] - 0s 829us/step - loss: 0.1581 - accuracy: 0.7958 - mae: 0.1581 - pearson_correlation: 0.4319 - euclidean_distance: 0.2561
Epoch 101/200
76/76 [==============================] - 0s 830us/step - loss: 0.1554 - accuracy: 0.8046 - mae: 0.1554 - pearson_correlation: 0.4474 - euclidean_distance: 0.2519
Epoch 102/200
76/76 [==============================] - 0s 835us/step - loss: 0.1540 - accuracy: 0.8130 - mae: 0.1540 - pearson_correlation: 0.4504 - euclidean_distance: 0.2492
Epoch 103/200
76/76 [==============================] - 0s 828us/step - loss: 0.1540 - accuracy: 0.8050 - mae: 0.1540 - pearson_correlation: 0.4568 - euclidean_distance: 0.2494
Epoch 104/200
76/76 [==============================] - 0s 831us/step - loss: 0.1540 - accuracy: 0.8174 - mae: 0.1540 - pearson_correlation: 0.4604 - euclidean_distance: 0.2487
Epoch 105/200
76/76 [==============================] - 0s 829us/step - loss: 0.1502 - accuracy: 0.8161 - mae: 0.1502 - pearson_correlation: 0.4718 - euclidean_distance: 0.2435
Epoch 106/200
76/76 [==============================] - 0s 833us/step - loss: 0.1485 - accuracy: 0.8266 - mae: 0.1485 - pearson_correlation: 0.4742 - euclidean_distance: 0.2405
Epoch 107/200
76/76 [==============================] - 0s 829us/step - loss: 0.1479 - accuracy: 0.8346 - mae: 0.1479 - pearson_correlation: 0.4838 - euclidean_distance: 0.2398
Epoch 108/200
76/76 [==============================] - 0s 823us/step - loss: 0.1475 - accuracy: 0.8430 - mae: 0.1475 - pearson_correlation: 0.4878 - euclidean_distance: 0.2387
Epoch 109/200
76/76 [==============================] - 0s 829us/step - loss: 0.1479 - accuracy: 0.8509 - mae: 0.1479 - pearson_correlation: 0.4919 - euclidean_distance: 0.2389
Epoch 110/200
76/76 [==============================] - 0s 834us/step - loss: 0.1437 - accuracy: 0.8452 - mae: 0.1437 - pearson_correlation: 0.5028 - euclidean_distance: 0.2326
Epoch 111/200
76/76 [==============================] - 0s 835us/step - loss: 0.1422 - accuracy: 0.8575 - mae: 0.1422 - pearson_correlation: 0.5060 - euclidean_distance: 0.2301
Epoch 112/200
76/76 [==============================] - 0s 826us/step - loss: 0.1436 - accuracy: 0.8553 - mae: 0.1436 - pearson_correlation: 0.5047 - euclidean_distance: 0.2325
Epoch 113/200
76/76 [==============================] - 0s 830us/step - loss: 0.1413 - accuracy: 0.8615 - mae: 0.1413 - pearson_correlation: 0.5166 - euclidean_distance: 0.2275
Epoch 114/200
76/76 [==============================] - 0s 830us/step - loss: 0.1411 - accuracy: 0.8672 - mae: 0.1411 - pearson_correlation: 0.5184 - euclidean_distance: 0.2275
Epoch 115/200
76/76 [==============================] - 0s 829us/step - loss: 0.1406 - accuracy: 0.8747 - mae: 0.1406 - pearson_correlation: 0.5231 - euclidean_distance: 0.2271
Epoch 116/200
76/76 [==============================] - 0s 833us/step - loss: 0.1395 - accuracy: 0.8743 - mae: 0.1395 - pearson_correlation: 0.5234 - euclidean_distance: 0.2253
Epoch 117/200
76/76 [==============================] - 0s 836us/step - loss: 0.1392 - accuracy: 0.8769 - mae: 0.1392 - pearson_correlation: 0.5272 - euclidean_distance: 0.2244
Epoch 118/200
76/76 [==============================] - 0s 825us/step - loss: 0.1381 - accuracy: 0.8822 - mae: 0.1381 - pearson_correlation: 0.5324 - euclidean_distance: 0.2230
Epoch 119/200
76/76 [==============================] - 0s 832us/step - loss: 0.1372 - accuracy: 0.8972 - mae: 0.1372 - pearson_correlation: 0.5415 - euclidean_distance: 0.2211
Epoch 120/200
76/76 [==============================] - 0s 834us/step - loss: 0.1347 - accuracy: 0.8950 - mae: 0.1347 - pearson_correlation: 0.5424 - euclidean_distance: 0.2170
Epoch 121/200
76/76 [==============================] - 0s 834us/step - loss: 0.1341 - accuracy: 0.8981 - mae: 0.1341 - pearson_correlation: 0.5523 - euclidean_distance: 0.2159
Epoch 122/200
76/76 [==============================] - 0s 838us/step - loss: 0.1331 - accuracy: 0.9012 - mae: 0.1331 - pearson_correlation: 0.5556 - euclidean_distance: 0.2147
Epoch 123/200
76/76 [==============================] - 0s 828us/step - loss: 0.1313 - accuracy: 0.9091 - mae: 0.1313 - pearson_correlation: 0.5650 - euclidean_distance: 0.2121
Epoch 124/200
76/76 [==============================] - 0s 835us/step - loss: 0.1325 - accuracy: 0.9069 - mae: 0.1325 - pearson_correlation: 0.5612 - euclidean_distance: 0.2133
Epoch 125/200
76/76 [==============================] - 0s 832us/step - loss: 0.1319 - accuracy: 0.9087 - mae: 0.1319 - pearson_correlation: 0.5585 - euclidean_distance: 0.2125
Epoch 126/200
76/76 [==============================] - 0s 832us/step - loss: 0.1311 - accuracy: 0.9127 - mae: 0.1311 - pearson_correlation: 0.5727 - euclidean_distance: 0.2112
Epoch 127/200
76/76 [==============================] - 0s 832us/step - loss: 0.1298 - accuracy: 0.9135 - mae: 0.1298 - pearson_correlation: 0.5739 - euclidean_distance: 0.2087
Epoch 128/200
76/76 [==============================] - 0s 833us/step - loss: 0.1295 - accuracy: 0.9149 - mae: 0.1295 - pearson_correlation: 0.5785 - euclidean_distance: 0.2082
Epoch 129/200
76/76 [==============================] - 0s 830us/step - loss: 0.1262 - accuracy: 0.9206 - mae: 0.1262 - pearson_correlation: 0.5905 - euclidean_distance: 0.2032
Epoch 130/200
76/76 [==============================] - 0s 826us/step - loss: 0.1250 - accuracy: 0.9188 - mae: 0.1250 - pearson_correlation: 0.5933 - euclidean_distance: 0.2019
Epoch 131/200
76/76 [==============================] - 0s 835us/step - loss: 0.1264 - accuracy: 0.9157 - mae: 0.1264 - pearson_correlation: 0.5884 - euclidean_distance: 0.2043
Epoch 132/200
76/76 [==============================] - 0s 830us/step - loss: 0.1243 - accuracy: 0.9237 - mae: 0.1243 - pearson_correlation: 0.5973 - euclidean_distance: 0.2003
Epoch 133/200
76/76 [==============================] - 0s 838us/step - loss: 0.1228 - accuracy: 0.9259 - mae: 0.1228 - pearson_correlation: 0.6037 - euclidean_distance: 0.1974
Epoch 134/200
76/76 [==============================] - 0s 838us/step - loss: 0.1265 - accuracy: 0.9250 - mae: 0.1265 - pearson_correlation: 0.5947 - euclidean_distance: 0.2031
Epoch 135/200
76/76 [==============================] - 0s 829us/step - loss: 0.1237 - accuracy: 0.9237 - mae: 0.1237 - pearson_correlation: 0.5990 - euclidean_distance: 0.1996
Epoch 136/200
76/76 [==============================] - 0s 835us/step - loss: 0.1241 - accuracy: 0.9255 - mae: 0.1241 - pearson_correlation: 0.6067 - euclidean_distance: 0.1995
Epoch 137/200
76/76 [==============================] - 0s 841us/step - loss: 0.1226 - accuracy: 0.9268 - mae: 0.1226 - pearson_correlation: 0.6112 - euclidean_distance: 0.1973
Epoch 138/200
76/76 [==============================] - 0s 841us/step - loss: 0.1218 - accuracy: 0.9259 - mae: 0.1218 - pearson_correlation: 0.6079 - euclidean_distance: 0.1965
Epoch 139/200
76/76 [==============================] - 0s 840us/step - loss: 0.1203 - accuracy: 0.9299 - mae: 0.1203 - pearson_correlation: 0.6212 - euclidean_distance: 0.1932
Epoch 140/200
76/76 [==============================] - 0s 841us/step - loss: 0.1196 - accuracy: 0.9285 - mae: 0.1196 - pearson_correlation: 0.6163 - euclidean_distance: 0.1926
Epoch 141/200
76/76 [==============================] - 0s 834us/step - loss: 0.1196 - accuracy: 0.9290 - mae: 0.1196 - pearson_correlation: 0.6196 - euclidean_distance: 0.1920
Epoch 142/200
76/76 [==============================] - 0s 831us/step - loss: 0.1151 - accuracy: 0.9299 - mae: 0.1151 - pearson_correlation: 0.6336 - euclidean_distance: 0.1853
Epoch 143/200
76/76 [==============================] - 0s 829us/step - loss: 0.1163 - accuracy: 0.9312 - mae: 0.1163 - pearson_correlation: 0.6300 - euclidean_distance: 0.1872
Epoch 144/200
76/76 [==============================] - 0s 834us/step - loss: 0.1173 - accuracy: 0.9303 - mae: 0.1173 - pearson_correlation: 0.6269 - euclidean_distance: 0.1891
Epoch 145/200
76/76 [==============================] - 0s 836us/step - loss: 0.1162 - accuracy: 0.9330 - mae: 0.1162 - pearson_correlation: 0.6306 - euclidean_distance: 0.1875
Epoch 146/200
76/76 [==============================] - 0s 830us/step - loss: 0.1165 - accuracy: 0.9343 - mae: 0.1165 - pearson_correlation: 0.6324 - euclidean_distance: 0.1879
Epoch 147/200
76/76 [==============================] - 0s 834us/step - loss: 0.1159 - accuracy: 0.9360 - mae: 0.1159 - pearson_correlation: 0.6353 - euclidean_distance: 0.1867
Epoch 148/200
76/76 [==============================] - 0s 831us/step - loss: 0.1136 - accuracy: 0.9321 - mae: 0.1136 - pearson_correlation: 0.6417 - euclidean_distance: 0.1831
Epoch 149/200
76/76 [==============================] - 0s 833us/step - loss: 0.1136 - accuracy: 0.9343 - mae: 0.1136 - pearson_correlation: 0.6459 - euclidean_distance: 0.1820
Epoch 150/200
76/76 [==============================] - 0s 825us/step - loss: 0.1137 - accuracy: 0.9382 - mae: 0.1137 - pearson_correlation: 0.6460 - euclidean_distance: 0.1822
Epoch 151/200
76/76 [==============================] - 0s 825us/step - loss: 0.1129 - accuracy: 0.9347 - mae: 0.1129 - pearson_correlation: 0.6494 - euclidean_distance: 0.1817
Epoch 152/200
76/76 [==============================] - 0s 832us/step - loss: 0.1132 - accuracy: 0.9387 - mae: 0.1132 - pearson_correlation: 0.6437 - euclidean_distance: 0.1820
Epoch 153/200
76/76 [==============================] - 0s 828us/step - loss: 0.1094 - accuracy: 0.9374 - mae: 0.1094 - pearson_correlation: 0.6611 - euclidean_distance: 0.1760
Epoch 154/200
76/76 [==============================] - 0s 840us/step - loss: 0.1150 - accuracy: 0.9378 - mae: 0.1150 - pearson_correlation: 0.6439 - euclidean_distance: 0.1848
Epoch 155/200
76/76 [==============================] - 0s 841us/step - loss: 0.1123 - accuracy: 0.9369 - mae: 0.1123 - pearson_correlation: 0.6499 - euclidean_distance: 0.1810
Epoch 156/200
76/76 [==============================] - 0s 833us/step - loss: 0.1118 - accuracy: 0.9382 - mae: 0.1118 - pearson_correlation: 0.6501 - euclidean_distance: 0.1796
Epoch 157/200
76/76 [==============================] - 0s 829us/step - loss: 0.1111 - accuracy: 0.9396 - mae: 0.1111 - pearson_correlation: 0.6534 - euclidean_distance: 0.1785
Epoch 158/200
76/76 [==============================] - 0s 831us/step - loss: 0.1055 - accuracy: 0.9374 - mae: 0.1055 - pearson_correlation: 0.6711 - euclidean_distance: 0.1699
Epoch 159/200
76/76 [==============================] - 0s 826us/step - loss: 0.1097 - accuracy: 0.9374 - mae: 0.1097 - pearson_correlation: 0.6660 - euclidean_distance: 0.1763
Epoch 160/200
76/76 [==============================] - 0s 834us/step - loss: 0.1088 - accuracy: 0.9382 - mae: 0.1088 - pearson_correlation: 0.6604 - euclidean_distance: 0.1749
Epoch 161/200
76/76 [==============================] - 0s 827us/step - loss: 0.1097 - accuracy: 0.9404 - mae: 0.1097 - pearson_correlation: 0.6600 - euclidean_distance: 0.1772
Epoch 162/200
76/76 [==============================] - 0s 832us/step - loss: 0.1088 - accuracy: 0.9422 - mae: 0.1088 - pearson_correlation: 0.6621 - euclidean_distance: 0.1752
Epoch 163/200
76/76 [==============================] - 0s 832us/step - loss: 0.1068 - accuracy: 0.9404 - mae: 0.1068 - pearson_correlation: 0.6650 - euclidean_distance: 0.1720
Epoch 164/200
76/76 [==============================] - 0s 832us/step - loss: 0.1030 - accuracy: 0.9427 - mae: 0.1030 - pearson_correlation: 0.6836 - euclidean_distance: 0.1663
Epoch 165/200
76/76 [==============================] - 0s 830us/step - loss: 0.1044 - accuracy: 0.9404 - mae: 0.1044 - pearson_correlation: 0.6794 - euclidean_distance: 0.1684
Epoch 166/200
76/76 [==============================] - 0s 831us/step - loss: 0.1040 - accuracy: 0.9413 - mae: 0.1040 - pearson_correlation: 0.6854 - euclidean_distance: 0.1682
Epoch 167/200
76/76 [==============================] - 0s 835us/step - loss: 0.1048 - accuracy: 0.9435 - mae: 0.1048 - pearson_correlation: 0.6835 - euclidean_distance: 0.1687
Epoch 168/200
76/76 [==============================] - 0s 835us/step - loss: 0.1056 - accuracy: 0.9440 - mae: 0.1056 - pearson_correlation: 0.6784 - euclidean_distance: 0.1698
Epoch 169/200
76/76 [==============================] - 0s 830us/step - loss: 0.1022 - accuracy: 0.9427 - mae: 0.1022 - pearson_correlation: 0.6901 - euclidean_distance: 0.1657
Epoch 170/200
76/76 [==============================] - 0s 829us/step - loss: 0.1053 - accuracy: 0.9422 - mae: 0.1053 - pearson_correlation: 0.6800 - euclidean_distance: 0.1694
Epoch 171/200
76/76 [==============================] - 0s 826us/step - loss: 0.1043 - accuracy: 0.9440 - mae: 0.1043 - pearson_correlation: 0.6881 - euclidean_distance: 0.1680
Epoch 172/200
76/76 [==============================] - 0s 833us/step - loss: 0.1026 - accuracy: 0.9422 - mae: 0.1026 - pearson_correlation: 0.6834 - euclidean_distance: 0.1659
Epoch 173/200
76/76 [==============================] - 0s 832us/step - loss: 0.1028 - accuracy: 0.9440 - mae: 0.1028 - pearson_correlation: 0.6897 - euclidean_distance: 0.1659
Epoch 174/200
76/76 [==============================] - 0s 828us/step - loss: 0.1047 - accuracy: 0.9440 - mae: 0.1047 - pearson_correlation: 0.6782 - euclidean_distance: 0.1689
Epoch 175/200
76/76 [==============================] - 0s 828us/step - loss: 0.1015 - accuracy: 0.9449 - mae: 0.1015 - pearson_correlation: 0.6927 - euclidean_distance: 0.1638
Epoch 176/200
76/76 [==============================] - 0s 883us/step - loss: 0.1011 - accuracy: 0.9457 - mae: 0.1011 - pearson_correlation: 0.6896 - euclidean_distance: 0.1636
Epoch 177/200
76/76 [==============================] - 0s 842us/step - loss: 0.1012 - accuracy: 0.9418 - mae: 0.1012 - pearson_correlation: 0.6931 - euclidean_distance: 0.1627
Epoch 178/200
76/76 [==============================] - 0s 833us/step - loss: 0.1006 - accuracy: 0.9466 - mae: 0.1006 - pearson_correlation: 0.6919 - euclidean_distance: 0.1627
Epoch 179/200
76/76 [==============================] - 0s 833us/step - loss: 0.1011 - accuracy: 0.9453 - mae: 0.1011 - pearson_correlation: 0.6945 - euclidean_distance: 0.1630
Epoch 180/200
76/76 [==============================] - 0s 827us/step - loss: 0.1000 - accuracy: 0.9466 - mae: 0.1000 - pearson_correlation: 0.6961 - euclidean_distance: 0.1616
Epoch 181/200
76/76 [==============================] - 0s 829us/step - loss: 0.1003 - accuracy: 0.9444 - mae: 0.1003 - pearson_correlation: 0.6969 - euclidean_distance: 0.1616
Epoch 182/200
76/76 [==============================] - 0s 836us/step - loss: 0.0990 - accuracy: 0.9449 - mae: 0.0990 - pearson_correlation: 0.6998 - euclidean_distance: 0.1597
Epoch 183/200
76/76 [==============================] - 0s 834us/step - loss: 0.0991 - accuracy: 0.9457 - mae: 0.0991 - pearson_correlation: 0.6970 - euclidean_distance: 0.1597
Epoch 184/200
76/76 [==============================] - 0s 834us/step - loss: 0.1002 - accuracy: 0.9457 - mae: 0.1002 - pearson_correlation: 0.6959 - euclidean_distance: 0.1614
Epoch 185/200
76/76 [==============================] - 0s 831us/step - loss: 0.1020 - accuracy: 0.9466 - mae: 0.1020 - pearson_correlation: 0.7000 - euclidean_distance: 0.1643
Epoch 186/200
76/76 [==============================] - 0s 831us/step - loss: 0.0975 - accuracy: 0.9462 - mae: 0.0975 - pearson_correlation: 0.7067 - euclidean_distance: 0.1577
Epoch 187/200
76/76 [==============================] - 0s 824us/step - loss: 0.1003 - accuracy: 0.9444 - mae: 0.1003 - pearson_correlation: 0.7011 - euclidean_distance: 0.1620
Epoch 188/200
76/76 [==============================] - 0s 826us/step - loss: 0.1003 - accuracy: 0.9475 - mae: 0.1003 - pearson_correlation: 0.7044 - euclidean_distance: 0.1611
Epoch 189/200
76/76 [==============================] - 0s 833us/step - loss: 0.0970 - accuracy: 0.9471 - mae: 0.0970 - pearson_correlation: 0.7054 - euclidean_distance: 0.1570
Epoch 190/200
76/76 [==============================] - 0s 829us/step - loss: 0.0982 - accuracy: 0.9475 - mae: 0.0982 - pearson_correlation: 0.7033 - euclidean_distance: 0.1586
Epoch 191/200
76/76 [==============================] - 0s 831us/step - loss: 0.1002 - accuracy: 0.9475 - mae: 0.1002 - pearson_correlation: 0.7036 - euclidean_distance: 0.1616
Epoch 192/200
76/76 [==============================] - 0s 876us/step - loss: 0.0988 - accuracy: 0.9466 - mae: 0.0988 - pearson_correlation: 0.7026 - euclidean_distance: 0.1601
Epoch 193/200
76/76 [==============================] - 0s 967us/step - loss: 0.0985 - accuracy: 0.9471 - mae: 0.0985 - pearson_correlation: 0.7024 - euclidean_distance: 0.1589
Epoch 194/200
76/76 [==============================] - 0s 1ms/step - loss: 0.0982 - accuracy: 0.9457 - mae: 0.0982 - pearson_correlation: 0.7056 - euclidean_distance: 0.1586
Epoch 195/200
76/76 [==============================] - 0s 932us/step - loss: 0.0966 - accuracy: 0.9462 - mae: 0.0966 - pearson_correlation: 0.7115 - euclidean_distance: 0.1557
Epoch 196/200
76/76 [==============================] - 0s 934us/step - loss: 0.0970 - accuracy: 0.9466 - mae: 0.0970 - pearson_correlation: 0.7119 - euclidean_distance: 0.1564
Epoch 197/200
76/76 [==============================] - 0s 923us/step - loss: 0.0973 - accuracy: 0.9466 - mae: 0.0973 - pearson_correlation: 0.7124 - euclidean_distance: 0.1577
Epoch 198/200
76/76 [==============================] - 0s 899us/step - loss: 0.0968 - accuracy: 0.9466 - mae: 0.0968 - pearson_correlation: 0.7097 - euclidean_distance: 0.1560
Epoch 199/200
76/76 [==============================] - 0s 885us/step - loss: 0.0964 - accuracy: 0.9479 - mae: 0.0964 - pearson_correlation: 0.7144 - euclidean_distance: 0.1556
Epoch 200/200
76/76 [==============================] - 0s 915us/step - loss: 0.0956 - accuracy: 0.9475 - mae: 0.0956 - pearson_correlation: 0.7186 - euclidean_distance: 0.1537
38/38 [==============================] - 0s 680us/step
Epoch 1/200
76/76 [==============================] - 1s 862us/step - loss: 0.7651 - accuracy: 0.3141 - mae: 0.7651 - pearson_correlation: -0.3240 - euclidean_distance: 1.1915
Epoch 2/200
76/76 [==============================] - 0s 851us/step - loss: 0.7529 - accuracy: 0.3216 - mae: 0.7529 - pearson_correlation: -0.3246 - euclidean_distance: 1.1765
Epoch 3/200
76/76 [==============================] - 0s 847us/step - loss: 0.7451 - accuracy: 0.3300 - mae: 0.7451 - pearson_correlation: -0.3243 - euclidean_distance: 1.1642
Epoch 4/200
76/76 [==============================] - 0s 842us/step - loss: 0.7354 - accuracy: 0.3255 - mae: 0.7354 - pearson_correlation: -0.3151 - euclidean_distance: 1.1502
Epoch 5/200
76/76 [==============================] - 0s 856us/step - loss: 0.7271 - accuracy: 0.3260 - mae: 0.7271 - pearson_correlation: -0.3145 - euclidean_distance: 1.1385
Epoch 6/200
76/76 [==============================] - 0s 841us/step - loss: 0.7189 - accuracy: 0.3286 - mae: 0.7189 - pearson_correlation: -0.3117 - euclidean_distance: 1.1276
Epoch 7/200
76/76 [==============================] - 0s 838us/step - loss: 0.7091 - accuracy: 0.3322 - mae: 0.7091 - pearson_correlation: -0.3053 - euclidean_distance: 1.1145
Epoch 8/200
76/76 [==============================] - 0s 840us/step - loss: 0.7016 - accuracy: 0.3357 - mae: 0.7016 - pearson_correlation: -0.2963 - euclidean_distance: 1.1024
Epoch 9/200
76/76 [==============================] - 0s 842us/step - loss: 0.6920 - accuracy: 0.3300 - mae: 0.6920 - pearson_correlation: -0.2996 - euclidean_distance: 1.0892
Epoch 10/200
76/76 [==============================] - 0s 839us/step - loss: 0.6829 - accuracy: 0.3366 - mae: 0.6829 - pearson_correlation: -0.2960 - euclidean_distance: 1.0776
Epoch 11/200
76/76 [==============================] - 0s 835us/step - loss: 0.6749 - accuracy: 0.3388 - mae: 0.6749 - pearson_correlation: -0.2866 - euclidean_distance: 1.0643
Epoch 12/200
76/76 [==============================] - 0s 840us/step - loss: 0.6655 - accuracy: 0.3427 - mae: 0.6655 - pearson_correlation: -0.2849 - euclidean_distance: 1.0517
Epoch 13/200
76/76 [==============================] - 0s 837us/step - loss: 0.6571 - accuracy: 0.3436 - mae: 0.6571 - pearson_correlation: -0.2787 - euclidean_distance: 1.0398
Epoch 14/200
76/76 [==============================] - 0s 836us/step - loss: 0.6482 - accuracy: 0.3564 - mae: 0.6482 - pearson_correlation: -0.2758 - euclidean_distance: 1.0269
Epoch 15/200
76/76 [==============================] - 0s 833us/step - loss: 0.6404 - accuracy: 0.3507 - mae: 0.6404 - pearson_correlation: -0.2711 - euclidean_distance: 1.0157
Epoch 16/200
76/76 [==============================] - 0s 828us/step - loss: 0.6308 - accuracy: 0.3458 - mae: 0.6308 - pearson_correlation: -0.2675 - euclidean_distance: 1.0018
Epoch 17/200
76/76 [==============================] - 0s 834us/step - loss: 0.6215 - accuracy: 0.3555 - mae: 0.6215 - pearson_correlation: -0.2588 - euclidean_distance: 0.9877
Epoch 18/200
76/76 [==============================] - 0s 832us/step - loss: 0.6124 - accuracy: 0.3573 - mae: 0.6124 - pearson_correlation: -0.2534 - euclidean_distance: 0.9757
Epoch 19/200
76/76 [==============================] - 0s 833us/step - loss: 0.6043 - accuracy: 0.3670 - mae: 0.6043 - pearson_correlation: -0.2422 - euclidean_distance: 0.9623
Epoch 20/200
76/76 [==============================] - 0s 839us/step - loss: 0.5970 - accuracy: 0.3657 - mae: 0.5970 - pearson_correlation: -0.2384 - euclidean_distance: 0.9522
Epoch 21/200
76/76 [==============================] - 0s 839us/step - loss: 0.5874 - accuracy: 0.3683 - mae: 0.5874 - pearson_correlation: -0.2333 - euclidean_distance: 0.9389
Epoch 22/200
76/76 [==============================] - 0s 828us/step - loss: 0.5802 - accuracy: 0.3644 - mae: 0.5802 - pearson_correlation: -0.2319 - euclidean_distance: 0.9284
Epoch 23/200
76/76 [==============================] - 0s 832us/step - loss: 0.5729 - accuracy: 0.3688 - mae: 0.5729 - pearson_correlation: -0.2177 - euclidean_distance: 0.9162
Epoch 24/200
76/76 [==============================] - 0s 842us/step - loss: 0.5624 - accuracy: 0.3710 - mae: 0.5624 - pearson_correlation: -0.2158 - euclidean_distance: 0.9026
Epoch 25/200
76/76 [==============================] - 0s 880us/step - loss: 0.5563 - accuracy: 0.3789 - mae: 0.5563 - pearson_correlation: -0.2098 - euclidean_distance: 0.8925
Epoch 26/200
76/76 [==============================] - 0s 837us/step - loss: 0.5465 - accuracy: 0.3833 - mae: 0.5465 - pearson_correlation: -0.2023 - euclidean_distance: 0.8784
Epoch 27/200
76/76 [==============================] - 0s 833us/step - loss: 0.5395 - accuracy: 0.3855 - mae: 0.5395 - pearson_correlation: -0.1956 - euclidean_distance: 0.8675
Epoch 28/200
76/76 [==============================] - 0s 831us/step - loss: 0.5306 - accuracy: 0.3838 - mae: 0.5306 - pearson_correlation: -0.1948 - euclidean_distance: 0.8551
Epoch 29/200
76/76 [==============================] - 0s 839us/step - loss: 0.5236 - accuracy: 0.3855 - mae: 0.5236 - pearson_correlation: -0.1818 - euclidean_distance: 0.8446
Epoch 30/200
76/76 [==============================] - 0s 857us/step - loss: 0.5145 - accuracy: 0.3983 - mae: 0.5145 - pearson_correlation: -0.1740 - euclidean_distance: 0.8307
Epoch 31/200
76/76 [==============================] - 0s 843us/step - loss: 0.5055 - accuracy: 0.3939 - mae: 0.5055 - pearson_correlation: -0.1706 - euclidean_distance: 0.8184
Epoch 32/200
76/76 [==============================] - 0s 837us/step - loss: 0.5002 - accuracy: 0.3957 - mae: 0.5002 - pearson_correlation: -0.1682 - euclidean_distance: 0.8102
Epoch 33/200
76/76 [==============================] - 0s 834us/step - loss: 0.4923 - accuracy: 0.4116 - mae: 0.4923 - pearson_correlation: -0.1540 - euclidean_distance: 0.7979
Epoch 34/200
76/76 [==============================] - 0s 835us/step - loss: 0.4847 - accuracy: 0.4019 - mae: 0.4847 - pearson_correlation: -0.1490 - euclidean_distance: 0.7869
Epoch 35/200
76/76 [==============================] - 0s 836us/step - loss: 0.4764 - accuracy: 0.4098 - mae: 0.4764 - pearson_correlation: -0.1417 - euclidean_distance: 0.7741
Epoch 36/200
76/76 [==============================] - 0s 837us/step - loss: 0.4698 - accuracy: 0.4186 - mae: 0.4698 - pearson_correlation: -0.1390 - euclidean_distance: 0.7644
Epoch 37/200
76/76 [==============================] - 0s 838us/step - loss: 0.4625 - accuracy: 0.4182 - mae: 0.4625 - pearson_correlation: -0.1289 - euclidean_distance: 0.7542
Epoch 38/200
76/76 [==============================] - 0s 849us/step - loss: 0.4547 - accuracy: 0.4279 - mae: 0.4547 - pearson_correlation: -0.1213 - euclidean_distance: 0.7411
Epoch 39/200
76/76 [==============================] - 0s 836us/step - loss: 0.4473 - accuracy: 0.4292 - mae: 0.4473 - pearson_correlation: -0.1156 - euclidean_distance: 0.7306
Epoch 40/200
76/76 [==============================] - 0s 834us/step - loss: 0.4386 - accuracy: 0.4305 - mae: 0.4386 - pearson_correlation: -0.1123 - euclidean_distance: 0.7188
Epoch 41/200
76/76 [==============================] - 0s 829us/step - loss: 0.4326 - accuracy: 0.4301 - mae: 0.4326 - pearson_correlation: -0.1066 - euclidean_distance: 0.7101
Epoch 42/200
76/76 [==============================] - 0s 841us/step - loss: 0.4277 - accuracy: 0.4305 - mae: 0.4277 - pearson_correlation: -0.0983 - euclidean_distance: 0.7012
Epoch 43/200
76/76 [==============================] - 0s 839us/step - loss: 0.4208 - accuracy: 0.4371 - mae: 0.4208 - pearson_correlation: -0.0874 - euclidean_distance: 0.6896
Epoch 44/200
76/76 [==============================] - 0s 839us/step - loss: 0.4130 - accuracy: 0.4305 - mae: 0.4130 - pearson_correlation: -0.0884 - euclidean_distance: 0.6785
Epoch 45/200
76/76 [==============================] - 0s 841us/step - loss: 0.4056 - accuracy: 0.4482 - mae: 0.4056 - pearson_correlation: -0.0822 - euclidean_distance: 0.6682
Epoch 46/200
76/76 [==============================] - 0s 843us/step - loss: 0.3988 - accuracy: 0.4451 - mae: 0.3988 - pearson_correlation: -0.0705 - euclidean_distance: 0.6580
Epoch 47/200
76/76 [==============================] - 0s 854us/step - loss: 0.3934 - accuracy: 0.4468 - mae: 0.3934 - pearson_correlation: -0.0695 - euclidean_distance: 0.6494
Epoch 48/200
76/76 [==============================] - 0s 849us/step - loss: 0.3833 - accuracy: 0.4592 - mae: 0.3833 - pearson_correlation: -0.0599 - euclidean_distance: 0.6342
Epoch 49/200
76/76 [==============================] - 0s 839us/step - loss: 0.3802 - accuracy: 0.4508 - mae: 0.3802 - pearson_correlation: -0.0572 - euclidean_distance: 0.6284
Epoch 50/200
76/76 [==============================] - 0s 850us/step - loss: 0.3746 - accuracy: 0.4689 - mae: 0.3746 - pearson_correlation: -0.0528 - euclidean_distance: 0.6202
Epoch 51/200
76/76 [==============================] - 0s 870us/step - loss: 0.3657 - accuracy: 0.4689 - mae: 0.3657 - pearson_correlation: -0.0553 - euclidean_distance: 0.6076
Epoch 52/200
76/76 [==============================] - 0s 1ms/step - loss: 0.3597 - accuracy: 0.4808 - mae: 0.3597 - pearson_correlation: -0.0444 - euclidean_distance: 0.5981
Epoch 53/200
76/76 [==============================] - 0s 888us/step - loss: 0.3562 - accuracy: 0.4804 - mae: 0.3562 - pearson_correlation: -0.0339 - euclidean_distance: 0.5911
Epoch 54/200
76/76 [==============================] - 0s 1ms/step - loss: 0.3486 - accuracy: 0.4768 - mae: 0.3486 - pearson_correlation: -0.0351 - euclidean_distance: 0.5806
Epoch 55/200
76/76 [==============================] - 0s 871us/step - loss: 0.3434 - accuracy: 0.4896 - mae: 0.3434 - pearson_correlation: -0.0305 - euclidean_distance: 0.5723
Epoch 56/200
76/76 [==============================] - 0s 841us/step - loss: 0.3374 - accuracy: 0.5007 - mae: 0.3374 - pearson_correlation: -0.0134 - euclidean_distance: 0.5616
Epoch 57/200
76/76 [==============================] - 0s 851us/step - loss: 0.3308 - accuracy: 0.5029 - mae: 0.3308 - pearson_correlation: -0.0094 - euclidean_distance: 0.5512
Epoch 58/200
76/76 [==============================] - 0s 850us/step - loss: 0.3279 - accuracy: 0.5099 - mae: 0.3279 - pearson_correlation: -0.0098 - euclidean_distance: 0.5464
Epoch 59/200
76/76 [==============================] - 0s 849us/step - loss: 0.3188 - accuracy: 0.5104 - mae: 0.3188 - pearson_correlation: 0.0020 - euclidean_distance: 0.5325
Epoch 60/200
76/76 [==============================] - 0s 833us/step - loss: 0.3159 - accuracy: 0.5289 - mae: 0.3159 - pearson_correlation: 0.0119 - euclidean_distance: 0.5266
Epoch 61/200
76/76 [==============================] - 0s 835us/step - loss: 0.3110 - accuracy: 0.5342 - mae: 0.3110 - pearson_correlation: 0.0146 - euclidean_distance: 0.5193
Epoch 62/200
76/76 [==============================] - 0s 846us/step - loss: 0.3047 - accuracy: 0.5289 - mae: 0.3047 - pearson_correlation: 0.0179 - euclidean_distance: 0.5099
Epoch 63/200
76/76 [==============================] - 0s 841us/step - loss: 0.3006 - accuracy: 0.5346 - mae: 0.3006 - pearson_correlation: 0.0295 - euclidean_distance: 0.5029
Epoch 64/200
76/76 [==============================] - 0s 843us/step - loss: 0.2963 - accuracy: 0.5505 - mae: 0.2963 - pearson_correlation: 0.0316 - euclidean_distance: 0.4955
Epoch 65/200
76/76 [==============================] - 0s 843us/step - loss: 0.2926 - accuracy: 0.5523 - mae: 0.2926 - pearson_correlation: 0.0327 - euclidean_distance: 0.4898
Epoch 66/200
76/76 [==============================] - 0s 842us/step - loss: 0.2869 - accuracy: 0.5655 - mae: 0.2869 - pearson_correlation: 0.0470 - euclidean_distance: 0.4805
Epoch 67/200
76/76 [==============================] - 0s 845us/step - loss: 0.2828 - accuracy: 0.5739 - mae: 0.2828 - pearson_correlation: 0.0557 - euclidean_distance: 0.4735
Epoch 68/200
76/76 [==============================] - 0s 833us/step - loss: 0.2783 - accuracy: 0.5748 - mae: 0.2783 - pearson_correlation: 0.0607 - euclidean_distance: 0.4665
Epoch 69/200
76/76 [==============================] - 0s 834us/step - loss: 0.2749 - accuracy: 0.5845 - mae: 0.2749 - pearson_correlation: 0.0678 - euclidean_distance: 0.4602
Epoch 70/200
76/76 [==============================] - 0s 833us/step - loss: 0.2712 - accuracy: 0.5915 - mae: 0.2712 - pearson_correlation: 0.0785 - euclidean_distance: 0.4542
Epoch 71/200
76/76 [==============================] - 0s 834us/step - loss: 0.2639 - accuracy: 0.6105 - mae: 0.2639 - pearson_correlation: 0.0905 - euclidean_distance: 0.4430
Epoch 72/200
76/76 [==============================] - 0s 837us/step - loss: 0.2648 - accuracy: 0.6202 - mae: 0.2648 - pearson_correlation: 0.0890 - euclidean_distance: 0.4434
Epoch 73/200
76/76 [==============================] - 0s 836us/step - loss: 0.2590 - accuracy: 0.6189 - mae: 0.2590 - pearson_correlation: 0.1086 - euclidean_distance: 0.4344
Epoch 74/200
76/76 [==============================] - 0s 840us/step - loss: 0.2548 - accuracy: 0.6246 - mae: 0.2548 - pearson_correlation: 0.1117 - euclidean_distance: 0.4272
Epoch 75/200
76/76 [==============================] - 0s 835us/step - loss: 0.2519 - accuracy: 0.6303 - mae: 0.2519 - pearson_correlation: 0.1215 - euclidean_distance: 0.4211
Epoch 76/200
76/76 [==============================] - 0s 833us/step - loss: 0.2486 - accuracy: 0.6524 - mae: 0.2486 - pearson_correlation: 0.1265 - euclidean_distance: 0.4159
Epoch 77/200
76/76 [==============================] - 0s 833us/step - loss: 0.2466 - accuracy: 0.6453 - mae: 0.2466 - pearson_correlation: 0.1391 - euclidean_distance: 0.4133
Epoch 78/200
76/76 [==============================] - 0s 833us/step - loss: 0.2412 - accuracy: 0.6630 - mae: 0.2412 - pearson_correlation: 0.1517 - euclidean_distance: 0.4035
Epoch 79/200
76/76 [==============================] - 0s 840us/step - loss: 0.2375 - accuracy: 0.6665 - mae: 0.2375 - pearson_correlation: 0.1581 - euclidean_distance: 0.3979
Epoch 80/200
76/76 [==============================] - 0s 839us/step - loss: 0.2367 - accuracy: 0.6683 - mae: 0.2367 - pearson_correlation: 0.1639 - euclidean_distance: 0.3958
Epoch 81/200
76/76 [==============================] - 0s 834us/step - loss: 0.2339 - accuracy: 0.6678 - mae: 0.2339 - pearson_correlation: 0.1740 - euclidean_distance: 0.3906
Epoch 82/200
76/76 [==============================] - 0s 837us/step - loss: 0.2298 - accuracy: 0.6771 - mae: 0.2298 - pearson_correlation: 0.1808 - euclidean_distance: 0.3843
Epoch 83/200
76/76 [==============================] - 0s 833us/step - loss: 0.2260 - accuracy: 0.6828 - mae: 0.2260 - pearson_correlation: 0.1909 - euclidean_distance: 0.3782
Epoch 84/200
76/76 [==============================] - 0s 836us/step - loss: 0.2259 - accuracy: 0.6881 - mae: 0.2259 - pearson_correlation: 0.1973 - euclidean_distance: 0.3767
Epoch 85/200
76/76 [==============================] - 0s 839us/step - loss: 0.2229 - accuracy: 0.6987 - mae: 0.2229 - pearson_correlation: 0.2125 - euclidean_distance: 0.3715
Epoch 86/200
76/76 [==============================] - 0s 831us/step - loss: 0.2202 - accuracy: 0.7036 - mae: 0.2202 - pearson_correlation: 0.2166 - euclidean_distance: 0.3678
Epoch 87/200
76/76 [==============================] - 0s 828us/step - loss: 0.2159 - accuracy: 0.7084 - mae: 0.2159 - pearson_correlation: 0.2242 - euclidean_distance: 0.3613
Epoch 88/200
76/76 [==============================] - 0s 837us/step - loss: 0.2144 - accuracy: 0.7225 - mae: 0.2144 - pearson_correlation: 0.2383 - euclidean_distance: 0.3558
Epoch 89/200
76/76 [==============================] - 0s 838us/step - loss: 0.2127 - accuracy: 0.7186 - mae: 0.2127 - pearson_correlation: 0.2472 - euclidean_distance: 0.3545
Epoch 90/200
76/76 [==============================] - 0s 881us/step - loss: 0.2095 - accuracy: 0.7199 - mae: 0.2095 - pearson_correlation: 0.2506 - euclidean_distance: 0.3484
Epoch 91/200
76/76 [==============================] - 0s 835us/step - loss: 0.2081 - accuracy: 0.7375 - mae: 0.2081 - pearson_correlation: 0.2707 - euclidean_distance: 0.3445
Epoch 92/200
76/76 [==============================] - 0s 835us/step - loss: 0.2036 - accuracy: 0.7517 - mae: 0.2036 - pearson_correlation: 0.2804 - euclidean_distance: 0.3383
Epoch 93/200
76/76 [==============================] - 0s 832us/step - loss: 0.2038 - accuracy: 0.7389 - mae: 0.2038 - pearson_correlation: 0.2789 - euclidean_distance: 0.3381
Epoch 94/200
76/76 [==============================] - 0s 835us/step - loss: 0.1997 - accuracy: 0.7446 - mae: 0.1997 - pearson_correlation: 0.2956 - euclidean_distance: 0.3307
Epoch 95/200
76/76 [==============================] - 0s 837us/step - loss: 0.1980 - accuracy: 0.7658 - mae: 0.1980 - pearson_correlation: 0.3022 - euclidean_distance: 0.3269
Epoch 96/200
76/76 [==============================] - 0s 840us/step - loss: 0.1966 - accuracy: 0.7468 - mae: 0.1966 - pearson_correlation: 0.3065 - euclidean_distance: 0.3265
Epoch 97/200
76/76 [==============================] - 0s 836us/step - loss: 0.1931 - accuracy: 0.7596 - mae: 0.1931 - pearson_correlation: 0.3215 - euclidean_distance: 0.3198
Epoch 98/200
76/76 [==============================] - 0s 838us/step - loss: 0.1927 - accuracy: 0.7653 - mae: 0.1927 - pearson_correlation: 0.3228 - euclidean_distance: 0.3185
Epoch 99/200
76/76 [==============================] - 0s 834us/step - loss: 0.1908 - accuracy: 0.7631 - mae: 0.1908 - pearson_correlation: 0.3178 - euclidean_distance: 0.3163
Epoch 100/200
76/76 [==============================] - 0s 833us/step - loss: 0.1895 - accuracy: 0.7746 - mae: 0.1895 - pearson_correlation: 0.3337 - euclidean_distance: 0.3130
Epoch 101/200
76/76 [==============================] - 0s 841us/step - loss: 0.1871 - accuracy: 0.7786 - mae: 0.1871 - pearson_correlation: 0.3446 - euclidean_distance: 0.3086
Epoch 102/200
76/76 [==============================] - 0s 831us/step - loss: 0.1849 - accuracy: 0.7909 - mae: 0.1849 - pearson_correlation: 0.3550 - euclidean_distance: 0.3052
Epoch 103/200
76/76 [==============================] - 0s 833us/step - loss: 0.1832 - accuracy: 0.7949 - mae: 0.1832 - pearson_correlation: 0.3583 - euclidean_distance: 0.3028
Epoch 104/200
76/76 [==============================] - 0s 836us/step - loss: 0.1779 - accuracy: 0.7975 - mae: 0.1779 - pearson_correlation: 0.3769 - euclidean_distance: 0.2930
Epoch 105/200
76/76 [==============================] - 0s 840us/step - loss: 0.1802 - accuracy: 0.7989 - mae: 0.1802 - pearson_correlation: 0.3723 - euclidean_distance: 0.2974
Epoch 106/200
76/76 [==============================] - 0s 839us/step - loss: 0.1758 - accuracy: 0.7958 - mae: 0.1758 - pearson_correlation: 0.3828 - euclidean_distance: 0.2900
Epoch 107/200
76/76 [==============================] - 0s 836us/step - loss: 0.1747 - accuracy: 0.8059 - mae: 0.1747 - pearson_correlation: 0.3923 - euclidean_distance: 0.2875
Epoch 108/200
76/76 [==============================] - 0s 838us/step - loss: 0.1764 - accuracy: 0.7980 - mae: 0.1764 - pearson_correlation: 0.3848 - euclidean_distance: 0.2903
Epoch 109/200
76/76 [==============================] - 0s 848us/step - loss: 0.1704 - accuracy: 0.8068 - mae: 0.1704 - pearson_correlation: 0.3967 - euclidean_distance: 0.2808
Epoch 110/200
76/76 [==============================] - 0s 863us/step - loss: 0.1697 - accuracy: 0.8116 - mae: 0.1697 - pearson_correlation: 0.4115 - euclidean_distance: 0.2789
Epoch 111/200
76/76 [==============================] - 0s 851us/step - loss: 0.1696 - accuracy: 0.8094 - mae: 0.1696 - pearson_correlation: 0.4066 - euclidean_distance: 0.2794
Epoch 112/200
76/76 [==============================] - 0s 847us/step - loss: 0.1711 - accuracy: 0.8064 - mae: 0.1711 - pearson_correlation: 0.4106 - euclidean_distance: 0.2814
Epoch 113/200
76/76 [==============================] - 0s 842us/step - loss: 0.1663 - accuracy: 0.8191 - mae: 0.1663 - pearson_correlation: 0.4213 - euclidean_distance: 0.2731
Epoch 114/200
76/76 [==============================] - 0s 840us/step - loss: 0.1677 - accuracy: 0.8116 - mae: 0.1677 - pearson_correlation: 0.4184 - euclidean_distance: 0.2752
Epoch 115/200
76/76 [==============================] - 0s 843us/step - loss: 0.1629 - accuracy: 0.8350 - mae: 0.1629 - pearson_correlation: 0.4341 - euclidean_distance: 0.2678
Epoch 116/200
76/76 [==============================] - 0s 835us/step - loss: 0.1624 - accuracy: 0.8249 - mae: 0.1624 - pearson_correlation: 0.4487 - euclidean_distance: 0.2662
Epoch 117/200
76/76 [==============================] - 0s 839us/step - loss: 0.1615 - accuracy: 0.8297 - mae: 0.1615 - pearson_correlation: 0.4388 - euclidean_distance: 0.2647
Epoch 118/200
76/76 [==============================] - 0s 837us/step - loss: 0.1574 - accuracy: 0.8363 - mae: 0.1574 - pearson_correlation: 0.4557 - euclidean_distance: 0.2583
Epoch 119/200
76/76 [==============================] - 0s 830us/step - loss: 0.1620 - accuracy: 0.8324 - mae: 0.1620 - pearson_correlation: 0.4458 - euclidean_distance: 0.2660
Epoch 120/200
76/76 [==============================] - 0s 835us/step - loss: 0.1581 - accuracy: 0.8425 - mae: 0.1581 - pearson_correlation: 0.4603 - euclidean_distance: 0.2590
Epoch 121/200
76/76 [==============================] - 0s 838us/step - loss: 0.1599 - accuracy: 0.8350 - mae: 0.1599 - pearson_correlation: 0.4583 - euclidean_distance: 0.2618
Epoch 122/200
76/76 [==============================] - 0s 838us/step - loss: 0.1554 - accuracy: 0.8346 - mae: 0.1554 - pearson_correlation: 0.4676 - euclidean_distance: 0.2547
Epoch 123/200
76/76 [==============================] - 0s 838us/step - loss: 0.1520 - accuracy: 0.8425 - mae: 0.1520 - pearson_correlation: 0.4740 - euclidean_distance: 0.2496
Epoch 124/200
76/76 [==============================] - 0s 831us/step - loss: 0.1544 - accuracy: 0.8443 - mae: 0.1544 - pearson_correlation: 0.4710 - euclidean_distance: 0.2528
Epoch 125/200
76/76 [==============================] - 0s 837us/step - loss: 0.1530 - accuracy: 0.8438 - mae: 0.1530 - pearson_correlation: 0.4787 - euclidean_distance: 0.2505
Epoch 126/200
76/76 [==============================] - 0s 837us/step - loss: 0.1502 - accuracy: 0.8522 - mae: 0.1502 - pearson_correlation: 0.4850 - euclidean_distance: 0.2464
Epoch 127/200
76/76 [==============================] - 0s 835us/step - loss: 0.1503 - accuracy: 0.8518 - mae: 0.1503 - pearson_correlation: 0.4887 - euclidean_distance: 0.2462
Epoch 128/200
76/76 [==============================] - 0s 835us/step - loss: 0.1496 - accuracy: 0.8522 - mae: 0.1496 - pearson_correlation: 0.4963 - euclidean_distance: 0.2441
Epoch 129/200
76/76 [==============================] - 0s 838us/step - loss: 0.1494 - accuracy: 0.8522 - mae: 0.1494 - pearson_correlation: 0.4955 - euclidean_distance: 0.2448
Epoch 130/200
76/76 [==============================] - 0s 839us/step - loss: 0.1507 - accuracy: 0.8509 - mae: 0.1507 - pearson_correlation: 0.4963 - euclidean_distance: 0.2459
Epoch 131/200
76/76 [==============================] - 0s 831us/step - loss: 0.1484 - accuracy: 0.8513 - mae: 0.1484 - pearson_correlation: 0.5025 - euclidean_distance: 0.2430
Epoch 132/200
76/76 [==============================] - 0s 831us/step - loss: 0.1459 - accuracy: 0.8558 - mae: 0.1459 - pearson_correlation: 0.5124 - euclidean_distance: 0.2384
Epoch 133/200
76/76 [==============================] - 0s 830us/step - loss: 0.1437 - accuracy: 0.8619 - mae: 0.1437 - pearson_correlation: 0.5147 - euclidean_distance: 0.2354
Epoch 134/200
76/76 [==============================] - 0s 835us/step - loss: 0.1435 - accuracy: 0.8584 - mae: 0.1435 - pearson_correlation: 0.5091 - euclidean_distance: 0.2359
Epoch 135/200
76/76 [==============================] - 0s 834us/step - loss: 0.1439 - accuracy: 0.8694 - mae: 0.1439 - pearson_correlation: 0.5184 - euclidean_distance: 0.2348
Epoch 136/200
76/76 [==============================] - 0s 830us/step - loss: 0.1429 - accuracy: 0.8628 - mae: 0.1429 - pearson_correlation: 0.5242 - euclidean_distance: 0.2327
Epoch 137/200
76/76 [==============================] - 0s 834us/step - loss: 0.1390 - accuracy: 0.8663 - mae: 0.1390 - pearson_correlation: 0.5271 - euclidean_distance: 0.2280
Epoch 138/200
76/76 [==============================] - 0s 836us/step - loss: 0.1397 - accuracy: 0.8624 - mae: 0.1397 - pearson_correlation: 0.5277 - euclidean_distance: 0.2283
Epoch 139/200
76/76 [==============================] - 0s 836us/step - loss: 0.1410 - accuracy: 0.8672 - mae: 0.1410 - pearson_correlation: 0.5306 - euclidean_distance: 0.2299
Epoch 140/200
76/76 [==============================] - 0s 838us/step - loss: 0.1356 - accuracy: 0.8708 - mae: 0.1356 - pearson_correlation: 0.5446 - euclidean_distance: 0.2218
Epoch 141/200
76/76 [==============================] - 0s 832us/step - loss: 0.1373 - accuracy: 0.8708 - mae: 0.1373 - pearson_correlation: 0.5408 - euclidean_distance: 0.2242
Epoch 142/200
76/76 [==============================] - 0s 832us/step - loss: 0.1353 - accuracy: 0.8708 - mae: 0.1353 - pearson_correlation: 0.5458 - euclidean_distance: 0.2215
Epoch 143/200
76/76 [==============================] - 0s 830us/step - loss: 0.1392 - accuracy: 0.8712 - mae: 0.1392 - pearson_correlation: 0.5368 - euclidean_distance: 0.2270
Epoch 144/200
76/76 [==============================] - 0s 831us/step - loss: 0.1328 - accuracy: 0.8760 - mae: 0.1328 - pearson_correlation: 0.5555 - euclidean_distance: 0.2174
Epoch 145/200
76/76 [==============================] - 0s 832us/step - loss: 0.1367 - accuracy: 0.8756 - mae: 0.1367 - pearson_correlation: 0.5528 - euclidean_distance: 0.2231
Epoch 146/200
76/76 [==============================] - 0s 832us/step - loss: 0.1330 - accuracy: 0.8730 - mae: 0.1330 - pearson_correlation: 0.5542 - euclidean_distance: 0.2176
Epoch 147/200
76/76 [==============================] - 0s 848us/step - loss: 0.1345 - accuracy: 0.8760 - mae: 0.1345 - pearson_correlation: 0.5574 - euclidean_distance: 0.2204
Epoch 148/200
76/76 [==============================] - 0s 829us/step - loss: 0.1311 - accuracy: 0.8840 - mae: 0.1311 - pearson_correlation: 0.5659 - euclidean_distance: 0.2143
Epoch 149/200
76/76 [==============================] - 0s 834us/step - loss: 0.1306 - accuracy: 0.8800 - mae: 0.1306 - pearson_correlation: 0.5640 - euclidean_distance: 0.2136
Epoch 150/200
76/76 [==============================] - 0s 836us/step - loss: 0.1315 - accuracy: 0.8778 - mae: 0.1315 - pearson_correlation: 0.5657 - euclidean_distance: 0.2150
Epoch 151/200
76/76 [==============================] - 0s 838us/step - loss: 0.1324 - accuracy: 0.8747 - mae: 0.1324 - pearson_correlation: 0.5603 - euclidean_distance: 0.2150
Epoch 152/200
76/76 [==============================] - 0s 833us/step - loss: 0.1293 - accuracy: 0.8818 - mae: 0.1293 - pearson_correlation: 0.5689 - euclidean_distance: 0.2114
Epoch 153/200
76/76 [==============================] - 0s 832us/step - loss: 0.1275 - accuracy: 0.8818 - mae: 0.1275 - pearson_correlation: 0.5766 - euclidean_distance: 0.2081
Epoch 154/200
76/76 [==============================] - 0s 833us/step - loss: 0.1288 - accuracy: 0.8818 - mae: 0.1288 - pearson_correlation: 0.5830 - euclidean_distance: 0.2093
Epoch 155/200
76/76 [==============================] - 0s 836us/step - loss: 0.1295 - accuracy: 0.8844 - mae: 0.1295 - pearson_correlation: 0.5811 - euclidean_distance: 0.2109
Epoch 156/200
76/76 [==============================] - 0s 826us/step - loss: 0.1258 - accuracy: 0.8853 - mae: 0.1258 - pearson_correlation: 0.5825 - euclidean_distance: 0.2058
Epoch 157/200
76/76 [==============================] - 0s 829us/step - loss: 0.1284 - accuracy: 0.8862 - mae: 0.1284 - pearson_correlation: 0.5807 - euclidean_distance: 0.2086
Epoch 158/200
76/76 [==============================] - 0s 832us/step - loss: 0.1265 - accuracy: 0.8880 - mae: 0.1265 - pearson_correlation: 0.5842 - euclidean_distance: 0.2062
Epoch 159/200
76/76 [==============================] - 0s 836us/step - loss: 0.1272 - accuracy: 0.8835 - mae: 0.1272 - pearson_correlation: 0.5839 - euclidean_distance: 0.2073
Epoch 160/200
76/76 [==============================] - 0s 832us/step - loss: 0.1260 - accuracy: 0.8888 - mae: 0.1260 - pearson_correlation: 0.5911 - euclidean_distance: 0.2050
Epoch 161/200
76/76 [==============================] - 0s 836us/step - loss: 0.1284 - accuracy: 0.8893 - mae: 0.1284 - pearson_correlation: 0.5863 - euclidean_distance: 0.2095
Epoch 162/200
76/76 [==============================] - 0s 835us/step - loss: 0.1246 - accuracy: 0.8906 - mae: 0.1246 - pearson_correlation: 0.6033 - euclidean_distance: 0.2027
Epoch 163/200
76/76 [==============================] - 0s 835us/step - loss: 0.1223 - accuracy: 0.8955 - mae: 0.1223 - pearson_correlation: 0.6099 - euclidean_distance: 0.1981
Epoch 164/200
76/76 [==============================] - 0s 832us/step - loss: 0.1252 - accuracy: 0.8897 - mae: 0.1252 - pearson_correlation: 0.5918 - euclidean_distance: 0.2035
Epoch 165/200
76/76 [==============================] - 0s 836us/step - loss: 0.1243 - accuracy: 0.8946 - mae: 0.1243 - pearson_correlation: 0.5986 - euclidean_distance: 0.2027
Epoch 166/200
76/76 [==============================] - 0s 834us/step - loss: 0.1233 - accuracy: 0.8937 - mae: 0.1233 - pearson_correlation: 0.6026 - euclidean_distance: 0.2006
Epoch 167/200
76/76 [==============================] - 0s 834us/step - loss: 0.1219 - accuracy: 0.8946 - mae: 0.1219 - pearson_correlation: 0.6038 - euclidean_distance: 0.1984
Epoch 168/200
76/76 [==============================] - 0s 834us/step - loss: 0.1206 - accuracy: 0.8919 - mae: 0.1206 - pearson_correlation: 0.6121 - euclidean_distance: 0.1960
Epoch 169/200
76/76 [==============================] - 0s 836us/step - loss: 0.1254 - accuracy: 0.8963 - mae: 0.1254 - pearson_correlation: 0.6057 - euclidean_distance: 0.2036
Epoch 170/200
76/76 [==============================] - 0s 837us/step - loss: 0.1195 - accuracy: 0.8937 - mae: 0.1195 - pearson_correlation: 0.6158 - euclidean_distance: 0.1939
Epoch 171/200
76/76 [==============================] - 0s 837us/step - loss: 0.1208 - accuracy: 0.8963 - mae: 0.1208 - pearson_correlation: 0.6196 - euclidean_distance: 0.1959
Epoch 172/200
76/76 [==============================] - 0s 834us/step - loss: 0.1194 - accuracy: 0.8985 - mae: 0.1194 - pearson_correlation: 0.6181 - euclidean_distance: 0.1941
Epoch 173/200
76/76 [==============================] - 0s 833us/step - loss: 0.1175 - accuracy: 0.8972 - mae: 0.1175 - pearson_correlation: 0.6258 - euclidean_distance: 0.1912
Epoch 174/200
76/76 [==============================] - 0s 836us/step - loss: 0.1197 - accuracy: 0.9025 - mae: 0.1197 - pearson_correlation: 0.6180 - euclidean_distance: 0.1942
Epoch 175/200
76/76 [==============================] - 0s 834us/step - loss: 0.1206 - accuracy: 0.9025 - mae: 0.1206 - pearson_correlation: 0.6155 - euclidean_distance: 0.1951
Epoch 176/200
76/76 [==============================] - 0s 832us/step - loss: 0.1217 - accuracy: 0.9003 - mae: 0.1217 - pearson_correlation: 0.6113 - euclidean_distance: 0.1976
Epoch 177/200
76/76 [==============================] - 0s 831us/step - loss: 0.1199 - accuracy: 0.8968 - mae: 0.1199 - pearson_correlation: 0.6144 - euclidean_distance: 0.1945
Epoch 178/200
76/76 [==============================] - 0s 834us/step - loss: 0.1167 - accuracy: 0.9007 - mae: 0.1167 - pearson_correlation: 0.6254 - euclidean_distance: 0.1900
Epoch 179/200
76/76 [==============================] - 0s 836us/step - loss: 0.1189 - accuracy: 0.8977 - mae: 0.1189 - pearson_correlation: 0.6188 - euclidean_distance: 0.1934
Epoch 180/200
76/76 [==============================] - 0s 832us/step - loss: 0.1157 - accuracy: 0.8968 - mae: 0.1157 - pearson_correlation: 0.6263 - euclidean_distance: 0.1880
Epoch 181/200
76/76 [==============================] - 0s 836us/step - loss: 0.1134 - accuracy: 0.9056 - mae: 0.1134 - pearson_correlation: 0.6388 - euclidean_distance: 0.1842
Epoch 182/200
76/76 [==============================] - 0s 834us/step - loss: 0.1134 - accuracy: 0.9016 - mae: 0.1134 - pearson_correlation: 0.6374 - euclidean_distance: 0.1850
Epoch 183/200
76/76 [==============================] - 0s 873us/step - loss: 0.1159 - accuracy: 0.9025 - mae: 0.1159 - pearson_correlation: 0.6328 - euclidean_distance: 0.1883
Epoch 184/200
76/76 [==============================] - 0s 839us/step - loss: 0.1145 - accuracy: 0.9030 - mae: 0.1145 - pearson_correlation: 0.6431 - euclidean_distance: 0.1858
Epoch 185/200
76/76 [==============================] - 0s 837us/step - loss: 0.1129 - accuracy: 0.9021 - mae: 0.1129 - pearson_correlation: 0.6412 - euclidean_distance: 0.1834
Epoch 186/200
76/76 [==============================] - 0s 831us/step - loss: 0.1167 - accuracy: 0.9047 - mae: 0.1167 - pearson_correlation: 0.6299 - euclidean_distance: 0.1895
Epoch 187/200
76/76 [==============================] - 0s 833us/step - loss: 0.1133 - accuracy: 0.9056 - mae: 0.1133 - pearson_correlation: 0.6424 - euclidean_distance: 0.1840
Epoch 188/200
76/76 [==============================] - 0s 838us/step - loss: 0.1099 - accuracy: 0.9047 - mae: 0.1099 - pearson_correlation: 0.6497 - euclidean_distance: 0.1787
Epoch 189/200
76/76 [==============================] - 0s 831us/step - loss: 0.1153 - accuracy: 0.9087 - mae: 0.1153 - pearson_correlation: 0.6398 - euclidean_distance: 0.1867
Epoch 190/200
76/76 [==============================] - 0s 834us/step - loss: 0.1121 - accuracy: 0.9074 - mae: 0.1121 - pearson_correlation: 0.6433 - euclidean_distance: 0.1814
Epoch 191/200
76/76 [==============================] - 0s 832us/step - loss: 0.1087 - accuracy: 0.9078 - mae: 0.1087 - pearson_correlation: 0.6541 - euclidean_distance: 0.1766
Epoch 192/200
76/76 [==============================] - 0s 831us/step - loss: 0.1112 - accuracy: 0.9109 - mae: 0.1112 - pearson_correlation: 0.6516 - euclidean_distance: 0.1803
Epoch 193/200
76/76 [==============================] - 0s 866us/step - loss: 0.1119 - accuracy: 0.9100 - mae: 0.1119 - pearson_correlation: 0.6531 - euclidean_distance: 0.1810
Epoch 194/200
76/76 [==============================] - 0s 836us/step - loss: 0.1139 - accuracy: 0.9109 - mae: 0.1139 - pearson_correlation: 0.6476 - euclidean_distance: 0.1842
Epoch 195/200
76/76 [==============================] - 0s 833us/step - loss: 0.1130 - accuracy: 0.9078 - mae: 0.1130 - pearson_correlation: 0.6484 - euclidean_distance: 0.1833
Epoch 196/200
76/76 [==============================] - 0s 840us/step - loss: 0.1103 - accuracy: 0.9118 - mae: 0.1103 - pearson_correlation: 0.6547 - euclidean_distance: 0.1787
Epoch 197/200
76/76 [==============================] - 0s 833us/step - loss: 0.1135 - accuracy: 0.9127 - mae: 0.1135 - pearson_correlation: 0.6498 - euclidean_distance: 0.1838
Epoch 198/200
76/76 [==============================] - 0s 829us/step - loss: 0.1101 - accuracy: 0.9149 - mae: 0.1101 - pearson_correlation: 0.6600 - euclidean_distance: 0.1783
Epoch 199/200
76/76 [==============================] - 0s 838us/step - loss: 0.1099 - accuracy: 0.9113 - mae: 0.1099 - pearson_correlation: 0.6615 - euclidean_distance: 0.1784
Epoch 200/200
76/76 [==============================] - 0s 844us/step - loss: 0.1110 - accuracy: 0.9127 - mae: 0.1110 - pearson_correlation: 0.6559 - euclidean_distance: 0.1796
38/38 [==============================] - 0s 502us/step
Epoch 1/200
76/76 [==============================] - 1s 870us/step - loss: 0.7832 - accuracy: 0.6019 - mae: 0.7832 - pearson_correlation: 0.1733 - euclidean_distance: 1.1428
Epoch 2/200
76/76 [==============================] - 0s 834us/step - loss: 0.7761 - accuracy: 0.6239 - mae: 0.7761 - pearson_correlation: 0.1882 - euclidean_distance: 1.1318
Epoch 3/200
76/76 [==============================] - 0s 834us/step - loss: 0.7653 - accuracy: 0.6243 - mae: 0.7653 - pearson_correlation: 0.1857 - euclidean_distance: 1.1172
Epoch 4/200
76/76 [==============================] - 0s 847us/step - loss: 0.7580 - accuracy: 0.6190 - mae: 0.7580 - pearson_correlation: 0.1796 - euclidean_distance: 1.1075
Epoch 5/200
76/76 [==============================] - 0s 833us/step - loss: 0.7479 - accuracy: 0.6261 - mae: 0.7479 - pearson_correlation: 0.1874 - euclidean_distance: 1.0930
Epoch 6/200
76/76 [==============================] - 0s 844us/step - loss: 0.7382 - accuracy: 0.6354 - mae: 0.7382 - pearson_correlation: 0.1957 - euclidean_distance: 1.0793
Epoch 7/200
76/76 [==============================] - 0s 834us/step - loss: 0.7285 - accuracy: 0.6384 - mae: 0.7285 - pearson_correlation: 0.1828 - euclidean_distance: 1.0659
Epoch 8/200
76/76 [==============================] - 0s 837us/step - loss: 0.7179 - accuracy: 0.6393 - mae: 0.7179 - pearson_correlation: 0.1967 - euclidean_distance: 1.0512
Epoch 9/200
76/76 [==============================] - 0s 837us/step - loss: 0.7095 - accuracy: 0.6490 - mae: 0.7095 - pearson_correlation: 0.1856 - euclidean_distance: 1.0400
Epoch 10/200
76/76 [==============================] - 0s 845us/step - loss: 0.6990 - accuracy: 0.6499 - mae: 0.6990 - pearson_correlation: 0.1973 - euclidean_distance: 1.0250
Epoch 11/200
76/76 [==============================] - 0s 913us/step - loss: 0.6902 - accuracy: 0.6530 - mae: 0.6902 - pearson_correlation: 0.1992 - euclidean_distance: 1.0127
Epoch 12/200
76/76 [==============================] - 0s 911us/step - loss: 0.6799 - accuracy: 0.6446 - mae: 0.6799 - pearson_correlation: 0.1934 - euclidean_distance: 0.9990
Epoch 13/200
76/76 [==============================] - 0s 902us/step - loss: 0.6693 - accuracy: 0.6574 - mae: 0.6693 - pearson_correlation: 0.2023 - euclidean_distance: 0.9836
Epoch 14/200
76/76 [==============================] - 0s 922us/step - loss: 0.6579 - accuracy: 0.6623 - mae: 0.6579 - pearson_correlation: 0.2098 - euclidean_distance: 0.9680
Epoch 15/200
76/76 [==============================] - 0s 884us/step - loss: 0.6485 - accuracy: 0.6565 - mae: 0.6485 - pearson_correlation: 0.2045 - euclidean_distance: 0.9555
Epoch 16/200
76/76 [==============================] - 0s 943us/step - loss: 0.6381 - accuracy: 0.6592 - mae: 0.6381 - pearson_correlation: 0.2039 - euclidean_distance: 0.9410
Epoch 17/200
76/76 [==============================] - 0s 923us/step - loss: 0.6272 - accuracy: 0.6702 - mae: 0.6272 - pearson_correlation: 0.2121 - euclidean_distance: 0.9256
Epoch 18/200
76/76 [==============================] - 0s 937us/step - loss: 0.6160 - accuracy: 0.6609 - mae: 0.6160 - pearson_correlation: 0.2144 - euclidean_distance: 0.9102
Epoch 19/200
76/76 [==============================] - 0s 959us/step - loss: 0.6071 - accuracy: 0.6724 - mae: 0.6071 - pearson_correlation: 0.2146 - euclidean_distance: 0.8979
Epoch 20/200
76/76 [==============================] - 0s 939us/step - loss: 0.5972 - accuracy: 0.6759 - mae: 0.5972 - pearson_correlation: 0.2088 - euclidean_distance: 0.8842
Epoch 21/200
76/76 [==============================] - 0s 950us/step - loss: 0.5872 - accuracy: 0.6821 - mae: 0.5872 - pearson_correlation: 0.2182 - euclidean_distance: 0.8702
Epoch 22/200
76/76 [==============================] - 0s 904us/step - loss: 0.5748 - accuracy: 0.6790 - mae: 0.5748 - pearson_correlation: 0.2174 - euclidean_distance: 0.8529
Epoch 23/200
76/76 [==============================] - 0s 846us/step - loss: 0.5665 - accuracy: 0.6869 - mae: 0.5665 - pearson_correlation: 0.2154 - euclidean_distance: 0.8414
Epoch 24/200
76/76 [==============================] - 0s 829us/step - loss: 0.5563 - accuracy: 0.6918 - mae: 0.5563 - pearson_correlation: 0.2253 - euclidean_distance: 0.8267
Epoch 25/200
76/76 [==============================] - 0s 845us/step - loss: 0.5475 - accuracy: 0.6847 - mae: 0.5475 - pearson_correlation: 0.2279 - euclidean_distance: 0.8149
Epoch 26/200
76/76 [==============================] - 0s 838us/step - loss: 0.5345 - accuracy: 0.6918 - mae: 0.5345 - pearson_correlation: 0.2321 - euclidean_distance: 0.7968
Epoch 27/200
76/76 [==============================] - 0s 840us/step - loss: 0.5235 - accuracy: 0.6975 - mae: 0.5235 - pearson_correlation: 0.2358 - euclidean_distance: 0.7816
Epoch 28/200
76/76 [==============================] - 0s 832us/step - loss: 0.5164 - accuracy: 0.6909 - mae: 0.5164 - pearson_correlation: 0.2350 - euclidean_distance: 0.7714
Epoch 29/200
76/76 [==============================] - 0s 834us/step - loss: 0.5080 - accuracy: 0.6905 - mae: 0.5080 - pearson_correlation: 0.2372 - euclidean_distance: 0.7596
Epoch 30/200
76/76 [==============================] - 0s 830us/step - loss: 0.4972 - accuracy: 0.6940 - mae: 0.4972 - pearson_correlation: 0.2424 - euclidean_distance: 0.7442
Epoch 31/200
76/76 [==============================] - 0s 825us/step - loss: 0.4861 - accuracy: 0.6975 - mae: 0.4861 - pearson_correlation: 0.2394 - euclidean_distance: 0.7283
Epoch 32/200
76/76 [==============================] - 0s 829us/step - loss: 0.4781 - accuracy: 0.7015 - mae: 0.4781 - pearson_correlation: 0.2505 - euclidean_distance: 0.7170
Epoch 33/200
76/76 [==============================] - 0s 826us/step - loss: 0.4685 - accuracy: 0.7028 - mae: 0.4685 - pearson_correlation: 0.2483 - euclidean_distance: 0.7032
Epoch 34/200
76/76 [==============================] - 0s 828us/step - loss: 0.4604 - accuracy: 0.7019 - mae: 0.4604 - pearson_correlation: 0.2540 - euclidean_distance: 0.6919
Epoch 35/200
76/76 [==============================] - 0s 829us/step - loss: 0.4505 - accuracy: 0.7033 - mae: 0.4505 - pearson_correlation: 0.2600 - euclidean_distance: 0.6781
Epoch 36/200
76/76 [==============================] - 0s 833us/step - loss: 0.4437 - accuracy: 0.7138 - mae: 0.4437 - pearson_correlation: 0.2613 - euclidean_distance: 0.6676
Epoch 37/200
76/76 [==============================] - 0s 826us/step - loss: 0.4357 - accuracy: 0.7041 - mae: 0.4357 - pearson_correlation: 0.2580 - euclidean_distance: 0.6574
Epoch 38/200
76/76 [==============================] - 0s 834us/step - loss: 0.4257 - accuracy: 0.7222 - mae: 0.4257 - pearson_correlation: 0.2710 - euclidean_distance: 0.6424
Epoch 39/200
76/76 [==============================] - 0s 830us/step - loss: 0.4184 - accuracy: 0.7183 - mae: 0.4184 - pearson_correlation: 0.2655 - euclidean_distance: 0.6319
Epoch 40/200
76/76 [==============================] - 0s 831us/step - loss: 0.4113 - accuracy: 0.7156 - mae: 0.4113 - pearson_correlation: 0.2731 - euclidean_distance: 0.6223
Epoch 41/200
76/76 [==============================] - 0s 833us/step - loss: 0.4021 - accuracy: 0.7169 - mae: 0.4021 - pearson_correlation: 0.2738 - euclidean_distance: 0.6096
Epoch 42/200
76/76 [==============================] - 0s 833us/step - loss: 0.3953 - accuracy: 0.7138 - mae: 0.3953 - pearson_correlation: 0.2761 - euclidean_distance: 0.5993
Epoch 43/200
76/76 [==============================] - 0s 833us/step - loss: 0.3869 - accuracy: 0.7116 - mae: 0.3869 - pearson_correlation: 0.2808 - euclidean_distance: 0.5875
Epoch 44/200
76/76 [==============================] - 0s 828us/step - loss: 0.3810 - accuracy: 0.7169 - mae: 0.3810 - pearson_correlation: 0.2837 - euclidean_distance: 0.5787
Epoch 45/200
76/76 [==============================] - 0s 831us/step - loss: 0.3719 - accuracy: 0.7222 - mae: 0.3719 - pearson_correlation: 0.2903 - euclidean_distance: 0.5665
Epoch 46/200
76/76 [==============================] - 0s 826us/step - loss: 0.3653 - accuracy: 0.7183 - mae: 0.3653 - pearson_correlation: 0.2939 - euclidean_distance: 0.5566
Epoch 47/200
76/76 [==============================] - 0s 834us/step - loss: 0.3605 - accuracy: 0.7235 - mae: 0.3605 - pearson_correlation: 0.2986 - euclidean_distance: 0.5503
Epoch 48/200
76/76 [==============================] - 0s 834us/step - loss: 0.3517 - accuracy: 0.7306 - mae: 0.3517 - pearson_correlation: 0.3064 - euclidean_distance: 0.5368
Epoch 49/200
76/76 [==============================] - 0s 827us/step - loss: 0.3490 - accuracy: 0.7275 - mae: 0.3490 - pearson_correlation: 0.2995 - euclidean_distance: 0.5329
Epoch 50/200
76/76 [==============================] - 0s 827us/step - loss: 0.3429 - accuracy: 0.7244 - mae: 0.3429 - pearson_correlation: 0.3108 - euclidean_distance: 0.5241
Epoch 51/200
76/76 [==============================] - 0s 828us/step - loss: 0.3369 - accuracy: 0.7280 - mae: 0.3369 - pearson_correlation: 0.3078 - euclidean_distance: 0.5156
Epoch 52/200
76/76 [==============================] - 0s 830us/step - loss: 0.3298 - accuracy: 0.7293 - mae: 0.3298 - pearson_correlation: 0.3196 - euclidean_distance: 0.5045
Epoch 53/200
76/76 [==============================] - 0s 835us/step - loss: 0.3254 - accuracy: 0.7350 - mae: 0.3254 - pearson_correlation: 0.3171 - euclidean_distance: 0.4978
Epoch 54/200
76/76 [==============================] - 0s 828us/step - loss: 0.3216 - accuracy: 0.7266 - mae: 0.3216 - pearson_correlation: 0.3207 - euclidean_distance: 0.4926
Epoch 55/200
76/76 [==============================] - 0s 828us/step - loss: 0.3169 - accuracy: 0.7293 - mae: 0.3169 - pearson_correlation: 0.3245 - euclidean_distance: 0.4864
Epoch 56/200
76/76 [==============================] - 0s 852us/step - loss: 0.3104 - accuracy: 0.7280 - mae: 0.3104 - pearson_correlation: 0.3296 - euclidean_distance: 0.4775
Epoch 57/200
76/76 [==============================] - 0s 839us/step - loss: 0.3060 - accuracy: 0.7359 - mae: 0.3060 - pearson_correlation: 0.3332 - euclidean_distance: 0.4694
Epoch 58/200
76/76 [==============================] - 0s 827us/step - loss: 0.3008 - accuracy: 0.7297 - mae: 0.3008 - pearson_correlation: 0.3390 - euclidean_distance: 0.4634
Epoch 59/200
76/76 [==============================] - 0s 829us/step - loss: 0.2951 - accuracy: 0.7359 - mae: 0.2951 - pearson_correlation: 0.3432 - euclidean_distance: 0.4540
Epoch 60/200
76/76 [==============================] - 0s 827us/step - loss: 0.2918 - accuracy: 0.7394 - mae: 0.2918 - pearson_correlation: 0.3500 - euclidean_distance: 0.4496
Epoch 61/200
76/76 [==============================] - 0s 832us/step - loss: 0.2879 - accuracy: 0.7385 - mae: 0.2879 - pearson_correlation: 0.3501 - euclidean_distance: 0.4434
Epoch 62/200
76/76 [==============================] - 0s 833us/step - loss: 0.2829 - accuracy: 0.7390 - mae: 0.2829 - pearson_correlation: 0.3536 - euclidean_distance: 0.4363
Epoch 63/200
76/76 [==============================] - 0s 837us/step - loss: 0.2793 - accuracy: 0.7416 - mae: 0.2793 - pearson_correlation: 0.3547 - euclidean_distance: 0.4314
Epoch 64/200
76/76 [==============================] - 0s 822us/step - loss: 0.2765 - accuracy: 0.7403 - mae: 0.2765 - pearson_correlation: 0.3643 - euclidean_distance: 0.4262
Epoch 65/200
76/76 [==============================] - 0s 831us/step - loss: 0.2738 - accuracy: 0.7434 - mae: 0.2738 - pearson_correlation: 0.3665 - euclidean_distance: 0.4229
Epoch 66/200
76/76 [==============================] - 0s 824us/step - loss: 0.2708 - accuracy: 0.7487 - mae: 0.2708 - pearson_correlation: 0.3610 - euclidean_distance: 0.4184
Epoch 67/200
76/76 [==============================] - 0s 827us/step - loss: 0.2642 - accuracy: 0.7482 - mae: 0.2642 - pearson_correlation: 0.3702 - euclidean_distance: 0.4088
Epoch 68/200
76/76 [==============================] - 0s 831us/step - loss: 0.2630 - accuracy: 0.7557 - mae: 0.2630 - pearson_correlation: 0.3765 - euclidean_distance: 0.4068
Epoch 69/200
76/76 [==============================] - 0s 824us/step - loss: 0.2604 - accuracy: 0.7465 - mae: 0.2604 - pearson_correlation: 0.3751 - euclidean_distance: 0.4030
Epoch 70/200
76/76 [==============================] - 0s 825us/step - loss: 0.2551 - accuracy: 0.7496 - mae: 0.2551 - pearson_correlation: 0.3842 - euclidean_distance: 0.3953
Epoch 71/200
76/76 [==============================] - 0s 829us/step - loss: 0.2526 - accuracy: 0.7562 - mae: 0.2526 - pearson_correlation: 0.3853 - euclidean_distance: 0.3915
Epoch 72/200
76/76 [==============================] - 0s 824us/step - loss: 0.2476 - accuracy: 0.7553 - mae: 0.2476 - pearson_correlation: 0.3928 - euclidean_distance: 0.3842
Epoch 73/200
76/76 [==============================] - 0s 825us/step - loss: 0.2462 - accuracy: 0.7584 - mae: 0.2462 - pearson_correlation: 0.4025 - euclidean_distance: 0.3816
Epoch 74/200
76/76 [==============================] - 0s 818us/step - loss: 0.2419 - accuracy: 0.7584 - mae: 0.2419 - pearson_correlation: 0.3993 - euclidean_distance: 0.3765
Epoch 75/200
76/76 [==============================] - 0s 821us/step - loss: 0.2393 - accuracy: 0.7544 - mae: 0.2393 - pearson_correlation: 0.3974 - euclidean_distance: 0.3724
Epoch 76/200
76/76 [==============================] - 0s 820us/step - loss: 0.2369 - accuracy: 0.7522 - mae: 0.2369 - pearson_correlation: 0.3986 - euclidean_distance: 0.3692
Epoch 77/200
76/76 [==============================] - 0s 829us/step - loss: 0.2334 - accuracy: 0.7579 - mae: 0.2334 - pearson_correlation: 0.4015 - euclidean_distance: 0.3645
Epoch 78/200
76/76 [==============================] - 0s 824us/step - loss: 0.2322 - accuracy: 0.7601 - mae: 0.2322 - pearson_correlation: 0.4077 - euclidean_distance: 0.3619
Epoch 79/200
76/76 [==============================] - 0s 826us/step - loss: 0.2291 - accuracy: 0.7676 - mae: 0.2291 - pearson_correlation: 0.4127 - euclidean_distance: 0.3571
Epoch 80/200
76/76 [==============================] - 0s 822us/step - loss: 0.2280 - accuracy: 0.7751 - mae: 0.2280 - pearson_correlation: 0.4092 - euclidean_distance: 0.3557
Epoch 81/200
76/76 [==============================] - 0s 831us/step - loss: 0.2221 - accuracy: 0.7663 - mae: 0.2221 - pearson_correlation: 0.4118 - euclidean_distance: 0.3484
Epoch 82/200
76/76 [==============================] - 0s 829us/step - loss: 0.2202 - accuracy: 0.7707 - mae: 0.2202 - pearson_correlation: 0.4225 - euclidean_distance: 0.3441
Epoch 83/200
76/76 [==============================] - 0s 822us/step - loss: 0.2181 - accuracy: 0.7716 - mae: 0.2181 - pearson_correlation: 0.4218 - euclidean_distance: 0.3423
Epoch 84/200
76/76 [==============================] - 0s 827us/step - loss: 0.2147 - accuracy: 0.7725 - mae: 0.2147 - pearson_correlation: 0.4274 - euclidean_distance: 0.3371
Epoch 85/200
76/76 [==============================] - 0s 821us/step - loss: 0.2125 - accuracy: 0.7756 - mae: 0.2125 - pearson_correlation: 0.4298 - euclidean_distance: 0.3336
Epoch 86/200
76/76 [==============================] - 0s 828us/step - loss: 0.2113 - accuracy: 0.7809 - mae: 0.2113 - pearson_correlation: 0.4273 - euclidean_distance: 0.3317
Epoch 87/200
76/76 [==============================] - 0s 830us/step - loss: 0.2080 - accuracy: 0.7862 - mae: 0.2080 - pearson_correlation: 0.4395 - euclidean_distance: 0.3261
Epoch 88/200
76/76 [==============================] - 0s 830us/step - loss: 0.2082 - accuracy: 0.7817 - mae: 0.2082 - pearson_correlation: 0.4311 - euclidean_distance: 0.3268
Epoch 89/200
76/76 [==============================] - 0s 830us/step - loss: 0.2047 - accuracy: 0.7840 - mae: 0.2047 - pearson_correlation: 0.4335 - euclidean_distance: 0.3227
Epoch 90/200
76/76 [==============================] - 0s 825us/step - loss: 0.2019 - accuracy: 0.7870 - mae: 0.2019 - pearson_correlation: 0.4440 - euclidean_distance: 0.3173
Epoch 91/200
76/76 [==============================] - 0s 828us/step - loss: 0.1992 - accuracy: 0.7998 - mae: 0.1992 - pearson_correlation: 0.4480 - euclidean_distance: 0.3141
Epoch 92/200
76/76 [==============================] - 0s 831us/step - loss: 0.1962 - accuracy: 0.7928 - mae: 0.1962 - pearson_correlation: 0.4494 - euclidean_distance: 0.3104
Epoch 93/200
76/76 [==============================] - 0s 830us/step - loss: 0.1951 - accuracy: 0.8038 - mae: 0.1951 - pearson_correlation: 0.4492 - euclidean_distance: 0.3082
Epoch 94/200
76/76 [==============================] - 0s 833us/step - loss: 0.1963 - accuracy: 0.8091 - mae: 0.1963 - pearson_correlation: 0.4479 - euclidean_distance: 0.3105
Epoch 95/200
76/76 [==============================] - 0s 827us/step - loss: 0.1930 - accuracy: 0.8113 - mae: 0.1930 - pearson_correlation: 0.4581 - euclidean_distance: 0.3041
Epoch 96/200
76/76 [==============================] - 0s 824us/step - loss: 0.1903 - accuracy: 0.8267 - mae: 0.1903 - pearson_correlation: 0.4592 - euclidean_distance: 0.3021
Epoch 97/200
76/76 [==============================] - 0s 821us/step - loss: 0.1880 - accuracy: 0.8263 - mae: 0.1880 - pearson_correlation: 0.4585 - euclidean_distance: 0.2988
Epoch 98/200
76/76 [==============================] - 0s 819us/step - loss: 0.1884 - accuracy: 0.8342 - mae: 0.1884 - pearson_correlation: 0.4605 - euclidean_distance: 0.2986
Epoch 99/200
76/76 [==============================] - 0s 830us/step - loss: 0.1859 - accuracy: 0.8444 - mae: 0.1859 - pearson_correlation: 0.4628 - euclidean_distance: 0.2946
Epoch 100/200
76/76 [==============================] - 0s 824us/step - loss: 0.1848 - accuracy: 0.8391 - mae: 0.1848 - pearson_correlation: 0.4699 - euclidean_distance: 0.2927
Epoch 101/200
76/76 [==============================] - 0s 826us/step - loss: 0.1818 - accuracy: 0.8554 - mae: 0.1818 - pearson_correlation: 0.4761 - euclidean_distance: 0.2888
Epoch 102/200
76/76 [==============================] - 0s 828us/step - loss: 0.1785 - accuracy: 0.8563 - mae: 0.1785 - pearson_correlation: 0.4761 - euclidean_distance: 0.2844
Epoch 103/200
76/76 [==============================] - 0s 827us/step - loss: 0.1774 - accuracy: 0.8620 - mae: 0.1774 - pearson_correlation: 0.4772 - euclidean_distance: 0.2822
Epoch 104/200
76/76 [==============================] - 0s 830us/step - loss: 0.1777 - accuracy: 0.8655 - mae: 0.1777 - pearson_correlation: 0.4765 - euclidean_distance: 0.2837
Epoch 105/200
76/76 [==============================] - 0s 833us/step - loss: 0.1753 - accuracy: 0.8774 - mae: 0.1753 - pearson_correlation: 0.4839 - euclidean_distance: 0.2797
Epoch 106/200
76/76 [==============================] - 0s 828us/step - loss: 0.1748 - accuracy: 0.8792 - mae: 0.1748 - pearson_correlation: 0.4883 - euclidean_distance: 0.2778
Epoch 107/200
76/76 [==============================] - 0s 828us/step - loss: 0.1704 - accuracy: 0.8854 - mae: 0.1704 - pearson_correlation: 0.4996 - euclidean_distance: 0.2720
Epoch 108/200
76/76 [==============================] - 0s 831us/step - loss: 0.1711 - accuracy: 0.8840 - mae: 0.1711 - pearson_correlation: 0.4988 - euclidean_distance: 0.2726
Epoch 109/200
76/76 [==============================] - 0s 825us/step - loss: 0.1698 - accuracy: 0.8854 - mae: 0.1698 - pearson_correlation: 0.4964 - euclidean_distance: 0.2717
Epoch 110/200
76/76 [==============================] - 0s 823us/step - loss: 0.1684 - accuracy: 0.8986 - mae: 0.1684 - pearson_correlation: 0.4980 - euclidean_distance: 0.2689
Epoch 111/200
76/76 [==============================] - 0s 823us/step - loss: 0.1654 - accuracy: 0.8942 - mae: 0.1654 - pearson_correlation: 0.5050 - euclidean_distance: 0.2649
Epoch 112/200
76/76 [==============================] - 0s 830us/step - loss: 0.1648 - accuracy: 0.9043 - mae: 0.1648 - pearson_correlation: 0.5080 - euclidean_distance: 0.2637
Epoch 113/200
76/76 [==============================] - 0s 828us/step - loss: 0.1655 - accuracy: 0.8990 - mae: 0.1655 - pearson_correlation: 0.5010 - euclidean_distance: 0.2648
Epoch 114/200
76/76 [==============================] - 0s 826us/step - loss: 0.1646 - accuracy: 0.8959 - mae: 0.1646 - pearson_correlation: 0.5051 - euclidean_distance: 0.2630
Epoch 115/200
76/76 [==============================] - 0s 830us/step - loss: 0.1618 - accuracy: 0.9048 - mae: 0.1618 - pearson_correlation: 0.5148 - euclidean_distance: 0.2596
Epoch 116/200
76/76 [==============================] - 0s 828us/step - loss: 0.1597 - accuracy: 0.9087 - mae: 0.1597 - pearson_correlation: 0.5223 - euclidean_distance: 0.2554
Epoch 117/200
76/76 [==============================] - 0s 826us/step - loss: 0.1580 - accuracy: 0.9123 - mae: 0.1580 - pearson_correlation: 0.5225 - euclidean_distance: 0.2531
Epoch 118/200
76/76 [==============================] - 0s 825us/step - loss: 0.1590 - accuracy: 0.9087 - mae: 0.1590 - pearson_correlation: 0.5277 - euclidean_distance: 0.2553
Epoch 119/200
76/76 [==============================] - 0s 863us/step - loss: 0.1572 - accuracy: 0.9074 - mae: 0.1572 - pearson_correlation: 0.5286 - euclidean_distance: 0.2524
Epoch 120/200
76/76 [==============================] - 0s 831us/step - loss: 0.1569 - accuracy: 0.9078 - mae: 0.1569 - pearson_correlation: 0.5252 - euclidean_distance: 0.2519
Epoch 121/200
76/76 [==============================] - 0s 834us/step - loss: 0.1555 - accuracy: 0.9180 - mae: 0.1555 - pearson_correlation: 0.5278 - euclidean_distance: 0.2492
Epoch 122/200
76/76 [==============================] - 0s 833us/step - loss: 0.1539 - accuracy: 0.9180 - mae: 0.1539 - pearson_correlation: 0.5341 - euclidean_distance: 0.2469
Epoch 123/200
76/76 [==============================] - 0s 836us/step - loss: 0.1519 - accuracy: 0.9167 - mae: 0.1519 - pearson_correlation: 0.5452 - euclidean_distance: 0.2437
Epoch 124/200
76/76 [==============================] - 0s 850us/step - loss: 0.1531 - accuracy: 0.9198 - mae: 0.1531 - pearson_correlation: 0.5459 - euclidean_distance: 0.2453
Epoch 125/200
76/76 [==============================] - 0s 831us/step - loss: 0.1534 - accuracy: 0.9224 - mae: 0.1534 - pearson_correlation: 0.5414 - euclidean_distance: 0.2465
Epoch 126/200
76/76 [==============================] - 0s 830us/step - loss: 0.1513 - accuracy: 0.9246 - mae: 0.1513 - pearson_correlation: 0.5454 - euclidean_distance: 0.2425
Epoch 127/200
76/76 [==============================] - 0s 835us/step - loss: 0.1489 - accuracy: 0.9250 - mae: 0.1489 - pearson_correlation: 0.5546 - euclidean_distance: 0.2394
Epoch 128/200
76/76 [==============================] - 0s 825us/step - loss: 0.1484 - accuracy: 0.9242 - mae: 0.1484 - pearson_correlation: 0.5504 - euclidean_distance: 0.2390
Epoch 129/200
76/76 [==============================] - 0s 827us/step - loss: 0.1472 - accuracy: 0.9242 - mae: 0.1472 - pearson_correlation: 0.5581 - euclidean_distance: 0.2371
Epoch 130/200
76/76 [==============================] - 0s 829us/step - loss: 0.1479 - accuracy: 0.9259 - mae: 0.1479 - pearson_correlation: 0.5540 - euclidean_distance: 0.2374
Epoch 131/200
76/76 [==============================] - 0s 830us/step - loss: 0.1459 - accuracy: 0.9290 - mae: 0.1459 - pearson_correlation: 0.5627 - euclidean_distance: 0.2342
Epoch 132/200
76/76 [==============================] - 0s 826us/step - loss: 0.1451 - accuracy: 0.9246 - mae: 0.1451 - pearson_correlation: 0.5673 - euclidean_distance: 0.2338
Epoch 133/200
76/76 [==============================] - 0s 827us/step - loss: 0.1425 - accuracy: 0.9255 - mae: 0.1425 - pearson_correlation: 0.5724 - euclidean_distance: 0.2290
Epoch 134/200
76/76 [==============================] - 0s 831us/step - loss: 0.1448 - accuracy: 0.9303 - mae: 0.1448 - pearson_correlation: 0.5667 - euclidean_distance: 0.2330
Epoch 135/200
76/76 [==============================] - 0s 833us/step - loss: 0.1430 - accuracy: 0.9281 - mae: 0.1430 - pearson_correlation: 0.5722 - euclidean_distance: 0.2295
Epoch 136/200
76/76 [==============================] - 0s 828us/step - loss: 0.1408 - accuracy: 0.9264 - mae: 0.1408 - pearson_correlation: 0.5811 - euclidean_distance: 0.2263
Epoch 137/200
76/76 [==============================] - 0s 824us/step - loss: 0.1404 - accuracy: 0.9330 - mae: 0.1404 - pearson_correlation: 0.5826 - euclidean_distance: 0.2255
Epoch 138/200
76/76 [==============================] - 0s 824us/step - loss: 0.1399 - accuracy: 0.9295 - mae: 0.1399 - pearson_correlation: 0.5843 - euclidean_distance: 0.2251
Epoch 139/200
76/76 [==============================] - 0s 826us/step - loss: 0.1371 - accuracy: 0.9277 - mae: 0.1371 - pearson_correlation: 0.5912 - euclidean_distance: 0.2215
Epoch 140/200
76/76 [==============================] - 0s 832us/step - loss: 0.1373 - accuracy: 0.9317 - mae: 0.1373 - pearson_correlation: 0.5978 - euclidean_distance: 0.2209
Epoch 141/200
76/76 [==============================] - 0s 835us/step - loss: 0.1375 - accuracy: 0.9281 - mae: 0.1375 - pearson_correlation: 0.5893 - euclidean_distance: 0.2220
Epoch 142/200
76/76 [==============================] - 0s 824us/step - loss: 0.1363 - accuracy: 0.9308 - mae: 0.1363 - pearson_correlation: 0.5936 - euclidean_distance: 0.2195
Epoch 143/200
76/76 [==============================] - 0s 840us/step - loss: 0.1345 - accuracy: 0.9347 - mae: 0.1345 - pearson_correlation: 0.6001 - euclidean_distance: 0.2165
Epoch 144/200
76/76 [==============================] - 0s 827us/step - loss: 0.1339 - accuracy: 0.9321 - mae: 0.1339 - pearson_correlation: 0.6018 - euclidean_distance: 0.2161
Epoch 145/200
76/76 [==============================] - 0s 831us/step - loss: 0.1318 - accuracy: 0.9374 - mae: 0.1318 - pearson_correlation: 0.6135 - euclidean_distance: 0.2128
Epoch 146/200
76/76 [==============================] - 0s 824us/step - loss: 0.1349 - accuracy: 0.9361 - mae: 0.1349 - pearson_correlation: 0.6001 - euclidean_distance: 0.2164
Epoch 147/200
76/76 [==============================] - 0s 831us/step - loss: 0.1335 - accuracy: 0.9361 - mae: 0.1335 - pearson_correlation: 0.6079 - euclidean_distance: 0.2152
Epoch 148/200
76/76 [==============================] - 0s 833us/step - loss: 0.1293 - accuracy: 0.9352 - mae: 0.1293 - pearson_correlation: 0.6196 - euclidean_distance: 0.2087
Epoch 149/200
76/76 [==============================] - 0s 827us/step - loss: 0.1315 - accuracy: 0.9369 - mae: 0.1315 - pearson_correlation: 0.6176 - euclidean_distance: 0.2113
Epoch 150/200
76/76 [==============================] - 0s 830us/step - loss: 0.1300 - accuracy: 0.9378 - mae: 0.1300 - pearson_correlation: 0.6165 - euclidean_distance: 0.2098
Epoch 151/200
76/76 [==============================] - 0s 822us/step - loss: 0.1278 - accuracy: 0.9347 - mae: 0.1278 - pearson_correlation: 0.6268 - euclidean_distance: 0.2059
Epoch 152/200
76/76 [==============================] - 0s 831us/step - loss: 0.1255 - accuracy: 0.9334 - mae: 0.1255 - pearson_correlation: 0.6254 - euclidean_distance: 0.2029
Epoch 153/200
76/76 [==============================] - 0s 834us/step - loss: 0.1295 - accuracy: 0.9343 - mae: 0.1295 - pearson_correlation: 0.6191 - euclidean_distance: 0.2086
Epoch 154/200
76/76 [==============================] - 0s 829us/step - loss: 0.1277 - accuracy: 0.9303 - mae: 0.1277 - pearson_correlation: 0.6217 - euclidean_distance: 0.2060
Epoch 155/200
76/76 [==============================] - 0s 837us/step - loss: 0.1267 - accuracy: 0.9343 - mae: 0.1267 - pearson_correlation: 0.6256 - euclidean_distance: 0.2038
Epoch 156/200
76/76 [==============================] - 0s 832us/step - loss: 0.1249 - accuracy: 0.9369 - mae: 0.1249 - pearson_correlation: 0.6390 - euclidean_distance: 0.2010
Epoch 157/200
76/76 [==============================] - 0s 831us/step - loss: 0.1253 - accuracy: 0.9343 - mae: 0.1253 - pearson_correlation: 0.6349 - euclidean_distance: 0.2018
Epoch 158/200
76/76 [==============================] - 0s 834us/step - loss: 0.1234 - accuracy: 0.9396 - mae: 0.1234 - pearson_correlation: 0.6435 - euclidean_distance: 0.1988
Epoch 159/200
76/76 [==============================] - 0s 830us/step - loss: 0.1226 - accuracy: 0.9383 - mae: 0.1226 - pearson_correlation: 0.6478 - euclidean_distance: 0.1965
Epoch 160/200
76/76 [==============================] - 0s 830us/step - loss: 0.1237 - accuracy: 0.9414 - mae: 0.1237 - pearson_correlation: 0.6410 - euclidean_distance: 0.1995
Epoch 161/200
76/76 [==============================] - 0s 832us/step - loss: 0.1212 - accuracy: 0.9409 - mae: 0.1212 - pearson_correlation: 0.6509 - euclidean_distance: 0.1951
Epoch 162/200
76/76 [==============================] - 0s 832us/step - loss: 0.1200 - accuracy: 0.9383 - mae: 0.1200 - pearson_correlation: 0.6521 - euclidean_distance: 0.1931
Epoch 163/200
76/76 [==============================] - 0s 827us/step - loss: 0.1183 - accuracy: 0.9422 - mae: 0.1183 - pearson_correlation: 0.6548 - euclidean_distance: 0.1913
Epoch 164/200
76/76 [==============================] - 0s 833us/step - loss: 0.1207 - accuracy: 0.9427 - mae: 0.1207 - pearson_correlation: 0.6493 - euclidean_distance: 0.1947
Epoch 165/200
76/76 [==============================] - 0s 831us/step - loss: 0.1193 - accuracy: 0.9422 - mae: 0.1193 - pearson_correlation: 0.6589 - euclidean_distance: 0.1922
Epoch 166/200
76/76 [==============================] - 0s 835us/step - loss: 0.1194 - accuracy: 0.9422 - mae: 0.1194 - pearson_correlation: 0.6510 - euclidean_distance: 0.1918
Epoch 167/200
76/76 [==============================] - 0s 829us/step - loss: 0.1212 - accuracy: 0.9400 - mae: 0.1212 - pearson_correlation: 0.6548 - euclidean_distance: 0.1944
Epoch 168/200
76/76 [==============================] - 0s 833us/step - loss: 0.1163 - accuracy: 0.9387 - mae: 0.1163 - pearson_correlation: 0.6672 - euclidean_distance: 0.1870
Epoch 169/200
76/76 [==============================] - 0s 832us/step - loss: 0.1174 - accuracy: 0.9400 - mae: 0.1174 - pearson_correlation: 0.6608 - euclidean_distance: 0.1885
Epoch 170/200
76/76 [==============================] - 0s 825us/step - loss: 0.1187 - accuracy: 0.9427 - mae: 0.1187 - pearson_correlation: 0.6627 - euclidean_distance: 0.1906
Epoch 171/200
76/76 [==============================] - 0s 831us/step - loss: 0.1165 - accuracy: 0.9396 - mae: 0.1165 - pearson_correlation: 0.6699 - euclidean_distance: 0.1870
Epoch 172/200
76/76 [==============================] - 0s 828us/step - loss: 0.1169 - accuracy: 0.9405 - mae: 0.1169 - pearson_correlation: 0.6615 - euclidean_distance: 0.1886
Epoch 173/200
76/76 [==============================] - 0s 832us/step - loss: 0.1137 - accuracy: 0.9449 - mae: 0.1137 - pearson_correlation: 0.6712 - euclidean_distance: 0.1833
Epoch 174/200
76/76 [==============================] - 0s 826us/step - loss: 0.1148 - accuracy: 0.9422 - mae: 0.1148 - pearson_correlation: 0.6752 - euclidean_distance: 0.1842
Epoch 175/200
76/76 [==============================] - 0s 826us/step - loss: 0.1154 - accuracy: 0.9436 - mae: 0.1154 - pearson_correlation: 0.6716 - euclidean_distance: 0.1857
Epoch 176/200
76/76 [==============================] - 0s 826us/step - loss: 0.1153 - accuracy: 0.9383 - mae: 0.1153 - pearson_correlation: 0.6696 - euclidean_distance: 0.1854
Epoch 177/200
76/76 [==============================] - 0s 831us/step - loss: 0.1118 - accuracy: 0.9436 - mae: 0.1118 - pearson_correlation: 0.6799 - euclidean_distance: 0.1793
Epoch 178/200
76/76 [==============================] - 0s 826us/step - loss: 0.1139 - accuracy: 0.9431 - mae: 0.1139 - pearson_correlation: 0.6697 - euclidean_distance: 0.1835
Epoch 179/200
76/76 [==============================] - 0s 830us/step - loss: 0.1134 - accuracy: 0.9444 - mae: 0.1134 - pearson_correlation: 0.6727 - euclidean_distance: 0.1824
Epoch 180/200
76/76 [==============================] - 0s 823us/step - loss: 0.1109 - accuracy: 0.9449 - mae: 0.1109 - pearson_correlation: 0.6843 - euclidean_distance: 0.1783
Epoch 181/200
76/76 [==============================] - 0s 826us/step - loss: 0.1109 - accuracy: 0.9453 - mae: 0.1109 - pearson_correlation: 0.6826 - euclidean_distance: 0.1783
Epoch 182/200
76/76 [==============================] - 0s 821us/step - loss: 0.1099 - accuracy: 0.9449 - mae: 0.1099 - pearson_correlation: 0.6831 - euclidean_distance: 0.1766
Epoch 183/200
76/76 [==============================] - 0s 823us/step - loss: 0.1100 - accuracy: 0.9418 - mae: 0.1100 - pearson_correlation: 0.6870 - euclidean_distance: 0.1764
Epoch 184/200
76/76 [==============================] - 0s 823us/step - loss: 0.1116 - accuracy: 0.9444 - mae: 0.1116 - pearson_correlation: 0.6834 - euclidean_distance: 0.1796
Epoch 185/200
76/76 [==============================] - 0s 822us/step - loss: 0.1086 - accuracy: 0.9453 - mae: 0.1086 - pearson_correlation: 0.6940 - euclidean_distance: 0.1747
Epoch 186/200
76/76 [==============================] - 0s 836us/step - loss: 0.1092 - accuracy: 0.9427 - mae: 0.1092 - pearson_correlation: 0.6877 - euclidean_distance: 0.1754
Epoch 187/200
76/76 [==============================] - 0s 827us/step - loss: 0.1081 - accuracy: 0.9431 - mae: 0.1081 - pearson_correlation: 0.6902 - euclidean_distance: 0.1736
Epoch 188/200
76/76 [==============================] - 0s 821us/step - loss: 0.1102 - accuracy: 0.9414 - mae: 0.1102 - pearson_correlation: 0.6894 - euclidean_distance: 0.1767
Epoch 189/200
76/76 [==============================] - 0s 822us/step - loss: 0.1085 - accuracy: 0.9431 - mae: 0.1085 - pearson_correlation: 0.6939 - euclidean_distance: 0.1745
Epoch 190/200
76/76 [==============================] - 0s 824us/step - loss: 0.1094 - accuracy: 0.9458 - mae: 0.1094 - pearson_correlation: 0.6876 - euclidean_distance: 0.1758
Epoch 191/200
76/76 [==============================] - 0s 823us/step - loss: 0.1073 - accuracy: 0.9475 - mae: 0.1073 - pearson_correlation: 0.6967 - euclidean_distance: 0.1727
Epoch 192/200
76/76 [==============================] - 0s 822us/step - loss: 0.1065 - accuracy: 0.9458 - mae: 0.1065 - pearson_correlation: 0.6984 - euclidean_distance: 0.1711
Epoch 193/200
76/76 [==============================] - 0s 832us/step - loss: 0.1066 - accuracy: 0.9458 - mae: 0.1066 - pearson_correlation: 0.6947 - euclidean_distance: 0.1715
Epoch 194/200
76/76 [==============================] - 0s 832us/step - loss: 0.1057 - accuracy: 0.9449 - mae: 0.1057 - pearson_correlation: 0.6957 - euclidean_distance: 0.1702
Epoch 195/200
76/76 [==============================] - 0s 836us/step - loss: 0.1050 - accuracy: 0.9436 - mae: 0.1050 - pearson_correlation: 0.7053 - euclidean_distance: 0.1686
Epoch 196/200
76/76 [==============================] - 0s 830us/step - loss: 0.1057 - accuracy: 0.9475 - mae: 0.1057 - pearson_correlation: 0.7016 - euclidean_distance: 0.1702
Epoch 197/200
76/76 [==============================] - 0s 827us/step - loss: 0.1058 - accuracy: 0.9453 - mae: 0.1058 - pearson_correlation: 0.6996 - euclidean_distance: 0.1702
Epoch 198/200
76/76 [==============================] - 0s 830us/step - loss: 0.1040 - accuracy: 0.9458 - mae: 0.1040 - pearson_correlation: 0.7022 - euclidean_distance: 0.1673
Epoch 199/200
76/76 [==============================] - 0s 822us/step - loss: 0.1054 - accuracy: 0.9471 - mae: 0.1054 - pearson_correlation: 0.6989 - euclidean_distance: 0.1691
Epoch 200/200
76/76 [==============================] - 0s 827us/step - loss: 0.1033 - accuracy: 0.9444 - mae: 0.1033 - pearson_correlation: 0.7067 - euclidean_distance: 0.1671
38/38 [==============================] - 0s 511us/step
Epoch 1/250
76/76 [==============================] - 1s 869us/step - loss: 0.3333 - accuracy: 0.9554 - mae: 0.3333 - pearson_correlation: 0.5405 - euclidean_distance: 0.5031
Epoch 2/250
76/76 [==============================] - 0s 823us/step - loss: 0.3263 - accuracy: 0.9541 - mae: 0.3263 - pearson_correlation: 0.5443 - euclidean_distance: 0.4947
Epoch 3/250
76/76 [==============================] - 0s 842us/step - loss: 0.3209 - accuracy: 0.9554 - mae: 0.3209 - pearson_correlation: 0.5455 - euclidean_distance: 0.4863
Epoch 4/250
76/76 [==============================] - 0s 837us/step - loss: 0.3153 - accuracy: 0.9563 - mae: 0.3153 - pearson_correlation: 0.5478 - euclidean_distance: 0.4782
Epoch 5/250
76/76 [==============================] - 0s 835us/step - loss: 0.3073 - accuracy: 0.9559 - mae: 0.3073 - pearson_correlation: 0.5532 - euclidean_distance: 0.4667
Epoch 6/250
76/76 [==============================] - 0s 835us/step - loss: 0.3028 - accuracy: 0.9563 - mae: 0.3028 - pearson_correlation: 0.5468 - euclidean_distance: 0.4596
Epoch 7/250
76/76 [==============================] - 0s 833us/step - loss: 0.2980 - accuracy: 0.9559 - mae: 0.2980 - pearson_correlation: 0.5560 - euclidean_distance: 0.4532
Epoch 8/250
76/76 [==============================] - 0s 835us/step - loss: 0.2917 - accuracy: 0.9563 - mae: 0.2917 - pearson_correlation: 0.5593 - euclidean_distance: 0.4448
Epoch 9/250
76/76 [==============================] - 0s 836us/step - loss: 0.2879 - accuracy: 0.9563 - mae: 0.2879 - pearson_correlation: 0.5599 - euclidean_distance: 0.4382
Epoch 10/250
76/76 [==============================] - 0s 831us/step - loss: 0.2823 - accuracy: 0.9559 - mae: 0.2823 - pearson_correlation: 0.5613 - euclidean_distance: 0.4308
Epoch 11/250
76/76 [==============================] - 0s 835us/step - loss: 0.2772 - accuracy: 0.9563 - mae: 0.2772 - pearson_correlation: 0.5589 - euclidean_distance: 0.4238
Epoch 12/250
76/76 [==============================] - 0s 835us/step - loss: 0.2679 - accuracy: 0.9563 - mae: 0.2679 - pearson_correlation: 0.5627 - euclidean_distance: 0.4114
Epoch 13/250
76/76 [==============================] - 0s 832us/step - loss: 0.2654 - accuracy: 0.9563 - mae: 0.2654 - pearson_correlation: 0.5720 - euclidean_distance: 0.4066
Epoch 14/250
76/76 [==============================] - 0s 832us/step - loss: 0.2624 - accuracy: 0.9563 - mae: 0.2624 - pearson_correlation: 0.5659 - euclidean_distance: 0.4029
Epoch 15/250
76/76 [==============================] - 0s 829us/step - loss: 0.2543 - accuracy: 0.9563 - mae: 0.2543 - pearson_correlation: 0.5770 - euclidean_distance: 0.3901
Epoch 16/250
76/76 [==============================] - 0s 832us/step - loss: 0.2511 - accuracy: 0.9563 - mae: 0.2511 - pearson_correlation: 0.5818 - euclidean_distance: 0.3866
Epoch 17/250
76/76 [==============================] - 0s 1ms/step - loss: 0.2477 - accuracy: 0.9563 - mae: 0.2477 - pearson_correlation: 0.5755 - euclidean_distance: 0.3817
Epoch 18/250
76/76 [==============================] - 0s 861us/step - loss: 0.2427 - accuracy: 0.9563 - mae: 0.2427 - pearson_correlation: 0.5804 - euclidean_distance: 0.3748
Epoch 19/250
76/76 [==============================] - 0s 908us/step - loss: 0.2389 - accuracy: 0.9563 - mae: 0.2389 - pearson_correlation: 0.5851 - euclidean_distance: 0.3688
Epoch 20/250
76/76 [==============================] - 0s 841us/step - loss: 0.2361 - accuracy: 0.9563 - mae: 0.2361 - pearson_correlation: 0.5863 - euclidean_distance: 0.3650
Epoch 21/250
76/76 [==============================] - 0s 825us/step - loss: 0.2301 - accuracy: 0.9563 - mae: 0.2301 - pearson_correlation: 0.5961 - euclidean_distance: 0.3562
Epoch 22/250
76/76 [==============================] - 0s 834us/step - loss: 0.2268 - accuracy: 0.9563 - mae: 0.2268 - pearson_correlation: 0.5960 - euclidean_distance: 0.3510
Epoch 23/250
76/76 [==============================] - 0s 823us/step - loss: 0.2239 - accuracy: 0.9563 - mae: 0.2239 - pearson_correlation: 0.5966 - euclidean_distance: 0.3474
Epoch 24/250
76/76 [==============================] - 0s 836us/step - loss: 0.2210 - accuracy: 0.9563 - mae: 0.2210 - pearson_correlation: 0.5962 - euclidean_distance: 0.3432
Epoch 25/250
76/76 [==============================] - 0s 829us/step - loss: 0.2210 - accuracy: 0.9563 - mae: 0.2210 - pearson_correlation: 0.5976 - euclidean_distance: 0.3423
Epoch 26/250
76/76 [==============================] - 0s 828us/step - loss: 0.2150 - accuracy: 0.9563 - mae: 0.2150 - pearson_correlation: 0.6073 - euclidean_distance: 0.3333
Epoch 27/250
76/76 [==============================] - 0s 829us/step - loss: 0.2112 - accuracy: 0.9563 - mae: 0.2112 - pearson_correlation: 0.6108 - euclidean_distance: 0.3275
Epoch 28/250
76/76 [==============================] - 0s 829us/step - loss: 0.2091 - accuracy: 0.9563 - mae: 0.2091 - pearson_correlation: 0.6028 - euclidean_distance: 0.3251
Epoch 29/250
76/76 [==============================] - 0s 826us/step - loss: 0.2063 - accuracy: 0.9563 - mae: 0.2063 - pearson_correlation: 0.6122 - euclidean_distance: 0.3203
Epoch 30/250
76/76 [==============================] - 0s 828us/step - loss: 0.1999 - accuracy: 0.9563 - mae: 0.1999 - pearson_correlation: 0.6061 - euclidean_distance: 0.3130
Epoch 31/250
76/76 [==============================] - 0s 828us/step - loss: 0.1983 - accuracy: 0.9563 - mae: 0.1983 - pearson_correlation: 0.6131 - euclidean_distance: 0.3086
Epoch 32/250
76/76 [==============================] - 0s 826us/step - loss: 0.1972 - accuracy: 0.9563 - mae: 0.1972 - pearson_correlation: 0.6147 - euclidean_distance: 0.3079
Epoch 33/250
76/76 [==============================] - 0s 828us/step - loss: 0.1923 - accuracy: 0.9563 - mae: 0.1923 - pearson_correlation: 0.6159 - euclidean_distance: 0.3016
Epoch 34/250
76/76 [==============================] - 0s 828us/step - loss: 0.1888 - accuracy: 0.9563 - mae: 0.1888 - pearson_correlation: 0.6247 - euclidean_distance: 0.2957
Epoch 35/250
76/76 [==============================] - 0s 832us/step - loss: 0.1899 - accuracy: 0.9563 - mae: 0.1899 - pearson_correlation: 0.6250 - euclidean_distance: 0.2968
Epoch 36/250
76/76 [==============================] - 0s 828us/step - loss: 0.1881 - accuracy: 0.9563 - mae: 0.1881 - pearson_correlation: 0.6247 - euclidean_distance: 0.2940
Epoch 37/250
76/76 [==============================] - 0s 826us/step - loss: 0.1854 - accuracy: 0.9563 - mae: 0.1854 - pearson_correlation: 0.6238 - euclidean_distance: 0.2902
Epoch 38/250
76/76 [==============================] - 0s 837us/step - loss: 0.1796 - accuracy: 0.9563 - mae: 0.1796 - pearson_correlation: 0.6332 - euclidean_distance: 0.2820
Epoch 39/250
76/76 [==============================] - 0s 835us/step - loss: 0.1804 - accuracy: 0.9563 - mae: 0.1804 - pearson_correlation: 0.6299 - euclidean_distance: 0.2821
Epoch 40/250
76/76 [==============================] - 0s 838us/step - loss: 0.1817 - accuracy: 0.9563 - mae: 0.1817 - pearson_correlation: 0.6214 - euclidean_distance: 0.2854
Epoch 41/250
76/76 [==============================] - 0s 827us/step - loss: 0.1780 - accuracy: 0.9563 - mae: 0.1780 - pearson_correlation: 0.6371 - euclidean_distance: 0.2793
Epoch 42/250
76/76 [==============================] - 0s 828us/step - loss: 0.1753 - accuracy: 0.9563 - mae: 0.1753 - pearson_correlation: 0.6357 - euclidean_distance: 0.2754
Epoch 43/250
76/76 [==============================] - 0s 869us/step - loss: 0.1733 - accuracy: 0.9563 - mae: 0.1733 - pearson_correlation: 0.6377 - euclidean_distance: 0.2715
Epoch 44/250
76/76 [==============================] - 0s 891us/step - loss: 0.1735 - accuracy: 0.9563 - mae: 0.1735 - pearson_correlation: 0.6291 - euclidean_distance: 0.2725
Epoch 45/250
76/76 [==============================] - 0s 910us/step - loss: 0.1692 - accuracy: 0.9563 - mae: 0.1692 - pearson_correlation: 0.6381 - euclidean_distance: 0.2664
Epoch 46/250
76/76 [==============================] - 0s 880us/step - loss: 0.1703 - accuracy: 0.9563 - mae: 0.1703 - pearson_correlation: 0.6331 - euclidean_distance: 0.2683
Epoch 47/250
76/76 [==============================] - 0s 877us/step - loss: 0.1652 - accuracy: 0.9563 - mae: 0.1652 - pearson_correlation: 0.6438 - euclidean_distance: 0.2600
Epoch 48/250
76/76 [==============================] - 0s 923us/step - loss: 0.1640 - accuracy: 0.9563 - mae: 0.1640 - pearson_correlation: 0.6395 - euclidean_distance: 0.2590
Epoch 49/250
76/76 [==============================] - 0s 930us/step - loss: 0.1647 - accuracy: 0.9563 - mae: 0.1647 - pearson_correlation: 0.6424 - euclidean_distance: 0.2590
Epoch 50/250
76/76 [==============================] - 0s 906us/step - loss: 0.1643 - accuracy: 0.9563 - mae: 0.1643 - pearson_correlation: 0.6394 - euclidean_distance: 0.2585
Epoch 51/250
76/76 [==============================] - 0s 937us/step - loss: 0.1642 - accuracy: 0.9563 - mae: 0.1642 - pearson_correlation: 0.6334 - euclidean_distance: 0.2582
Epoch 52/250
76/76 [==============================] - 0s 905us/step - loss: 0.1595 - accuracy: 0.9563 - mae: 0.1595 - pearson_correlation: 0.6482 - euclidean_distance: 0.2513
Epoch 53/250
76/76 [==============================] - 0s 831us/step - loss: 0.1592 - accuracy: 0.9563 - mae: 0.1592 - pearson_correlation: 0.6455 - euclidean_distance: 0.2500
Epoch 54/250
76/76 [==============================] - 0s 837us/step - loss: 0.1620 - accuracy: 0.9563 - mae: 0.1620 - pearson_correlation: 0.6415 - euclidean_distance: 0.2548
Epoch 55/250
76/76 [==============================] - 0s 833us/step - loss: 0.1578 - accuracy: 0.9563 - mae: 0.1578 - pearson_correlation: 0.6495 - euclidean_distance: 0.2493
Epoch 56/250
76/76 [==============================] - 0s 836us/step - loss: 0.1594 - accuracy: 0.9563 - mae: 0.1594 - pearson_correlation: 0.6477 - euclidean_distance: 0.2511
Epoch 57/250
76/76 [==============================] - 0s 835us/step - loss: 0.1579 - accuracy: 0.9563 - mae: 0.1579 - pearson_correlation: 0.6435 - euclidean_distance: 0.2492
Epoch 58/250
76/76 [==============================] - 0s 831us/step - loss: 0.1534 - accuracy: 0.9563 - mae: 0.1534 - pearson_correlation: 0.6529 - euclidean_distance: 0.2422
Epoch 59/250
76/76 [==============================] - 0s 829us/step - loss: 0.1524 - accuracy: 0.9563 - mae: 0.1524 - pearson_correlation: 0.6564 - euclidean_distance: 0.2411
Epoch 60/250
76/76 [==============================] - 0s 834us/step - loss: 0.1508 - accuracy: 0.9563 - mae: 0.1508 - pearson_correlation: 0.6551 - euclidean_distance: 0.2388
Epoch 61/250
76/76 [==============================] - 0s 828us/step - loss: 0.1503 - accuracy: 0.9563 - mae: 0.1503 - pearson_correlation: 0.6527 - euclidean_distance: 0.2375
Epoch 62/250
76/76 [==============================] - 0s 834us/step - loss: 0.1512 - accuracy: 0.9563 - mae: 0.1512 - pearson_correlation: 0.6538 - euclidean_distance: 0.2383
Epoch 63/250
76/76 [==============================] - 0s 829us/step - loss: 0.1490 - accuracy: 0.9563 - mae: 0.1490 - pearson_correlation: 0.6567 - euclidean_distance: 0.2348
Epoch 64/250
76/76 [==============================] - 0s 835us/step - loss: 0.1509 - accuracy: 0.9563 - mae: 0.1509 - pearson_correlation: 0.6490 - euclidean_distance: 0.2383
Epoch 65/250
76/76 [==============================] - 0s 858us/step - loss: 0.1452 - accuracy: 0.9563 - mae: 0.1452 - pearson_correlation: 0.6613 - euclidean_distance: 0.2302
Epoch 66/250
76/76 [==============================] - 0s 836us/step - loss: 0.1463 - accuracy: 0.9563 - mae: 0.1463 - pearson_correlation: 0.6587 - euclidean_distance: 0.2315
Epoch 67/250
76/76 [==============================] - 0s 827us/step - loss: 0.1477 - accuracy: 0.9563 - mae: 0.1477 - pearson_correlation: 0.6507 - euclidean_distance: 0.2339
Epoch 68/250
76/76 [==============================] - 0s 832us/step - loss: 0.1466 - accuracy: 0.9563 - mae: 0.1466 - pearson_correlation: 0.6542 - euclidean_distance: 0.2325
Epoch 69/250
76/76 [==============================] - 0s 827us/step - loss: 0.1465 - accuracy: 0.9563 - mae: 0.1465 - pearson_correlation: 0.6577 - euclidean_distance: 0.2316
Epoch 70/250
76/76 [==============================] - 0s 828us/step - loss: 0.1460 - accuracy: 0.9563 - mae: 0.1460 - pearson_correlation: 0.6574 - euclidean_distance: 0.2305
Epoch 71/250
76/76 [==============================] - 0s 831us/step - loss: 0.1481 - accuracy: 0.9563 - mae: 0.1481 - pearson_correlation: 0.6512 - euclidean_distance: 0.2336
Epoch 72/250
76/76 [==============================] - 0s 834us/step - loss: 0.1434 - accuracy: 0.9563 - mae: 0.1434 - pearson_correlation: 0.6545 - euclidean_distance: 0.2274
Epoch 73/250
76/76 [==============================] - 0s 829us/step - loss: 0.1424 - accuracy: 0.9563 - mae: 0.1424 - pearson_correlation: 0.6614 - euclidean_distance: 0.2257
Epoch 74/250
76/76 [==============================] - 0s 824us/step - loss: 0.1431 - accuracy: 0.9563 - mae: 0.1431 - pearson_correlation: 0.6492 - euclidean_distance: 0.2266
Epoch 75/250
76/76 [==============================] - 0s 846us/step - loss: 0.1426 - accuracy: 0.9563 - mae: 0.1426 - pearson_correlation: 0.6568 - euclidean_distance: 0.2248
Epoch 76/250
76/76 [==============================] - 0s 831us/step - loss: 0.1393 - accuracy: 0.9563 - mae: 0.1393 - pearson_correlation: 0.6658 - euclidean_distance: 0.2204
Epoch 77/250
76/76 [==============================] - 0s 823us/step - loss: 0.1435 - accuracy: 0.9563 - mae: 0.1435 - pearson_correlation: 0.6544 - euclidean_distance: 0.2272
Epoch 78/250
76/76 [==============================] - 0s 830us/step - loss: 0.1370 - accuracy: 0.9563 - mae: 0.1370 - pearson_correlation: 0.6688 - euclidean_distance: 0.2171
Epoch 79/250
76/76 [==============================] - 0s 831us/step - loss: 0.1377 - accuracy: 0.9563 - mae: 0.1377 - pearson_correlation: 0.6607 - euclidean_distance: 0.2183
Epoch 80/250
76/76 [==============================] - 0s 827us/step - loss: 0.1387 - accuracy: 0.9563 - mae: 0.1387 - pearson_correlation: 0.6682 - euclidean_distance: 0.2196
Epoch 81/250
76/76 [==============================] - 0s 829us/step - loss: 0.1382 - accuracy: 0.9563 - mae: 0.1382 - pearson_correlation: 0.6569 - euclidean_distance: 0.2191
Epoch 82/250
76/76 [==============================] - 0s 821us/step - loss: 0.1361 - accuracy: 0.9563 - mae: 0.1361 - pearson_correlation: 0.6642 - euclidean_distance: 0.2152
Epoch 83/250
76/76 [==============================] - 0s 827us/step - loss: 0.1339 - accuracy: 0.9563 - mae: 0.1339 - pearson_correlation: 0.6660 - euclidean_distance: 0.2126
Epoch 84/250
76/76 [==============================] - 0s 827us/step - loss: 0.1352 - accuracy: 0.9563 - mae: 0.1352 - pearson_correlation: 0.6682 - euclidean_distance: 0.2141
Epoch 85/250
76/76 [==============================] - 0s 832us/step - loss: 0.1361 - accuracy: 0.9563 - mae: 0.1361 - pearson_correlation: 0.6661 - euclidean_distance: 0.2149
Epoch 86/250
76/76 [==============================] - 0s 831us/step - loss: 0.1355 - accuracy: 0.9563 - mae: 0.1355 - pearson_correlation: 0.6663 - euclidean_distance: 0.2144
Epoch 87/250
76/76 [==============================] - 0s 830us/step - loss: 0.1352 - accuracy: 0.9563 - mae: 0.1352 - pearson_correlation: 0.6645 - euclidean_distance: 0.2144
Epoch 88/250
76/76 [==============================] - 0s 831us/step - loss: 0.1345 - accuracy: 0.9563 - mae: 0.1345 - pearson_correlation: 0.6676 - euclidean_distance: 0.2127
Epoch 89/250
76/76 [==============================] - 0s 827us/step - loss: 0.1330 - accuracy: 0.9563 - mae: 0.1330 - pearson_correlation: 0.6625 - euclidean_distance: 0.2111
Epoch 90/250
76/76 [==============================] - 0s 827us/step - loss: 0.1325 - accuracy: 0.9563 - mae: 0.1325 - pearson_correlation: 0.6695 - euclidean_distance: 0.2102
Epoch 91/250
76/76 [==============================] - 0s 840us/step - loss: 0.1291 - accuracy: 0.9563 - mae: 0.1291 - pearson_correlation: 0.6789 - euclidean_distance: 0.2043
Epoch 92/250
76/76 [==============================] - 0s 837us/step - loss: 0.1338 - accuracy: 0.9563 - mae: 0.1338 - pearson_correlation: 0.6669 - euclidean_distance: 0.2115
Epoch 93/250
76/76 [==============================] - 0s 835us/step - loss: 0.1342 - accuracy: 0.9563 - mae: 0.1342 - pearson_correlation: 0.6642 - euclidean_distance: 0.2126
Epoch 94/250
76/76 [==============================] - 0s 827us/step - loss: 0.1349 - accuracy: 0.9563 - mae: 0.1349 - pearson_correlation: 0.6609 - euclidean_distance: 0.2133
Epoch 95/250
76/76 [==============================] - 0s 833us/step - loss: 0.1313 - accuracy: 0.9563 - mae: 0.1313 - pearson_correlation: 0.6720 - euclidean_distance: 0.2076
Epoch 96/250
76/76 [==============================] - 0s 827us/step - loss: 0.1317 - accuracy: 0.9563 - mae: 0.1317 - pearson_correlation: 0.6688 - euclidean_distance: 0.2086
Epoch 97/250
76/76 [==============================] - 0s 826us/step - loss: 0.1296 - accuracy: 0.9563 - mae: 0.1296 - pearson_correlation: 0.6719 - euclidean_distance: 0.2063
Epoch 98/250
76/76 [==============================] - 0s 829us/step - loss: 0.1295 - accuracy: 0.9563 - mae: 0.1295 - pearson_correlation: 0.6706 - euclidean_distance: 0.2056
Epoch 99/250
76/76 [==============================] - 0s 828us/step - loss: 0.1248 - accuracy: 0.9563 - mae: 0.1248 - pearson_correlation: 0.6792 - euclidean_distance: 0.1985
Epoch 100/250
76/76 [==============================] - 0s 834us/step - loss: 0.1295 - accuracy: 0.9563 - mae: 0.1295 - pearson_correlation: 0.6718 - euclidean_distance: 0.2051
Epoch 101/250
76/76 [==============================] - 0s 826us/step - loss: 0.1299 - accuracy: 0.9563 - mae: 0.1299 - pearson_correlation: 0.6681 - euclidean_distance: 0.2059
Epoch 102/250
76/76 [==============================] - 0s 831us/step - loss: 0.1258 - accuracy: 0.9563 - mae: 0.1258 - pearson_correlation: 0.6749 - euclidean_distance: 0.2000
Epoch 103/250
76/76 [==============================] - 0s 829us/step - loss: 0.1275 - accuracy: 0.9563 - mae: 0.1275 - pearson_correlation: 0.6771 - euclidean_distance: 0.2016
Epoch 104/250
76/76 [==============================] - 0s 829us/step - loss: 0.1261 - accuracy: 0.9563 - mae: 0.1261 - pearson_correlation: 0.6713 - euclidean_distance: 0.2009
Epoch 105/250
76/76 [==============================] - 0s 829us/step - loss: 0.1281 - accuracy: 0.9563 - mae: 0.1281 - pearson_correlation: 0.6660 - euclidean_distance: 0.2033
Epoch 106/250
76/76 [==============================] - 0s 832us/step - loss: 0.1219 - accuracy: 0.9563 - mae: 0.1219 - pearson_correlation: 0.6847 - euclidean_distance: 0.1936
Epoch 107/250
76/76 [==============================] - 0s 830us/step - loss: 0.1259 - accuracy: 0.9563 - mae: 0.1259 - pearson_correlation: 0.6720 - euclidean_distance: 0.2005
Epoch 108/250
76/76 [==============================] - 0s 828us/step - loss: 0.1248 - accuracy: 0.9563 - mae: 0.1248 - pearson_correlation: 0.6807 - euclidean_distance: 0.1982
Epoch 109/250
76/76 [==============================] - 0s 826us/step - loss: 0.1272 - accuracy: 0.9563 - mae: 0.1272 - pearson_correlation: 0.6699 - euclidean_distance: 0.2015
Epoch 110/250
76/76 [==============================] - 0s 833us/step - loss: 0.1269 - accuracy: 0.9563 - mae: 0.1269 - pearson_correlation: 0.6721 - euclidean_distance: 0.2018
Epoch 111/250
76/76 [==============================] - 0s 831us/step - loss: 0.1209 - accuracy: 0.9563 - mae: 0.1209 - pearson_correlation: 0.6793 - euclidean_distance: 0.1931
Epoch 112/250
76/76 [==============================] - 0s 830us/step - loss: 0.1250 - accuracy: 0.9563 - mae: 0.1250 - pearson_correlation: 0.6746 - euclidean_distance: 0.1987
Epoch 113/250
76/76 [==============================] - 0s 828us/step - loss: 0.1257 - accuracy: 0.9563 - mae: 0.1257 - pearson_correlation: 0.6822 - euclidean_distance: 0.1992
Epoch 114/250
76/76 [==============================] - 0s 892us/step - loss: 0.1231 - accuracy: 0.9563 - mae: 0.1231 - pearson_correlation: 0.6829 - euclidean_distance: 0.1955
Epoch 115/250
76/76 [==============================] - 0s 878us/step - loss: 0.1217 - accuracy: 0.9563 - mae: 0.1217 - pearson_correlation: 0.6802 - euclidean_distance: 0.1936
Epoch 116/250
76/76 [==============================] - 0s 855us/step - loss: 0.1240 - accuracy: 0.9563 - mae: 0.1240 - pearson_correlation: 0.6757 - euclidean_distance: 0.1971
Epoch 117/250
76/76 [==============================] - 0s 833us/step - loss: 0.1226 - accuracy: 0.9563 - mae: 0.1226 - pearson_correlation: 0.6821 - euclidean_distance: 0.1947
Epoch 118/250
76/76 [==============================] - 0s 832us/step - loss: 0.1226 - accuracy: 0.9563 - mae: 0.1226 - pearson_correlation: 0.6838 - euclidean_distance: 0.1946
Epoch 119/250
76/76 [==============================] - 0s 829us/step - loss: 0.1220 - accuracy: 0.9563 - mae: 0.1220 - pearson_correlation: 0.6769 - euclidean_distance: 0.1940
Epoch 120/250
76/76 [==============================] - 0s 831us/step - loss: 0.1228 - accuracy: 0.9563 - mae: 0.1228 - pearson_correlation: 0.6831 - euclidean_distance: 0.1947
Epoch 121/250
76/76 [==============================] - 0s 832us/step - loss: 0.1213 - accuracy: 0.9563 - mae: 0.1213 - pearson_correlation: 0.6830 - euclidean_distance: 0.1928
Epoch 122/250
76/76 [==============================] - 0s 826us/step - loss: 0.1226 - accuracy: 0.9563 - mae: 0.1226 - pearson_correlation: 0.6794 - euclidean_distance: 0.1948
Epoch 123/250
76/76 [==============================] - 0s 822us/step - loss: 0.1209 - accuracy: 0.9563 - mae: 0.1209 - pearson_correlation: 0.6842 - euclidean_distance: 0.1918
Epoch 124/250
76/76 [==============================] - 0s 824us/step - loss: 0.1158 - accuracy: 0.9563 - mae: 0.1158 - pearson_correlation: 0.6896 - euclidean_distance: 0.1854
Epoch 125/250
76/76 [==============================] - 0s 829us/step - loss: 0.1173 - accuracy: 0.9563 - mae: 0.1173 - pearson_correlation: 0.6938 - euclidean_distance: 0.1867
Epoch 126/250
76/76 [==============================] - 0s 822us/step - loss: 0.1198 - accuracy: 0.9563 - mae: 0.1198 - pearson_correlation: 0.6805 - euclidean_distance: 0.1903
Epoch 127/250
76/76 [==============================] - 0s 831us/step - loss: 0.1193 - accuracy: 0.9563 - mae: 0.1193 - pearson_correlation: 0.6867 - euclidean_distance: 0.1902
Epoch 128/250
76/76 [==============================] - 0s 832us/step - loss: 0.1207 - accuracy: 0.9563 - mae: 0.1207 - pearson_correlation: 0.6758 - euclidean_distance: 0.1922
Epoch 129/250
76/76 [==============================] - 0s 824us/step - loss: 0.1202 - accuracy: 0.9563 - mae: 0.1202 - pearson_correlation: 0.6863 - euclidean_distance: 0.1910
Epoch 130/250
76/76 [==============================] - 0s 835us/step - loss: 0.1177 - accuracy: 0.9563 - mae: 0.1177 - pearson_correlation: 0.6909 - euclidean_distance: 0.1872
Epoch 131/250
76/76 [==============================] - 0s 828us/step - loss: 0.1178 - accuracy: 0.9563 - mae: 0.1178 - pearson_correlation: 0.6840 - euclidean_distance: 0.1879
Epoch 132/250
76/76 [==============================] - 0s 823us/step - loss: 0.1190 - accuracy: 0.9563 - mae: 0.1190 - pearson_correlation: 0.6878 - euclidean_distance: 0.1895
Epoch 133/250
76/76 [==============================] - 0s 824us/step - loss: 0.1131 - accuracy: 0.9563 - mae: 0.1131 - pearson_correlation: 0.6952 - euclidean_distance: 0.1802
Epoch 134/250
76/76 [==============================] - 0s 827us/step - loss: 0.1171 - accuracy: 0.9563 - mae: 0.1171 - pearson_correlation: 0.6878 - euclidean_distance: 0.1859
Epoch 135/250
76/76 [==============================] - 0s 831us/step - loss: 0.1161 - accuracy: 0.9563 - mae: 0.1161 - pearson_correlation: 0.6939 - euclidean_distance: 0.1845
Epoch 136/250
76/76 [==============================] - 0s 833us/step - loss: 0.1132 - accuracy: 0.9563 - mae: 0.1132 - pearson_correlation: 0.6934 - euclidean_distance: 0.1802
Epoch 137/250
76/76 [==============================] - 0s 828us/step - loss: 0.1163 - accuracy: 0.9563 - mae: 0.1163 - pearson_correlation: 0.6907 - euclidean_distance: 0.1856
Epoch 138/250
76/76 [==============================] - 0s 829us/step - loss: 0.1154 - accuracy: 0.9563 - mae: 0.1154 - pearson_correlation: 0.6880 - euclidean_distance: 0.1843
Epoch 139/250
76/76 [==============================] - 0s 828us/step - loss: 0.1167 - accuracy: 0.9563 - mae: 0.1167 - pearson_correlation: 0.6885 - euclidean_distance: 0.1858
Epoch 140/250
76/76 [==============================] - 0s 835us/step - loss: 0.1188 - accuracy: 0.9563 - mae: 0.1188 - pearson_correlation: 0.6869 - euclidean_distance: 0.1884
Epoch 141/250
76/76 [==============================] - 0s 834us/step - loss: 0.1122 - accuracy: 0.9563 - mae: 0.1122 - pearson_correlation: 0.6994 - euclidean_distance: 0.1791
Epoch 142/250
76/76 [==============================] - 0s 830us/step - loss: 0.1152 - accuracy: 0.9563 - mae: 0.1152 - pearson_correlation: 0.6923 - euclidean_distance: 0.1833
Epoch 143/250
76/76 [==============================] - 0s 828us/step - loss: 0.1129 - accuracy: 0.9563 - mae: 0.1129 - pearson_correlation: 0.7012 - euclidean_distance: 0.1797
Epoch 144/250
76/76 [==============================] - 0s 827us/step - loss: 0.1139 - accuracy: 0.9563 - mae: 0.1139 - pearson_correlation: 0.6928 - euclidean_distance: 0.1816
Epoch 145/250
76/76 [==============================] - 0s 825us/step - loss: 0.1155 - accuracy: 0.9563 - mae: 0.1155 - pearson_correlation: 0.6937 - euclidean_distance: 0.1832
Epoch 146/250
76/76 [==============================] - 0s 834us/step - loss: 0.1123 - accuracy: 0.9563 - mae: 0.1123 - pearson_correlation: 0.6916 - euclidean_distance: 0.1797
Epoch 147/250
76/76 [==============================] - 0s 832us/step - loss: 0.1133 - accuracy: 0.9563 - mae: 0.1133 - pearson_correlation: 0.6985 - euclidean_distance: 0.1802
Epoch 148/250
76/76 [==============================] - 0s 830us/step - loss: 0.1135 - accuracy: 0.9563 - mae: 0.1135 - pearson_correlation: 0.6925 - euclidean_distance: 0.1810
Epoch 149/250
76/76 [==============================] - 0s 830us/step - loss: 0.1107 - accuracy: 0.9563 - mae: 0.1107 - pearson_correlation: 0.7041 - euclidean_distance: 0.1763
Epoch 150/250
76/76 [==============================] - 0s 828us/step - loss: 0.1117 - accuracy: 0.9563 - mae: 0.1117 - pearson_correlation: 0.7023 - euclidean_distance: 0.1782
Epoch 151/250
76/76 [==============================] - 0s 825us/step - loss: 0.1151 - accuracy: 0.9563 - mae: 0.1151 - pearson_correlation: 0.6939 - euclidean_distance: 0.1831
Epoch 152/250
76/76 [==============================] - 0s 832us/step - loss: 0.1139 - accuracy: 0.9563 - mae: 0.1139 - pearson_correlation: 0.7021 - euclidean_distance: 0.1810
Epoch 153/250
76/76 [==============================] - 0s 819us/step - loss: 0.1112 - accuracy: 0.9563 - mae: 0.1112 - pearson_correlation: 0.7030 - euclidean_distance: 0.1775
Epoch 154/250
76/76 [==============================] - 0s 827us/step - loss: 0.1128 - accuracy: 0.9563 - mae: 0.1128 - pearson_correlation: 0.7015 - euclidean_distance: 0.1792
Epoch 155/250
76/76 [==============================] - 0s 822us/step - loss: 0.1124 - accuracy: 0.9563 - mae: 0.1124 - pearson_correlation: 0.6996 - euclidean_distance: 0.1791
Epoch 156/250
76/76 [==============================] - 0s 823us/step - loss: 0.1106 - accuracy: 0.9563 - mae: 0.1106 - pearson_correlation: 0.7070 - euclidean_distance: 0.1761
Epoch 157/250
76/76 [==============================] - 0s 824us/step - loss: 0.1121 - accuracy: 0.9563 - mae: 0.1121 - pearson_correlation: 0.6964 - euclidean_distance: 0.1784
Epoch 158/250
76/76 [==============================] - 0s 823us/step - loss: 0.1106 - accuracy: 0.9563 - mae: 0.1106 - pearson_correlation: 0.6975 - euclidean_distance: 0.1762
Epoch 159/250
76/76 [==============================] - 0s 826us/step - loss: 0.1116 - accuracy: 0.9563 - mae: 0.1116 - pearson_correlation: 0.6978 - euclidean_distance: 0.1776
Epoch 160/250
76/76 [==============================] - 0s 821us/step - loss: 0.1131 - accuracy: 0.9563 - mae: 0.1131 - pearson_correlation: 0.6993 - euclidean_distance: 0.1797
Epoch 161/250
76/76 [==============================] - 0s 827us/step - loss: 0.1090 - accuracy: 0.9563 - mae: 0.1090 - pearson_correlation: 0.7035 - euclidean_distance: 0.1742
Epoch 162/250
76/76 [==============================] - 0s 825us/step - loss: 0.1074 - accuracy: 0.9563 - mae: 0.1074 - pearson_correlation: 0.7107 - euclidean_distance: 0.1716
Epoch 163/250
76/76 [==============================] - 0s 826us/step - loss: 0.1122 - accuracy: 0.9563 - mae: 0.1122 - pearson_correlation: 0.6959 - euclidean_distance: 0.1787
Epoch 164/250
76/76 [==============================] - 0s 826us/step - loss: 0.1109 - accuracy: 0.9563 - mae: 0.1109 - pearson_correlation: 0.6999 - euclidean_distance: 0.1770
Epoch 165/250
76/76 [==============================] - 0s 823us/step - loss: 0.1099 - accuracy: 0.9563 - mae: 0.1099 - pearson_correlation: 0.7029 - euclidean_distance: 0.1753
Epoch 166/250
76/76 [==============================] - 0s 827us/step - loss: 0.1097 - accuracy: 0.9563 - mae: 0.1097 - pearson_correlation: 0.7047 - euclidean_distance: 0.1748
Epoch 167/250
76/76 [==============================] - 0s 824us/step - loss: 0.1081 - accuracy: 0.9563 - mae: 0.1081 - pearson_correlation: 0.7057 - euclidean_distance: 0.1723
Epoch 168/250
76/76 [==============================] - 0s 823us/step - loss: 0.1096 - accuracy: 0.9563 - mae: 0.1096 - pearson_correlation: 0.7059 - euclidean_distance: 0.1745
Epoch 169/250
76/76 [==============================] - 0s 827us/step - loss: 0.1097 - accuracy: 0.9563 - mae: 0.1097 - pearson_correlation: 0.7053 - euclidean_distance: 0.1744
Epoch 170/250
76/76 [==============================] - 0s 829us/step - loss: 0.1089 - accuracy: 0.9563 - mae: 0.1089 - pearson_correlation: 0.7036 - euclidean_distance: 0.1736
Epoch 171/250
76/76 [==============================] - 0s 827us/step - loss: 0.1080 - accuracy: 0.9563 - mae: 0.1080 - pearson_correlation: 0.7123 - euclidean_distance: 0.1722
Epoch 172/250
76/76 [==============================] - 0s 824us/step - loss: 0.1088 - accuracy: 0.9563 - mae: 0.1088 - pearson_correlation: 0.7004 - euclidean_distance: 0.1737
Epoch 173/250
76/76 [==============================] - 0s 827us/step - loss: 0.1100 - accuracy: 0.9563 - mae: 0.1100 - pearson_correlation: 0.7015 - euclidean_distance: 0.1753
Epoch 174/250
76/76 [==============================] - 0s 827us/step - loss: 0.1083 - accuracy: 0.9563 - mae: 0.1083 - pearson_correlation: 0.7061 - euclidean_distance: 0.1728
Epoch 175/250
76/76 [==============================] - 0s 827us/step - loss: 0.1080 - accuracy: 0.9563 - mae: 0.1080 - pearson_correlation: 0.7064 - euclidean_distance: 0.1721
Epoch 176/250
76/76 [==============================] - 0s 821us/step - loss: 0.1061 - accuracy: 0.9563 - mae: 0.1061 - pearson_correlation: 0.7154 - euclidean_distance: 0.1692
Epoch 177/250
76/76 [==============================] - 0s 826us/step - loss: 0.1087 - accuracy: 0.9563 - mae: 0.1087 - pearson_correlation: 0.7067 - euclidean_distance: 0.1727
Epoch 178/250
76/76 [==============================] - 0s 865us/step - loss: 0.1048 - accuracy: 0.9563 - mae: 0.1048 - pearson_correlation: 0.7171 - euclidean_distance: 0.1674
Epoch 179/250
76/76 [==============================] - 0s 827us/step - loss: 0.1056 - accuracy: 0.9563 - mae: 0.1056 - pearson_correlation: 0.7115 - euclidean_distance: 0.1681
Epoch 180/250
76/76 [==============================] - 0s 828us/step - loss: 0.1065 - accuracy: 0.9563 - mae: 0.1065 - pearson_correlation: 0.7075 - euclidean_distance: 0.1703
Epoch 181/250
76/76 [==============================] - 0s 829us/step - loss: 0.1069 - accuracy: 0.9563 - mae: 0.1069 - pearson_correlation: 0.7070 - euclidean_distance: 0.1703
Epoch 182/250
76/76 [==============================] - 0s 830us/step - loss: 0.1067 - accuracy: 0.9563 - mae: 0.1067 - pearson_correlation: 0.7139 - euclidean_distance: 0.1697
Epoch 183/250
76/76 [==============================] - 0s 823us/step - loss: 0.1060 - accuracy: 0.9563 - mae: 0.1060 - pearson_correlation: 0.7133 - euclidean_distance: 0.1692
Epoch 184/250
76/76 [==============================] - 0s 823us/step - loss: 0.1055 - accuracy: 0.9563 - mae: 0.1055 - pearson_correlation: 0.7169 - euclidean_distance: 0.1682
Epoch 185/250
76/76 [==============================] - 0s 820us/step - loss: 0.1069 - accuracy: 0.9563 - mae: 0.1069 - pearson_correlation: 0.7125 - euclidean_distance: 0.1703
Epoch 186/250
76/76 [==============================] - 0s 840us/step - loss: 0.1044 - accuracy: 0.9563 - mae: 0.1044 - pearson_correlation: 0.7201 - euclidean_distance: 0.1661
Epoch 187/250
76/76 [==============================] - 0s 862us/step - loss: 0.1046 - accuracy: 0.9563 - mae: 0.1046 - pearson_correlation: 0.7230 - euclidean_distance: 0.1665
Epoch 188/250
76/76 [==============================] - 0s 836us/step - loss: 0.1056 - accuracy: 0.9563 - mae: 0.1056 - pearson_correlation: 0.7113 - euclidean_distance: 0.1681
Epoch 189/250
76/76 [==============================] - 0s 828us/step - loss: 0.1052 - accuracy: 0.9563 - mae: 0.1052 - pearson_correlation: 0.7135 - euclidean_distance: 0.1677
Epoch 190/250
76/76 [==============================] - 0s 831us/step - loss: 0.1064 - accuracy: 0.9563 - mae: 0.1064 - pearson_correlation: 0.7112 - euclidean_distance: 0.1696
Epoch 191/250
76/76 [==============================] - 0s 826us/step - loss: 0.1031 - accuracy: 0.9563 - mae: 0.1031 - pearson_correlation: 0.7216 - euclidean_distance: 0.1645
Epoch 192/250
76/76 [==============================] - 0s 826us/step - loss: 0.1045 - accuracy: 0.9563 - mae: 0.1045 - pearson_correlation: 0.7156 - euclidean_distance: 0.1665
Epoch 193/250
76/76 [==============================] - 0s 826us/step - loss: 0.1062 - accuracy: 0.9563 - mae: 0.1062 - pearson_correlation: 0.7143 - euclidean_distance: 0.1691
Epoch 194/250
76/76 [==============================] - 0s 831us/step - loss: 0.1034 - accuracy: 0.9563 - mae: 0.1034 - pearson_correlation: 0.7193 - euclidean_distance: 0.1653
Epoch 195/250
76/76 [==============================] - 0s 829us/step - loss: 0.1083 - accuracy: 0.9563 - mae: 0.1083 - pearson_correlation: 0.7081 - euclidean_distance: 0.1725
Epoch 196/250
76/76 [==============================] - 0s 828us/step - loss: 0.1000 - accuracy: 0.9563 - mae: 0.1000 - pearson_correlation: 0.7256 - euclidean_distance: 0.1599
Epoch 197/250
76/76 [==============================] - 0s 829us/step - loss: 0.1008 - accuracy: 0.9563 - mae: 0.1008 - pearson_correlation: 0.7215 - euclidean_distance: 0.1610
Epoch 198/250
76/76 [==============================] - 0s 832us/step - loss: 0.1030 - accuracy: 0.9563 - mae: 0.1030 - pearson_correlation: 0.7246 - euclidean_distance: 0.1639
Epoch 199/250
76/76 [==============================] - 0s 825us/step - loss: 0.1041 - accuracy: 0.9563 - mae: 0.1041 - pearson_correlation: 0.7198 - euclidean_distance: 0.1657
Epoch 200/250
76/76 [==============================] - 0s 824us/step - loss: 0.1032 - accuracy: 0.9563 - mae: 0.1032 - pearson_correlation: 0.7200 - euclidean_distance: 0.1648
Epoch 201/250
76/76 [==============================] - 0s 824us/step - loss: 0.1053 - accuracy: 0.9563 - mae: 0.1053 - pearson_correlation: 0.7192 - euclidean_distance: 0.1680
Epoch 202/250
76/76 [==============================] - 0s 830us/step - loss: 0.1026 - accuracy: 0.9563 - mae: 0.1026 - pearson_correlation: 0.7186 - euclidean_distance: 0.1636
Epoch 203/250
76/76 [==============================] - 0s 893us/step - loss: 0.1046 - accuracy: 0.9563 - mae: 0.1046 - pearson_correlation: 0.7179 - euclidean_distance: 0.1666
Epoch 204/250
76/76 [==============================] - 0s 882us/step - loss: 0.1038 - accuracy: 0.9563 - mae: 0.1038 - pearson_correlation: 0.7180 - euclidean_distance: 0.1650
Epoch 205/250
76/76 [==============================] - 0s 844us/step - loss: 0.1009 - accuracy: 0.9563 - mae: 0.1009 - pearson_correlation: 0.7272 - euclidean_distance: 0.1608
Epoch 206/250
76/76 [==============================] - 0s 833us/step - loss: 0.1010 - accuracy: 0.9563 - mae: 0.1010 - pearson_correlation: 0.7252 - euclidean_distance: 0.1617
Epoch 207/250
76/76 [==============================] - 0s 829us/step - loss: 0.1020 - accuracy: 0.9563 - mae: 0.1020 - pearson_correlation: 0.7304 - euclidean_distance: 0.1624
Epoch 208/250
76/76 [==============================] - 0s 827us/step - loss: 0.1029 - accuracy: 0.9563 - mae: 0.1029 - pearson_correlation: 0.7165 - euclidean_distance: 0.1643
Epoch 209/250
76/76 [==============================] - 0s 833us/step - loss: 0.1021 - accuracy: 0.9563 - mae: 0.1021 - pearson_correlation: 0.7210 - euclidean_distance: 0.1633
Epoch 210/250
76/76 [==============================] - 0s 830us/step - loss: 0.1018 - accuracy: 0.9563 - mae: 0.1018 - pearson_correlation: 0.7300 - euclidean_distance: 0.1620
Epoch 211/250
76/76 [==============================] - 0s 826us/step - loss: 0.1021 - accuracy: 0.9563 - mae: 0.1021 - pearson_correlation: 0.7267 - euclidean_distance: 0.1624
Epoch 212/250
76/76 [==============================] - 0s 831us/step - loss: 0.1027 - accuracy: 0.9563 - mae: 0.1027 - pearson_correlation: 0.7195 - euclidean_distance: 0.1632
Epoch 213/250
76/76 [==============================] - 0s 826us/step - loss: 0.1018 - accuracy: 0.9563 - mae: 0.1018 - pearson_correlation: 0.7197 - euclidean_distance: 0.1628
Epoch 214/250
76/76 [==============================] - 0s 828us/step - loss: 0.1004 - accuracy: 0.9563 - mae: 0.1004 - pearson_correlation: 0.7281 - euclidean_distance: 0.1602
Epoch 215/250
76/76 [==============================] - 0s 834us/step - loss: 0.0999 - accuracy: 0.9563 - mae: 0.0999 - pearson_correlation: 0.7279 - euclidean_distance: 0.1598
Epoch 216/250
76/76 [==============================] - 0s 864us/step - loss: 0.1008 - accuracy: 0.9563 - mae: 0.1008 - pearson_correlation: 0.7267 - euclidean_distance: 0.1608
Epoch 217/250
76/76 [==============================] - 0s 830us/step - loss: 0.1020 - accuracy: 0.9563 - mae: 0.1020 - pearson_correlation: 0.7190 - euclidean_distance: 0.1630
Epoch 218/250
76/76 [==============================] - 0s 832us/step - loss: 0.1003 - accuracy: 0.9563 - mae: 0.1003 - pearson_correlation: 0.7226 - euclidean_distance: 0.1605
Epoch 219/250
76/76 [==============================] - 0s 829us/step - loss: 0.0996 - accuracy: 0.9563 - mae: 0.0996 - pearson_correlation: 0.7293 - euclidean_distance: 0.1588
Epoch 220/250
76/76 [==============================] - 0s 859us/step - loss: 0.1016 - accuracy: 0.9563 - mae: 0.1016 - pearson_correlation: 0.7237 - euclidean_distance: 0.1616
Epoch 221/250
76/76 [==============================] - 0s 836us/step - loss: 0.0984 - accuracy: 0.9563 - mae: 0.0984 - pearson_correlation: 0.7328 - euclidean_distance: 0.1567
Epoch 222/250
76/76 [==============================] - 0s 825us/step - loss: 0.1014 - accuracy: 0.9563 - mae: 0.1014 - pearson_correlation: 0.7243 - euclidean_distance: 0.1617
Epoch 223/250
76/76 [==============================] - 0s 830us/step - loss: 0.1001 - accuracy: 0.9563 - mae: 0.1001 - pearson_correlation: 0.7209 - euclidean_distance: 0.1594
Epoch 224/250
76/76 [==============================] - 0s 830us/step - loss: 0.0970 - accuracy: 0.9563 - mae: 0.0970 - pearson_correlation: 0.7357 - euclidean_distance: 0.1556
Epoch 225/250
76/76 [==============================] - 0s 828us/step - loss: 0.1016 - accuracy: 0.9563 - mae: 0.1016 - pearson_correlation: 0.7204 - euclidean_distance: 0.1618
Epoch 226/250
76/76 [==============================] - 0s 822us/step - loss: 0.0973 - accuracy: 0.9563 - mae: 0.0973 - pearson_correlation: 0.7366 - euclidean_distance: 0.1548
Epoch 227/250
76/76 [==============================] - 0s 833us/step - loss: 0.0957 - accuracy: 0.9563 - mae: 0.0957 - pearson_correlation: 0.7397 - euclidean_distance: 0.1533
Epoch 228/250
76/76 [==============================] - 0s 829us/step - loss: 0.0976 - accuracy: 0.9563 - mae: 0.0976 - pearson_correlation: 0.7308 - euclidean_distance: 0.1564
Epoch 229/250
76/76 [==============================] - 0s 827us/step - loss: 0.0992 - accuracy: 0.9563 - mae: 0.0992 - pearson_correlation: 0.7339 - euclidean_distance: 0.1587
Epoch 230/250
76/76 [==============================] - 0s 826us/step - loss: 0.0973 - accuracy: 0.9563 - mae: 0.0973 - pearson_correlation: 0.7365 - euclidean_distance: 0.1558
Epoch 231/250
76/76 [==============================] - 0s 830us/step - loss: 0.1004 - accuracy: 0.9563 - mae: 0.1004 - pearson_correlation: 0.7262 - euclidean_distance: 0.1603
Epoch 232/250
76/76 [==============================] - 0s 829us/step - loss: 0.0989 - accuracy: 0.9563 - mae: 0.0989 - pearson_correlation: 0.7318 - euclidean_distance: 0.1574
Epoch 233/250
76/76 [==============================] - 0s 825us/step - loss: 0.0969 - accuracy: 0.9563 - mae: 0.0969 - pearson_correlation: 0.7362 - euclidean_distance: 0.1551
Epoch 234/250
76/76 [==============================] - 0s 830us/step - loss: 0.0968 - accuracy: 0.9563 - mae: 0.0968 - pearson_correlation: 0.7356 - euclidean_distance: 0.1551
Epoch 235/250
76/76 [==============================] - 0s 828us/step - loss: 0.0987 - accuracy: 0.9563 - mae: 0.0987 - pearson_correlation: 0.7283 - euclidean_distance: 0.1576
Epoch 236/250
76/76 [==============================] - 0s 824us/step - loss: 0.0987 - accuracy: 0.9563 - mae: 0.0987 - pearson_correlation: 0.7355 - euclidean_distance: 0.1568
Epoch 237/250
76/76 [==============================] - 0s 824us/step - loss: 0.0972 - accuracy: 0.9563 - mae: 0.0972 - pearson_correlation: 0.7395 - euclidean_distance: 0.1552
Epoch 238/250
76/76 [==============================] - 0s 825us/step - loss: 0.0984 - accuracy: 0.9563 - mae: 0.0984 - pearson_correlation: 0.7290 - euclidean_distance: 0.1572
Epoch 239/250
76/76 [==============================] - 0s 825us/step - loss: 0.0959 - accuracy: 0.9563 - mae: 0.0959 - pearson_correlation: 0.7397 - euclidean_distance: 0.1533
Epoch 240/250
76/76 [==============================] - 0s 826us/step - loss: 0.0994 - accuracy: 0.9563 - mae: 0.0994 - pearson_correlation: 0.7292 - euclidean_distance: 0.1583
Epoch 241/250
76/76 [==============================] - 0s 826us/step - loss: 0.0982 - accuracy: 0.9563 - mae: 0.0982 - pearson_correlation: 0.7299 - euclidean_distance: 0.1573
Epoch 242/250
76/76 [==============================] - 0s 826us/step - loss: 0.0971 - accuracy: 0.9563 - mae: 0.0971 - pearson_correlation: 0.7357 - euclidean_distance: 0.1552
Epoch 243/250
76/76 [==============================] - 0s 829us/step - loss: 0.0963 - accuracy: 0.9563 - mae: 0.0963 - pearson_correlation: 0.7355 - euclidean_distance: 0.1546
Epoch 244/250
76/76 [==============================] - 0s 822us/step - loss: 0.0971 - accuracy: 0.9563 - mae: 0.0971 - pearson_correlation: 0.7327 - euclidean_distance: 0.1549
Epoch 245/250
76/76 [==============================] - 0s 825us/step - loss: 0.0975 - accuracy: 0.9563 - mae: 0.0975 - pearson_correlation: 0.7367 - euclidean_distance: 0.1556
Epoch 246/250
76/76 [==============================] - 0s 826us/step - loss: 0.0968 - accuracy: 0.9563 - mae: 0.0968 - pearson_correlation: 0.7364 - euclidean_distance: 0.1551
Epoch 247/250
76/76 [==============================] - 0s 829us/step - loss: 0.0965 - accuracy: 0.9563 - mae: 0.0965 - pearson_correlation: 0.7394 - euclidean_distance: 0.1539
Epoch 248/250
76/76 [==============================] - 0s 825us/step - loss: 0.0963 - accuracy: 0.9563 - mae: 0.0963 - pearson_correlation: 0.7359 - euclidean_distance: 0.1539
Epoch 249/250
76/76 [==============================] - 0s 828us/step - loss: 0.0951 - accuracy: 0.9563 - mae: 0.0951 - pearson_correlation: 0.7339 - euclidean_distance: 0.1520
Epoch 250/250
76/76 [==============================] - 0s 827us/step - loss: 0.0957 - accuracy: 0.9563 - mae: 0.0957 - pearson_correlation: 0.7348 - euclidean_distance: 0.1533
38/38 [==============================] - 0s 480us/step
Epoch 1/250
76/76 [==============================] - 1s 840us/step - loss: 0.8678 - accuracy: 0.9524 - mae: 0.8678 - pearson_correlation: 0.5561 - euclidean_distance: 1.2576
Epoch 2/250
76/76 [==============================] - 0s 819us/step - loss: 0.8599 - accuracy: 0.9510 - mae: 0.8599 - pearson_correlation: 0.5576 - euclidean_distance: 1.2458
Epoch 3/250
76/76 [==============================] - 0s 835us/step - loss: 0.8536 - accuracy: 0.9502 - mae: 0.8536 - pearson_correlation: 0.5621 - euclidean_distance: 1.2370
Epoch 4/250
76/76 [==============================] - 0s 829us/step - loss: 0.8464 - accuracy: 0.9532 - mae: 0.8464 - pearson_correlation: 0.5597 - euclidean_distance: 1.2265
Epoch 5/250
76/76 [==============================] - 0s 825us/step - loss: 0.8382 - accuracy: 0.9550 - mae: 0.8382 - pearson_correlation: 0.5667 - euclidean_distance: 1.2143
Epoch 6/250
76/76 [==============================] - 0s 826us/step - loss: 0.8321 - accuracy: 0.9515 - mae: 0.8321 - pearson_correlation: 0.5642 - euclidean_distance: 1.2063
Epoch 7/250
76/76 [==============================] - 0s 824us/step - loss: 0.8246 - accuracy: 0.9528 - mae: 0.8246 - pearson_correlation: 0.5646 - euclidean_distance: 1.1948
Epoch 8/250
76/76 [==============================] - 0s 822us/step - loss: 0.8153 - accuracy: 0.9537 - mae: 0.8153 - pearson_correlation: 0.5698 - euclidean_distance: 1.1814
Epoch 9/250
76/76 [==============================] - 0s 836us/step - loss: 0.8076 - accuracy: 0.9524 - mae: 0.8076 - pearson_correlation: 0.5703 - euclidean_distance: 1.1702
Epoch 10/250
76/76 [==============================] - 0s 839us/step - loss: 0.8001 - accuracy: 0.9510 - mae: 0.8001 - pearson_correlation: 0.5697 - euclidean_distance: 1.1594
Epoch 11/250
76/76 [==============================] - 0s 829us/step - loss: 0.7928 - accuracy: 0.9532 - mae: 0.7928 - pearson_correlation: 0.5713 - euclidean_distance: 1.1493
Epoch 12/250
76/76 [==============================] - 0s 829us/step - loss: 0.7844 - accuracy: 0.9515 - mae: 0.7844 - pearson_correlation: 0.5699 - euclidean_distance: 1.1367
Epoch 13/250
76/76 [==============================] - 0s 827us/step - loss: 0.7759 - accuracy: 0.9506 - mae: 0.7759 - pearson_correlation: 0.5776 - euclidean_distance: 1.1250
Epoch 14/250
76/76 [==============================] - 0s 829us/step - loss: 0.7682 - accuracy: 0.9510 - mae: 0.7682 - pearson_correlation: 0.5859 - euclidean_distance: 1.1133
Epoch 15/250
76/76 [==============================] - 0s 833us/step - loss: 0.7592 - accuracy: 0.9524 - mae: 0.7592 - pearson_correlation: 0.5810 - euclidean_distance: 1.1005
Epoch 16/250
76/76 [==============================] - 0s 846us/step - loss: 0.7516 - accuracy: 0.9502 - mae: 0.7516 - pearson_correlation: 0.5807 - euclidean_distance: 1.0894
Epoch 17/250
76/76 [==============================] - 0s 850us/step - loss: 0.7433 - accuracy: 0.9510 - mae: 0.7433 - pearson_correlation: 0.5809 - euclidean_distance: 1.0779
Epoch 18/250
76/76 [==============================] - 0s 851us/step - loss: 0.7356 - accuracy: 0.9532 - mae: 0.7356 - pearson_correlation: 0.5846 - euclidean_distance: 1.0671
Epoch 19/250
76/76 [==============================] - 0s 828us/step - loss: 0.7274 - accuracy: 0.9515 - mae: 0.7274 - pearson_correlation: 0.5893 - euclidean_distance: 1.0550
Epoch 20/250
76/76 [==============================] - 0s 838us/step - loss: 0.7196 - accuracy: 0.9471 - mae: 0.7196 - pearson_correlation: 0.5902 - euclidean_distance: 1.0436
Epoch 21/250
76/76 [==============================] - 0s 827us/step - loss: 0.7106 - accuracy: 0.9510 - mae: 0.7106 - pearson_correlation: 0.5866 - euclidean_distance: 1.0314
Epoch 22/250
76/76 [==============================] - 0s 826us/step - loss: 0.7030 - accuracy: 0.9524 - mae: 0.7030 - pearson_correlation: 0.5944 - euclidean_distance: 1.0199
Epoch 23/250
76/76 [==============================] - 0s 823us/step - loss: 0.6950 - accuracy: 0.9502 - mae: 0.6950 - pearson_correlation: 0.5973 - euclidean_distance: 1.0086
Epoch 24/250
76/76 [==============================] - 0s 823us/step - loss: 0.6867 - accuracy: 0.9475 - mae: 0.6867 - pearson_correlation: 0.5952 - euclidean_distance: 0.9969
Epoch 25/250
76/76 [==============================] - 0s 822us/step - loss: 0.6785 - accuracy: 0.9466 - mae: 0.6785 - pearson_correlation: 0.6008 - euclidean_distance: 0.9849
Epoch 26/250
76/76 [==============================] - 0s 829us/step - loss: 0.6710 - accuracy: 0.9466 - mae: 0.6710 - pearson_correlation: 0.5994 - euclidean_distance: 0.9744
Epoch 27/250
76/76 [==============================] - 0s 829us/step - loss: 0.6618 - accuracy: 0.9431 - mae: 0.6618 - pearson_correlation: 0.6003 - euclidean_distance: 0.9614
Epoch 28/250
76/76 [==============================] - 0s 909us/step - loss: 0.6540 - accuracy: 0.9449 - mae: 0.6540 - pearson_correlation: 0.6025 - euclidean_distance: 0.9508
Epoch 29/250
76/76 [==============================] - 0s 913us/step - loss: 0.6458 - accuracy: 0.9484 - mae: 0.6458 - pearson_correlation: 0.6021 - euclidean_distance: 0.9388
Epoch 30/250
76/76 [==============================] - 0s 926us/step - loss: 0.6373 - accuracy: 0.9422 - mae: 0.6373 - pearson_correlation: 0.6037 - euclidean_distance: 0.9267
Epoch 31/250
76/76 [==============================] - 0s 911us/step - loss: 0.6288 - accuracy: 0.9418 - mae: 0.6288 - pearson_correlation: 0.6102 - euclidean_distance: 0.9145
Epoch 32/250
76/76 [==============================] - 0s 892us/step - loss: 0.6209 - accuracy: 0.9413 - mae: 0.6209 - pearson_correlation: 0.6126 - euclidean_distance: 0.9034
Epoch 33/250
76/76 [==============================] - 0s 917us/step - loss: 0.6133 - accuracy: 0.9347 - mae: 0.6133 - pearson_correlation: 0.6066 - euclidean_distance: 0.8930
Epoch 34/250
76/76 [==============================] - 0s 982us/step - loss: 0.6040 - accuracy: 0.9396 - mae: 0.6040 - pearson_correlation: 0.6146 - euclidean_distance: 0.8796
Epoch 35/250
76/76 [==============================] - 0s 917us/step - loss: 0.5962 - accuracy: 0.9391 - mae: 0.5962 - pearson_correlation: 0.6142 - euclidean_distance: 0.8686
Epoch 36/250
76/76 [==============================] - 0s 941us/step - loss: 0.5892 - accuracy: 0.9400 - mae: 0.5892 - pearson_correlation: 0.6118 - euclidean_distance: 0.8594
Epoch 37/250
76/76 [==============================] - 0s 935us/step - loss: 0.5806 - accuracy: 0.9431 - mae: 0.5806 - pearson_correlation: 0.6155 - euclidean_distance: 0.8468
Epoch 38/250
76/76 [==============================] - 0s 848us/step - loss: 0.5726 - accuracy: 0.9338 - mae: 0.5726 - pearson_correlation: 0.6139 - euclidean_distance: 0.8359
Epoch 39/250
76/76 [==============================] - 0s 830us/step - loss: 0.5642 - accuracy: 0.9360 - mae: 0.5642 - pearson_correlation: 0.6187 - euclidean_distance: 0.8240
Epoch 40/250
76/76 [==============================] - 0s 827us/step - loss: 0.5564 - accuracy: 0.9369 - mae: 0.5564 - pearson_correlation: 0.6181 - euclidean_distance: 0.8129
Epoch 41/250
76/76 [==============================] - 0s 826us/step - loss: 0.5464 - accuracy: 0.9338 - mae: 0.5464 - pearson_correlation: 0.6182 - euclidean_distance: 0.7995
Epoch 42/250
76/76 [==============================] - 0s 831us/step - loss: 0.5401 - accuracy: 0.9365 - mae: 0.5401 - pearson_correlation: 0.6150 - euclidean_distance: 0.7907
Epoch 43/250
76/76 [==============================] - 0s 826us/step - loss: 0.5320 - accuracy: 0.9330 - mae: 0.5320 - pearson_correlation: 0.6190 - euclidean_distance: 0.7788
Epoch 44/250
76/76 [==============================] - 0s 822us/step - loss: 0.5235 - accuracy: 0.9307 - mae: 0.5235 - pearson_correlation: 0.6188 - euclidean_distance: 0.7670
Epoch 45/250
76/76 [==============================] - 0s 828us/step - loss: 0.5150 - accuracy: 0.9299 - mae: 0.5150 - pearson_correlation: 0.6198 - euclidean_distance: 0.7559
Epoch 46/250
76/76 [==============================] - 0s 827us/step - loss: 0.5072 - accuracy: 0.9263 - mae: 0.5072 - pearson_correlation: 0.6227 - euclidean_distance: 0.7450
Epoch 47/250
76/76 [==============================] - 0s 825us/step - loss: 0.4984 - accuracy: 0.9290 - mae: 0.4984 - pearson_correlation: 0.6211 - euclidean_distance: 0.7328
Epoch 48/250
76/76 [==============================] - 0s 829us/step - loss: 0.4896 - accuracy: 0.9321 - mae: 0.4896 - pearson_correlation: 0.6199 - euclidean_distance: 0.7205
Epoch 49/250
76/76 [==============================] - 0s 827us/step - loss: 0.4820 - accuracy: 0.9290 - mae: 0.4820 - pearson_correlation: 0.6210 - euclidean_distance: 0.7101
Epoch 50/250
76/76 [==============================] - 0s 826us/step - loss: 0.4727 - accuracy: 0.9263 - mae: 0.4727 - pearson_correlation: 0.6203 - euclidean_distance: 0.6969
Epoch 51/250
76/76 [==============================] - 0s 830us/step - loss: 0.4649 - accuracy: 0.9272 - mae: 0.4649 - pearson_correlation: 0.6208 - euclidean_distance: 0.6863
Epoch 52/250
76/76 [==============================] - 0s 827us/step - loss: 0.4573 - accuracy: 0.9285 - mae: 0.4573 - pearson_correlation: 0.6177 - euclidean_distance: 0.6760
Epoch 53/250
76/76 [==============================] - 0s 834us/step - loss: 0.4491 - accuracy: 0.9281 - mae: 0.4491 - pearson_correlation: 0.6183 - euclidean_distance: 0.6647
Epoch 54/250
76/76 [==============================] - 0s 819us/step - loss: 0.4401 - accuracy: 0.9268 - mae: 0.4401 - pearson_correlation: 0.6197 - euclidean_distance: 0.6518
Epoch 55/250
76/76 [==============================] - 0s 826us/step - loss: 0.4310 - accuracy: 0.9202 - mae: 0.4310 - pearson_correlation: 0.6126 - euclidean_distance: 0.6391
Epoch 56/250
76/76 [==============================] - 0s 829us/step - loss: 0.4235 - accuracy: 0.9268 - mae: 0.4235 - pearson_correlation: 0.6120 - euclidean_distance: 0.6283
Epoch 57/250
76/76 [==============================] - 0s 828us/step - loss: 0.4161 - accuracy: 0.9299 - mae: 0.4161 - pearson_correlation: 0.6129 - euclidean_distance: 0.6181
Epoch 58/250
76/76 [==============================] - 0s 826us/step - loss: 0.4081 - accuracy: 0.9259 - mae: 0.4081 - pearson_correlation: 0.6114 - euclidean_distance: 0.6075
Epoch 59/250
76/76 [==============================] - 0s 824us/step - loss: 0.3993 - accuracy: 0.9263 - mae: 0.3993 - pearson_correlation: 0.6118 - euclidean_distance: 0.5944
Epoch 60/250
76/76 [==============================] - 0s 828us/step - loss: 0.3912 - accuracy: 0.9307 - mae: 0.3912 - pearson_correlation: 0.6124 - euclidean_distance: 0.5829
Epoch 61/250
76/76 [==============================] - 0s 831us/step - loss: 0.3841 - accuracy: 0.9268 - mae: 0.3841 - pearson_correlation: 0.6094 - euclidean_distance: 0.5724
Epoch 62/250
76/76 [==============================] - 0s 830us/step - loss: 0.3740 - accuracy: 0.9277 - mae: 0.3740 - pearson_correlation: 0.6093 - euclidean_distance: 0.5580
Epoch 63/250
76/76 [==============================] - 0s 831us/step - loss: 0.3666 - accuracy: 0.9330 - mae: 0.3666 - pearson_correlation: 0.6127 - euclidean_distance: 0.5475
Epoch 64/250
76/76 [==============================] - 0s 827us/step - loss: 0.3594 - accuracy: 0.9281 - mae: 0.3594 - pearson_correlation: 0.6076 - euclidean_distance: 0.5373
Epoch 65/250
76/76 [==============================] - 0s 827us/step - loss: 0.3511 - accuracy: 0.9237 - mae: 0.3511 - pearson_correlation: 0.6051 - euclidean_distance: 0.5257
Epoch 66/250
76/76 [==============================] - 0s 838us/step - loss: 0.3435 - accuracy: 0.9290 - mae: 0.3435 - pearson_correlation: 0.6058 - euclidean_distance: 0.5149
Epoch 67/250
76/76 [==============================] - 0s 835us/step - loss: 0.3362 - accuracy: 0.9285 - mae: 0.3362 - pearson_correlation: 0.6001 - euclidean_distance: 0.5048
Epoch 68/250
76/76 [==============================] - 0s 827us/step - loss: 0.3276 - accuracy: 0.9281 - mae: 0.3276 - pearson_correlation: 0.6052 - euclidean_distance: 0.4918
Epoch 69/250
76/76 [==============================] - 0s 824us/step - loss: 0.3206 - accuracy: 0.9281 - mae: 0.3206 - pearson_correlation: 0.6038 - euclidean_distance: 0.4816
Epoch 70/250
76/76 [==============================] - 0s 833us/step - loss: 0.3130 - accuracy: 0.9294 - mae: 0.3130 - pearson_correlation: 0.6026 - euclidean_distance: 0.4708
Epoch 71/250
76/76 [==============================] - 0s 827us/step - loss: 0.3059 - accuracy: 0.9294 - mae: 0.3059 - pearson_correlation: 0.5994 - euclidean_distance: 0.4607
Epoch 72/250
76/76 [==============================] - 0s 826us/step - loss: 0.2981 - accuracy: 0.9299 - mae: 0.2981 - pearson_correlation: 0.5958 - euclidean_distance: 0.4491
Epoch 73/250
76/76 [==============================] - 0s 834us/step - loss: 0.2910 - accuracy: 0.9338 - mae: 0.2910 - pearson_correlation: 0.5904 - euclidean_distance: 0.4383
Epoch 74/250
76/76 [==============================] - 0s 832us/step - loss: 0.2837 - accuracy: 0.9347 - mae: 0.2837 - pearson_correlation: 0.5923 - euclidean_distance: 0.4281
Epoch 75/250
76/76 [==============================] - 0s 824us/step - loss: 0.2765 - accuracy: 0.9330 - mae: 0.2765 - pearson_correlation: 0.5909 - euclidean_distance: 0.4175
Epoch 76/250
76/76 [==============================] - 0s 827us/step - loss: 0.2714 - accuracy: 0.9325 - mae: 0.2714 - pearson_correlation: 0.5910 - euclidean_distance: 0.4103
Epoch 77/250
76/76 [==============================] - 0s 825us/step - loss: 0.2619 - accuracy: 0.9303 - mae: 0.2619 - pearson_correlation: 0.5909 - euclidean_distance: 0.3963
Epoch 78/250
76/76 [==============================] - 0s 826us/step - loss: 0.2568 - accuracy: 0.9316 - mae: 0.2568 - pearson_correlation: 0.5858 - euclidean_distance: 0.3889
Epoch 79/250
76/76 [==============================] - 0s 828us/step - loss: 0.2506 - accuracy: 0.9347 - mae: 0.2506 - pearson_correlation: 0.5785 - euclidean_distance: 0.3804
Epoch 80/250
76/76 [==============================] - 0s 835us/step - loss: 0.2427 - accuracy: 0.9325 - mae: 0.2427 - pearson_correlation: 0.5814 - euclidean_distance: 0.3693
Epoch 81/250
76/76 [==============================] - 0s 833us/step - loss: 0.2374 - accuracy: 0.9374 - mae: 0.2374 - pearson_correlation: 0.5768 - euclidean_distance: 0.3616
Epoch 82/250
76/76 [==============================] - 0s 828us/step - loss: 0.2325 - accuracy: 0.9334 - mae: 0.2325 - pearson_correlation: 0.5760 - euclidean_distance: 0.3549
Epoch 83/250
76/76 [==============================] - 0s 833us/step - loss: 0.2268 - accuracy: 0.9307 - mae: 0.2268 - pearson_correlation: 0.5737 - euclidean_distance: 0.3461
Epoch 84/250
76/76 [==============================] - 0s 829us/step - loss: 0.2196 - accuracy: 0.9338 - mae: 0.2196 - pearson_correlation: 0.5702 - euclidean_distance: 0.3367
Epoch 85/250
76/76 [==============================] - 0s 827us/step - loss: 0.2146 - accuracy: 0.9307 - mae: 0.2146 - pearson_correlation: 0.5704 - euclidean_distance: 0.3296
Epoch 86/250
76/76 [==============================] - 0s 825us/step - loss: 0.2116 - accuracy: 0.9374 - mae: 0.2116 - pearson_correlation: 0.5711 - euclidean_distance: 0.3261
Epoch 87/250
76/76 [==============================] - 0s 823us/step - loss: 0.2054 - accuracy: 0.9343 - mae: 0.2054 - pearson_correlation: 0.5733 - euclidean_distance: 0.3168
Epoch 88/250
76/76 [==============================] - 0s 836us/step - loss: 0.2019 - accuracy: 0.9369 - mae: 0.2019 - pearson_correlation: 0.5691 - euclidean_distance: 0.3118
Epoch 89/250
76/76 [==============================] - 0s 834us/step - loss: 0.1974 - accuracy: 0.9369 - mae: 0.1974 - pearson_correlation: 0.5729 - euclidean_distance: 0.3057
Epoch 90/250
76/76 [==============================] - 0s 828us/step - loss: 0.1950 - accuracy: 0.9404 - mae: 0.1950 - pearson_correlation: 0.5728 - euclidean_distance: 0.3016
Epoch 91/250
76/76 [==============================] - 0s 836us/step - loss: 0.1920 - accuracy: 0.9365 - mae: 0.1920 - pearson_correlation: 0.5704 - euclidean_distance: 0.2974
Epoch 92/250
76/76 [==============================] - 0s 830us/step - loss: 0.1879 - accuracy: 0.9400 - mae: 0.1879 - pearson_correlation: 0.5765 - euclidean_distance: 0.2913
Epoch 93/250
76/76 [==============================] - 0s 829us/step - loss: 0.1857 - accuracy: 0.9387 - mae: 0.1857 - pearson_correlation: 0.5750 - euclidean_distance: 0.2886
Epoch 94/250
76/76 [==============================] - 0s 830us/step - loss: 0.1820 - accuracy: 0.9400 - mae: 0.1820 - pearson_correlation: 0.5808 - euclidean_distance: 0.2832
Epoch 95/250
76/76 [==============================] - 0s 831us/step - loss: 0.1798 - accuracy: 0.9391 - mae: 0.1798 - pearson_correlation: 0.5823 - euclidean_distance: 0.2798
Epoch 96/250
76/76 [==============================] - 0s 828us/step - loss: 0.1800 - accuracy: 0.9382 - mae: 0.1800 - pearson_correlation: 0.5786 - euclidean_distance: 0.2796
Epoch 97/250
76/76 [==============================] - 0s 825us/step - loss: 0.1774 - accuracy: 0.9391 - mae: 0.1774 - pearson_correlation: 0.5825 - euclidean_distance: 0.2757
Epoch 98/250
76/76 [==============================] - 0s 830us/step - loss: 0.1738 - accuracy: 0.9427 - mae: 0.1738 - pearson_correlation: 0.5819 - euclidean_distance: 0.2708
Epoch 99/250
76/76 [==============================] - 0s 837us/step - loss: 0.1723 - accuracy: 0.9440 - mae: 0.1723 - pearson_correlation: 0.5818 - euclidean_distance: 0.2686
Epoch 100/250
76/76 [==============================] - 0s 837us/step - loss: 0.1690 - accuracy: 0.9435 - mae: 0.1690 - pearson_correlation: 0.5859 - euclidean_distance: 0.2639
Epoch 101/250
76/76 [==============================] - 0s 827us/step - loss: 0.1663 - accuracy: 0.9488 - mae: 0.1663 - pearson_correlation: 0.5935 - euclidean_distance: 0.2592
Epoch 102/250
76/76 [==============================] - 0s 835us/step - loss: 0.1659 - accuracy: 0.9449 - mae: 0.1659 - pearson_correlation: 0.5911 - euclidean_distance: 0.2587
Epoch 103/250
76/76 [==============================] - 0s 833us/step - loss: 0.1643 - accuracy: 0.9444 - mae: 0.1643 - pearson_correlation: 0.5913 - euclidean_distance: 0.2565
Epoch 104/250
76/76 [==============================] - 0s 829us/step - loss: 0.1617 - accuracy: 0.9466 - mae: 0.1617 - pearson_correlation: 0.5993 - euclidean_distance: 0.2525
Epoch 105/250
76/76 [==============================] - 0s 827us/step - loss: 0.1592 - accuracy: 0.9475 - mae: 0.1592 - pearson_correlation: 0.5988 - euclidean_distance: 0.2491
Epoch 106/250
76/76 [==============================] - 0s 825us/step - loss: 0.1564 - accuracy: 0.9422 - mae: 0.1564 - pearson_correlation: 0.6015 - euclidean_distance: 0.2448
Epoch 107/250
76/76 [==============================] - 0s 829us/step - loss: 0.1569 - accuracy: 0.9484 - mae: 0.1569 - pearson_correlation: 0.6007 - euclidean_distance: 0.2449
Epoch 108/250
76/76 [==============================] - 0s 829us/step - loss: 0.1572 - accuracy: 0.9453 - mae: 0.1572 - pearson_correlation: 0.6022 - euclidean_distance: 0.2456
Epoch 109/250
76/76 [==============================] - 0s 825us/step - loss: 0.1529 - accuracy: 0.9453 - mae: 0.1529 - pearson_correlation: 0.6096 - euclidean_distance: 0.2389
Epoch 110/250
76/76 [==============================] - 0s 829us/step - loss: 0.1537 - accuracy: 0.9466 - mae: 0.1537 - pearson_correlation: 0.6008 - euclidean_distance: 0.2413
Epoch 111/250
76/76 [==============================] - 0s 830us/step - loss: 0.1521 - accuracy: 0.9462 - mae: 0.1521 - pearson_correlation: 0.6110 - euclidean_distance: 0.2384
Epoch 112/250
76/76 [==============================] - 0s 826us/step - loss: 0.1492 - accuracy: 0.9475 - mae: 0.1492 - pearson_correlation: 0.6173 - euclidean_distance: 0.2337
Epoch 113/250
76/76 [==============================] - 0s 854us/step - loss: 0.1490 - accuracy: 0.9475 - mae: 0.1490 - pearson_correlation: 0.6093 - euclidean_distance: 0.2339
Epoch 114/250
76/76 [==============================] - 0s 837us/step - loss: 0.1476 - accuracy: 0.9475 - mae: 0.1476 - pearson_correlation: 0.6184 - euclidean_distance: 0.2309
Epoch 115/250
76/76 [==============================] - 0s 831us/step - loss: 0.1457 - accuracy: 0.9479 - mae: 0.1457 - pearson_correlation: 0.6199 - euclidean_distance: 0.2287
Epoch 116/250
76/76 [==============================] - 0s 833us/step - loss: 0.1421 - accuracy: 0.9471 - mae: 0.1421 - pearson_correlation: 0.6223 - euclidean_distance: 0.2236
Epoch 117/250
76/76 [==============================] - 0s 835us/step - loss: 0.1416 - accuracy: 0.9475 - mae: 0.1416 - pearson_correlation: 0.6244 - euclidean_distance: 0.2223
Epoch 118/250
76/76 [==============================] - 0s 830us/step - loss: 0.1410 - accuracy: 0.9479 - mae: 0.1410 - pearson_correlation: 0.6237 - euclidean_distance: 0.2220
Epoch 119/250
76/76 [==============================] - 0s 837us/step - loss: 0.1412 - accuracy: 0.9457 - mae: 0.1412 - pearson_correlation: 0.6220 - euclidean_distance: 0.2225
Epoch 120/250
76/76 [==============================] - 0s 829us/step - loss: 0.1391 - accuracy: 0.9484 - mae: 0.1391 - pearson_correlation: 0.6282 - euclidean_distance: 0.2187
Epoch 121/250
76/76 [==============================] - 0s 825us/step - loss: 0.1395 - accuracy: 0.9466 - mae: 0.1395 - pearson_correlation: 0.6279 - euclidean_distance: 0.2193
Epoch 122/250
76/76 [==============================] - 0s 828us/step - loss: 0.1393 - accuracy: 0.9488 - mae: 0.1393 - pearson_correlation: 0.6245 - euclidean_distance: 0.2193
Epoch 123/250
76/76 [==============================] - 0s 827us/step - loss: 0.1375 - accuracy: 0.9466 - mae: 0.1375 - pearson_correlation: 0.6308 - euclidean_distance: 0.2161
Epoch 124/250
76/76 [==============================] - 0s 839us/step - loss: 0.1370 - accuracy: 0.9497 - mae: 0.1370 - pearson_correlation: 0.6309 - euclidean_distance: 0.2153
Epoch 125/250
76/76 [==============================] - 0s 837us/step - loss: 0.1329 - accuracy: 0.9479 - mae: 0.1329 - pearson_correlation: 0.6433 - euclidean_distance: 0.2096
Epoch 126/250
76/76 [==============================] - 0s 832us/step - loss: 0.1323 - accuracy: 0.9493 - mae: 0.1323 - pearson_correlation: 0.6389 - euclidean_distance: 0.2084
Epoch 127/250
76/76 [==============================] - 0s 827us/step - loss: 0.1326 - accuracy: 0.9488 - mae: 0.1326 - pearson_correlation: 0.6345 - euclidean_distance: 0.2095
Epoch 128/250
76/76 [==============================] - 0s 826us/step - loss: 0.1294 - accuracy: 0.9488 - mae: 0.1294 - pearson_correlation: 0.6440 - euclidean_distance: 0.2044
Epoch 129/250
76/76 [==============================] - 0s 831us/step - loss: 0.1299 - accuracy: 0.9479 - mae: 0.1299 - pearson_correlation: 0.6424 - euclidean_distance: 0.2053
Epoch 130/250
76/76 [==============================] - 0s 832us/step - loss: 0.1283 - accuracy: 0.9506 - mae: 0.1283 - pearson_correlation: 0.6485 - euclidean_distance: 0.2031
Epoch 131/250
76/76 [==============================] - 0s 823us/step - loss: 0.1313 - accuracy: 0.9488 - mae: 0.1313 - pearson_correlation: 0.6404 - euclidean_distance: 0.2068
Epoch 132/250
76/76 [==============================] - 0s 826us/step - loss: 0.1297 - accuracy: 0.9475 - mae: 0.1297 - pearson_correlation: 0.6457 - euclidean_distance: 0.2049
Epoch 133/250
76/76 [==============================] - 0s 826us/step - loss: 0.1285 - accuracy: 0.9453 - mae: 0.1285 - pearson_correlation: 0.6469 - euclidean_distance: 0.2028
Epoch 134/250
76/76 [==============================] - 0s 836us/step - loss: 0.1271 - accuracy: 0.9502 - mae: 0.1271 - pearson_correlation: 0.6501 - euclidean_distance: 0.2013
Epoch 135/250
76/76 [==============================] - 0s 829us/step - loss: 0.1250 - accuracy: 0.9475 - mae: 0.1250 - pearson_correlation: 0.6569 - euclidean_distance: 0.1978
Epoch 136/250
76/76 [==============================] - 0s 834us/step - loss: 0.1230 - accuracy: 0.9488 - mae: 0.1230 - pearson_correlation: 0.6599 - euclidean_distance: 0.1949
Epoch 137/250
76/76 [==============================] - 0s 831us/step - loss: 0.1237 - accuracy: 0.9444 - mae: 0.1237 - pearson_correlation: 0.6541 - euclidean_distance: 0.1960
Epoch 138/250
76/76 [==============================] - 0s 835us/step - loss: 0.1224 - accuracy: 0.9515 - mae: 0.1224 - pearson_correlation: 0.6626 - euclidean_distance: 0.1940
Epoch 139/250
76/76 [==============================] - 0s 834us/step - loss: 0.1233 - accuracy: 0.9515 - mae: 0.1233 - pearson_correlation: 0.6596 - euclidean_distance: 0.1952
Epoch 140/250
76/76 [==============================] - 0s 830us/step - loss: 0.1211 - accuracy: 0.9493 - mae: 0.1211 - pearson_correlation: 0.6619 - euclidean_distance: 0.1917
Epoch 141/250
76/76 [==============================] - 0s 836us/step - loss: 0.1183 - accuracy: 0.9497 - mae: 0.1183 - pearson_correlation: 0.6726 - euclidean_distance: 0.1874
Epoch 142/250
76/76 [==============================] - 0s 831us/step - loss: 0.1188 - accuracy: 0.9502 - mae: 0.1188 - pearson_correlation: 0.6725 - euclidean_distance: 0.1884
Epoch 143/250
76/76 [==============================] - 0s 832us/step - loss: 0.1179 - accuracy: 0.9506 - mae: 0.1179 - pearson_correlation: 0.6656 - euclidean_distance: 0.1869
Epoch 144/250
76/76 [==============================] - 0s 832us/step - loss: 0.1186 - accuracy: 0.9497 - mae: 0.1186 - pearson_correlation: 0.6658 - euclidean_distance: 0.1885
Epoch 145/250
76/76 [==============================] - 0s 836us/step - loss: 0.1153 - accuracy: 0.9506 - mae: 0.1153 - pearson_correlation: 0.6748 - euclidean_distance: 0.1832
Epoch 146/250
76/76 [==============================] - 0s 830us/step - loss: 0.1154 - accuracy: 0.9475 - mae: 0.1154 - pearson_correlation: 0.6759 - euclidean_distance: 0.1831
Epoch 147/250
76/76 [==============================] - 0s 828us/step - loss: 0.1183 - accuracy: 0.9497 - mae: 0.1183 - pearson_correlation: 0.6687 - euclidean_distance: 0.1888
Epoch 148/250
76/76 [==============================] - 0s 829us/step - loss: 0.1172 - accuracy: 0.9488 - mae: 0.1172 - pearson_correlation: 0.6748 - euclidean_distance: 0.1862
Epoch 149/250
76/76 [==============================] - 0s 830us/step - loss: 0.1128 - accuracy: 0.9506 - mae: 0.1128 - pearson_correlation: 0.6766 - euclidean_distance: 0.1798
Epoch 150/250
76/76 [==============================] - 0s 854us/step - loss: 0.1130 - accuracy: 0.9479 - mae: 0.1130 - pearson_correlation: 0.6802 - euclidean_distance: 0.1797
Epoch 151/250
76/76 [==============================] - 0s 830us/step - loss: 0.1127 - accuracy: 0.9506 - mae: 0.1127 - pearson_correlation: 0.6803 - euclidean_distance: 0.1796
Epoch 152/250
76/76 [==============================] - 0s 833us/step - loss: 0.1151 - accuracy: 0.9524 - mae: 0.1151 - pearson_correlation: 0.6758 - euclidean_distance: 0.1825
Epoch 153/250
76/76 [==============================] - 0s 827us/step - loss: 0.1145 - accuracy: 0.9475 - mae: 0.1145 - pearson_correlation: 0.6792 - euclidean_distance: 0.1819
Epoch 154/250
76/76 [==============================] - 0s 830us/step - loss: 0.1126 - accuracy: 0.9497 - mae: 0.1126 - pearson_correlation: 0.6825 - euclidean_distance: 0.1791
Epoch 155/250
76/76 [==============================] - 0s 827us/step - loss: 0.1129 - accuracy: 0.9502 - mae: 0.1129 - pearson_correlation: 0.6806 - euclidean_distance: 0.1794
Epoch 156/250
76/76 [==============================] - 0s 825us/step - loss: 0.1113 - accuracy: 0.9502 - mae: 0.1113 - pearson_correlation: 0.6806 - euclidean_distance: 0.1772
Epoch 157/250
76/76 [==============================] - 0s 827us/step - loss: 0.1096 - accuracy: 0.9519 - mae: 0.1096 - pearson_correlation: 0.6860 - euclidean_distance: 0.1752
Epoch 158/250
76/76 [==============================] - 0s 826us/step - loss: 0.1089 - accuracy: 0.9524 - mae: 0.1089 - pearson_correlation: 0.6906 - euclidean_distance: 0.1743
Epoch 159/250
76/76 [==============================] - 0s 827us/step - loss: 0.1096 - accuracy: 0.9502 - mae: 0.1096 - pearson_correlation: 0.6899 - euclidean_distance: 0.1750
Epoch 160/250
76/76 [==============================] - 0s 831us/step - loss: 0.1066 - accuracy: 0.9519 - mae: 0.1066 - pearson_correlation: 0.6950 - euclidean_distance: 0.1706
Epoch 161/250
76/76 [==============================] - 0s 829us/step - loss: 0.1068 - accuracy: 0.9493 - mae: 0.1068 - pearson_correlation: 0.6956 - euclidean_distance: 0.1707
Epoch 162/250
76/76 [==============================] - 0s 832us/step - loss: 0.1080 - accuracy: 0.9497 - mae: 0.1080 - pearson_correlation: 0.6908 - euclidean_distance: 0.1721
Epoch 163/250
76/76 [==============================] - 0s 823us/step - loss: 0.1065 - accuracy: 0.9484 - mae: 0.1065 - pearson_correlation: 0.6918 - euclidean_distance: 0.1705
Epoch 164/250
76/76 [==============================] - 0s 820us/step - loss: 0.1059 - accuracy: 0.9497 - mae: 0.1059 - pearson_correlation: 0.6973 - euclidean_distance: 0.1696
Epoch 165/250
76/76 [==============================] - 0s 829us/step - loss: 0.1059 - accuracy: 0.9506 - mae: 0.1059 - pearson_correlation: 0.6976 - euclidean_distance: 0.1694
Epoch 166/250
76/76 [==============================] - 0s 827us/step - loss: 0.1068 - accuracy: 0.9510 - mae: 0.1068 - pearson_correlation: 0.6961 - euclidean_distance: 0.1704
Epoch 167/250
76/76 [==============================] - 0s 827us/step - loss: 0.1062 - accuracy: 0.9506 - mae: 0.1062 - pearson_correlation: 0.6942 - euclidean_distance: 0.1696
Epoch 168/250
76/76 [==============================] - 0s 831us/step - loss: 0.1061 - accuracy: 0.9497 - mae: 0.1061 - pearson_correlation: 0.6997 - euclidean_distance: 0.1692
Epoch 169/250
76/76 [==============================] - 0s 828us/step - loss: 0.1028 - accuracy: 0.9510 - mae: 0.1028 - pearson_correlation: 0.7025 - euclidean_distance: 0.1646
Epoch 170/250
76/76 [==============================] - 0s 822us/step - loss: 0.1035 - accuracy: 0.9497 - mae: 0.1035 - pearson_correlation: 0.7068 - euclidean_distance: 0.1656
Epoch 171/250
76/76 [==============================] - 0s 826us/step - loss: 0.1024 - accuracy: 0.9528 - mae: 0.1024 - pearson_correlation: 0.7066 - euclidean_distance: 0.1643
Epoch 172/250
76/76 [==============================] - 0s 828us/step - loss: 0.1037 - accuracy: 0.9497 - mae: 0.1037 - pearson_correlation: 0.7048 - euclidean_distance: 0.1659
Epoch 173/250
76/76 [==============================] - 0s 823us/step - loss: 0.1018 - accuracy: 0.9515 - mae: 0.1018 - pearson_correlation: 0.7135 - euclidean_distance: 0.1626
Epoch 174/250
76/76 [==============================] - 0s 831us/step - loss: 0.1025 - accuracy: 0.9510 - mae: 0.1025 - pearson_correlation: 0.7090 - euclidean_distance: 0.1641
Epoch 175/250
76/76 [==============================] - 0s 828us/step - loss: 0.1029 - accuracy: 0.9519 - mae: 0.1029 - pearson_correlation: 0.7061 - euclidean_distance: 0.1651
Epoch 176/250
76/76 [==============================] - 0s 824us/step - loss: 0.1023 - accuracy: 0.9515 - mae: 0.1023 - pearson_correlation: 0.7107 - euclidean_distance: 0.1636
Epoch 177/250
76/76 [==============================] - 0s 822us/step - loss: 0.1003 - accuracy: 0.9524 - mae: 0.1003 - pearson_correlation: 0.7077 - euclidean_distance: 0.1609
Epoch 178/250
76/76 [==============================] - 0s 827us/step - loss: 0.1000 - accuracy: 0.9519 - mae: 0.1000 - pearson_correlation: 0.7150 - euclidean_distance: 0.1605
Epoch 179/250
76/76 [==============================] - 0s 830us/step - loss: 0.0984 - accuracy: 0.9506 - mae: 0.0984 - pearson_correlation: 0.7165 - euclidean_distance: 0.1579
Epoch 180/250
76/76 [==============================] - 0s 826us/step - loss: 0.1000 - accuracy: 0.9528 - mae: 0.1000 - pearson_correlation: 0.7166 - euclidean_distance: 0.1602
Epoch 181/250
76/76 [==============================] - 0s 775us/step - loss: 0.0987 - accuracy: 0.9532 - mae: 0.0987 - pearson_correlation: 0.7180 - euclidean_distance: 0.1580
Epoch 182/250
76/76 [==============================] - 0s 767us/step - loss: 0.0993 - accuracy: 0.9510 - mae: 0.0993 - pearson_correlation: 0.7149 - euclidean_distance: 0.1594
Epoch 183/250
76/76 [==============================] - 0s 770us/step - loss: 0.1001 - accuracy: 0.9532 - mae: 0.1001 - pearson_correlation: 0.7137 - euclidean_distance: 0.1603
Epoch 184/250
76/76 [==============================] - 0s 768us/step - loss: 0.0978 - accuracy: 0.9528 - mae: 0.0978 - pearson_correlation: 0.7211 - euclidean_distance: 0.1566
Epoch 185/250
76/76 [==============================] - 0s 770us/step - loss: 0.0960 - accuracy: 0.9524 - mae: 0.0960 - pearson_correlation: 0.7270 - euclidean_distance: 0.1542
Epoch 186/250
76/76 [==============================] - 0s 773us/step - loss: 0.0987 - accuracy: 0.9519 - mae: 0.0987 - pearson_correlation: 0.7212 - euclidean_distance: 0.1582
Epoch 187/250
76/76 [==============================] - 0s 771us/step - loss: 0.0975 - accuracy: 0.9528 - mae: 0.0975 - pearson_correlation: 0.7191 - euclidean_distance: 0.1564
Epoch 188/250
76/76 [==============================] - 0s 775us/step - loss: 0.0967 - accuracy: 0.9528 - mae: 0.0967 - pearson_correlation: 0.7196 - euclidean_distance: 0.1552
Epoch 189/250
76/76 [==============================] - 0s 772us/step - loss: 0.0970 - accuracy: 0.9515 - mae: 0.0970 - pearson_correlation: 0.7251 - euclidean_distance: 0.1553
Epoch 190/250
76/76 [==============================] - 0s 773us/step - loss: 0.0953 - accuracy: 0.9532 - mae: 0.0953 - pearson_correlation: 0.7248 - euclidean_distance: 0.1532
Epoch 191/250
76/76 [==============================] - 0s 775us/step - loss: 0.0955 - accuracy: 0.9524 - mae: 0.0955 - pearson_correlation: 0.7284 - euclidean_distance: 0.1531
Epoch 192/250
76/76 [==============================] - 0s 771us/step - loss: 0.0942 - accuracy: 0.9532 - mae: 0.0942 - pearson_correlation: 0.7305 - euclidean_distance: 0.1516
Epoch 193/250
76/76 [==============================] - 0s 776us/step - loss: 0.0960 - accuracy: 0.9528 - mae: 0.0960 - pearson_correlation: 0.7296 - euclidean_distance: 0.1544
Epoch 194/250
76/76 [==============================] - 0s 774us/step - loss: 0.0936 - accuracy: 0.9541 - mae: 0.0936 - pearson_correlation: 0.7303 - euclidean_distance: 0.1505
Epoch 195/250
76/76 [==============================] - 0s 768us/step - loss: 0.0939 - accuracy: 0.9550 - mae: 0.0939 - pearson_correlation: 0.7333 - euclidean_distance: 0.1509
Epoch 196/250
76/76 [==============================] - 0s 771us/step - loss: 0.0940 - accuracy: 0.9519 - mae: 0.0940 - pearson_correlation: 0.7319 - euclidean_distance: 0.1513
Epoch 197/250
76/76 [==============================] - 0s 779us/step - loss: 0.0950 - accuracy: 0.9515 - mae: 0.0950 - pearson_correlation: 0.7318 - euclidean_distance: 0.1520
Epoch 198/250
76/76 [==============================] - 0s 777us/step - loss: 0.0929 - accuracy: 0.9537 - mae: 0.0929 - pearson_correlation: 0.7355 - euclidean_distance: 0.1494
Epoch 199/250
76/76 [==============================] - 0s 776us/step - loss: 0.0922 - accuracy: 0.9532 - mae: 0.0922 - pearson_correlation: 0.7381 - euclidean_distance: 0.1481
Epoch 200/250
76/76 [==============================] - 0s 775us/step - loss: 0.0965 - accuracy: 0.9524 - mae: 0.0965 - pearson_correlation: 0.7242 - euclidean_distance: 0.1547
Epoch 201/250
76/76 [==============================] - 0s 770us/step - loss: 0.0923 - accuracy: 0.9546 - mae: 0.0923 - pearson_correlation: 0.7328 - euclidean_distance: 0.1483
Epoch 202/250
76/76 [==============================] - 0s 770us/step - loss: 0.0932 - accuracy: 0.9541 - mae: 0.0932 - pearson_correlation: 0.7310 - euclidean_distance: 0.1499
Epoch 203/250
76/76 [==============================] - 0s 771us/step - loss: 0.0911 - accuracy: 0.9546 - mae: 0.0911 - pearson_correlation: 0.7387 - euclidean_distance: 0.1465
Epoch 204/250
76/76 [==============================] - 0s 771us/step - loss: 0.0912 - accuracy: 0.9510 - mae: 0.0912 - pearson_correlation: 0.7392 - euclidean_distance: 0.1463
Epoch 205/250
76/76 [==============================] - 0s 775us/step - loss: 0.0928 - accuracy: 0.9546 - mae: 0.0928 - pearson_correlation: 0.7348 - euclidean_distance: 0.1492
Epoch 206/250
76/76 [==============================] - 0s 777us/step - loss: 0.0902 - accuracy: 0.9537 - mae: 0.0902 - pearson_correlation: 0.7394 - euclidean_distance: 0.1454
Epoch 207/250
76/76 [==============================] - 0s 771us/step - loss: 0.0909 - accuracy: 0.9532 - mae: 0.0909 - pearson_correlation: 0.7393 - euclidean_distance: 0.1462
Epoch 208/250
76/76 [==============================] - 0s 772us/step - loss: 0.0894 - accuracy: 0.9532 - mae: 0.0894 - pearson_correlation: 0.7434 - euclidean_distance: 0.1440
Epoch 209/250
76/76 [==============================] - 0s 774us/step - loss: 0.0901 - accuracy: 0.9537 - mae: 0.0901 - pearson_correlation: 0.7401 - euclidean_distance: 0.1454
Epoch 210/250
76/76 [==============================] - 0s 776us/step - loss: 0.0881 - accuracy: 0.9532 - mae: 0.0881 - pearson_correlation: 0.7482 - euclidean_distance: 0.1414
Epoch 211/250
76/76 [==============================] - 0s 774us/step - loss: 0.0893 - accuracy: 0.9532 - mae: 0.0893 - pearson_correlation: 0.7453 - euclidean_distance: 0.1438
Epoch 212/250
76/76 [==============================] - 0s 776us/step - loss: 0.0909 - accuracy: 0.9537 - mae: 0.0909 - pearson_correlation: 0.7397 - euclidean_distance: 0.1466
Epoch 213/250
76/76 [==============================] - 0s 770us/step - loss: 0.0893 - accuracy: 0.9524 - mae: 0.0893 - pearson_correlation: 0.7460 - euclidean_distance: 0.1439
Epoch 214/250
76/76 [==============================] - 0s 772us/step - loss: 0.0901 - accuracy: 0.9532 - mae: 0.0901 - pearson_correlation: 0.7433 - euclidean_distance: 0.1449
Epoch 215/250
76/76 [==============================] - 0s 767us/step - loss: 0.0903 - accuracy: 0.9528 - mae: 0.0903 - pearson_correlation: 0.7436 - euclidean_distance: 0.1457
Epoch 216/250
76/76 [==============================] - 0s 781us/step - loss: 0.0885 - accuracy: 0.9537 - mae: 0.0885 - pearson_correlation: 0.7498 - euclidean_distance: 0.1428
Epoch 217/250
76/76 [==============================] - 0s 773us/step - loss: 0.0906 - accuracy: 0.9541 - mae: 0.0906 - pearson_correlation: 0.7419 - euclidean_distance: 0.1459
Epoch 218/250
76/76 [==============================] - 0s 772us/step - loss: 0.0883 - accuracy: 0.9554 - mae: 0.0883 - pearson_correlation: 0.7463 - euclidean_distance: 0.1422
Epoch 219/250
76/76 [==============================] - 0s 768us/step - loss: 0.0853 - accuracy: 0.9550 - mae: 0.0853 - pearson_correlation: 0.7542 - euclidean_distance: 0.1378
Epoch 220/250
76/76 [==============================] - 0s 774us/step - loss: 0.0884 - accuracy: 0.9541 - mae: 0.0884 - pearson_correlation: 0.7486 - euclidean_distance: 0.1426
Epoch 221/250
76/76 [==============================] - 0s 769us/step - loss: 0.0869 - accuracy: 0.9541 - mae: 0.0869 - pearson_correlation: 0.7505 - euclidean_distance: 0.1401
Epoch 222/250
76/76 [==============================] - 0s 773us/step - loss: 0.0868 - accuracy: 0.9532 - mae: 0.0868 - pearson_correlation: 0.7473 - euclidean_distance: 0.1401
Epoch 223/250
76/76 [==============================] - 0s 767us/step - loss: 0.0891 - accuracy: 0.9541 - mae: 0.0891 - pearson_correlation: 0.7432 - euclidean_distance: 0.1436
Epoch 224/250
76/76 [==============================] - 0s 772us/step - loss: 0.0858 - accuracy: 0.9554 - mae: 0.0858 - pearson_correlation: 0.7508 - euclidean_distance: 0.1387
Epoch 225/250
76/76 [==============================] - 0s 783us/step - loss: 0.0877 - accuracy: 0.9541 - mae: 0.0877 - pearson_correlation: 0.7513 - euclidean_distance: 0.1413
Epoch 226/250
76/76 [==============================] - 0s 772us/step - loss: 0.0856 - accuracy: 0.9541 - mae: 0.0856 - pearson_correlation: 0.7553 - euclidean_distance: 0.1385
Epoch 227/250
76/76 [==============================] - 0s 774us/step - loss: 0.0882 - accuracy: 0.9532 - mae: 0.0882 - pearson_correlation: 0.7487 - euclidean_distance: 0.1422
Epoch 228/250
76/76 [==============================] - 0s 773us/step - loss: 0.0875 - accuracy: 0.9546 - mae: 0.0875 - pearson_correlation: 0.7469 - euclidean_distance: 0.1412
Epoch 229/250
76/76 [==============================] - 0s 773us/step - loss: 0.0870 - accuracy: 0.9532 - mae: 0.0870 - pearson_correlation: 0.7533 - euclidean_distance: 0.1401
Epoch 230/250
76/76 [==============================] - 0s 773us/step - loss: 0.0884 - accuracy: 0.9541 - mae: 0.0884 - pearson_correlation: 0.7477 - euclidean_distance: 0.1428
Epoch 231/250
76/76 [==============================] - 0s 778us/step - loss: 0.0844 - accuracy: 0.9550 - mae: 0.0844 - pearson_correlation: 0.7582 - euclidean_distance: 0.1363
Epoch 232/250
76/76 [==============================] - 0s 775us/step - loss: 0.0857 - accuracy: 0.9537 - mae: 0.0857 - pearson_correlation: 0.7552 - euclidean_distance: 0.1382
Epoch 233/250
76/76 [==============================] - 0s 772us/step - loss: 0.0867 - accuracy: 0.9532 - mae: 0.0867 - pearson_correlation: 0.7514 - euclidean_distance: 0.1399
Epoch 234/250
76/76 [==============================] - 0s 771us/step - loss: 0.0851 - accuracy: 0.9537 - mae: 0.0851 - pearson_correlation: 0.7607 - euclidean_distance: 0.1373
Epoch 235/250
76/76 [==============================] - 0s 773us/step - loss: 0.0854 - accuracy: 0.9546 - mae: 0.0854 - pearson_correlation: 0.7550 - euclidean_distance: 0.1386
Epoch 236/250
76/76 [==============================] - 0s 773us/step - loss: 0.0865 - accuracy: 0.9550 - mae: 0.0865 - pearson_correlation: 0.7502 - euclidean_distance: 0.1396
Epoch 237/250
76/76 [==============================] - 0s 774us/step - loss: 0.0846 - accuracy: 0.9546 - mae: 0.0846 - pearson_correlation: 0.7612 - euclidean_distance: 0.1369
Epoch 238/250
76/76 [==============================] - 0s 771us/step - loss: 0.0849 - accuracy: 0.9559 - mae: 0.0849 - pearson_correlation: 0.7594 - euclidean_distance: 0.1368
Epoch 239/250
76/76 [==============================] - 0s 774us/step - loss: 0.0836 - accuracy: 0.9541 - mae: 0.0836 - pearson_correlation: 0.7623 - euclidean_distance: 0.1349
Epoch 240/250
76/76 [==============================] - 0s 773us/step - loss: 0.0858 - accuracy: 0.9537 - mae: 0.0858 - pearson_correlation: 0.7541 - euclidean_distance: 0.1385
Epoch 241/250
76/76 [==============================] - 0s 770us/step - loss: 0.0862 - accuracy: 0.9541 - mae: 0.0862 - pearson_correlation: 0.7518 - euclidean_distance: 0.1395
Epoch 242/250
76/76 [==============================] - 0s 768us/step - loss: 0.0847 - accuracy: 0.9546 - mae: 0.0847 - pearson_correlation: 0.7567 - euclidean_distance: 0.1371
Epoch 243/250
76/76 [==============================] - 0s 771us/step - loss: 0.0855 - accuracy: 0.9546 - mae: 0.0855 - pearson_correlation: 0.7576 - euclidean_distance: 0.1380
Epoch 244/250
76/76 [==============================] - 0s 782us/step - loss: 0.0847 - accuracy: 0.9554 - mae: 0.0847 - pearson_correlation: 0.7594 - euclidean_distance: 0.1369
Epoch 245/250
76/76 [==============================] - 0s 775us/step - loss: 0.0807 - accuracy: 0.9554 - mae: 0.0807 - pearson_correlation: 0.7659 - euclidean_distance: 0.1315
Epoch 246/250
76/76 [==============================] - 0s 772us/step - loss: 0.0854 - accuracy: 0.9554 - mae: 0.0854 - pearson_correlation: 0.7545 - euclidean_distance: 0.1380
Epoch 247/250
76/76 [==============================] - 0s 774us/step - loss: 0.0834 - accuracy: 0.9550 - mae: 0.0834 - pearson_correlation: 0.7632 - euclidean_distance: 0.1350
Epoch 248/250
76/76 [==============================] - 0s 768us/step - loss: 0.0832 - accuracy: 0.9546 - mae: 0.0832 - pearson_correlation: 0.7621 - euclidean_distance: 0.1346
Epoch 249/250
76/76 [==============================] - 0s 778us/step - loss: 0.0835 - accuracy: 0.9554 - mae: 0.0835 - pearson_correlation: 0.7606 - euclidean_distance: 0.1350
Epoch 250/250
76/76 [==============================] - 0s 773us/step - loss: 0.0845 - accuracy: 0.9546 - mae: 0.0845 - pearson_correlation: 0.7572 - euclidean_distance: 0.1364
38/38 [==============================] - 0s 473us/step
Epoch 1/250
76/76 [==============================] - 1s 852us/step - loss: 0.7301 - accuracy: 0.0728 - mae: 0.7301 - pearson_correlation: -0.5530 - euclidean_distance: 1.1562
Epoch 2/250
76/76 [==============================] - 0s 815us/step - loss: 0.7235 - accuracy: 0.0648 - mae: 0.7235 - pearson_correlation: -0.5560 - euclidean_distance: 1.1454
Epoch 3/250
76/76 [==============================] - 0s 785us/step - loss: 0.7187 - accuracy: 0.0666 - mae: 0.7187 - pearson_correlation: -0.5556 - euclidean_distance: 1.1385
Epoch 4/250
76/76 [==============================] - 0s 786us/step - loss: 0.7118 - accuracy: 0.0723 - mae: 0.7118 - pearson_correlation: -0.5509 - euclidean_distance: 1.1273
Epoch 5/250
76/76 [==============================] - 0s 785us/step - loss: 0.7083 - accuracy: 0.0670 - mae: 0.7083 - pearson_correlation: -0.5486 - euclidean_distance: 1.1208
Epoch 6/250
76/76 [==============================] - 0s 786us/step - loss: 0.6985 - accuracy: 0.0701 - mae: 0.6985 - pearson_correlation: -0.5465 - euclidean_distance: 1.1082
Epoch 7/250
76/76 [==============================] - 0s 794us/step - loss: 0.6927 - accuracy: 0.0692 - mae: 0.6927 - pearson_correlation: -0.5541 - euclidean_distance: 1.1003
Epoch 8/250
76/76 [==============================] - 0s 780us/step - loss: 0.6862 - accuracy: 0.0719 - mae: 0.6862 - pearson_correlation: -0.5493 - euclidean_distance: 1.0910
Epoch 9/250
76/76 [==============================] - 0s 809us/step - loss: 0.6812 - accuracy: 0.0661 - mae: 0.6812 - pearson_correlation: -0.5469 - euclidean_distance: 1.0825
Epoch 10/250
76/76 [==============================] - 0s 777us/step - loss: 0.6742 - accuracy: 0.0701 - mae: 0.6742 - pearson_correlation: -0.5477 - euclidean_distance: 1.0721
Epoch 11/250
76/76 [==============================] - 0s 779us/step - loss: 0.6663 - accuracy: 0.0723 - mae: 0.6663 - pearson_correlation: -0.5496 - euclidean_distance: 1.0623
Epoch 12/250
76/76 [==============================] - 0s 780us/step - loss: 0.6607 - accuracy: 0.0701 - mae: 0.6607 - pearson_correlation: -0.5440 - euclidean_distance: 1.0535
Epoch 13/250
76/76 [==============================] - 0s 830us/step - loss: 0.6535 - accuracy: 0.0732 - mae: 0.6535 - pearson_correlation: -0.5402 - euclidean_distance: 1.0432
Epoch 14/250
76/76 [==============================] - 0s 802us/step - loss: 0.6459 - accuracy: 0.0710 - mae: 0.6459 - pearson_correlation: -0.5453 - euclidean_distance: 1.0337
Epoch 15/250
76/76 [==============================] - 0s 786us/step - loss: 0.6405 - accuracy: 0.0741 - mae: 0.6405 - pearson_correlation: -0.5433 - euclidean_distance: 1.0247
Epoch 16/250
76/76 [==============================] - 0s 777us/step - loss: 0.6340 - accuracy: 0.0741 - mae: 0.6340 - pearson_correlation: -0.5431 - euclidean_distance: 1.0150
Epoch 17/250
76/76 [==============================] - 0s 781us/step - loss: 0.6278 - accuracy: 0.0679 - mae: 0.6278 - pearson_correlation: -0.5452 - euclidean_distance: 1.0070
Epoch 18/250
76/76 [==============================] - 0s 856us/step - loss: 0.6220 - accuracy: 0.0767 - mae: 0.6220 - pearson_correlation: -0.5356 - euclidean_distance: 0.9987
Epoch 19/250
76/76 [==============================] - 0s 905us/step - loss: 0.6138 - accuracy: 0.0758 - mae: 0.6138 - pearson_correlation: -0.5381 - euclidean_distance: 0.9874
Epoch 20/250
76/76 [==============================] - 0s 884us/step - loss: 0.6067 - accuracy: 0.0741 - mae: 0.6067 - pearson_correlation: -0.5335 - euclidean_distance: 0.9769
Epoch 21/250
76/76 [==============================] - 0s 879us/step - loss: 0.6006 - accuracy: 0.0807 - mae: 0.6006 - pearson_correlation: -0.5322 - euclidean_distance: 0.9687
Epoch 22/250
76/76 [==============================] - 0s 976us/step - loss: 0.5956 - accuracy: 0.0719 - mae: 0.5956 - pearson_correlation: -0.5356 - euclidean_distance: 0.9615
Epoch 23/250
76/76 [==============================] - 0s 885us/step - loss: 0.5876 - accuracy: 0.0758 - mae: 0.5876 - pearson_correlation: -0.5318 - euclidean_distance: 0.9497
Epoch 24/250
76/76 [==============================] - 0s 907us/step - loss: 0.5840 - accuracy: 0.0758 - mae: 0.5840 - pearson_correlation: -0.5318 - euclidean_distance: 0.9448
Epoch 25/250
76/76 [==============================] - 0s 941us/step - loss: 0.5780 - accuracy: 0.0714 - mae: 0.5780 - pearson_correlation: -0.5257 - euclidean_distance: 0.9363
Epoch 26/250
76/76 [==============================] - 0s 850us/step - loss: 0.5726 - accuracy: 0.0758 - mae: 0.5726 - pearson_correlation: -0.5243 - euclidean_distance: 0.9280
Epoch 27/250
76/76 [==============================] - 0s 789us/step - loss: 0.5663 - accuracy: 0.0802 - mae: 0.5663 - pearson_correlation: -0.5258 - euclidean_distance: 0.9196
Epoch 28/250
76/76 [==============================] - 0s 790us/step - loss: 0.5583 - accuracy: 0.0741 - mae: 0.5583 - pearson_correlation: -0.5161 - euclidean_distance: 0.9078
Epoch 29/250
76/76 [==============================] - 0s 795us/step - loss: 0.5540 - accuracy: 0.0829 - mae: 0.5540 - pearson_correlation: -0.5077 - euclidean_distance: 0.9010
Epoch 30/250
76/76 [==============================] - 0s 782us/step - loss: 0.5489 - accuracy: 0.0820 - mae: 0.5489 - pearson_correlation: -0.5128 - euclidean_distance: 0.8940
Epoch 31/250
76/76 [==============================] - 0s 782us/step - loss: 0.5438 - accuracy: 0.0816 - mae: 0.5438 - pearson_correlation: -0.5131 - euclidean_distance: 0.8859
Epoch 32/250
76/76 [==============================] - 0s 776us/step - loss: 0.5402 - accuracy: 0.0825 - mae: 0.5402 - pearson_correlation: -0.5092 - euclidean_distance: 0.8797
Epoch 33/250
76/76 [==============================] - 0s 783us/step - loss: 0.5337 - accuracy: 0.0842 - mae: 0.5337 - pearson_correlation: -0.4969 - euclidean_distance: 0.8712
Epoch 34/250
76/76 [==============================] - 0s 784us/step - loss: 0.5294 - accuracy: 0.0802 - mae: 0.5294 - pearson_correlation: -0.5037 - euclidean_distance: 0.8635
Epoch 35/250
76/76 [==============================] - 0s 779us/step - loss: 0.5242 - accuracy: 0.0798 - mae: 0.5242 - pearson_correlation: -0.5034 - euclidean_distance: 0.8567
Epoch 36/250
76/76 [==============================] - 0s 783us/step - loss: 0.5190 - accuracy: 0.0847 - mae: 0.5190 - pearson_correlation: -0.4974 - euclidean_distance: 0.8494
Epoch 37/250
76/76 [==============================] - 0s 787us/step - loss: 0.5152 - accuracy: 0.0860 - mae: 0.5152 - pearson_correlation: -0.4964 - euclidean_distance: 0.8424
Epoch 38/250
76/76 [==============================] - 0s 777us/step - loss: 0.5117 - accuracy: 0.0855 - mae: 0.5117 - pearson_correlation: -0.4948 - euclidean_distance: 0.8372
Epoch 39/250
76/76 [==============================] - 0s 779us/step - loss: 0.5064 - accuracy: 0.0829 - mae: 0.5064 - pearson_correlation: -0.4792 - euclidean_distance: 0.8292
Epoch 40/250
76/76 [==============================] - 0s 787us/step - loss: 0.5028 - accuracy: 0.0948 - mae: 0.5028 - pearson_correlation: -0.4797 - euclidean_distance: 0.8229
Epoch 41/250
76/76 [==============================] - 0s 787us/step - loss: 0.4971 - accuracy: 0.0922 - mae: 0.4971 - pearson_correlation: -0.4781 - euclidean_distance: 0.8155
Epoch 42/250
76/76 [==============================] - 0s 780us/step - loss: 0.4936 - accuracy: 0.0838 - mae: 0.4936 - pearson_correlation: -0.4723 - euclidean_distance: 0.8104
Epoch 43/250
76/76 [==============================] - 0s 791us/step - loss: 0.4896 - accuracy: 0.1036 - mae: 0.4896 - pearson_correlation: -0.4690 - euclidean_distance: 0.8036
Epoch 44/250
76/76 [==============================] - 0s 795us/step - loss: 0.4849 - accuracy: 0.0939 - mae: 0.4849 - pearson_correlation: -0.4735 - euclidean_distance: 0.7979
Epoch 45/250
76/76 [==============================] - 0s 790us/step - loss: 0.4811 - accuracy: 0.1045 - mae: 0.4811 - pearson_correlation: -0.4572 - euclidean_distance: 0.7912
Epoch 46/250
76/76 [==============================] - 0s 778us/step - loss: 0.4776 - accuracy: 0.0939 - mae: 0.4776 - pearson_correlation: -0.4673 - euclidean_distance: 0.7870
Epoch 47/250
76/76 [==============================] - 0s 779us/step - loss: 0.4736 - accuracy: 0.1063 - mae: 0.4736 - pearson_correlation: -0.4493 - euclidean_distance: 0.7791
Epoch 48/250
76/76 [==============================] - 0s 780us/step - loss: 0.4687 - accuracy: 0.1063 - mae: 0.4687 - pearson_correlation: -0.4462 - euclidean_distance: 0.7722
Epoch 49/250
76/76 [==============================] - 0s 779us/step - loss: 0.4673 - accuracy: 0.1063 - mae: 0.4673 - pearson_correlation: -0.4450 - euclidean_distance: 0.7697
Epoch 50/250
76/76 [==============================] - 0s 784us/step - loss: 0.4630 - accuracy: 0.1124 - mae: 0.4630 - pearson_correlation: -0.4469 - euclidean_distance: 0.7647
Epoch 51/250
76/76 [==============================] - 0s 786us/step - loss: 0.4601 - accuracy: 0.1182 - mae: 0.4601 - pearson_correlation: -0.4344 - euclidean_distance: 0.7590
Epoch 52/250
76/76 [==============================] - 0s 785us/step - loss: 0.4547 - accuracy: 0.1173 - mae: 0.4547 - pearson_correlation: -0.4351 - euclidean_distance: 0.7516
Epoch 53/250
76/76 [==============================] - 0s 784us/step - loss: 0.4506 - accuracy: 0.1243 - mae: 0.4506 - pearson_correlation: -0.4350 - euclidean_distance: 0.7474
Epoch 54/250
76/76 [==============================] - 0s 785us/step - loss: 0.4471 - accuracy: 0.1393 - mae: 0.4471 - pearson_correlation: -0.4195 - euclidean_distance: 0.7400
Epoch 55/250
76/76 [==============================] - 0s 779us/step - loss: 0.4452 - accuracy: 0.1310 - mae: 0.4452 - pearson_correlation: -0.4192 - euclidean_distance: 0.7374
Epoch 56/250
76/76 [==============================] - 0s 778us/step - loss: 0.4409 - accuracy: 0.1424 - mae: 0.4409 - pearson_correlation: -0.4172 - euclidean_distance: 0.7326
Epoch 57/250
76/76 [==============================] - 0s 784us/step - loss: 0.4380 - accuracy: 0.1464 - mae: 0.4380 - pearson_correlation: -0.4125 - euclidean_distance: 0.7274
Epoch 58/250
76/76 [==============================] - 0s 778us/step - loss: 0.4338 - accuracy: 0.1495 - mae: 0.4338 - pearson_correlation: -0.4036 - euclidean_distance: 0.7214
Epoch 59/250
76/76 [==============================] - 0s 779us/step - loss: 0.4315 - accuracy: 0.1662 - mae: 0.4315 - pearson_correlation: -0.4020 - euclidean_distance: 0.7166
Epoch 60/250
76/76 [==============================] - 0s 787us/step - loss: 0.4277 - accuracy: 0.1662 - mae: 0.4277 - pearson_correlation: -0.3984 - euclidean_distance: 0.7128
Epoch 61/250
76/76 [==============================] - 0s 777us/step - loss: 0.4241 - accuracy: 0.1702 - mae: 0.4241 - pearson_correlation: -0.4008 - euclidean_distance: 0.7073
Epoch 62/250
76/76 [==============================] - 0s 773us/step - loss: 0.4207 - accuracy: 0.1786 - mae: 0.4207 - pearson_correlation: -0.3918 - euclidean_distance: 0.7022
Epoch 63/250
76/76 [==============================] - 0s 775us/step - loss: 0.4171 - accuracy: 0.1777 - mae: 0.4171 - pearson_correlation: -0.3824 - euclidean_distance: 0.6963
Epoch 64/250
76/76 [==============================] - 0s 773us/step - loss: 0.4166 - accuracy: 0.1852 - mae: 0.4166 - pearson_correlation: -0.3731 - euclidean_distance: 0.6942
Epoch 65/250
76/76 [==============================] - 0s 775us/step - loss: 0.4133 - accuracy: 0.1900 - mae: 0.4133 - pearson_correlation: -0.3736 - euclidean_distance: 0.6890
Epoch 66/250
76/76 [==============================] - 0s 779us/step - loss: 0.4091 - accuracy: 0.1909 - mae: 0.4091 - pearson_correlation: -0.3660 - euclidean_distance: 0.6849
Epoch 67/250
76/76 [==============================] - 0s 776us/step - loss: 0.4065 - accuracy: 0.1997 - mae: 0.4065 - pearson_correlation: -0.3602 - euclidean_distance: 0.6805
Epoch 68/250
76/76 [==============================] - 0s 780us/step - loss: 0.4030 - accuracy: 0.2002 - mae: 0.4030 - pearson_correlation: -0.3681 - euclidean_distance: 0.6752
Epoch 69/250
76/76 [==============================] - 0s 776us/step - loss: 0.4002 - accuracy: 0.2011 - mae: 0.4002 - pearson_correlation: -0.3509 - euclidean_distance: 0.6703
Epoch 70/250
76/76 [==============================] - 0s 771us/step - loss: 0.3978 - accuracy: 0.2134 - mae: 0.3978 - pearson_correlation: -0.3409 - euclidean_distance: 0.6663
Epoch 71/250
76/76 [==============================] - 0s 825us/step - loss: 0.3933 - accuracy: 0.2094 - mae: 0.3933 - pearson_correlation: -0.3393 - euclidean_distance: 0.6597
Epoch 72/250
76/76 [==============================] - 0s 785us/step - loss: 0.3898 - accuracy: 0.2125 - mae: 0.3898 - pearson_correlation: -0.3336 - euclidean_distance: 0.6550
Epoch 73/250
76/76 [==============================] - 0s 773us/step - loss: 0.3901 - accuracy: 0.2231 - mae: 0.3901 - pearson_correlation: -0.3314 - euclidean_distance: 0.6542
Epoch 74/250
76/76 [==============================] - 0s 780us/step - loss: 0.3860 - accuracy: 0.2205 - mae: 0.3860 - pearson_correlation: -0.3282 - euclidean_distance: 0.6483
Epoch 75/250
76/76 [==============================] - 0s 783us/step - loss: 0.3828 - accuracy: 0.2288 - mae: 0.3828 - pearson_correlation: -0.3148 - euclidean_distance: 0.6433
Epoch 76/250
76/76 [==============================] - 0s 781us/step - loss: 0.3826 - accuracy: 0.2288 - mae: 0.3826 - pearson_correlation: -0.3222 - euclidean_distance: 0.6424
Epoch 77/250
76/76 [==============================] - 0s 776us/step - loss: 0.3784 - accuracy: 0.2315 - mae: 0.3784 - pearson_correlation: -0.3068 - euclidean_distance: 0.6365
Epoch 78/250
76/76 [==============================] - 0s 775us/step - loss: 0.3752 - accuracy: 0.2403 - mae: 0.3752 - pearson_correlation: -0.2996 - euclidean_distance: 0.6320
Epoch 79/250
76/76 [==============================] - 0s 774us/step - loss: 0.3725 - accuracy: 0.2416 - mae: 0.3725 - pearson_correlation: -0.2974 - euclidean_distance: 0.6270
Epoch 80/250
76/76 [==============================] - 0s 776us/step - loss: 0.3704 - accuracy: 0.2381 - mae: 0.3704 - pearson_correlation: -0.2882 - euclidean_distance: 0.6234
Epoch 81/250
76/76 [==============================] - 0s 781us/step - loss: 0.3676 - accuracy: 0.2421 - mae: 0.3676 - pearson_correlation: -0.2826 - euclidean_distance: 0.6192
Epoch 82/250
76/76 [==============================] - 0s 780us/step - loss: 0.3644 - accuracy: 0.2500 - mae: 0.3644 - pearson_correlation: -0.2861 - euclidean_distance: 0.6162
Epoch 83/250
76/76 [==============================] - 0s 778us/step - loss: 0.3637 - accuracy: 0.2451 - mae: 0.3637 - pearson_correlation: -0.2706 - euclidean_distance: 0.6131
Epoch 84/250
76/76 [==============================] - 0s 779us/step - loss: 0.3607 - accuracy: 0.2579 - mae: 0.3607 - pearson_correlation: -0.2680 - euclidean_distance: 0.6089
Epoch 85/250
76/76 [==============================] - 0s 773us/step - loss: 0.3565 - accuracy: 0.2518 - mae: 0.3565 - pearson_correlation: -0.2611 - euclidean_distance: 0.6021
Epoch 86/250
76/76 [==============================] - 0s 784us/step - loss: 0.3542 - accuracy: 0.2531 - mae: 0.3542 - pearson_correlation: -0.2504 - euclidean_distance: 0.5985
Epoch 87/250
76/76 [==============================] - 0s 777us/step - loss: 0.3524 - accuracy: 0.2579 - mae: 0.3524 - pearson_correlation: -0.2538 - euclidean_distance: 0.5959
Epoch 88/250
76/76 [==============================] - 0s 786us/step - loss: 0.3517 - accuracy: 0.2579 - mae: 0.3517 - pearson_correlation: -0.2485 - euclidean_distance: 0.5943
Epoch 89/250
76/76 [==============================] - 0s 785us/step - loss: 0.3472 - accuracy: 0.2663 - mae: 0.3472 - pearson_correlation: -0.2365 - euclidean_distance: 0.5870
Epoch 90/250
76/76 [==============================] - 0s 771us/step - loss: 0.3436 - accuracy: 0.2566 - mae: 0.3436 - pearson_correlation: -0.2306 - euclidean_distance: 0.5823
Epoch 91/250
76/76 [==============================] - 0s 778us/step - loss: 0.3413 - accuracy: 0.2738 - mae: 0.3413 - pearson_correlation: -0.2322 - euclidean_distance: 0.5781
Epoch 92/250
76/76 [==============================] - 0s 773us/step - loss: 0.3412 - accuracy: 0.2720 - mae: 0.3412 - pearson_correlation: -0.2210 - euclidean_distance: 0.5766
Epoch 93/250
76/76 [==============================] - 0s 787us/step - loss: 0.3377 - accuracy: 0.2778 - mae: 0.3377 - pearson_correlation: -0.2177 - euclidean_distance: 0.5714
Epoch 94/250
76/76 [==============================] - 0s 778us/step - loss: 0.3348 - accuracy: 0.2804 - mae: 0.3348 - pearson_correlation: -0.2044 - euclidean_distance: 0.5671
Epoch 95/250
76/76 [==============================] - 0s 775us/step - loss: 0.3317 - accuracy: 0.2795 - mae: 0.3317 - pearson_correlation: -0.2072 - euclidean_distance: 0.5626
Epoch 96/250
76/76 [==============================] - 0s 780us/step - loss: 0.3307 - accuracy: 0.2906 - mae: 0.3307 - pearson_correlation: -0.1974 - euclidean_distance: 0.5604
Epoch 97/250
76/76 [==============================] - 0s 783us/step - loss: 0.3264 - accuracy: 0.2892 - mae: 0.3264 - pearson_correlation: -0.1952 - euclidean_distance: 0.5544
Epoch 98/250
76/76 [==============================] - 0s 771us/step - loss: 0.3260 - accuracy: 0.2994 - mae: 0.3260 - pearson_correlation: -0.1845 - euclidean_distance: 0.5537
Epoch 99/250
76/76 [==============================] - 0s 773us/step - loss: 0.3220 - accuracy: 0.2994 - mae: 0.3220 - pearson_correlation: -0.1792 - euclidean_distance: 0.5472
Epoch 100/250
76/76 [==============================] - 0s 774us/step - loss: 0.3204 - accuracy: 0.3029 - mae: 0.3204 - pearson_correlation: -0.1710 - euclidean_distance: 0.5430
Epoch 101/250
76/76 [==============================] - 0s 777us/step - loss: 0.3185 - accuracy: 0.3060 - mae: 0.3185 - pearson_correlation: -0.1703 - euclidean_distance: 0.5407
Epoch 102/250
76/76 [==============================] - 0s 768us/step - loss: 0.3172 - accuracy: 0.3117 - mae: 0.3172 - pearson_correlation: -0.1632 - euclidean_distance: 0.5385
Epoch 103/250
76/76 [==============================] - 0s 777us/step - loss: 0.3150 - accuracy: 0.3091 - mae: 0.3150 - pearson_correlation: -0.1551 - euclidean_distance: 0.5350
Epoch 104/250
76/76 [==============================] - 0s 776us/step - loss: 0.3111 - accuracy: 0.3139 - mae: 0.3111 - pearson_correlation: -0.1440 - euclidean_distance: 0.5285
Epoch 105/250
76/76 [==============================] - 0s 773us/step - loss: 0.3077 - accuracy: 0.3232 - mae: 0.3077 - pearson_correlation: -0.1346 - euclidean_distance: 0.5233
Epoch 106/250
76/76 [==============================] - 0s 774us/step - loss: 0.3062 - accuracy: 0.3188 - mae: 0.3062 - pearson_correlation: -0.1244 - euclidean_distance: 0.5199
Epoch 107/250
76/76 [==============================] - 0s 778us/step - loss: 0.3029 - accuracy: 0.3364 - mae: 0.3029 - pearson_correlation: -0.1262 - euclidean_distance: 0.5154
Epoch 108/250
76/76 [==============================] - 0s 774us/step - loss: 0.3001 - accuracy: 0.3311 - mae: 0.3001 - pearson_correlation: -0.1065 - euclidean_distance: 0.5107
Epoch 109/250
76/76 [==============================] - 0s 777us/step - loss: 0.2975 - accuracy: 0.3457 - mae: 0.2975 - pearson_correlation: -0.1048 - euclidean_distance: 0.5053
Epoch 110/250
76/76 [==============================] - 0s 773us/step - loss: 0.2952 - accuracy: 0.3430 - mae: 0.2952 - pearson_correlation: -0.1007 - euclidean_distance: 0.5019
Epoch 111/250
76/76 [==============================] - 0s 774us/step - loss: 0.2941 - accuracy: 0.3602 - mae: 0.2941 - pearson_correlation: -0.0873 - euclidean_distance: 0.4990
Epoch 112/250
76/76 [==============================] - 0s 780us/step - loss: 0.2913 - accuracy: 0.3616 - mae: 0.2913 - pearson_correlation: -0.0767 - euclidean_distance: 0.4951
Epoch 113/250
76/76 [==============================] - 0s 772us/step - loss: 0.2911 - accuracy: 0.3695 - mae: 0.2911 - pearson_correlation: -0.0708 - euclidean_distance: 0.4941
Epoch 114/250
76/76 [==============================] - 0s 776us/step - loss: 0.2869 - accuracy: 0.3682 - mae: 0.2869 - pearson_correlation: -0.0665 - euclidean_distance: 0.4875
Epoch 115/250
76/76 [==============================] - 0s 772us/step - loss: 0.2844 - accuracy: 0.3765 - mae: 0.2844 - pearson_correlation: -0.0589 - euclidean_distance: 0.4832
Epoch 116/250
76/76 [==============================] - 0s 774us/step - loss: 0.2810 - accuracy: 0.3867 - mae: 0.2810 - pearson_correlation: -0.0444 - euclidean_distance: 0.4774
Epoch 117/250
76/76 [==============================] - 0s 780us/step - loss: 0.2773 - accuracy: 0.3986 - mae: 0.2773 - pearson_correlation: -0.0284 - euclidean_distance: 0.4721
Epoch 118/250
76/76 [==============================] - 0s 775us/step - loss: 0.2755 - accuracy: 0.3955 - mae: 0.2755 - pearson_correlation: -0.0293 - euclidean_distance: 0.4685
Epoch 119/250
76/76 [==============================] - 0s 779us/step - loss: 0.2748 - accuracy: 0.3924 - mae: 0.2748 - pearson_correlation: -0.0201 - euclidean_distance: 0.4666
Epoch 120/250
76/76 [==============================] - 0s 775us/step - loss: 0.2694 - accuracy: 0.4101 - mae: 0.2694 - pearson_correlation: -0.0073 - euclidean_distance: 0.4588
Epoch 121/250
76/76 [==============================] - 0s 781us/step - loss: 0.2696 - accuracy: 0.4255 - mae: 0.2696 - pearson_correlation: -0.0012 - euclidean_distance: 0.4573
Epoch 122/250
76/76 [==============================] - 0s 774us/step - loss: 0.2660 - accuracy: 0.4299 - mae: 0.2660 - pearson_correlation: 0.0164 - euclidean_distance: 0.4508
Epoch 123/250
76/76 [==============================] - 0s 773us/step - loss: 0.2645 - accuracy: 0.4361 - mae: 0.2645 - pearson_correlation: 0.0260 - euclidean_distance: 0.4483
Epoch 124/250
76/76 [==============================] - 0s 775us/step - loss: 0.2608 - accuracy: 0.4383 - mae: 0.2608 - pearson_correlation: 0.0372 - euclidean_distance: 0.4422
Epoch 125/250
76/76 [==============================] - 0s 776us/step - loss: 0.2598 - accuracy: 0.4608 - mae: 0.2598 - pearson_correlation: 0.0461 - euclidean_distance: 0.4398
Epoch 126/250
76/76 [==============================] - 0s 787us/step - loss: 0.2589 - accuracy: 0.4669 - mae: 0.2589 - pearson_correlation: 0.0610 - euclidean_distance: 0.4373
Epoch 127/250
76/76 [==============================] - 0s 778us/step - loss: 0.2555 - accuracy: 0.4824 - mae: 0.2555 - pearson_correlation: 0.0687 - euclidean_distance: 0.4316
Epoch 128/250
76/76 [==============================] - 0s 775us/step - loss: 0.2511 - accuracy: 0.4960 - mae: 0.2511 - pearson_correlation: 0.0760 - euclidean_distance: 0.4250
Epoch 129/250
76/76 [==============================] - 0s 776us/step - loss: 0.2479 - accuracy: 0.5053 - mae: 0.2479 - pearson_correlation: 0.0860 - euclidean_distance: 0.4195
Epoch 130/250
76/76 [==============================] - 0s 779us/step - loss: 0.2477 - accuracy: 0.5326 - mae: 0.2477 - pearson_correlation: 0.1036 - euclidean_distance: 0.4178
Epoch 131/250
76/76 [==============================] - 0s 779us/step - loss: 0.2469 - accuracy: 0.5229 - mae: 0.2469 - pearson_correlation: 0.1040 - euclidean_distance: 0.4163
Epoch 132/250
76/76 [==============================] - 0s 774us/step - loss: 0.2419 - accuracy: 0.5269 - mae: 0.2419 - pearson_correlation: 0.1116 - euclidean_distance: 0.4091
Epoch 133/250
76/76 [==============================] - 0s 785us/step - loss: 0.2384 - accuracy: 0.5542 - mae: 0.2384 - pearson_correlation: 0.1307 - euclidean_distance: 0.4023
Epoch 134/250
76/76 [==============================] - 0s 774us/step - loss: 0.2383 - accuracy: 0.5714 - mae: 0.2383 - pearson_correlation: 0.1365 - euclidean_distance: 0.4009
Epoch 135/250
76/76 [==============================] - 0s 776us/step - loss: 0.2341 - accuracy: 0.5736 - mae: 0.2341 - pearson_correlation: 0.1591 - euclidean_distance: 0.3935
Epoch 136/250
76/76 [==============================] - 0s 775us/step - loss: 0.2319 - accuracy: 0.6019 - mae: 0.2319 - pearson_correlation: 0.1655 - euclidean_distance: 0.3904
Epoch 137/250
76/76 [==============================] - 0s 771us/step - loss: 0.2276 - accuracy: 0.5966 - mae: 0.2276 - pearson_correlation: 0.1714 - euclidean_distance: 0.3837
Epoch 138/250
76/76 [==============================] - 0s 777us/step - loss: 0.2274 - accuracy: 0.6345 - mae: 0.2274 - pearson_correlation: 0.1830 - euclidean_distance: 0.3829
Epoch 139/250
76/76 [==============================] - 0s 786us/step - loss: 0.2266 - accuracy: 0.6345 - mae: 0.2266 - pearson_correlation: 0.1976 - euclidean_distance: 0.3800
Epoch 140/250
76/76 [==============================] - 0s 776us/step - loss: 0.2194 - accuracy: 0.6596 - mae: 0.2194 - pearson_correlation: 0.2092 - euclidean_distance: 0.3696
Epoch 141/250
76/76 [==============================] - 0s 779us/step - loss: 0.2200 - accuracy: 0.6689 - mae: 0.2200 - pearson_correlation: 0.2210 - euclidean_distance: 0.3692
Epoch 142/250
76/76 [==============================] - 0s 776us/step - loss: 0.2172 - accuracy: 0.6799 - mae: 0.2172 - pearson_correlation: 0.2230 - euclidean_distance: 0.3638
Epoch 143/250
76/76 [==============================] - 0s 780us/step - loss: 0.2141 - accuracy: 0.6861 - mae: 0.2141 - pearson_correlation: 0.2415 - euclidean_distance: 0.3594
Epoch 144/250
76/76 [==============================] - 0s 779us/step - loss: 0.2102 - accuracy: 0.7143 - mae: 0.2102 - pearson_correlation: 0.2560 - euclidean_distance: 0.3528
Epoch 145/250
76/76 [==============================] - 0s 772us/step - loss: 0.2075 - accuracy: 0.7191 - mae: 0.2075 - pearson_correlation: 0.2652 - euclidean_distance: 0.3481
Epoch 146/250
76/76 [==============================] - 0s 775us/step - loss: 0.2071 - accuracy: 0.7324 - mae: 0.2071 - pearson_correlation: 0.2705 - euclidean_distance: 0.3473
Epoch 147/250
76/76 [==============================] - 0s 774us/step - loss: 0.2021 - accuracy: 0.7500 - mae: 0.2021 - pearson_correlation: 0.2888 - euclidean_distance: 0.3382
Epoch 148/250
76/76 [==============================] - 0s 774us/step - loss: 0.2021 - accuracy: 0.7562 - mae: 0.2021 - pearson_correlation: 0.2869 - euclidean_distance: 0.3375
Epoch 149/250
76/76 [==============================] - 0s 776us/step - loss: 0.1987 - accuracy: 0.7698 - mae: 0.1987 - pearson_correlation: 0.3139 - euclidean_distance: 0.3314
Epoch 150/250
76/76 [==============================] - 0s 788us/step - loss: 0.1967 - accuracy: 0.7690 - mae: 0.1967 - pearson_correlation: 0.3163 - euclidean_distance: 0.3286
Epoch 151/250
76/76 [==============================] - 0s 778us/step - loss: 0.1947 - accuracy: 0.7795 - mae: 0.1947 - pearson_correlation: 0.3307 - euclidean_distance: 0.3245
Epoch 152/250
76/76 [==============================] - 0s 780us/step - loss: 0.1912 - accuracy: 0.7844 - mae: 0.1912 - pearson_correlation: 0.3364 - euclidean_distance: 0.3189
Epoch 153/250
76/76 [==============================] - 0s 777us/step - loss: 0.1858 - accuracy: 0.8056 - mae: 0.1858 - pearson_correlation: 0.3557 - euclidean_distance: 0.3106
Epoch 154/250
76/76 [==============================] - 0s 775us/step - loss: 0.1878 - accuracy: 0.8029 - mae: 0.1878 - pearson_correlation: 0.3502 - euclidean_distance: 0.3123
Epoch 155/250
76/76 [==============================] - 0s 773us/step - loss: 0.1830 - accuracy: 0.8082 - mae: 0.1830 - pearson_correlation: 0.3720 - euclidean_distance: 0.3040
Epoch 156/250
76/76 [==============================] - 0s 776us/step - loss: 0.1828 - accuracy: 0.8153 - mae: 0.1828 - pearson_correlation: 0.3737 - euclidean_distance: 0.3033
Epoch 157/250
76/76 [==============================] - 0s 772us/step - loss: 0.1807 - accuracy: 0.8285 - mae: 0.1807 - pearson_correlation: 0.3854 - euclidean_distance: 0.3006
Epoch 158/250
76/76 [==============================] - 0s 774us/step - loss: 0.1763 - accuracy: 0.8285 - mae: 0.1763 - pearson_correlation: 0.3978 - euclidean_distance: 0.2931
Epoch 159/250
76/76 [==============================] - 0s 777us/step - loss: 0.1727 - accuracy: 0.8395 - mae: 0.1727 - pearson_correlation: 0.4100 - euclidean_distance: 0.2872
Epoch 160/250
76/76 [==============================] - 0s 776us/step - loss: 0.1730 - accuracy: 0.8435 - mae: 0.1730 - pearson_correlation: 0.4065 - euclidean_distance: 0.2875
Epoch 161/250
76/76 [==============================] - 0s 775us/step - loss: 0.1681 - accuracy: 0.8466 - mae: 0.1681 - pearson_correlation: 0.4157 - euclidean_distance: 0.2803
Epoch 162/250
76/76 [==============================] - 0s 775us/step - loss: 0.1690 - accuracy: 0.8541 - mae: 0.1690 - pearson_correlation: 0.4268 - euclidean_distance: 0.2802
Epoch 163/250
76/76 [==============================] - 0s 775us/step - loss: 0.1666 - accuracy: 0.8523 - mae: 0.1666 - pearson_correlation: 0.4298 - euclidean_distance: 0.2765
Epoch 164/250
76/76 [==============================] - 0s 776us/step - loss: 0.1621 - accuracy: 0.8616 - mae: 0.1621 - pearson_correlation: 0.4421 - euclidean_distance: 0.2697
Epoch 165/250
76/76 [==============================] - 0s 782us/step - loss: 0.1632 - accuracy: 0.8673 - mae: 0.1632 - pearson_correlation: 0.4480 - euclidean_distance: 0.2706
Epoch 166/250
76/76 [==============================] - 0s 775us/step - loss: 0.1621 - accuracy: 0.8686 - mae: 0.1621 - pearson_correlation: 0.4537 - euclidean_distance: 0.2681
Epoch 167/250
76/76 [==============================] - 0s 782us/step - loss: 0.1617 - accuracy: 0.8673 - mae: 0.1617 - pearson_correlation: 0.4583 - euclidean_distance: 0.2659
Epoch 168/250
76/76 [==============================] - 0s 784us/step - loss: 0.1594 - accuracy: 0.8757 - mae: 0.1594 - pearson_correlation: 0.4684 - euclidean_distance: 0.2631
Epoch 169/250
76/76 [==============================] - 0s 775us/step - loss: 0.1549 - accuracy: 0.8730 - mae: 0.1549 - pearson_correlation: 0.4763 - euclidean_distance: 0.2560
Epoch 170/250
76/76 [==============================] - 0s 774us/step - loss: 0.1562 - accuracy: 0.8717 - mae: 0.1562 - pearson_correlation: 0.4680 - euclidean_distance: 0.2591
Epoch 171/250
76/76 [==============================] - 0s 779us/step - loss: 0.1569 - accuracy: 0.8748 - mae: 0.1569 - pearson_correlation: 0.4800 - euclidean_distance: 0.2576
Epoch 172/250
76/76 [==============================] - 0s 778us/step - loss: 0.1517 - accuracy: 0.8867 - mae: 0.1517 - pearson_correlation: 0.4872 - euclidean_distance: 0.2501
Epoch 173/250
76/76 [==============================] - 0s 773us/step - loss: 0.1524 - accuracy: 0.8787 - mae: 0.1524 - pearson_correlation: 0.4884 - euclidean_distance: 0.2510
Epoch 174/250
76/76 [==============================] - 0s 776us/step - loss: 0.1487 - accuracy: 0.8893 - mae: 0.1487 - pearson_correlation: 0.4929 - euclidean_distance: 0.2458
Epoch 175/250
76/76 [==============================] - 0s 777us/step - loss: 0.1479 - accuracy: 0.8871 - mae: 0.1479 - pearson_correlation: 0.5030 - euclidean_distance: 0.2432
Epoch 176/250
76/76 [==============================] - 0s 771us/step - loss: 0.1471 - accuracy: 0.8929 - mae: 0.1471 - pearson_correlation: 0.5118 - euclidean_distance: 0.2417
Epoch 177/250
76/76 [==============================] - 0s 832us/step - loss: 0.1448 - accuracy: 0.8902 - mae: 0.1448 - pearson_correlation: 0.5179 - euclidean_distance: 0.2388
Epoch 178/250
76/76 [==============================] - 0s 790us/step - loss: 0.1473 - accuracy: 0.8876 - mae: 0.1473 - pearson_correlation: 0.5079 - euclidean_distance: 0.2422
Epoch 179/250
76/76 [==============================] - 0s 779us/step - loss: 0.1425 - accuracy: 0.8942 - mae: 0.1425 - pearson_correlation: 0.5270 - euclidean_distance: 0.2349
Epoch 180/250
76/76 [==============================] - 0s 775us/step - loss: 0.1451 - accuracy: 0.8924 - mae: 0.1451 - pearson_correlation: 0.5171 - euclidean_distance: 0.2378
Epoch 181/250
76/76 [==============================] - 0s 776us/step - loss: 0.1423 - accuracy: 0.8893 - mae: 0.1423 - pearson_correlation: 0.5287 - euclidean_distance: 0.2337
Epoch 182/250
76/76 [==============================] - 0s 771us/step - loss: 0.1430 - accuracy: 0.8999 - mae: 0.1430 - pearson_correlation: 0.5275 - euclidean_distance: 0.2345
Epoch 183/250
76/76 [==============================] - 0s 783us/step - loss: 0.1419 - accuracy: 0.8995 - mae: 0.1419 - pearson_correlation: 0.5270 - euclidean_distance: 0.2327
Epoch 184/250
76/76 [==============================] - 0s 775us/step - loss: 0.1394 - accuracy: 0.8955 - mae: 0.1394 - pearson_correlation: 0.5404 - euclidean_distance: 0.2286
Epoch 185/250
76/76 [==============================] - 0s 771us/step - loss: 0.1428 - accuracy: 0.8995 - mae: 0.1428 - pearson_correlation: 0.5356 - euclidean_distance: 0.2334
Epoch 186/250
76/76 [==============================] - 0s 773us/step - loss: 0.1409 - accuracy: 0.8986 - mae: 0.1409 - pearson_correlation: 0.5344 - euclidean_distance: 0.2300
Epoch 187/250
76/76 [==============================] - 0s 779us/step - loss: 0.1367 - accuracy: 0.9065 - mae: 0.1367 - pearson_correlation: 0.5473 - euclidean_distance: 0.2235
Epoch 188/250
76/76 [==============================] - 0s 769us/step - loss: 0.1365 - accuracy: 0.9030 - mae: 0.1365 - pearson_correlation: 0.5512 - euclidean_distance: 0.2237
Epoch 189/250
76/76 [==============================] - 0s 830us/step - loss: 0.1338 - accuracy: 0.9030 - mae: 0.1338 - pearson_correlation: 0.5566 - euclidean_distance: 0.2194
Epoch 190/250
76/76 [==============================] - 0s 806us/step - loss: 0.1339 - accuracy: 0.9078 - mae: 0.1339 - pearson_correlation: 0.5577 - euclidean_distance: 0.2190
Epoch 191/250
76/76 [==============================] - 0s 778us/step - loss: 0.1328 - accuracy: 0.9092 - mae: 0.1328 - pearson_correlation: 0.5576 - euclidean_distance: 0.2175
Epoch 192/250
76/76 [==============================] - 0s 775us/step - loss: 0.1333 - accuracy: 0.9118 - mae: 0.1333 - pearson_correlation: 0.5621 - euclidean_distance: 0.2181
Epoch 193/250
76/76 [==============================] - 0s 787us/step - loss: 0.1331 - accuracy: 0.9101 - mae: 0.1331 - pearson_correlation: 0.5687 - euclidean_distance: 0.2171
Epoch 194/250
76/76 [==============================] - 0s 783us/step - loss: 0.1312 - accuracy: 0.9123 - mae: 0.1312 - pearson_correlation: 0.5672 - euclidean_distance: 0.2146
Epoch 195/250
76/76 [==============================] - 0s 775us/step - loss: 0.1316 - accuracy: 0.9109 - mae: 0.1316 - pearson_correlation: 0.5741 - euclidean_distance: 0.2147
Epoch 196/250
76/76 [==============================] - 0s 777us/step - loss: 0.1298 - accuracy: 0.9118 - mae: 0.1298 - pearson_correlation: 0.5755 - euclidean_distance: 0.2115
Epoch 197/250
76/76 [==============================] - 0s 779us/step - loss: 0.1283 - accuracy: 0.9127 - mae: 0.1283 - pearson_correlation: 0.5824 - euclidean_distance: 0.2095
Epoch 198/250
76/76 [==============================] - 0s 776us/step - loss: 0.1296 - accuracy: 0.9105 - mae: 0.1296 - pearson_correlation: 0.5734 - euclidean_distance: 0.2116
Epoch 199/250
76/76 [==============================] - 0s 778us/step - loss: 0.1302 - accuracy: 0.9127 - mae: 0.1302 - pearson_correlation: 0.5712 - euclidean_distance: 0.2125
Epoch 200/250
76/76 [==============================] - 0s 776us/step - loss: 0.1282 - accuracy: 0.9175 - mae: 0.1282 - pearson_correlation: 0.5868 - euclidean_distance: 0.2082
Epoch 201/250
76/76 [==============================] - 0s 775us/step - loss: 0.1284 - accuracy: 0.9175 - mae: 0.1284 - pearson_correlation: 0.5837 - euclidean_distance: 0.2089
Epoch 202/250
76/76 [==============================] - 0s 772us/step - loss: 0.1286 - accuracy: 0.9175 - mae: 0.1286 - pearson_correlation: 0.5914 - euclidean_distance: 0.2087
Epoch 203/250
76/76 [==============================] - 0s 778us/step - loss: 0.1257 - accuracy: 0.9140 - mae: 0.1257 - pearson_correlation: 0.5918 - euclidean_distance: 0.2041
Epoch 204/250
76/76 [==============================] - 0s 775us/step - loss: 0.1288 - accuracy: 0.9145 - mae: 0.1288 - pearson_correlation: 0.5866 - euclidean_distance: 0.2082
Epoch 205/250
76/76 [==============================] - 0s 776us/step - loss: 0.1267 - accuracy: 0.9175 - mae: 0.1267 - pearson_correlation: 0.5887 - euclidean_distance: 0.2069
Epoch 206/250
76/76 [==============================] - 0s 771us/step - loss: 0.1226 - accuracy: 0.9162 - mae: 0.1226 - pearson_correlation: 0.5990 - euclidean_distance: 0.1997
Epoch 207/250
76/76 [==============================] - 0s 776us/step - loss: 0.1244 - accuracy: 0.9131 - mae: 0.1244 - pearson_correlation: 0.5946 - euclidean_distance: 0.2021
Epoch 208/250
76/76 [==============================] - 0s 785us/step - loss: 0.1264 - accuracy: 0.9220 - mae: 0.1264 - pearson_correlation: 0.5964 - euclidean_distance: 0.2050
Epoch 209/250
76/76 [==============================] - 0s 778us/step - loss: 0.1195 - accuracy: 0.9189 - mae: 0.1195 - pearson_correlation: 0.6081 - euclidean_distance: 0.1950
Epoch 210/250
76/76 [==============================] - 0s 776us/step - loss: 0.1247 - accuracy: 0.9171 - mae: 0.1247 - pearson_correlation: 0.6014 - euclidean_distance: 0.2026
Epoch 211/250
76/76 [==============================] - 0s 773us/step - loss: 0.1203 - accuracy: 0.9242 - mae: 0.1203 - pearson_correlation: 0.6103 - euclidean_distance: 0.1955
Epoch 212/250
76/76 [==============================] - 0s 774us/step - loss: 0.1239 - accuracy: 0.9184 - mae: 0.1239 - pearson_correlation: 0.6048 - euclidean_distance: 0.2014
Epoch 213/250
76/76 [==============================] - 0s 776us/step - loss: 0.1205 - accuracy: 0.9215 - mae: 0.1205 - pearson_correlation: 0.6135 - euclidean_distance: 0.1959
Epoch 214/250
76/76 [==============================] - 0s 780us/step - loss: 0.1229 - accuracy: 0.9242 - mae: 0.1229 - pearson_correlation: 0.6069 - euclidean_distance: 0.1995
Epoch 215/250
76/76 [==============================] - 0s 778us/step - loss: 0.1176 - accuracy: 0.9246 - mae: 0.1176 - pearson_correlation: 0.6157 - euclidean_distance: 0.1911
Epoch 216/250
76/76 [==============================] - 0s 784us/step - loss: 0.1195 - accuracy: 0.9233 - mae: 0.1195 - pearson_correlation: 0.6132 - euclidean_distance: 0.1942
Epoch 217/250
76/76 [==============================] - 0s 781us/step - loss: 0.1191 - accuracy: 0.9198 - mae: 0.1191 - pearson_correlation: 0.6127 - euclidean_distance: 0.1931
Epoch 218/250
76/76 [==============================] - 0s 781us/step - loss: 0.1194 - accuracy: 0.9264 - mae: 0.1194 - pearson_correlation: 0.6203 - euclidean_distance: 0.1936
Epoch 219/250
76/76 [==============================] - 0s 773us/step - loss: 0.1174 - accuracy: 0.9277 - mae: 0.1174 - pearson_correlation: 0.6221 - euclidean_distance: 0.1898
Epoch 220/250
76/76 [==============================] - 0s 775us/step - loss: 0.1170 - accuracy: 0.9233 - mae: 0.1170 - pearson_correlation: 0.6275 - euclidean_distance: 0.1901
Epoch 221/250
76/76 [==============================] - 0s 774us/step - loss: 0.1182 - accuracy: 0.9180 - mae: 0.1182 - pearson_correlation: 0.6170 - euclidean_distance: 0.1923
Epoch 222/250
76/76 [==============================] - 0s 771us/step - loss: 0.1198 - accuracy: 0.9237 - mae: 0.1198 - pearson_correlation: 0.6169 - euclidean_distance: 0.1933
Epoch 223/250
76/76 [==============================] - 0s 773us/step - loss: 0.1198 - accuracy: 0.9264 - mae: 0.1198 - pearson_correlation: 0.6291 - euclidean_distance: 0.1937
Epoch 224/250
76/76 [==============================] - 0s 775us/step - loss: 0.1176 - accuracy: 0.9242 - mae: 0.1176 - pearson_correlation: 0.6278 - euclidean_distance: 0.1909
Epoch 225/250
76/76 [==============================] - 0s 775us/step - loss: 0.1149 - accuracy: 0.9303 - mae: 0.1149 - pearson_correlation: 0.6278 - euclidean_distance: 0.1866
Epoch 226/250
76/76 [==============================] - 0s 771us/step - loss: 0.1115 - accuracy: 0.9272 - mae: 0.1115 - pearson_correlation: 0.6411 - euclidean_distance: 0.1812
Epoch 227/250
76/76 [==============================] - 0s 773us/step - loss: 0.1151 - accuracy: 0.9281 - mae: 0.1151 - pearson_correlation: 0.6357 - euclidean_distance: 0.1864
Epoch 228/250
76/76 [==============================] - 0s 773us/step - loss: 0.1130 - accuracy: 0.9259 - mae: 0.1130 - pearson_correlation: 0.6398 - euclidean_distance: 0.1829
Epoch 229/250
76/76 [==============================] - 0s 783us/step - loss: 0.1150 - accuracy: 0.9295 - mae: 0.1150 - pearson_correlation: 0.6345 - euclidean_distance: 0.1862
Epoch 230/250
76/76 [==============================] - 0s 774us/step - loss: 0.1116 - accuracy: 0.9295 - mae: 0.1116 - pearson_correlation: 0.6480 - euclidean_distance: 0.1813
Epoch 231/250
76/76 [==============================] - 0s 777us/step - loss: 0.1150 - accuracy: 0.9286 - mae: 0.1150 - pearson_correlation: 0.6401 - euclidean_distance: 0.1861
Epoch 232/250
76/76 [==============================] - 0s 771us/step - loss: 0.1110 - accuracy: 0.9268 - mae: 0.1110 - pearson_correlation: 0.6407 - euclidean_distance: 0.1798
Epoch 233/250
76/76 [==============================] - 0s 780us/step - loss: 0.1112 - accuracy: 0.9330 - mae: 0.1112 - pearson_correlation: 0.6460 - euclidean_distance: 0.1802
Epoch 234/250
76/76 [==============================] - 0s 773us/step - loss: 0.1108 - accuracy: 0.9299 - mae: 0.1108 - pearson_correlation: 0.6500 - euclidean_distance: 0.1797
Epoch 235/250
76/76 [==============================] - 0s 776us/step - loss: 0.1129 - accuracy: 0.9295 - mae: 0.1129 - pearson_correlation: 0.6428 - euclidean_distance: 0.1827
Epoch 236/250
76/76 [==============================] - 0s 780us/step - loss: 0.1138 - accuracy: 0.9290 - mae: 0.1138 - pearson_correlation: 0.6380 - euclidean_distance: 0.1847
Epoch 237/250
76/76 [==============================] - 0s 773us/step - loss: 0.1094 - accuracy: 0.9312 - mae: 0.1094 - pearson_correlation: 0.6550 - euclidean_distance: 0.1770
Epoch 238/250
76/76 [==============================] - 0s 772us/step - loss: 0.1107 - accuracy: 0.9290 - mae: 0.1107 - pearson_correlation: 0.6481 - euclidean_distance: 0.1794
Epoch 239/250
76/76 [==============================] - 0s 778us/step - loss: 0.1084 - accuracy: 0.9317 - mae: 0.1084 - pearson_correlation: 0.6577 - euclidean_distance: 0.1752
Epoch 240/250
76/76 [==============================] - 0s 774us/step - loss: 0.1094 - accuracy: 0.9339 - mae: 0.1094 - pearson_correlation: 0.6534 - euclidean_distance: 0.1774
Epoch 241/250
76/76 [==============================] - 0s 775us/step - loss: 0.1107 - accuracy: 0.9312 - mae: 0.1107 - pearson_correlation: 0.6547 - euclidean_distance: 0.1794
Epoch 242/250
76/76 [==============================] - 0s 787us/step - loss: 0.1104 - accuracy: 0.9286 - mae: 0.1104 - pearson_correlation: 0.6479 - euclidean_distance: 0.1783
Epoch 243/250
76/76 [==============================] - 0s 776us/step - loss: 0.1142 - accuracy: 0.9321 - mae: 0.1142 - pearson_correlation: 0.6404 - euclidean_distance: 0.1842
Epoch 244/250
76/76 [==============================] - 0s 773us/step - loss: 0.1046 - accuracy: 0.9339 - mae: 0.1046 - pearson_correlation: 0.6638 - euclidean_distance: 0.1694
Epoch 245/250
76/76 [==============================] - 0s 780us/step - loss: 0.1115 - accuracy: 0.9352 - mae: 0.1115 - pearson_correlation: 0.6551 - euclidean_distance: 0.1803
Epoch 246/250
76/76 [==============================] - 0s 787us/step - loss: 0.1115 - accuracy: 0.9330 - mae: 0.1115 - pearson_correlation: 0.6515 - euclidean_distance: 0.1798
Epoch 247/250
76/76 [==============================] - 0s 808us/step - loss: 0.1090 - accuracy: 0.9396 - mae: 0.1090 - pearson_correlation: 0.6608 - euclidean_distance: 0.1764
Epoch 248/250
76/76 [==============================] - 0s 783us/step - loss: 0.1056 - accuracy: 0.9356 - mae: 0.1056 - pearson_correlation: 0.6639 - euclidean_distance: 0.1715
Epoch 249/250
76/76 [==============================] - 0s 775us/step - loss: 0.1066 - accuracy: 0.9383 - mae: 0.1066 - pearson_correlation: 0.6581 - euclidean_distance: 0.1724
Epoch 250/250
76/76 [==============================] - 0s 779us/step - loss: 0.1112 - accuracy: 0.9321 - mae: 0.1112 - pearson_correlation: 0.6527 - euclidean_distance: 0.1793
38/38 [==============================] - 0s 478us/step
Epoch 1/300
76/76 [==============================] - 1s 833us/step - loss: 0.9015 - accuracy: 0.0935 - mae: 0.9015 - pearson_correlation: -0.5207 - euclidean_distance: 1.4070
Epoch 2/300
76/76 [==============================] - 0s 836us/step - loss: 0.8928 - accuracy: 0.0962 - mae: 0.8928 - pearson_correlation: -0.5276 - euclidean_distance: 1.3943
Epoch 3/300
76/76 [==============================] - 0s 805us/step - loss: 0.8832 - accuracy: 0.1019 - mae: 0.8832 - pearson_correlation: -0.5304 - euclidean_distance: 1.3812
Epoch 4/300
76/76 [==============================] - 0s 786us/step - loss: 0.8753 - accuracy: 0.1067 - mae: 0.8753 - pearson_correlation: -0.5295 - euclidean_distance: 1.3709
Epoch 5/300
76/76 [==============================] - 0s 777us/step - loss: 0.8646 - accuracy: 0.1081 - mae: 0.8646 - pearson_correlation: -0.5319 - euclidean_distance: 1.3559
Epoch 6/300
76/76 [==============================] - 0s 767us/step - loss: 0.8571 - accuracy: 0.1045 - mae: 0.8571 - pearson_correlation: -0.5357 - euclidean_distance: 1.3459
Epoch 7/300
76/76 [==============================] - 0s 770us/step - loss: 0.8495 - accuracy: 0.1107 - mae: 0.8495 - pearson_correlation: -0.5382 - euclidean_distance: 1.3350
Epoch 8/300
76/76 [==============================] - 0s 773us/step - loss: 0.8401 - accuracy: 0.1142 - mae: 0.8401 - pearson_correlation: -0.5394 - euclidean_distance: 1.3221
Epoch 9/300
76/76 [==============================] - 0s 772us/step - loss: 0.8311 - accuracy: 0.1187 - mae: 0.8311 - pearson_correlation: -0.5435 - euclidean_distance: 1.3101
Epoch 10/300
76/76 [==============================] - 0s 770us/step - loss: 0.8227 - accuracy: 0.1165 - mae: 0.8227 - pearson_correlation: -0.5487 - euclidean_distance: 1.2983
Epoch 11/300
76/76 [==============================] - 0s 776us/step - loss: 0.8125 - accuracy: 0.1178 - mae: 0.8125 - pearson_correlation: -0.5477 - euclidean_distance: 1.2837
Epoch 12/300
76/76 [==============================] - 0s 770us/step - loss: 0.8035 - accuracy: 0.1142 - mae: 0.8035 - pearson_correlation: -0.5531 - euclidean_distance: 1.2724
Epoch 13/300
76/76 [==============================] - 0s 774us/step - loss: 0.7954 - accuracy: 0.1262 - mae: 0.7954 - pearson_correlation: -0.5567 - euclidean_distance: 1.2618
Epoch 14/300
76/76 [==============================] - 0s 772us/step - loss: 0.7848 - accuracy: 0.1222 - mae: 0.7848 - pearson_correlation: -0.5585 - euclidean_distance: 1.2460
Epoch 15/300
76/76 [==============================] - 0s 773us/step - loss: 0.7782 - accuracy: 0.1165 - mae: 0.7782 - pearson_correlation: -0.5573 - euclidean_distance: 1.2375
Epoch 16/300
76/76 [==============================] - 0s 774us/step - loss: 0.7679 - accuracy: 0.1226 - mae: 0.7679 - pearson_correlation: -0.5644 - euclidean_distance: 1.2239
Epoch 17/300
76/76 [==============================] - 0s 875us/step - loss: 0.7606 - accuracy: 0.1156 - mae: 0.7606 - pearson_correlation: -0.5637 - euclidean_distance: 1.2127
Epoch 18/300
76/76 [==============================] - 0s 868us/step - loss: 0.7532 - accuracy: 0.1328 - mae: 0.7532 - pearson_correlation: -0.5670 - euclidean_distance: 1.2033
Epoch 19/300
76/76 [==============================] - 0s 863us/step - loss: 0.7436 - accuracy: 0.1248 - mae: 0.7436 - pearson_correlation: -0.5729 - euclidean_distance: 1.1905
Epoch 20/300
76/76 [==============================] - 0s 855us/step - loss: 0.7363 - accuracy: 0.1213 - mae: 0.7363 - pearson_correlation: -0.5698 - euclidean_distance: 1.1795
Epoch 21/300
76/76 [==============================] - 0s 950us/step - loss: 0.7287 - accuracy: 0.1253 - mae: 0.7287 - pearson_correlation: -0.5762 - euclidean_distance: 1.1695
Epoch 22/300
76/76 [==============================] - 0s 886us/step - loss: 0.7196 - accuracy: 0.1332 - mae: 0.7196 - pearson_correlation: -0.5780 - euclidean_distance: 1.1567
Epoch 23/300
76/76 [==============================] - 0s 902us/step - loss: 0.7132 - accuracy: 0.1173 - mae: 0.7132 - pearson_correlation: -0.5809 - euclidean_distance: 1.1476
Epoch 24/300
76/76 [==============================] - 0s 915us/step - loss: 0.7039 - accuracy: 0.1257 - mae: 0.7039 - pearson_correlation: -0.5797 - euclidean_distance: 1.1351
Epoch 25/300
76/76 [==============================] - 0s 840us/step - loss: 0.6966 - accuracy: 0.1213 - mae: 0.6966 - pearson_correlation: -0.5896 - euclidean_distance: 1.1255
Epoch 26/300
76/76 [==============================] - 0s 773us/step - loss: 0.6879 - accuracy: 0.1270 - mae: 0.6879 - pearson_correlation: -0.5902 - euclidean_distance: 1.1136
Epoch 27/300
76/76 [==============================] - 0s 770us/step - loss: 0.6813 - accuracy: 0.1345 - mae: 0.6813 - pearson_correlation: -0.5893 - euclidean_distance: 1.1050
Epoch 28/300
76/76 [==============================] - 0s 778us/step - loss: 0.6742 - accuracy: 0.1310 - mae: 0.6742 - pearson_correlation: -0.5998 - euclidean_distance: 1.0945
Epoch 29/300
76/76 [==============================] - 0s 779us/step - loss: 0.6656 - accuracy: 0.1204 - mae: 0.6656 - pearson_correlation: -0.5960 - euclidean_distance: 1.0824
Epoch 30/300
76/76 [==============================] - 0s 776us/step - loss: 0.6592 - accuracy: 0.1266 - mae: 0.6592 - pearson_correlation: -0.5998 - euclidean_distance: 1.0738
Epoch 31/300
76/76 [==============================] - 0s 770us/step - loss: 0.6521 - accuracy: 0.1288 - mae: 0.6521 - pearson_correlation: -0.6104 - euclidean_distance: 1.0648
Epoch 32/300
76/76 [==============================] - 0s 776us/step - loss: 0.6442 - accuracy: 0.1226 - mae: 0.6442 - pearson_correlation: -0.6121 - euclidean_distance: 1.0547
Epoch 33/300
76/76 [==============================] - 0s 777us/step - loss: 0.6377 - accuracy: 0.1217 - mae: 0.6377 - pearson_correlation: -0.6095 - euclidean_distance: 1.0441
Epoch 34/300
76/76 [==============================] - 0s 772us/step - loss: 0.6288 - accuracy: 0.1279 - mae: 0.6288 - pearson_correlation: -0.6141 - euclidean_distance: 1.0323
Epoch 35/300
76/76 [==============================] - 0s 769us/step - loss: 0.6237 - accuracy: 0.1288 - mae: 0.6237 - pearson_correlation: -0.6128 - euclidean_distance: 1.0248
Epoch 36/300
76/76 [==============================] - 0s 775us/step - loss: 0.6152 - accuracy: 0.1209 - mae: 0.6152 - pearson_correlation: -0.6231 - euclidean_distance: 1.0142
Epoch 37/300
76/76 [==============================] - 0s 772us/step - loss: 0.6088 - accuracy: 0.1195 - mae: 0.6088 - pearson_correlation: -0.6248 - euclidean_distance: 1.0053
Epoch 38/300
76/76 [==============================] - 0s 772us/step - loss: 0.6025 - accuracy: 0.1200 - mae: 0.6025 - pearson_correlation: -0.6227 - euclidean_distance: 0.9955
Epoch 39/300
76/76 [==============================] - 0s 769us/step - loss: 0.5959 - accuracy: 0.1147 - mae: 0.5959 - pearson_correlation: -0.6277 - euclidean_distance: 0.9868
Epoch 40/300
76/76 [==============================] - 0s 770us/step - loss: 0.5882 - accuracy: 0.1125 - mae: 0.5882 - pearson_correlation: -0.6249 - euclidean_distance: 0.9760
Epoch 41/300
76/76 [==============================] - 0s 776us/step - loss: 0.5829 - accuracy: 0.1090 - mae: 0.5829 - pearson_correlation: -0.6300 - euclidean_distance: 0.9689
Epoch 42/300
76/76 [==============================] - 0s 770us/step - loss: 0.5767 - accuracy: 0.1076 - mae: 0.5767 - pearson_correlation: -0.6352 - euclidean_distance: 0.9609
Epoch 43/300
76/76 [==============================] - 0s 767us/step - loss: 0.5689 - accuracy: 0.1006 - mae: 0.5689 - pearson_correlation: -0.6404 - euclidean_distance: 0.9510
Epoch 44/300
76/76 [==============================] - 0s 769us/step - loss: 0.5631 - accuracy: 0.1041 - mae: 0.5631 - pearson_correlation: -0.6425 - euclidean_distance: 0.9416
Epoch 45/300
76/76 [==============================] - 0s 771us/step - loss: 0.5584 - accuracy: 0.0997 - mae: 0.5584 - pearson_correlation: -0.6398 - euclidean_distance: 0.9345
Epoch 46/300
76/76 [==============================] - 0s 771us/step - loss: 0.5524 - accuracy: 0.0984 - mae: 0.5524 - pearson_correlation: -0.6421 - euclidean_distance: 0.9266
Epoch 47/300
76/76 [==============================] - 0s 774us/step - loss: 0.5450 - accuracy: 0.0966 - mae: 0.5450 - pearson_correlation: -0.6504 - euclidean_distance: 0.9162
Epoch 48/300
76/76 [==============================] - 0s 775us/step - loss: 0.5407 - accuracy: 0.0900 - mae: 0.5407 - pearson_correlation: -0.6474 - euclidean_distance: 0.9100
Epoch 49/300
76/76 [==============================] - 0s 771us/step - loss: 0.5360 - accuracy: 0.0882 - mae: 0.5360 - pearson_correlation: -0.6517 - euclidean_distance: 0.9028
Epoch 50/300
76/76 [==============================] - 0s 772us/step - loss: 0.5299 - accuracy: 0.0895 - mae: 0.5299 - pearson_correlation: -0.6565 - euclidean_distance: 0.8951
Epoch 51/300
76/76 [==============================] - 0s 771us/step - loss: 0.5260 - accuracy: 0.0847 - mae: 0.5260 - pearson_correlation: -0.6510 - euclidean_distance: 0.8884
Epoch 52/300
76/76 [==============================] - 0s 771us/step - loss: 0.5201 - accuracy: 0.0847 - mae: 0.5201 - pearson_correlation: -0.6537 - euclidean_distance: 0.8800
Epoch 53/300
76/76 [==============================] - 0s 773us/step - loss: 0.5133 - accuracy: 0.0856 - mae: 0.5133 - pearson_correlation: -0.6618 - euclidean_distance: 0.8721
Epoch 54/300
76/76 [==============================] - 0s 769us/step - loss: 0.5079 - accuracy: 0.0825 - mae: 0.5079 - pearson_correlation: -0.6605 - euclidean_distance: 0.8630
Epoch 55/300
76/76 [==============================] - 0s 777us/step - loss: 0.5036 - accuracy: 0.0856 - mae: 0.5036 - pearson_correlation: -0.6574 - euclidean_distance: 0.8561
Epoch 56/300
76/76 [==============================] - 0s 767us/step - loss: 0.4991 - accuracy: 0.0873 - mae: 0.4991 - pearson_correlation: -0.6650 - euclidean_distance: 0.8500
Epoch 57/300
76/76 [==============================] - 0s 769us/step - loss: 0.4937 - accuracy: 0.0768 - mae: 0.4937 - pearson_correlation: -0.6622 - euclidean_distance: 0.8418
Epoch 58/300
76/76 [==============================] - 0s 769us/step - loss: 0.4891 - accuracy: 0.0763 - mae: 0.4891 - pearson_correlation: -0.6666 - euclidean_distance: 0.8363
Epoch 59/300
76/76 [==============================] - 0s 774us/step - loss: 0.4857 - accuracy: 0.0750 - mae: 0.4857 - pearson_correlation: -0.6640 - euclidean_distance: 0.8310
Epoch 60/300
76/76 [==============================] - 0s 772us/step - loss: 0.4807 - accuracy: 0.0807 - mae: 0.4807 - pearson_correlation: -0.6711 - euclidean_distance: 0.8241
Epoch 61/300
76/76 [==============================] - 0s 772us/step - loss: 0.4754 - accuracy: 0.0798 - mae: 0.4754 - pearson_correlation: -0.6690 - euclidean_distance: 0.8160
Epoch 62/300
76/76 [==============================] - 0s 767us/step - loss: 0.4730 - accuracy: 0.0728 - mae: 0.4730 - pearson_correlation: -0.6681 - euclidean_distance: 0.8124
Epoch 63/300
76/76 [==============================] - 0s 770us/step - loss: 0.4670 - accuracy: 0.0772 - mae: 0.4670 - pearson_correlation: -0.6667 - euclidean_distance: 0.8037
Epoch 64/300
76/76 [==============================] - 0s 765us/step - loss: 0.4635 - accuracy: 0.0781 - mae: 0.4635 - pearson_correlation: -0.6691 - euclidean_distance: 0.7979
Epoch 65/300
76/76 [==============================] - 0s 769us/step - loss: 0.4602 - accuracy: 0.0745 - mae: 0.4602 - pearson_correlation: -0.6679 - euclidean_distance: 0.7933
Epoch 66/300
76/76 [==============================] - 0s 765us/step - loss: 0.4545 - accuracy: 0.0728 - mae: 0.4545 - pearson_correlation: -0.6746 - euclidean_distance: 0.7862
Epoch 67/300
76/76 [==============================] - 0s 770us/step - loss: 0.4517 - accuracy: 0.0803 - mae: 0.4517 - pearson_correlation: -0.6728 - euclidean_distance: 0.7801
Epoch 68/300
76/76 [==============================] - 0s 773us/step - loss: 0.4466 - accuracy: 0.0710 - mae: 0.4466 - pearson_correlation: -0.6706 - euclidean_distance: 0.7722
Epoch 69/300
76/76 [==============================] - 0s 780us/step - loss: 0.4439 - accuracy: 0.0728 - mae: 0.4439 - pearson_correlation: -0.6695 - euclidean_distance: 0.7680
Epoch 70/300
76/76 [==============================] - 0s 770us/step - loss: 0.4390 - accuracy: 0.0710 - mae: 0.4390 - pearson_correlation: -0.6693 - euclidean_distance: 0.7615
Epoch 71/300
76/76 [==============================] - 0s 778us/step - loss: 0.4373 - accuracy: 0.0732 - mae: 0.4373 - pearson_correlation: -0.6721 - euclidean_distance: 0.7576
Epoch 72/300
76/76 [==============================] - 0s 769us/step - loss: 0.4325 - accuracy: 0.0754 - mae: 0.4325 - pearson_correlation: -0.6710 - euclidean_distance: 0.7506
Epoch 73/300
76/76 [==============================] - 0s 765us/step - loss: 0.4284 - accuracy: 0.0666 - mae: 0.4284 - pearson_correlation: -0.6673 - euclidean_distance: 0.7444
Epoch 74/300
76/76 [==============================] - 0s 768us/step - loss: 0.4255 - accuracy: 0.0670 - mae: 0.4255 - pearson_correlation: -0.6735 - euclidean_distance: 0.7394
Epoch 75/300
76/76 [==============================] - 0s 786us/step - loss: 0.4218 - accuracy: 0.0679 - mae: 0.4218 - pearson_correlation: -0.6697 - euclidean_distance: 0.7330
Epoch 76/300
76/76 [==============================] - 0s 791us/step - loss: 0.4195 - accuracy: 0.0785 - mae: 0.4195 - pearson_correlation: -0.6666 - euclidean_distance: 0.7302
Epoch 77/300
76/76 [==============================] - 0s 769us/step - loss: 0.4152 - accuracy: 0.0728 - mae: 0.4152 - pearson_correlation: -0.6649 - euclidean_distance: 0.7229
Epoch 78/300
76/76 [==============================] - 0s 772us/step - loss: 0.4116 - accuracy: 0.0728 - mae: 0.4116 - pearson_correlation: -0.6586 - euclidean_distance: 0.7180
Epoch 79/300
76/76 [==============================] - 0s 811us/step - loss: 0.4077 - accuracy: 0.0737 - mae: 0.4077 - pearson_correlation: -0.6650 - euclidean_distance: 0.7121
Epoch 80/300
76/76 [==============================] - 0s 788us/step - loss: 0.4053 - accuracy: 0.0688 - mae: 0.4053 - pearson_correlation: -0.6602 - euclidean_distance: 0.7063
Epoch 81/300
76/76 [==============================] - 0s 763us/step - loss: 0.4023 - accuracy: 0.0768 - mae: 0.4023 - pearson_correlation: -0.6615 - euclidean_distance: 0.7024
Epoch 82/300
76/76 [==============================] - 0s 776us/step - loss: 0.3996 - accuracy: 0.0759 - mae: 0.3996 - pearson_correlation: -0.6511 - euclidean_distance: 0.6959
Epoch 83/300
76/76 [==============================] - 0s 769us/step - loss: 0.3970 - accuracy: 0.0763 - mae: 0.3970 - pearson_correlation: -0.6530 - euclidean_distance: 0.6913
Epoch 84/300
76/76 [==============================] - 0s 778us/step - loss: 0.3940 - accuracy: 0.0772 - mae: 0.3940 - pearson_correlation: -0.6482 - euclidean_distance: 0.6873
Epoch 85/300
76/76 [==============================] - 0s 771us/step - loss: 0.3897 - accuracy: 0.0763 - mae: 0.3897 - pearson_correlation: -0.6519 - euclidean_distance: 0.6810
Epoch 86/300
76/76 [==============================] - 0s 781us/step - loss: 0.3860 - accuracy: 0.0763 - mae: 0.3860 - pearson_correlation: -0.6454 - euclidean_distance: 0.6745
Epoch 87/300
76/76 [==============================] - 0s 772us/step - loss: 0.3813 - accuracy: 0.0807 - mae: 0.3813 - pearson_correlation: -0.6399 - euclidean_distance: 0.6677
Epoch 88/300
76/76 [==============================] - 0s 769us/step - loss: 0.3809 - accuracy: 0.0754 - mae: 0.3809 - pearson_correlation: -0.6395 - euclidean_distance: 0.6655
Epoch 89/300
76/76 [==============================] - 0s 768us/step - loss: 0.3760 - accuracy: 0.0768 - mae: 0.3760 - pearson_correlation: -0.6382 - euclidean_distance: 0.6585
Epoch 90/300
76/76 [==============================] - 0s 769us/step - loss: 0.3730 - accuracy: 0.0781 - mae: 0.3730 - pearson_correlation: -0.6374 - euclidean_distance: 0.6529
Epoch 91/300
76/76 [==============================] - 0s 777us/step - loss: 0.3704 - accuracy: 0.0807 - mae: 0.3704 - pearson_correlation: -0.6220 - euclidean_distance: 0.6478
Epoch 92/300
76/76 [==============================] - 0s 772us/step - loss: 0.3680 - accuracy: 0.0838 - mae: 0.3680 - pearson_correlation: -0.6266 - euclidean_distance: 0.6432
Epoch 93/300
76/76 [==============================] - 0s 773us/step - loss: 0.3647 - accuracy: 0.0759 - mae: 0.3647 - pearson_correlation: -0.6188 - euclidean_distance: 0.6377
Epoch 94/300
76/76 [==============================] - 0s 776us/step - loss: 0.3614 - accuracy: 0.0776 - mae: 0.3614 - pearson_correlation: -0.6186 - euclidean_distance: 0.6329
Epoch 95/300
76/76 [==============================] - 0s 773us/step - loss: 0.3578 - accuracy: 0.0825 - mae: 0.3578 - pearson_correlation: -0.6145 - euclidean_distance: 0.6269
Epoch 96/300
76/76 [==============================] - 0s 767us/step - loss: 0.3550 - accuracy: 0.0825 - mae: 0.3550 - pearson_correlation: -0.6004 - euclidean_distance: 0.6219
Epoch 97/300
76/76 [==============================] - 0s 769us/step - loss: 0.3534 - accuracy: 0.0812 - mae: 0.3534 - pearson_correlation: -0.6028 - euclidean_distance: 0.6175
Epoch 98/300
76/76 [==============================] - 0s 774us/step - loss: 0.3484 - accuracy: 0.0873 - mae: 0.3484 - pearson_correlation: -0.5964 - euclidean_distance: 0.6105
Epoch 99/300
76/76 [==============================] - 0s 775us/step - loss: 0.3460 - accuracy: 0.0891 - mae: 0.3460 - pearson_correlation: -0.5917 - euclidean_distance: 0.6051
Epoch 100/300
76/76 [==============================] - 0s 770us/step - loss: 0.3431 - accuracy: 0.0984 - mae: 0.3431 - pearson_correlation: -0.5835 - euclidean_distance: 0.5999
Epoch 101/300
76/76 [==============================] - 0s 766us/step - loss: 0.3399 - accuracy: 0.0993 - mae: 0.3399 - pearson_correlation: -0.5725 - euclidean_distance: 0.5945
Epoch 102/300
76/76 [==============================] - 0s 766us/step - loss: 0.3372 - accuracy: 0.1006 - mae: 0.3372 - pearson_correlation: -0.5742 - euclidean_distance: 0.5898
Epoch 103/300
76/76 [==============================] - 0s 779us/step - loss: 0.3339 - accuracy: 0.1023 - mae: 0.3339 - pearson_correlation: -0.5627 - euclidean_distance: 0.5850
Epoch 104/300
76/76 [==============================] - 0s 769us/step - loss: 0.3321 - accuracy: 0.1090 - mae: 0.3321 - pearson_correlation: -0.5581 - euclidean_distance: 0.5798
Epoch 105/300
76/76 [==============================] - 0s 770us/step - loss: 0.3288 - accuracy: 0.1182 - mae: 0.3288 - pearson_correlation: -0.5523 - euclidean_distance: 0.5745
Epoch 106/300
76/76 [==============================] - 0s 773us/step - loss: 0.3264 - accuracy: 0.1240 - mae: 0.3264 - pearson_correlation: -0.5368 - euclidean_distance: 0.5694
Epoch 107/300
76/76 [==============================] - 0s 767us/step - loss: 0.3235 - accuracy: 0.1244 - mae: 0.3235 - pearson_correlation: -0.5365 - euclidean_distance: 0.5641
Epoch 108/300
76/76 [==============================] - 0s 768us/step - loss: 0.3200 - accuracy: 0.1328 - mae: 0.3200 - pearson_correlation: -0.5280 - euclidean_distance: 0.5578
Epoch 109/300
76/76 [==============================] - 0s 796us/step - loss: 0.3168 - accuracy: 0.1442 - mae: 0.3168 - pearson_correlation: -0.5128 - euclidean_distance: 0.5529
Epoch 110/300
76/76 [==============================] - 0s 771us/step - loss: 0.3134 - accuracy: 0.1416 - mae: 0.3134 - pearson_correlation: -0.5135 - euclidean_distance: 0.5474
Epoch 111/300
76/76 [==============================] - 0s 769us/step - loss: 0.3115 - accuracy: 0.1557 - mae: 0.3115 - pearson_correlation: -0.4928 - euclidean_distance: 0.5424
Epoch 112/300
76/76 [==============================] - 0s 766us/step - loss: 0.3090 - accuracy: 0.1584 - mae: 0.3090 - pearson_correlation: -0.4863 - euclidean_distance: 0.5385
Epoch 113/300
76/76 [==============================] - 0s 772us/step - loss: 0.3052 - accuracy: 0.1663 - mae: 0.3052 - pearson_correlation: -0.4760 - euclidean_distance: 0.5317
Epoch 114/300
76/76 [==============================] - 0s 765us/step - loss: 0.3032 - accuracy: 0.1773 - mae: 0.3032 - pearson_correlation: -0.4653 - euclidean_distance: 0.5276
Epoch 115/300
76/76 [==============================] - 0s 764us/step - loss: 0.3005 - accuracy: 0.1769 - mae: 0.3005 - pearson_correlation: -0.4494 - euclidean_distance: 0.5226
Epoch 116/300
76/76 [==============================] - 0s 767us/step - loss: 0.2956 - accuracy: 0.1892 - mae: 0.2956 - pearson_correlation: -0.4443 - euclidean_distance: 0.5154
Epoch 117/300
76/76 [==============================] - 0s 774us/step - loss: 0.2935 - accuracy: 0.1972 - mae: 0.2935 - pearson_correlation: -0.4278 - euclidean_distance: 0.5110
Epoch 118/300
76/76 [==============================] - 0s 775us/step - loss: 0.2913 - accuracy: 0.2144 - mae: 0.2913 - pearson_correlation: -0.4166 - euclidean_distance: 0.5060
Epoch 119/300
76/76 [==============================] - 0s 766us/step - loss: 0.2882 - accuracy: 0.2073 - mae: 0.2882 - pearson_correlation: -0.4054 - euclidean_distance: 0.5003
Epoch 120/300
76/76 [==============================] - 0s 767us/step - loss: 0.2838 - accuracy: 0.2241 - mae: 0.2838 - pearson_correlation: -0.3817 - euclidean_distance: 0.4930
Epoch 121/300
76/76 [==============================] - 0s 769us/step - loss: 0.2822 - accuracy: 0.2294 - mae: 0.2822 - pearson_correlation: -0.3704 - euclidean_distance: 0.4901
Epoch 122/300
76/76 [==============================] - 0s 775us/step - loss: 0.2788 - accuracy: 0.2431 - mae: 0.2788 - pearson_correlation: -0.3534 - euclidean_distance: 0.4833
Epoch 123/300
76/76 [==============================] - 0s 770us/step - loss: 0.2747 - accuracy: 0.2510 - mae: 0.2747 - pearson_correlation: -0.3449 - euclidean_distance: 0.4772
Epoch 124/300
76/76 [==============================] - 0s 767us/step - loss: 0.2734 - accuracy: 0.2536 - mae: 0.2734 - pearson_correlation: -0.3262 - euclidean_distance: 0.4729
Epoch 125/300
76/76 [==============================] - 0s 766us/step - loss: 0.2696 - accuracy: 0.2598 - mae: 0.2696 - pearson_correlation: -0.3021 - euclidean_distance: 0.4667
Epoch 126/300
76/76 [==============================] - 0s 773us/step - loss: 0.2662 - accuracy: 0.2633 - mae: 0.2662 - pearson_correlation: -0.2868 - euclidean_distance: 0.4613
Epoch 127/300
76/76 [==============================] - 0s 782us/step - loss: 0.2636 - accuracy: 0.2836 - mae: 0.2636 - pearson_correlation: -0.2637 - euclidean_distance: 0.4553
Epoch 128/300
76/76 [==============================] - 0s 766us/step - loss: 0.2613 - accuracy: 0.2903 - mae: 0.2613 - pearson_correlation: -0.2592 - euclidean_distance: 0.4516
Epoch 129/300
76/76 [==============================] - 0s 770us/step - loss: 0.2583 - accuracy: 0.3198 - mae: 0.2583 - pearson_correlation: -0.2339 - euclidean_distance: 0.4457
Epoch 130/300
76/76 [==============================] - 0s 772us/step - loss: 0.2544 - accuracy: 0.3304 - mae: 0.2544 - pearson_correlation: -0.2162 - euclidean_distance: 0.4394
Epoch 131/300
76/76 [==============================] - 0s 769us/step - loss: 0.2526 - accuracy: 0.3599 - mae: 0.2526 - pearson_correlation: -0.1889 - euclidean_distance: 0.4353
Epoch 132/300
76/76 [==============================] - 0s 773us/step - loss: 0.2486 - accuracy: 0.3608 - mae: 0.2486 - pearson_correlation: -0.1787 - euclidean_distance: 0.4283
Epoch 133/300
76/76 [==============================] - 0s 780us/step - loss: 0.2446 - accuracy: 0.3869 - mae: 0.2446 - pearson_correlation: -0.1525 - euclidean_distance: 0.4218
Epoch 134/300
76/76 [==============================] - 0s 765us/step - loss: 0.2423 - accuracy: 0.4001 - mae: 0.2423 - pearson_correlation: -0.1378 - euclidean_distance: 0.4171
Epoch 135/300
76/76 [==============================] - 0s 774us/step - loss: 0.2391 - accuracy: 0.4221 - mae: 0.2391 - pearson_correlation: -0.1174 - euclidean_distance: 0.4110
Epoch 136/300
76/76 [==============================] - 0s 779us/step - loss: 0.2364 - accuracy: 0.4393 - mae: 0.2364 - pearson_correlation: -0.0844 - euclidean_distance: 0.4059
Epoch 137/300
76/76 [==============================] - 0s 823us/step - loss: 0.2313 - accuracy: 0.4702 - mae: 0.2313 - pearson_correlation: -0.0596 - euclidean_distance: 0.3981
Epoch 138/300
76/76 [==============================] - 0s 770us/step - loss: 0.2285 - accuracy: 0.4839 - mae: 0.2285 - pearson_correlation: -0.0321 - euclidean_distance: 0.3933
Epoch 139/300
76/76 [==============================] - 0s 783us/step - loss: 0.2266 - accuracy: 0.5121 - mae: 0.2266 - pearson_correlation: -0.0256 - euclidean_distance: 0.3889
Epoch 140/300
76/76 [==============================] - 0s 774us/step - loss: 0.2247 - accuracy: 0.5448 - mae: 0.2247 - pearson_correlation: -8.7412e-04 - euclidean_distance: 0.3847
Epoch 141/300
76/76 [==============================] - 0s 767us/step - loss: 0.2210 - accuracy: 0.5430 - mae: 0.2210 - pearson_correlation: 0.0204 - euclidean_distance: 0.3780
Epoch 142/300
76/76 [==============================] - 0s 768us/step - loss: 0.2167 - accuracy: 0.5730 - mae: 0.2167 - pearson_correlation: 0.0491 - euclidean_distance: 0.3710
Epoch 143/300
76/76 [==============================] - 0s 770us/step - loss: 0.2135 - accuracy: 0.5911 - mae: 0.2135 - pearson_correlation: 0.0716 - euclidean_distance: 0.3656
Epoch 144/300
76/76 [==============================] - 0s 767us/step - loss: 0.2117 - accuracy: 0.5951 - mae: 0.2117 - pearson_correlation: 0.0907 - euclidean_distance: 0.3607
Epoch 145/300
76/76 [==============================] - 0s 768us/step - loss: 0.2075 - accuracy: 0.6233 - mae: 0.2075 - pearson_correlation: 0.1257 - euclidean_distance: 0.3538
Epoch 146/300
76/76 [==============================] - 0s 766us/step - loss: 0.2050 - accuracy: 0.6348 - mae: 0.2050 - pearson_correlation: 0.1388 - euclidean_distance: 0.3494
Epoch 147/300
76/76 [==============================] - 0s 774us/step - loss: 0.2016 - accuracy: 0.6427 - mae: 0.2016 - pearson_correlation: 0.1630 - euclidean_distance: 0.3434
Epoch 148/300
76/76 [==============================] - 0s 764us/step - loss: 0.1987 - accuracy: 0.6670 - mae: 0.1987 - pearson_correlation: 0.1885 - euclidean_distance: 0.3377
Epoch 149/300
76/76 [==============================] - 0s 768us/step - loss: 0.1964 - accuracy: 0.6705 - mae: 0.1964 - pearson_correlation: 0.1924 - euclidean_distance: 0.3337
Epoch 150/300
76/76 [==============================] - 0s 772us/step - loss: 0.1927 - accuracy: 0.7005 - mae: 0.1927 - pearson_correlation: 0.2230 - euclidean_distance: 0.3269
Epoch 151/300
76/76 [==============================] - 0s 773us/step - loss: 0.1920 - accuracy: 0.7000 - mae: 0.1920 - pearson_correlation: 0.2395 - euclidean_distance: 0.3250
Epoch 152/300
76/76 [==============================] - 0s 770us/step - loss: 0.1871 - accuracy: 0.7203 - mae: 0.1871 - pearson_correlation: 0.2504 - euclidean_distance: 0.3171
Epoch 153/300
76/76 [==============================] - 0s 773us/step - loss: 0.1844 - accuracy: 0.7318 - mae: 0.1844 - pearson_correlation: 0.2787 - euclidean_distance: 0.3124
Epoch 154/300
76/76 [==============================] - 0s 772us/step - loss: 0.1813 - accuracy: 0.7490 - mae: 0.1813 - pearson_correlation: 0.2939 - euclidean_distance: 0.3065
Epoch 155/300
76/76 [==============================] - 0s 770us/step - loss: 0.1784 - accuracy: 0.7622 - mae: 0.1784 - pearson_correlation: 0.3084 - euclidean_distance: 0.3025
Epoch 156/300
76/76 [==============================] - 0s 766us/step - loss: 0.1776 - accuracy: 0.7750 - mae: 0.1776 - pearson_correlation: 0.3223 - euclidean_distance: 0.2996
Epoch 157/300
76/76 [==============================] - 0s 765us/step - loss: 0.1729 - accuracy: 0.7914 - mae: 0.1729 - pearson_correlation: 0.3469 - euclidean_distance: 0.2910
Epoch 158/300
76/76 [==============================] - 0s 775us/step - loss: 0.1712 - accuracy: 0.7909 - mae: 0.1712 - pearson_correlation: 0.3546 - euclidean_distance: 0.2883
Epoch 159/300
76/76 [==============================] - 0s 766us/step - loss: 0.1690 - accuracy: 0.8037 - mae: 0.1690 - pearson_correlation: 0.3642 - euclidean_distance: 0.2846
Epoch 160/300
76/76 [==============================] - 0s 772us/step - loss: 0.1653 - accuracy: 0.8240 - mae: 0.1653 - pearson_correlation: 0.3905 - euclidean_distance: 0.2777
Epoch 161/300
76/76 [==============================] - 0s 764us/step - loss: 0.1614 - accuracy: 0.8275 - mae: 0.1614 - pearson_correlation: 0.4082 - euclidean_distance: 0.2714
Epoch 162/300
76/76 [==============================] - 0s 771us/step - loss: 0.1607 - accuracy: 0.8403 - mae: 0.1607 - pearson_correlation: 0.4175 - euclidean_distance: 0.2694
Epoch 163/300
76/76 [==============================] - 0s 772us/step - loss: 0.1566 - accuracy: 0.8558 - mae: 0.1566 - pearson_correlation: 0.4382 - euclidean_distance: 0.2627
Epoch 164/300
76/76 [==============================] - 0s 778us/step - loss: 0.1553 - accuracy: 0.8685 - mae: 0.1553 - pearson_correlation: 0.4505 - euclidean_distance: 0.2596
Epoch 165/300
76/76 [==============================] - 0s 770us/step - loss: 0.1534 - accuracy: 0.8774 - mae: 0.1534 - pearson_correlation: 0.4515 - euclidean_distance: 0.2563
Epoch 166/300
76/76 [==============================] - 0s 768us/step - loss: 0.1531 - accuracy: 0.8858 - mae: 0.1531 - pearson_correlation: 0.4655 - euclidean_distance: 0.2545
Epoch 167/300
76/76 [==============================] - 0s 765us/step - loss: 0.1503 - accuracy: 0.8906 - mae: 0.1503 - pearson_correlation: 0.4759 - euclidean_distance: 0.2509
Epoch 168/300
76/76 [==============================] - 0s 765us/step - loss: 0.1481 - accuracy: 0.8915 - mae: 0.1481 - pearson_correlation: 0.4861 - euclidean_distance: 0.2469
Epoch 169/300
76/76 [==============================] - 0s 769us/step - loss: 0.1436 - accuracy: 0.9012 - mae: 0.1436 - pearson_correlation: 0.5048 - euclidean_distance: 0.2393
Epoch 170/300
76/76 [==============================] - 0s 779us/step - loss: 0.1409 - accuracy: 0.9065 - mae: 0.1409 - pearson_correlation: 0.5106 - euclidean_distance: 0.2352
Epoch 171/300
76/76 [==============================] - 0s 771us/step - loss: 0.1409 - accuracy: 0.9140 - mae: 0.1409 - pearson_correlation: 0.5160 - euclidean_distance: 0.2341
Epoch 172/300
76/76 [==============================] - 0s 765us/step - loss: 0.1379 - accuracy: 0.9202 - mae: 0.1379 - pearson_correlation: 0.5333 - euclidean_distance: 0.2296
Epoch 173/300
76/76 [==============================] - 0s 770us/step - loss: 0.1373 - accuracy: 0.9206 - mae: 0.1373 - pearson_correlation: 0.5403 - euclidean_distance: 0.2284
Epoch 174/300
76/76 [==============================] - 0s 769us/step - loss: 0.1337 - accuracy: 0.9263 - mae: 0.1337 - pearson_correlation: 0.5457 - euclidean_distance: 0.2224
Epoch 175/300
76/76 [==============================] - 0s 770us/step - loss: 0.1325 - accuracy: 0.9202 - mae: 0.1325 - pearson_correlation: 0.5532 - euclidean_distance: 0.2202
Epoch 176/300
76/76 [==============================] - 0s 764us/step - loss: 0.1301 - accuracy: 0.9294 - mae: 0.1301 - pearson_correlation: 0.5637 - euclidean_distance: 0.2162
Epoch 177/300
76/76 [==============================] - 0s 770us/step - loss: 0.1308 - accuracy: 0.9285 - mae: 0.1308 - pearson_correlation: 0.5611 - euclidean_distance: 0.2174
Epoch 178/300
76/76 [==============================] - 0s 768us/step - loss: 0.1272 - accuracy: 0.9343 - mae: 0.1272 - pearson_correlation: 0.5751 - euclidean_distance: 0.2106
Epoch 179/300
76/76 [==============================] - 0s 768us/step - loss: 0.1264 - accuracy: 0.9352 - mae: 0.1264 - pearson_correlation: 0.5821 - euclidean_distance: 0.2094
Epoch 180/300
76/76 [==============================] - 0s 771us/step - loss: 0.1243 - accuracy: 0.9347 - mae: 0.1243 - pearson_correlation: 0.5914 - euclidean_distance: 0.2056
Epoch 181/300
76/76 [==============================] - 0s 770us/step - loss: 0.1212 - accuracy: 0.9382 - mae: 0.1212 - pearson_correlation: 0.6017 - euclidean_distance: 0.2010
Epoch 182/300
76/76 [==============================] - 0s 765us/step - loss: 0.1209 - accuracy: 0.9374 - mae: 0.1209 - pearson_correlation: 0.6011 - euclidean_distance: 0.1996
Epoch 183/300
76/76 [==============================] - 0s 769us/step - loss: 0.1210 - accuracy: 0.9396 - mae: 0.1210 - pearson_correlation: 0.6027 - euclidean_distance: 0.2007
Epoch 184/300
76/76 [==============================] - 0s 768us/step - loss: 0.1195 - accuracy: 0.9435 - mae: 0.1195 - pearson_correlation: 0.6126 - euclidean_distance: 0.1975
Epoch 185/300
76/76 [==============================] - 0s 770us/step - loss: 0.1177 - accuracy: 0.9422 - mae: 0.1177 - pearson_correlation: 0.6132 - euclidean_distance: 0.1947
Epoch 186/300
76/76 [==============================] - 0s 771us/step - loss: 0.1164 - accuracy: 0.9466 - mae: 0.1164 - pearson_correlation: 0.6214 - euclidean_distance: 0.1926
Epoch 187/300
76/76 [==============================] - 0s 774us/step - loss: 0.1155 - accuracy: 0.9493 - mae: 0.1155 - pearson_correlation: 0.6276 - euclidean_distance: 0.1911
Epoch 188/300
76/76 [==============================] - 0s 772us/step - loss: 0.1159 - accuracy: 0.9466 - mae: 0.1159 - pearson_correlation: 0.6267 - euclidean_distance: 0.1909
Epoch 189/300
76/76 [==============================] - 0s 769us/step - loss: 0.1112 - accuracy: 0.9453 - mae: 0.1112 - pearson_correlation: 0.6453 - euclidean_distance: 0.1839
Epoch 190/300
76/76 [==============================] - 0s 773us/step - loss: 0.1111 - accuracy: 0.9466 - mae: 0.1111 - pearson_correlation: 0.6439 - euclidean_distance: 0.1837
Epoch 191/300
76/76 [==============================] - 0s 768us/step - loss: 0.1119 - accuracy: 0.9475 - mae: 0.1119 - pearson_correlation: 0.6389 - euclidean_distance: 0.1852
Epoch 192/300
76/76 [==============================] - 0s 766us/step - loss: 0.1094 - accuracy: 0.9506 - mae: 0.1094 - pearson_correlation: 0.6488 - euclidean_distance: 0.1810
Epoch 193/300
76/76 [==============================] - 0s 770us/step - loss: 0.1086 - accuracy: 0.9497 - mae: 0.1086 - pearson_correlation: 0.6519 - euclidean_distance: 0.1794
Epoch 194/300
76/76 [==============================] - 0s 771us/step - loss: 0.1084 - accuracy: 0.9519 - mae: 0.1084 - pearson_correlation: 0.6591 - euclidean_distance: 0.1783
Epoch 195/300
76/76 [==============================] - 0s 771us/step - loss: 0.1077 - accuracy: 0.9493 - mae: 0.1077 - pearson_correlation: 0.6567 - euclidean_distance: 0.1774
Epoch 196/300
76/76 [==============================] - 0s 769us/step - loss: 0.1049 - accuracy: 0.9515 - mae: 0.1049 - pearson_correlation: 0.6642 - euclidean_distance: 0.1732
Epoch 197/300
76/76 [==============================] - 0s 770us/step - loss: 0.1040 - accuracy: 0.9497 - mae: 0.1040 - pearson_correlation: 0.6698 - euclidean_distance: 0.1716
Epoch 198/300
76/76 [==============================] - 0s 770us/step - loss: 0.1031 - accuracy: 0.9532 - mae: 0.1031 - pearson_correlation: 0.6759 - euclidean_distance: 0.1702
Epoch 199/300
76/76 [==============================] - 0s 774us/step - loss: 0.1043 - accuracy: 0.9537 - mae: 0.1043 - pearson_correlation: 0.6698 - euclidean_distance: 0.1726
Epoch 200/300
76/76 [==============================] - 0s 770us/step - loss: 0.1037 - accuracy: 0.9528 - mae: 0.1037 - pearson_correlation: 0.6724 - euclidean_distance: 0.1711
Epoch 201/300
76/76 [==============================] - 0s 768us/step - loss: 0.1043 - accuracy: 0.9528 - mae: 0.1043 - pearson_correlation: 0.6748 - euclidean_distance: 0.1717
Epoch 202/300
76/76 [==============================] - 0s 766us/step - loss: 0.1043 - accuracy: 0.9510 - mae: 0.1043 - pearson_correlation: 0.6753 - euclidean_distance: 0.1720
Epoch 203/300
76/76 [==============================] - 0s 777us/step - loss: 0.1010 - accuracy: 0.9537 - mae: 0.1010 - pearson_correlation: 0.6889 - euclidean_distance: 0.1664
Epoch 204/300
76/76 [==============================] - 0s 769us/step - loss: 0.1036 - accuracy: 0.9515 - mae: 0.1036 - pearson_correlation: 0.6781 - euclidean_distance: 0.1702
Epoch 205/300
76/76 [==============================] - 0s 768us/step - loss: 0.0992 - accuracy: 0.9528 - mae: 0.0992 - pearson_correlation: 0.6917 - euclidean_distance: 0.1636
Epoch 206/300
76/76 [==============================] - 0s 776us/step - loss: 0.0983 - accuracy: 0.9528 - mae: 0.0983 - pearson_correlation: 0.6990 - euclidean_distance: 0.1618
Epoch 207/300
76/76 [==============================] - 0s 767us/step - loss: 0.0984 - accuracy: 0.9524 - mae: 0.0984 - pearson_correlation: 0.6960 - euclidean_distance: 0.1622
Epoch 208/300
76/76 [==============================] - 0s 765us/step - loss: 0.0981 - accuracy: 0.9550 - mae: 0.0981 - pearson_correlation: 0.7013 - euclidean_distance: 0.1621
Epoch 209/300
76/76 [==============================] - 0s 772us/step - loss: 0.1003 - accuracy: 0.9537 - mae: 0.1003 - pearson_correlation: 0.6918 - euclidean_distance: 0.1651
Epoch 210/300
76/76 [==============================] - 0s 767us/step - loss: 0.0975 - accuracy: 0.9546 - mae: 0.0975 - pearson_correlation: 0.7000 - euclidean_distance: 0.1605
Epoch 211/300
76/76 [==============================] - 0s 765us/step - loss: 0.0969 - accuracy: 0.9537 - mae: 0.0969 - pearson_correlation: 0.7032 - euclidean_distance: 0.1591
Epoch 212/300
76/76 [==============================] - 0s 772us/step - loss: 0.0981 - accuracy: 0.9554 - mae: 0.0981 - pearson_correlation: 0.7002 - euclidean_distance: 0.1614
Epoch 213/300
76/76 [==============================] - 0s 770us/step - loss: 0.0956 - accuracy: 0.9550 - mae: 0.0956 - pearson_correlation: 0.7082 - euclidean_distance: 0.1572
Epoch 214/300
76/76 [==============================] - 0s 767us/step - loss: 0.0940 - accuracy: 0.9550 - mae: 0.0940 - pearson_correlation: 0.7127 - euclidean_distance: 0.1555
Epoch 215/300
76/76 [==============================] - 0s 766us/step - loss: 0.0937 - accuracy: 0.9537 - mae: 0.0937 - pearson_correlation: 0.7164 - euclidean_distance: 0.1546
Epoch 216/300
76/76 [==============================] - 0s 770us/step - loss: 0.0955 - accuracy: 0.9563 - mae: 0.0955 - pearson_correlation: 0.7115 - euclidean_distance: 0.1568
Epoch 217/300
76/76 [==============================] - 0s 774us/step - loss: 0.0926 - accuracy: 0.9532 - mae: 0.0926 - pearson_correlation: 0.7191 - euclidean_distance: 0.1523
Epoch 218/300
76/76 [==============================] - 0s 768us/step - loss: 0.0938 - accuracy: 0.9559 - mae: 0.0938 - pearson_correlation: 0.7156 - euclidean_distance: 0.1544
Epoch 219/300
76/76 [==============================] - 0s 775us/step - loss: 0.0920 - accuracy: 0.9550 - mae: 0.0920 - pearson_correlation: 0.7151 - euclidean_distance: 0.1520
Epoch 220/300
76/76 [==============================] - 0s 779us/step - loss: 0.0928 - accuracy: 0.9554 - mae: 0.0928 - pearson_correlation: 0.7182 - euclidean_distance: 0.1529
Epoch 221/300
76/76 [==============================] - 0s 771us/step - loss: 0.0915 - accuracy: 0.9541 - mae: 0.0915 - pearson_correlation: 0.7204 - euclidean_distance: 0.1505
Epoch 222/300
76/76 [==============================] - 0s 772us/step - loss: 0.0909 - accuracy: 0.9559 - mae: 0.0909 - pearson_correlation: 0.7270 - euclidean_distance: 0.1494
Epoch 223/300
76/76 [==============================] - 0s 770us/step - loss: 0.0924 - accuracy: 0.9559 - mae: 0.0924 - pearson_correlation: 0.7237 - euclidean_distance: 0.1522
Epoch 224/300
76/76 [==============================] - 0s 769us/step - loss: 0.0921 - accuracy: 0.9546 - mae: 0.0921 - pearson_correlation: 0.7234 - euclidean_distance: 0.1515
Epoch 225/300
76/76 [==============================] - 0s 774us/step - loss: 0.0910 - accuracy: 0.9554 - mae: 0.0910 - pearson_correlation: 0.7285 - euclidean_distance: 0.1506
Epoch 226/300
76/76 [==============================] - 0s 769us/step - loss: 0.0901 - accuracy: 0.9563 - mae: 0.0901 - pearson_correlation: 0.7292 - euclidean_distance: 0.1481
Epoch 227/300
76/76 [==============================] - 0s 769us/step - loss: 0.0905 - accuracy: 0.9554 - mae: 0.0905 - pearson_correlation: 0.7309 - euclidean_distance: 0.1484
Epoch 228/300
76/76 [==============================] - 0s 773us/step - loss: 0.0910 - accuracy: 0.9559 - mae: 0.0910 - pearson_correlation: 0.7308 - euclidean_distance: 0.1499
Epoch 229/300
76/76 [==============================] - 0s 770us/step - loss: 0.0916 - accuracy: 0.9554 - mae: 0.0916 - pearson_correlation: 0.7268 - euclidean_distance: 0.1503
Epoch 230/300
76/76 [==============================] - 0s 783us/step - loss: 0.0870 - accuracy: 0.9546 - mae: 0.0870 - pearson_correlation: 0.7383 - euclidean_distance: 0.1439
Epoch 231/300
76/76 [==============================] - 0s 767us/step - loss: 0.0883 - accuracy: 0.9546 - mae: 0.0883 - pearson_correlation: 0.7356 - euclidean_distance: 0.1457
Epoch 232/300
76/76 [==============================] - 0s 766us/step - loss: 0.0889 - accuracy: 0.9559 - mae: 0.0889 - pearson_correlation: 0.7292 - euclidean_distance: 0.1467
Epoch 233/300
76/76 [==============================] - 0s 772us/step - loss: 0.0879 - accuracy: 0.9559 - mae: 0.0879 - pearson_correlation: 0.7385 - euclidean_distance: 0.1449
Epoch 234/300
76/76 [==============================] - 0s 772us/step - loss: 0.0891 - accuracy: 0.9554 - mae: 0.0891 - pearson_correlation: 0.7322 - euclidean_distance: 0.1467
Epoch 235/300
76/76 [==============================] - 0s 770us/step - loss: 0.0874 - accuracy: 0.9554 - mae: 0.0874 - pearson_correlation: 0.7407 - euclidean_distance: 0.1435
Epoch 236/300
76/76 [==============================] - 0s 772us/step - loss: 0.0877 - accuracy: 0.9563 - mae: 0.0877 - pearson_correlation: 0.7385 - euclidean_distance: 0.1441
Epoch 237/300
76/76 [==============================] - 0s 781us/step - loss: 0.0884 - accuracy: 0.9550 - mae: 0.0884 - pearson_correlation: 0.7427 - euclidean_distance: 0.1453
Epoch 238/300
76/76 [==============================] - 0s 768us/step - loss: 0.0860 - accuracy: 0.9563 - mae: 0.0860 - pearson_correlation: 0.7427 - euclidean_distance: 0.1414
Epoch 239/300
76/76 [==============================] - 0s 770us/step - loss: 0.0868 - accuracy: 0.9563 - mae: 0.0868 - pearson_correlation: 0.7390 - euclidean_distance: 0.1430
Epoch 240/300
76/76 [==============================] - 0s 773us/step - loss: 0.0887 - accuracy: 0.9559 - mae: 0.0887 - pearson_correlation: 0.7401 - euclidean_distance: 0.1459
Epoch 241/300
76/76 [==============================] - 0s 774us/step - loss: 0.0865 - accuracy: 0.9559 - mae: 0.0865 - pearson_correlation: 0.7425 - euclidean_distance: 0.1425
Epoch 242/300
76/76 [==============================] - 0s 785us/step - loss: 0.0854 - accuracy: 0.9559 - mae: 0.0854 - pearson_correlation: 0.7462 - euclidean_distance: 0.1407
Epoch 243/300
76/76 [==============================] - 0s 777us/step - loss: 0.0859 - accuracy: 0.9563 - mae: 0.0859 - pearson_correlation: 0.7512 - euclidean_distance: 0.1411
Epoch 244/300
76/76 [==============================] - 0s 764us/step - loss: 0.0836 - accuracy: 0.9563 - mae: 0.0836 - pearson_correlation: 0.7475 - euclidean_distance: 0.1383
Epoch 245/300
76/76 [==============================] - 0s 776us/step - loss: 0.0867 - accuracy: 0.9559 - mae: 0.0867 - pearson_correlation: 0.7474 - euclidean_distance: 0.1424
Epoch 246/300
76/76 [==============================] - 0s 806us/step - loss: 0.0864 - accuracy: 0.9563 - mae: 0.0864 - pearson_correlation: 0.7486 - euclidean_distance: 0.1416
Epoch 247/300
76/76 [==============================] - 0s 779us/step - loss: 0.0848 - accuracy: 0.9563 - mae: 0.0848 - pearson_correlation: 0.7511 - euclidean_distance: 0.1397
Epoch 248/300
76/76 [==============================] - 0s 764us/step - loss: 0.0860 - accuracy: 0.9563 - mae: 0.0860 - pearson_correlation: 0.7425 - euclidean_distance: 0.1413
Epoch 249/300
76/76 [==============================] - 0s 768us/step - loss: 0.0853 - accuracy: 0.9559 - mae: 0.0853 - pearson_correlation: 0.7536 - euclidean_distance: 0.1401
Epoch 250/300
76/76 [==============================] - 0s 763us/step - loss: 0.0848 - accuracy: 0.9559 - mae: 0.0848 - pearson_correlation: 0.7536 - euclidean_distance: 0.1398
Epoch 251/300
76/76 [==============================] - 0s 768us/step - loss: 0.0837 - accuracy: 0.9559 - mae: 0.0837 - pearson_correlation: 0.7563 - euclidean_distance: 0.1376
Epoch 252/300
76/76 [==============================] - 0s 767us/step - loss: 0.0840 - accuracy: 0.9559 - mae: 0.0840 - pearson_correlation: 0.7538 - euclidean_distance: 0.1381
Epoch 253/300
76/76 [==============================] - 0s 773us/step - loss: 0.0843 - accuracy: 0.9559 - mae: 0.0843 - pearson_correlation: 0.7486 - euclidean_distance: 0.1386
Epoch 254/300
76/76 [==============================] - 0s 770us/step - loss: 0.0842 - accuracy: 0.9563 - mae: 0.0842 - pearson_correlation: 0.7523 - euclidean_distance: 0.1384
Epoch 255/300
76/76 [==============================] - 0s 769us/step - loss: 0.0827 - accuracy: 0.9563 - mae: 0.0827 - pearson_correlation: 0.7581 - euclidean_distance: 0.1360
Epoch 256/300
76/76 [==============================] - 0s 764us/step - loss: 0.0840 - accuracy: 0.9559 - mae: 0.0840 - pearson_correlation: 0.7510 - euclidean_distance: 0.1382
Epoch 257/300
76/76 [==============================] - 0s 766us/step - loss: 0.0833 - accuracy: 0.9563 - mae: 0.0833 - pearson_correlation: 0.7535 - euclidean_distance: 0.1371
Epoch 258/300
76/76 [==============================] - 0s 768us/step - loss: 0.0852 - accuracy: 0.9559 - mae: 0.0852 - pearson_correlation: 0.7562 - euclidean_distance: 0.1400
Epoch 259/300
76/76 [==============================] - 0s 776us/step - loss: 0.0810 - accuracy: 0.9563 - mae: 0.0810 - pearson_correlation: 0.7590 - euclidean_distance: 0.1333
Epoch 260/300
76/76 [==============================] - 0s 772us/step - loss: 0.0815 - accuracy: 0.9563 - mae: 0.0815 - pearson_correlation: 0.7640 - euclidean_distance: 0.1340
Epoch 261/300
76/76 [==============================] - 0s 767us/step - loss: 0.0829 - accuracy: 0.9563 - mae: 0.0829 - pearson_correlation: 0.7584 - euclidean_distance: 0.1360
Epoch 262/300
76/76 [==============================] - 0s 769us/step - loss: 0.0828 - accuracy: 0.9563 - mae: 0.0828 - pearson_correlation: 0.7565 - euclidean_distance: 0.1367
Epoch 263/300
76/76 [==============================] - 0s 768us/step - loss: 0.0815 - accuracy: 0.9559 - mae: 0.0815 - pearson_correlation: 0.7607 - euclidean_distance: 0.1340
Epoch 264/300
76/76 [==============================] - 0s 769us/step - loss: 0.0826 - accuracy: 0.9554 - mae: 0.0826 - pearson_correlation: 0.7574 - euclidean_distance: 0.1354
Epoch 265/300
76/76 [==============================] - 0s 770us/step - loss: 0.0827 - accuracy: 0.9559 - mae: 0.0827 - pearson_correlation: 0.7583 - euclidean_distance: 0.1355
Epoch 266/300
76/76 [==============================] - 0s 773us/step - loss: 0.0808 - accuracy: 0.9563 - mae: 0.0808 - pearson_correlation: 0.7639 - euclidean_distance: 0.1326
Epoch 267/300
76/76 [==============================] - 0s 773us/step - loss: 0.0796 - accuracy: 0.9563 - mae: 0.0796 - pearson_correlation: 0.7664 - euclidean_distance: 0.1310
Epoch 268/300
76/76 [==============================] - 0s 774us/step - loss: 0.0803 - accuracy: 0.9559 - mae: 0.0803 - pearson_correlation: 0.7646 - euclidean_distance: 0.1322
Epoch 269/300
76/76 [==============================] - 0s 769us/step - loss: 0.0801 - accuracy: 0.9563 - mae: 0.0801 - pearson_correlation: 0.7708 - euclidean_distance: 0.1314
Epoch 270/300
76/76 [==============================] - 0s 774us/step - loss: 0.0792 - accuracy: 0.9563 - mae: 0.0792 - pearson_correlation: 0.7686 - euclidean_distance: 0.1304
Epoch 271/300
76/76 [==============================] - 0s 773us/step - loss: 0.0845 - accuracy: 0.9559 - mae: 0.0845 - pearson_correlation: 0.7586 - euclidean_distance: 0.1375
Epoch 272/300
76/76 [==============================] - 0s 768us/step - loss: 0.0800 - accuracy: 0.9554 - mae: 0.0800 - pearson_correlation: 0.7682 - euclidean_distance: 0.1315
Epoch 273/300
76/76 [==============================] - 0s 768us/step - loss: 0.0807 - accuracy: 0.9563 - mae: 0.0807 - pearson_correlation: 0.7640 - euclidean_distance: 0.1329
Epoch 274/300
76/76 [==============================] - 0s 773us/step - loss: 0.0811 - accuracy: 0.9554 - mae: 0.0811 - pearson_correlation: 0.7669 - euclidean_distance: 0.1326
Epoch 275/300
76/76 [==============================] - 0s 772us/step - loss: 0.0805 - accuracy: 0.9563 - mae: 0.0805 - pearson_correlation: 0.7665 - euclidean_distance: 0.1318
Epoch 276/300
76/76 [==============================] - 0s 782us/step - loss: 0.0790 - accuracy: 0.9559 - mae: 0.0790 - pearson_correlation: 0.7699 - euclidean_distance: 0.1299
Epoch 277/300
76/76 [==============================] - 0s 774us/step - loss: 0.0781 - accuracy: 0.9563 - mae: 0.0781 - pearson_correlation: 0.7714 - euclidean_distance: 0.1286
Epoch 278/300
76/76 [==============================] - 0s 767us/step - loss: 0.0809 - accuracy: 0.9563 - mae: 0.0809 - pearson_correlation: 0.7655 - euclidean_distance: 0.1330
Epoch 279/300
76/76 [==============================] - 0s 767us/step - loss: 0.0808 - accuracy: 0.9563 - mae: 0.0808 - pearson_correlation: 0.7660 - euclidean_distance: 0.1324
Epoch 280/300
76/76 [==============================] - 0s 794us/step - loss: 0.0783 - accuracy: 0.9563 - mae: 0.0783 - pearson_correlation: 0.7758 - euclidean_distance: 0.1288
Epoch 281/300
76/76 [==============================] - 0s 879us/step - loss: 0.0786 - accuracy: 0.9563 - mae: 0.0786 - pearson_correlation: 0.7721 - euclidean_distance: 0.1289
Epoch 282/300
76/76 [==============================] - 0s 862us/step - loss: 0.0791 - accuracy: 0.9559 - mae: 0.0791 - pearson_correlation: 0.7673 - euclidean_distance: 0.1303
Epoch 283/300
76/76 [==============================] - 0s 852us/step - loss: 0.0797 - accuracy: 0.9563 - mae: 0.0797 - pearson_correlation: 0.7679 - euclidean_distance: 0.1306
Epoch 284/300
76/76 [==============================] - 0s 864us/step - loss: 0.0795 - accuracy: 0.9563 - mae: 0.0795 - pearson_correlation: 0.7662 - euclidean_distance: 0.1311
Epoch 285/300
76/76 [==============================] - 0s 942us/step - loss: 0.0778 - accuracy: 0.9559 - mae: 0.0778 - pearson_correlation: 0.7713 - euclidean_distance: 0.1284
Epoch 286/300
76/76 [==============================] - 0s 876us/step - loss: 0.0786 - accuracy: 0.9563 - mae: 0.0786 - pearson_correlation: 0.7693 - euclidean_distance: 0.1292
Epoch 287/300
76/76 [==============================] - 0s 1ms/step - loss: 0.0780 - accuracy: 0.9563 - mae: 0.0780 - pearson_correlation: 0.7701 - euclidean_distance: 0.1281
Epoch 288/300
76/76 [==============================] - 0s 905us/step - loss: 0.0781 - accuracy: 0.9563 - mae: 0.0781 - pearson_correlation: 0.7747 - euclidean_distance: 0.1281
Epoch 289/300
76/76 [==============================] - 0s 784us/step - loss: 0.0787 - accuracy: 0.9563 - mae: 0.0787 - pearson_correlation: 0.7754 - euclidean_distance: 0.1297
Epoch 290/300
76/76 [==============================] - 0s 770us/step - loss: 0.0781 - accuracy: 0.9563 - mae: 0.0781 - pearson_correlation: 0.7721 - euclidean_distance: 0.1281
Epoch 291/300
76/76 [==============================] - 0s 779us/step - loss: 0.0770 - accuracy: 0.9563 - mae: 0.0770 - pearson_correlation: 0.7761 - euclidean_distance: 0.1267
Epoch 292/300
76/76 [==============================] - 0s 772us/step - loss: 0.0779 - accuracy: 0.9559 - mae: 0.0779 - pearson_correlation: 0.7727 - euclidean_distance: 0.1277
Epoch 293/300
76/76 [==============================] - 0s 772us/step - loss: 0.0776 - accuracy: 0.9563 - mae: 0.0776 - pearson_correlation: 0.7761 - euclidean_distance: 0.1272
Epoch 294/300
76/76 [==============================] - 0s 769us/step - loss: 0.0786 - accuracy: 0.9559 - mae: 0.0786 - pearson_correlation: 0.7750 - euclidean_distance: 0.1281
Epoch 295/300
76/76 [==============================] - 0s 774us/step - loss: 0.0775 - accuracy: 0.9563 - mae: 0.0775 - pearson_correlation: 0.7779 - euclidean_distance: 0.1276
Epoch 296/300
76/76 [==============================] - 0s 769us/step - loss: 0.0744 - accuracy: 0.9563 - mae: 0.0744 - pearson_correlation: 0.7808 - euclidean_distance: 0.1227
Epoch 297/300
76/76 [==============================] - 0s 769us/step - loss: 0.0786 - accuracy: 0.9563 - mae: 0.0786 - pearson_correlation: 0.7750 - euclidean_distance: 0.1291
Epoch 298/300
76/76 [==============================] - 0s 771us/step - loss: 0.0767 - accuracy: 0.9563 - mae: 0.0767 - pearson_correlation: 0.7789 - euclidean_distance: 0.1262
Epoch 299/300
76/76 [==============================] - 0s 775us/step - loss: 0.0770 - accuracy: 0.9563 - mae: 0.0770 - pearson_correlation: 0.7757 - euclidean_distance: 0.1263
Epoch 300/300
76/76 [==============================] - 0s 772us/step - loss: 0.0787 - accuracy: 0.9563 - mae: 0.0787 - pearson_correlation: 0.7715 - euclidean_distance: 0.1291
38/38 [==============================] - 0s 472us/step
Epoch 1/300
76/76 [==============================] - 1s 917us/step - loss: 0.6697 - accuracy: 0.0446 - mae: 0.6697 - pearson_correlation: -0.6709 - euclidean_distance: 1.1306
Epoch 2/300
76/76 [==============================] - 0s 834us/step - loss: 0.6633 - accuracy: 0.0446 - mae: 0.6633 - pearson_correlation: -0.6723 - euclidean_distance: 1.1215
Epoch 3/300
76/76 [==============================] - 0s 852us/step - loss: 0.6558 - accuracy: 0.0446 - mae: 0.6558 - pearson_correlation: -0.6679 - euclidean_distance: 1.1111
Epoch 4/300
76/76 [==============================] - 0s 835us/step - loss: 0.6470 - accuracy: 0.0446 - mae: 0.6470 - pearson_correlation: -0.6674 - euclidean_distance: 1.0978
Epoch 5/300
76/76 [==============================] - 0s 837us/step - loss: 0.6413 - accuracy: 0.0446 - mae: 0.6413 - pearson_correlation: -0.6598 - euclidean_distance: 1.0885
Epoch 6/300
76/76 [==============================] - 0s 839us/step - loss: 0.6341 - accuracy: 0.0446 - mae: 0.6341 - pearson_correlation: -0.6628 - euclidean_distance: 1.0767
Epoch 7/300
76/76 [==============================] - 0s 839us/step - loss: 0.6270 - accuracy: 0.0446 - mae: 0.6270 - pearson_correlation: -0.6621 - euclidean_distance: 1.0668
Epoch 8/300
76/76 [==============================] - 0s 839us/step - loss: 0.6186 - accuracy: 0.0446 - mae: 0.6186 - pearson_correlation: -0.6543 - euclidean_distance: 1.0524
Epoch 9/300
76/76 [==============================] - 0s 834us/step - loss: 0.6115 - accuracy: 0.0446 - mae: 0.6115 - pearson_correlation: -0.6541 - euclidean_distance: 1.0406
Epoch 10/300
76/76 [==============================] - 0s 838us/step - loss: 0.6048 - accuracy: 0.0446 - mae: 0.6048 - pearson_correlation: -0.6532 - euclidean_distance: 1.0327
Epoch 11/300
76/76 [==============================] - 0s 833us/step - loss: 0.6006 - accuracy: 0.0446 - mae: 0.6006 - pearson_correlation: -0.6487 - euclidean_distance: 1.0211
Epoch 12/300
76/76 [==============================] - 0s 835us/step - loss: 0.5922 - accuracy: 0.0446 - mae: 0.5922 - pearson_correlation: -0.6510 - euclidean_distance: 1.0099
Epoch 13/300
76/76 [==============================] - 0s 836us/step - loss: 0.5853 - accuracy: 0.0446 - mae: 0.5853 - pearson_correlation: -0.6472 - euclidean_distance: 0.9978
Epoch 14/300
76/76 [==============================] - 0s 838us/step - loss: 0.5797 - accuracy: 0.0446 - mae: 0.5797 - pearson_correlation: -0.6439 - euclidean_distance: 0.9884
Epoch 15/300
76/76 [==============================] - 0s 830us/step - loss: 0.5728 - accuracy: 0.0446 - mae: 0.5728 - pearson_correlation: -0.6409 - euclidean_distance: 0.9800
Epoch 16/300
76/76 [==============================] - 0s 838us/step - loss: 0.5670 - accuracy: 0.0446 - mae: 0.5670 - pearson_correlation: -0.6413 - euclidean_distance: 0.9679
Epoch 17/300
76/76 [==============================] - 0s 834us/step - loss: 0.5612 - accuracy: 0.0446 - mae: 0.5612 - pearson_correlation: -0.6354 - euclidean_distance: 0.9587
Epoch 18/300
76/76 [==============================] - 0s 835us/step - loss: 0.5540 - accuracy: 0.0446 - mae: 0.5540 - pearson_correlation: -0.6275 - euclidean_distance: 0.9475
Epoch 19/300
76/76 [==============================] - 0s 832us/step - loss: 0.5477 - accuracy: 0.0446 - mae: 0.5477 - pearson_correlation: -0.6330 - euclidean_distance: 0.9376
Epoch 20/300
76/76 [==============================] - 0s 838us/step - loss: 0.5419 - accuracy: 0.0446 - mae: 0.5419 - pearson_correlation: -0.6241 - euclidean_distance: 0.9249
Epoch 21/300
76/76 [==============================] - 0s 838us/step - loss: 0.5374 - accuracy: 0.0446 - mae: 0.5374 - pearson_correlation: -0.6202 - euclidean_distance: 0.9177
Epoch 22/300
76/76 [==============================] - 0s 831us/step - loss: 0.5293 - accuracy: 0.0446 - mae: 0.5293 - pearson_correlation: -0.6207 - euclidean_distance: 0.9057
Epoch 23/300
76/76 [==============================] - 0s 832us/step - loss: 0.5252 - accuracy: 0.0446 - mae: 0.5252 - pearson_correlation: -0.6161 - euclidean_distance: 0.8986
Epoch 24/300
76/76 [==============================] - 0s 840us/step - loss: 0.5177 - accuracy: 0.0446 - mae: 0.5177 - pearson_correlation: -0.6153 - euclidean_distance: 0.8865
Epoch 25/300
76/76 [==============================] - 0s 829us/step - loss: 0.5123 - accuracy: 0.0446 - mae: 0.5123 - pearson_correlation: -0.6108 - euclidean_distance: 0.8779
Epoch 26/300
76/76 [==============================] - 0s 832us/step - loss: 0.5086 - accuracy: 0.0446 - mae: 0.5086 - pearson_correlation: -0.6081 - euclidean_distance: 0.8691
Epoch 27/300
76/76 [==============================] - 0s 832us/step - loss: 0.5022 - accuracy: 0.0446 - mae: 0.5022 - pearson_correlation: -0.6029 - euclidean_distance: 0.8588
Epoch 28/300
76/76 [==============================] - 0s 842us/step - loss: 0.4950 - accuracy: 0.0450 - mae: 0.4950 - pearson_correlation: -0.5948 - euclidean_distance: 0.8476
Epoch 29/300
76/76 [==============================] - 0s 837us/step - loss: 0.4917 - accuracy: 0.0446 - mae: 0.4917 - pearson_correlation: -0.5991 - euclidean_distance: 0.8405
Epoch 30/300
76/76 [==============================] - 0s 832us/step - loss: 0.4861 - accuracy: 0.0446 - mae: 0.4861 - pearson_correlation: -0.5910 - euclidean_distance: 0.8312
Epoch 31/300
76/76 [==============================] - 0s 838us/step - loss: 0.4797 - accuracy: 0.0450 - mae: 0.4797 - pearson_correlation: -0.5843 - euclidean_distance: 0.8203
Epoch 32/300
76/76 [==============================] - 0s 831us/step - loss: 0.4757 - accuracy: 0.0463 - mae: 0.4757 - pearson_correlation: -0.5881 - euclidean_distance: 0.8137
Epoch 33/300
76/76 [==============================] - 0s 870us/step - loss: 0.4713 - accuracy: 0.0454 - mae: 0.4713 - pearson_correlation: -0.5827 - euclidean_distance: 0.8050
Epoch 34/300
76/76 [==============================] - 0s 842us/step - loss: 0.4678 - accuracy: 0.0450 - mae: 0.4678 - pearson_correlation: -0.5750 - euclidean_distance: 0.7988
Epoch 35/300
76/76 [==============================] - 0s 838us/step - loss: 0.4630 - accuracy: 0.0450 - mae: 0.4630 - pearson_correlation: -0.5728 - euclidean_distance: 0.7894
Epoch 36/300
76/76 [==============================] - 0s 839us/step - loss: 0.4559 - accuracy: 0.0459 - mae: 0.4559 - pearson_correlation: -0.5663 - euclidean_distance: 0.7786
Epoch 37/300
76/76 [==============================] - 0s 832us/step - loss: 0.4524 - accuracy: 0.0459 - mae: 0.4524 - pearson_correlation: -0.5617 - euclidean_distance: 0.7725
Epoch 38/300
76/76 [==============================] - 0s 836us/step - loss: 0.4475 - accuracy: 0.0454 - mae: 0.4475 - pearson_correlation: -0.5558 - euclidean_distance: 0.7644
Epoch 39/300
76/76 [==============================] - 0s 835us/step - loss: 0.4436 - accuracy: 0.0446 - mae: 0.4436 - pearson_correlation: -0.5543 - euclidean_distance: 0.7565
Epoch 40/300
76/76 [==============================] - 0s 829us/step - loss: 0.4386 - accuracy: 0.0468 - mae: 0.4386 - pearson_correlation: -0.5524 - euclidean_distance: 0.7482
Epoch 41/300
76/76 [==============================] - 0s 833us/step - loss: 0.4325 - accuracy: 0.0468 - mae: 0.4325 - pearson_correlation: -0.5469 - euclidean_distance: 0.7383
Epoch 42/300
76/76 [==============================] - 0s 832us/step - loss: 0.4277 - accuracy: 0.0450 - mae: 0.4277 - pearson_correlation: -0.5420 - euclidean_distance: 0.7293
Epoch 43/300
76/76 [==============================] - 0s 830us/step - loss: 0.4252 - accuracy: 0.0463 - mae: 0.4252 - pearson_correlation: -0.5343 - euclidean_distance: 0.7246
Epoch 44/300
76/76 [==============================] - 0s 831us/step - loss: 0.4215 - accuracy: 0.0468 - mae: 0.4215 - pearson_correlation: -0.5294 - euclidean_distance: 0.7176
Epoch 45/300
76/76 [==============================] - 0s 829us/step - loss: 0.4149 - accuracy: 0.0454 - mae: 0.4149 - pearson_correlation: -0.5285 - euclidean_distance: 0.7062
Epoch 46/300
76/76 [==============================] - 0s 827us/step - loss: 0.4111 - accuracy: 0.0481 - mae: 0.4111 - pearson_correlation: -0.5255 - euclidean_distance: 0.6990
Epoch 47/300
76/76 [==============================] - 0s 832us/step - loss: 0.4066 - accuracy: 0.0481 - mae: 0.4066 - pearson_correlation: -0.5145 - euclidean_distance: 0.6928
Epoch 48/300
76/76 [==============================] - 0s 828us/step - loss: 0.4033 - accuracy: 0.0485 - mae: 0.4033 - pearson_correlation: -0.5112 - euclidean_distance: 0.6862
Epoch 49/300
76/76 [==============================] - 0s 914us/step - loss: 0.3984 - accuracy: 0.0476 - mae: 0.3984 - pearson_correlation: -0.5061 - euclidean_distance: 0.6788
Epoch 50/300
76/76 [==============================] - 0s 844us/step - loss: 0.3973 - accuracy: 0.0485 - mae: 0.3973 - pearson_correlation: -0.5103 - euclidean_distance: 0.6745
Epoch 51/300
76/76 [==============================] - 0s 849us/step - loss: 0.3925 - accuracy: 0.0481 - mae: 0.3925 - pearson_correlation: -0.5047 - euclidean_distance: 0.6670
Epoch 52/300
76/76 [==============================] - 0s 833us/step - loss: 0.3881 - accuracy: 0.0494 - mae: 0.3881 - pearson_correlation: -0.4952 - euclidean_distance: 0.6596
Epoch 53/300
76/76 [==============================] - 0s 828us/step - loss: 0.3842 - accuracy: 0.0481 - mae: 0.3842 - pearson_correlation: -0.4906 - euclidean_distance: 0.6535
Epoch 54/300
76/76 [==============================] - 0s 831us/step - loss: 0.3788 - accuracy: 0.0543 - mae: 0.3788 - pearson_correlation: -0.4861 - euclidean_distance: 0.6426
Epoch 55/300
76/76 [==============================] - 0s 837us/step - loss: 0.3766 - accuracy: 0.0525 - mae: 0.3766 - pearson_correlation: -0.4852 - euclidean_distance: 0.6386
Epoch 56/300
76/76 [==============================] - 0s 828us/step - loss: 0.3695 - accuracy: 0.0538 - mae: 0.3695 - pearson_correlation: -0.4844 - euclidean_distance: 0.6288
Epoch 57/300
76/76 [==============================] - 0s 832us/step - loss: 0.3675 - accuracy: 0.0498 - mae: 0.3675 - pearson_correlation: -0.4774 - euclidean_distance: 0.6233
Epoch 58/300
76/76 [==============================] - 0s 830us/step - loss: 0.3665 - accuracy: 0.0596 - mae: 0.3665 - pearson_correlation: -0.4641 - euclidean_distance: 0.6198
Epoch 59/300
76/76 [==============================] - 0s 821us/step - loss: 0.3607 - accuracy: 0.0618 - mae: 0.3607 - pearson_correlation: -0.4581 - euclidean_distance: 0.6124
Epoch 60/300
76/76 [==============================] - 0s 817us/step - loss: 0.3568 - accuracy: 0.0604 - mae: 0.3568 - pearson_correlation: -0.4544 - euclidean_distance: 0.6046
Epoch 61/300
76/76 [==============================] - 0s 829us/step - loss: 0.3528 - accuracy: 0.0657 - mae: 0.3528 - pearson_correlation: -0.4570 - euclidean_distance: 0.5966
Epoch 62/300
76/76 [==============================] - 0s 830us/step - loss: 0.3501 - accuracy: 0.0626 - mae: 0.3501 - pearson_correlation: -0.4536 - euclidean_distance: 0.5939
Epoch 63/300
76/76 [==============================] - 0s 837us/step - loss: 0.3469 - accuracy: 0.0648 - mae: 0.3469 - pearson_correlation: -0.4466 - euclidean_distance: 0.5873
Epoch 64/300
76/76 [==============================] - 0s 838us/step - loss: 0.3429 - accuracy: 0.0697 - mae: 0.3429 - pearson_correlation: -0.4418 - euclidean_distance: 0.5802
Epoch 65/300
76/76 [==============================] - 0s 839us/step - loss: 0.3390 - accuracy: 0.0657 - mae: 0.3390 - pearson_correlation: -0.4416 - euclidean_distance: 0.5733
Epoch 66/300
76/76 [==============================] - 0s 834us/step - loss: 0.3368 - accuracy: 0.0785 - mae: 0.3368 - pearson_correlation: -0.4302 - euclidean_distance: 0.5680
Epoch 67/300
76/76 [==============================] - 0s 830us/step - loss: 0.3318 - accuracy: 0.0803 - mae: 0.3318 - pearson_correlation: -0.4308 - euclidean_distance: 0.5595
Epoch 68/300
76/76 [==============================] - 0s 828us/step - loss: 0.3295 - accuracy: 0.0834 - mae: 0.3295 - pearson_correlation: -0.4230 - euclidean_distance: 0.5559
Epoch 69/300
76/76 [==============================] - 0s 835us/step - loss: 0.3271 - accuracy: 0.0860 - mae: 0.3271 - pearson_correlation: -0.4167 - euclidean_distance: 0.5507
Epoch 70/300
76/76 [==============================] - 0s 833us/step - loss: 0.3251 - accuracy: 0.0878 - mae: 0.3251 - pearson_correlation: -0.4063 - euclidean_distance: 0.5479
Epoch 71/300
76/76 [==============================] - 0s 831us/step - loss: 0.3203 - accuracy: 0.0909 - mae: 0.3203 - pearson_correlation: -0.4111 - euclidean_distance: 0.5392
Epoch 72/300
76/76 [==============================] - 0s 833us/step - loss: 0.3190 - accuracy: 0.0953 - mae: 0.3190 - pearson_correlation: -0.3976 - euclidean_distance: 0.5358
Epoch 73/300
76/76 [==============================] - 0s 827us/step - loss: 0.3153 - accuracy: 0.1023 - mae: 0.3153 - pearson_correlation: -0.3941 - euclidean_distance: 0.5307
Epoch 74/300
76/76 [==============================] - 0s 840us/step - loss: 0.3137 - accuracy: 0.0931 - mae: 0.3137 - pearson_correlation: -0.3915 - euclidean_distance: 0.5270
Epoch 75/300
76/76 [==============================] - 0s 830us/step - loss: 0.3102 - accuracy: 0.1032 - mae: 0.3102 - pearson_correlation: -0.3734 - euclidean_distance: 0.5213
Epoch 76/300
76/76 [==============================] - 0s 837us/step - loss: 0.3064 - accuracy: 0.1067 - mae: 0.3064 - pearson_correlation: -0.3802 - euclidean_distance: 0.5131
Epoch 77/300
76/76 [==============================] - 0s 834us/step - loss: 0.3033 - accuracy: 0.1085 - mae: 0.3033 - pearson_correlation: -0.3661 - euclidean_distance: 0.5089
Epoch 78/300
76/76 [==============================] - 0s 826us/step - loss: 0.3021 - accuracy: 0.1200 - mae: 0.3021 - pearson_correlation: -0.3707 - euclidean_distance: 0.5069
Epoch 79/300
76/76 [==============================] - 0s 833us/step - loss: 0.2986 - accuracy: 0.1090 - mae: 0.2986 - pearson_correlation: -0.3655 - euclidean_distance: 0.4999
Epoch 80/300
76/76 [==============================] - 0s 833us/step - loss: 0.2955 - accuracy: 0.1182 - mae: 0.2955 - pearson_correlation: -0.3641 - euclidean_distance: 0.4954
Epoch 81/300
76/76 [==============================] - 0s 833us/step - loss: 0.2951 - accuracy: 0.1222 - mae: 0.2951 - pearson_correlation: -0.3521 - euclidean_distance: 0.4949
Epoch 82/300
76/76 [==============================] - 0s 834us/step - loss: 0.2912 - accuracy: 0.1301 - mae: 0.2912 - pearson_correlation: -0.3432 - euclidean_distance: 0.4876
Epoch 83/300
76/76 [==============================] - 0s 827us/step - loss: 0.2885 - accuracy: 0.1297 - mae: 0.2885 - pearson_correlation: -0.3398 - euclidean_distance: 0.4827
Epoch 84/300
76/76 [==============================] - 0s 834us/step - loss: 0.2841 - accuracy: 0.1323 - mae: 0.2841 - pearson_correlation: -0.3291 - euclidean_distance: 0.4758
Epoch 85/300
76/76 [==============================] - 0s 838us/step - loss: 0.2840 - accuracy: 0.1337 - mae: 0.2840 - pearson_correlation: -0.3330 - euclidean_distance: 0.4753
Epoch 86/300
76/76 [==============================] - 0s 831us/step - loss: 0.2803 - accuracy: 0.1451 - mae: 0.2803 - pearson_correlation: -0.3125 - euclidean_distance: 0.4673
Epoch 87/300
76/76 [==============================] - 0s 832us/step - loss: 0.2772 - accuracy: 0.1469 - mae: 0.2772 - pearson_correlation: -0.3118 - euclidean_distance: 0.4632
Epoch 88/300
76/76 [==============================] - 0s 835us/step - loss: 0.2753 - accuracy: 0.1482 - mae: 0.2753 - pearson_correlation: -0.3070 - euclidean_distance: 0.4605
Epoch 89/300
76/76 [==============================] - 0s 840us/step - loss: 0.2730 - accuracy: 0.1601 - mae: 0.2730 - pearson_correlation: -0.2988 - euclidean_distance: 0.4555
Epoch 90/300
76/76 [==============================] - 0s 839us/step - loss: 0.2707 - accuracy: 0.1584 - mae: 0.2707 - pearson_correlation: -0.2894 - euclidean_distance: 0.4522
Epoch 91/300
76/76 [==============================] - 0s 831us/step - loss: 0.2691 - accuracy: 0.1676 - mae: 0.2691 - pearson_correlation: -0.2938 - euclidean_distance: 0.4485
Epoch 92/300
76/76 [==============================] - 0s 829us/step - loss: 0.2661 - accuracy: 0.1769 - mae: 0.2661 - pearson_correlation: -0.2807 - euclidean_distance: 0.4448
Epoch 93/300
76/76 [==============================] - 0s 851us/step - loss: 0.2630 - accuracy: 0.1813 - mae: 0.2630 - pearson_correlation: -0.2669 - euclidean_distance: 0.4379
Epoch 94/300
76/76 [==============================] - 0s 839us/step - loss: 0.2620 - accuracy: 0.1892 - mae: 0.2620 - pearson_correlation: -0.2642 - euclidean_distance: 0.4364
Epoch 95/300
76/76 [==============================] - 0s 832us/step - loss: 0.2596 - accuracy: 0.1954 - mae: 0.2596 - pearson_correlation: -0.2510 - euclidean_distance: 0.4314
Epoch 96/300
76/76 [==============================] - 0s 834us/step - loss: 0.2580 - accuracy: 0.2078 - mae: 0.2580 - pearson_correlation: -0.2485 - euclidean_distance: 0.4290
Epoch 97/300
76/76 [==============================] - 0s 834us/step - loss: 0.2554 - accuracy: 0.2197 - mae: 0.2554 - pearson_correlation: -0.2452 - euclidean_distance: 0.4255
Epoch 98/300
76/76 [==============================] - 0s 837us/step - loss: 0.2539 - accuracy: 0.2303 - mae: 0.2539 - pearson_correlation: -0.2282 - euclidean_distance: 0.4215
Epoch 99/300
76/76 [==============================] - 0s 827us/step - loss: 0.2515 - accuracy: 0.2369 - mae: 0.2515 - pearson_correlation: -0.2233 - euclidean_distance: 0.4186
Epoch 100/300
76/76 [==============================] - 0s 834us/step - loss: 0.2491 - accuracy: 0.2426 - mae: 0.2491 - pearson_correlation: -0.2191 - euclidean_distance: 0.4135
Epoch 101/300
76/76 [==============================] - 0s 833us/step - loss: 0.2449 - accuracy: 0.2488 - mae: 0.2449 - pearson_correlation: -0.1998 - euclidean_distance: 0.4073
Epoch 102/300
76/76 [==============================] - 0s 830us/step - loss: 0.2436 - accuracy: 0.2611 - mae: 0.2436 - pearson_correlation: -0.2031 - euclidean_distance: 0.4054
Epoch 103/300
76/76 [==============================] - 0s 835us/step - loss: 0.2417 - accuracy: 0.2766 - mae: 0.2417 - pearson_correlation: -0.1899 - euclidean_distance: 0.3997
Epoch 104/300
76/76 [==============================] - 0s 835us/step - loss: 0.2406 - accuracy: 0.2942 - mae: 0.2406 - pearson_correlation: -0.1797 - euclidean_distance: 0.4000
Epoch 105/300
76/76 [==============================] - 0s 839us/step - loss: 0.2399 - accuracy: 0.3017 - mae: 0.2399 - pearson_correlation: -0.1717 - euclidean_distance: 0.3974
Epoch 106/300
76/76 [==============================] - 0s 833us/step - loss: 0.2361 - accuracy: 0.3220 - mae: 0.2361 - pearson_correlation: -0.1610 - euclidean_distance: 0.3903
Epoch 107/300
76/76 [==============================] - 0s 829us/step - loss: 0.2355 - accuracy: 0.3251 - mae: 0.2355 - pearson_correlation: -0.1547 - euclidean_distance: 0.3888
Epoch 108/300
76/76 [==============================] - 0s 839us/step - loss: 0.2312 - accuracy: 0.3454 - mae: 0.2312 - pearson_correlation: -0.1440 - euclidean_distance: 0.3837
Epoch 109/300
76/76 [==============================] - 0s 834us/step - loss: 0.2320 - accuracy: 0.3608 - mae: 0.2320 - pearson_correlation: -0.1398 - euclidean_distance: 0.3838
Epoch 110/300
76/76 [==============================] - 0s 828us/step - loss: 0.2281 - accuracy: 0.3807 - mae: 0.2281 - pearson_correlation: -0.1158 - euclidean_distance: 0.3774
Epoch 111/300
76/76 [==============================] - 0s 835us/step - loss: 0.2256 - accuracy: 0.3996 - mae: 0.2256 - pearson_correlation: -0.1123 - euclidean_distance: 0.3714
Epoch 112/300
76/76 [==============================] - 0s 834us/step - loss: 0.2240 - accuracy: 0.4151 - mae: 0.2240 - pearson_correlation: -0.0910 - euclidean_distance: 0.3698
Epoch 113/300
76/76 [==============================] - 0s 835us/step - loss: 0.2232 - accuracy: 0.4288 - mae: 0.2232 - pearson_correlation: -0.0934 - euclidean_distance: 0.3684
Epoch 114/300
76/76 [==============================] - 0s 831us/step - loss: 0.2194 - accuracy: 0.4376 - mae: 0.2194 - pearson_correlation: -0.0757 - euclidean_distance: 0.3621
Epoch 115/300
76/76 [==============================] - 0s 836us/step - loss: 0.2199 - accuracy: 0.4707 - mae: 0.2199 - pearson_correlation: -0.0668 - euclidean_distance: 0.3626
Epoch 116/300
76/76 [==============================] - 0s 838us/step - loss: 0.2167 - accuracy: 0.4830 - mae: 0.2167 - pearson_correlation: -0.0550 - euclidean_distance: 0.3577
Epoch 117/300
76/76 [==============================] - 0s 839us/step - loss: 0.2155 - accuracy: 0.4945 - mae: 0.2155 - pearson_correlation: -0.0481 - euclidean_distance: 0.3551
Epoch 118/300
76/76 [==============================] - 0s 830us/step - loss: 0.2125 - accuracy: 0.5073 - mae: 0.2125 - pearson_correlation: -0.0387 - euclidean_distance: 0.3502
Epoch 119/300
76/76 [==============================] - 0s 833us/step - loss: 0.2113 - accuracy: 0.5276 - mae: 0.2113 - pearson_correlation: -0.0183 - euclidean_distance: 0.3485
Epoch 120/300
76/76 [==============================] - 0s 837us/step - loss: 0.2094 - accuracy: 0.5536 - mae: 0.2094 - pearson_correlation: -0.0137 - euclidean_distance: 0.3457
Epoch 121/300
76/76 [==============================] - 0s 843us/step - loss: 0.2060 - accuracy: 0.5598 - mae: 0.2060 - pearson_correlation: -5.8048e-04 - euclidean_distance: 0.3402
Epoch 122/300
76/76 [==============================] - 0s 840us/step - loss: 0.2054 - accuracy: 0.5783 - mae: 0.2054 - pearson_correlation: 0.0121 - euclidean_distance: 0.3381
Epoch 123/300
76/76 [==============================] - 0s 835us/step - loss: 0.2038 - accuracy: 0.5845 - mae: 0.2038 - pearson_correlation: 0.0192 - euclidean_distance: 0.3360
Epoch 124/300
76/76 [==============================] - 0s 828us/step - loss: 0.2027 - accuracy: 0.6048 - mae: 0.2027 - pearson_correlation: 0.0285 - euclidean_distance: 0.3342
Epoch 125/300
76/76 [==============================] - 0s 832us/step - loss: 0.2000 - accuracy: 0.6118 - mae: 0.2000 - pearson_correlation: 0.0387 - euclidean_distance: 0.3285
Epoch 126/300
76/76 [==============================] - 0s 835us/step - loss: 0.1987 - accuracy: 0.6206 - mae: 0.1987 - pearson_correlation: 0.0525 - euclidean_distance: 0.3273
Epoch 127/300
76/76 [==============================] - 0s 827us/step - loss: 0.1976 - accuracy: 0.6467 - mae: 0.1976 - pearson_correlation: 0.0725 - euclidean_distance: 0.3254
Epoch 128/300
76/76 [==============================] - 0s 837us/step - loss: 0.1953 - accuracy: 0.6608 - mae: 0.1953 - pearson_correlation: 0.0883 - euclidean_distance: 0.3217
Epoch 129/300
76/76 [==============================] - 0s 831us/step - loss: 0.1941 - accuracy: 0.6753 - mae: 0.1941 - pearson_correlation: 0.0972 - euclidean_distance: 0.3206
Epoch 130/300
76/76 [==============================] - 0s 834us/step - loss: 0.1920 - accuracy: 0.6749 - mae: 0.1920 - pearson_correlation: 0.1033 - euclidean_distance: 0.3163
Epoch 131/300
76/76 [==============================] - 0s 834us/step - loss: 0.1904 - accuracy: 0.6877 - mae: 0.1904 - pearson_correlation: 0.1171 - euclidean_distance: 0.3125
Epoch 132/300
76/76 [==============================] - 0s 826us/step - loss: 0.1881 - accuracy: 0.7053 - mae: 0.1881 - pearson_correlation: 0.1297 - euclidean_distance: 0.3101
Epoch 133/300
76/76 [==============================] - 0s 831us/step - loss: 0.1861 - accuracy: 0.7172 - mae: 0.1861 - pearson_correlation: 0.1491 - euclidean_distance: 0.3048
Epoch 134/300
76/76 [==============================] - 0s 835us/step - loss: 0.1844 - accuracy: 0.7203 - mae: 0.1844 - pearson_correlation: 0.1612 - euclidean_distance: 0.3031
Epoch 135/300
76/76 [==============================] - 0s 831us/step - loss: 0.1838 - accuracy: 0.7296 - mae: 0.1838 - pearson_correlation: 0.1640 - euclidean_distance: 0.3021
Epoch 136/300
76/76 [==============================] - 0s 828us/step - loss: 0.1837 - accuracy: 0.7353 - mae: 0.1837 - pearson_correlation: 0.1745 - euclidean_distance: 0.3019
Epoch 137/300
76/76 [==============================] - 0s 829us/step - loss: 0.1804 - accuracy: 0.7547 - mae: 0.1804 - pearson_correlation: 0.1846 - euclidean_distance: 0.2972
Epoch 138/300
76/76 [==============================] - 0s 827us/step - loss: 0.1805 - accuracy: 0.7565 - mae: 0.1805 - pearson_correlation: 0.1995 - euclidean_distance: 0.2968
Epoch 139/300
76/76 [==============================] - 0s 819us/step - loss: 0.1772 - accuracy: 0.7578 - mae: 0.1772 - pearson_correlation: 0.2155 - euclidean_distance: 0.2899
Epoch 140/300
76/76 [==============================] - 0s 829us/step - loss: 0.1755 - accuracy: 0.7843 - mae: 0.1755 - pearson_correlation: 0.2294 - euclidean_distance: 0.2889
Epoch 141/300
76/76 [==============================] - 0s 829us/step - loss: 0.1754 - accuracy: 0.7777 - mae: 0.1754 - pearson_correlation: 0.2305 - euclidean_distance: 0.2884
Epoch 142/300
76/76 [==============================] - 0s 826us/step - loss: 0.1730 - accuracy: 0.8037 - mae: 0.1730 - pearson_correlation: 0.2426 - euclidean_distance: 0.2851
Epoch 143/300
76/76 [==============================] - 0s 836us/step - loss: 0.1719 - accuracy: 0.8002 - mae: 0.1719 - pearson_correlation: 0.2555 - euclidean_distance: 0.2824
Epoch 144/300
76/76 [==============================] - 0s 828us/step - loss: 0.1709 - accuracy: 0.8209 - mae: 0.1709 - pearson_correlation: 0.2673 - euclidean_distance: 0.2801
Epoch 145/300
76/76 [==============================] - 0s 829us/step - loss: 0.1703 - accuracy: 0.8227 - mae: 0.1703 - pearson_correlation: 0.2675 - euclidean_distance: 0.2798
Epoch 146/300
76/76 [==============================] - 0s 828us/step - loss: 0.1658 - accuracy: 0.8293 - mae: 0.1658 - pearson_correlation: 0.3001 - euclidean_distance: 0.2729
Epoch 147/300
76/76 [==============================] - 0s 831us/step - loss: 0.1655 - accuracy: 0.8390 - mae: 0.1655 - pearson_correlation: 0.3038 - euclidean_distance: 0.2722
Epoch 148/300
76/76 [==============================] - 0s 829us/step - loss: 0.1650 - accuracy: 0.8509 - mae: 0.1650 - pearson_correlation: 0.3085 - euclidean_distance: 0.2711
Epoch 149/300
76/76 [==============================] - 0s 836us/step - loss: 0.1633 - accuracy: 0.8575 - mae: 0.1633 - pearson_correlation: 0.3248 - euclidean_distance: 0.2676
Epoch 150/300
76/76 [==============================] - 0s 825us/step - loss: 0.1616 - accuracy: 0.8584 - mae: 0.1616 - pearson_correlation: 0.3314 - euclidean_distance: 0.2657
Epoch 151/300
76/76 [==============================] - 0s 827us/step - loss: 0.1624 - accuracy: 0.8685 - mae: 0.1624 - pearson_correlation: 0.3333 - euclidean_distance: 0.2670
Epoch 152/300
76/76 [==============================] - 0s 826us/step - loss: 0.1603 - accuracy: 0.8778 - mae: 0.1603 - pearson_correlation: 0.3517 - euclidean_distance: 0.2631
Epoch 153/300
76/76 [==============================] - 0s 832us/step - loss: 0.1583 - accuracy: 0.8809 - mae: 0.1583 - pearson_correlation: 0.3606 - euclidean_distance: 0.2591
Epoch 154/300
76/76 [==============================] - 0s 827us/step - loss: 0.1590 - accuracy: 0.8928 - mae: 0.1590 - pearson_correlation: 0.3703 - euclidean_distance: 0.2605
Epoch 155/300
76/76 [==============================] - 0s 832us/step - loss: 0.1565 - accuracy: 0.8955 - mae: 0.1565 - pearson_correlation: 0.3759 - euclidean_distance: 0.2565
Epoch 156/300
76/76 [==============================] - 0s 834us/step - loss: 0.1547 - accuracy: 0.8963 - mae: 0.1547 - pearson_correlation: 0.3845 - euclidean_distance: 0.2549
Epoch 157/300
76/76 [==============================] - 0s 831us/step - loss: 0.1530 - accuracy: 0.9038 - mae: 0.1530 - pearson_correlation: 0.3998 - euclidean_distance: 0.2518
Epoch 158/300
76/76 [==============================] - 0s 833us/step - loss: 0.1521 - accuracy: 0.9025 - mae: 0.1521 - pearson_correlation: 0.4062 - euclidean_distance: 0.2494
Epoch 159/300
76/76 [==============================] - 0s 830us/step - loss: 0.1514 - accuracy: 0.9096 - mae: 0.1514 - pearson_correlation: 0.4079 - euclidean_distance: 0.2491
Epoch 160/300
76/76 [==============================] - 0s 828us/step - loss: 0.1500 - accuracy: 0.9175 - mae: 0.1500 - pearson_correlation: 0.4169 - euclidean_distance: 0.2468
Epoch 161/300
76/76 [==============================] - 0s 835us/step - loss: 0.1504 - accuracy: 0.9206 - mae: 0.1504 - pearson_correlation: 0.4132 - euclidean_distance: 0.2480
Epoch 162/300
76/76 [==============================] - 0s 840us/step - loss: 0.1481 - accuracy: 0.9193 - mae: 0.1481 - pearson_correlation: 0.4358 - euclidean_distance: 0.2424
Epoch 163/300
76/76 [==============================] - 0s 823us/step - loss: 0.1459 - accuracy: 0.9263 - mae: 0.1459 - pearson_correlation: 0.4412 - euclidean_distance: 0.2399
Epoch 164/300
76/76 [==============================] - 0s 830us/step - loss: 0.1466 - accuracy: 0.9316 - mae: 0.1466 - pearson_correlation: 0.4383 - euclidean_distance: 0.2406
Epoch 165/300
76/76 [==============================] - 0s 830us/step - loss: 0.1440 - accuracy: 0.9307 - mae: 0.1440 - pearson_correlation: 0.4558 - euclidean_distance: 0.2375
Epoch 166/300
76/76 [==============================] - 0s 827us/step - loss: 0.1442 - accuracy: 0.9365 - mae: 0.1442 - pearson_correlation: 0.4553 - euclidean_distance: 0.2377
Epoch 167/300
76/76 [==============================] - 0s 835us/step - loss: 0.1447 - accuracy: 0.9347 - mae: 0.1447 - pearson_correlation: 0.4619 - euclidean_distance: 0.2375
Epoch 168/300
76/76 [==============================] - 0s 831us/step - loss: 0.1416 - accuracy: 0.9360 - mae: 0.1416 - pearson_correlation: 0.4795 - euclidean_distance: 0.2318
Epoch 169/300
76/76 [==============================] - 0s 827us/step - loss: 0.1423 - accuracy: 0.9396 - mae: 0.1423 - pearson_correlation: 0.4728 - euclidean_distance: 0.2336
Epoch 170/300
76/76 [==============================] - 0s 832us/step - loss: 0.1392 - accuracy: 0.9387 - mae: 0.1392 - pearson_correlation: 0.4869 - euclidean_distance: 0.2286
Epoch 171/300
76/76 [==============================] - 0s 826us/step - loss: 0.1399 - accuracy: 0.9422 - mae: 0.1399 - pearson_correlation: 0.4854 - euclidean_distance: 0.2301
Epoch 172/300
76/76 [==============================] - 0s 832us/step - loss: 0.1379 - accuracy: 0.9449 - mae: 0.1379 - pearson_correlation: 0.4960 - euclidean_distance: 0.2270
Epoch 173/300
76/76 [==============================] - 0s 830us/step - loss: 0.1361 - accuracy: 0.9427 - mae: 0.1361 - pearson_correlation: 0.5091 - euclidean_distance: 0.2244
Epoch 174/300
76/76 [==============================] - 0s 843us/step - loss: 0.1378 - accuracy: 0.9466 - mae: 0.1378 - pearson_correlation: 0.5039 - euclidean_distance: 0.2264
Epoch 175/300
76/76 [==============================] - 0s 836us/step - loss: 0.1363 - accuracy: 0.9471 - mae: 0.1363 - pearson_correlation: 0.5131 - euclidean_distance: 0.2237
Epoch 176/300
76/76 [==============================] - 0s 834us/step - loss: 0.1337 - accuracy: 0.9457 - mae: 0.1337 - pearson_correlation: 0.5246 - euclidean_distance: 0.2197
Epoch 177/300
76/76 [==============================] - 0s 823us/step - loss: 0.1338 - accuracy: 0.9479 - mae: 0.1338 - pearson_correlation: 0.5250 - euclidean_distance: 0.2200
Epoch 178/300
76/76 [==============================] - 0s 835us/step - loss: 0.1349 - accuracy: 0.9475 - mae: 0.1349 - pearson_correlation: 0.5138 - euclidean_distance: 0.2213
Epoch 179/300
76/76 [==============================] - 0s 833us/step - loss: 0.1318 - accuracy: 0.9502 - mae: 0.1318 - pearson_correlation: 0.5285 - euclidean_distance: 0.2167
Epoch 180/300
76/76 [==============================] - 0s 829us/step - loss: 0.1326 - accuracy: 0.9506 - mae: 0.1326 - pearson_correlation: 0.5340 - euclidean_distance: 0.2180
Epoch 181/300
76/76 [==============================] - 0s 835us/step - loss: 0.1304 - accuracy: 0.9502 - mae: 0.1304 - pearson_correlation: 0.5422 - euclidean_distance: 0.2148
Epoch 182/300
76/76 [==============================] - 0s 839us/step - loss: 0.1307 - accuracy: 0.9502 - mae: 0.1307 - pearson_correlation: 0.5471 - euclidean_distance: 0.2145
Epoch 183/300
76/76 [==============================] - 0s 830us/step - loss: 0.1296 - accuracy: 0.9502 - mae: 0.1296 - pearson_correlation: 0.5521 - euclidean_distance: 0.2131
Epoch 184/300
76/76 [==============================] - 0s 831us/step - loss: 0.1301 - accuracy: 0.9484 - mae: 0.1301 - pearson_correlation: 0.5468 - euclidean_distance: 0.2128
Epoch 185/300
76/76 [==============================] - 0s 833us/step - loss: 0.1301 - accuracy: 0.9515 - mae: 0.1301 - pearson_correlation: 0.5523 - euclidean_distance: 0.2128
Epoch 186/300
76/76 [==============================] - 0s 834us/step - loss: 0.1263 - accuracy: 0.9506 - mae: 0.1263 - pearson_correlation: 0.5699 - euclidean_distance: 0.2077
Epoch 187/300
76/76 [==============================] - 0s 829us/step - loss: 0.1270 - accuracy: 0.9510 - mae: 0.1270 - pearson_correlation: 0.5676 - euclidean_distance: 0.2084
Epoch 188/300
76/76 [==============================] - 0s 825us/step - loss: 0.1255 - accuracy: 0.9510 - mae: 0.1255 - pearson_correlation: 0.5729 - euclidean_distance: 0.2063
Epoch 189/300
76/76 [==============================] - 0s 833us/step - loss: 0.1253 - accuracy: 0.9532 - mae: 0.1253 - pearson_correlation: 0.5725 - euclidean_distance: 0.2058
Epoch 190/300
76/76 [==============================] - 0s 833us/step - loss: 0.1236 - accuracy: 0.9532 - mae: 0.1236 - pearson_correlation: 0.5830 - euclidean_distance: 0.2030
Epoch 191/300
76/76 [==============================] - 0s 829us/step - loss: 0.1257 - accuracy: 0.9510 - mae: 0.1257 - pearson_correlation: 0.5693 - euclidean_distance: 0.2060
Epoch 192/300
76/76 [==============================] - 0s 825us/step - loss: 0.1229 - accuracy: 0.9537 - mae: 0.1229 - pearson_correlation: 0.5820 - euclidean_distance: 0.2024
Epoch 193/300
76/76 [==============================] - 0s 832us/step - loss: 0.1255 - accuracy: 0.9510 - mae: 0.1255 - pearson_correlation: 0.5809 - euclidean_distance: 0.2053
Epoch 194/300
76/76 [==============================] - 0s 831us/step - loss: 0.1238 - accuracy: 0.9541 - mae: 0.1238 - pearson_correlation: 0.5859 - euclidean_distance: 0.2025
Epoch 195/300
76/76 [==============================] - 0s 832us/step - loss: 0.1223 - accuracy: 0.9524 - mae: 0.1223 - pearson_correlation: 0.5916 - euclidean_distance: 0.2001
Epoch 196/300
76/76 [==============================] - 0s 824us/step - loss: 0.1219 - accuracy: 0.9515 - mae: 0.1219 - pearson_correlation: 0.5949 - euclidean_distance: 0.2004
Epoch 197/300
76/76 [==============================] - 0s 823us/step - loss: 0.1208 - accuracy: 0.9554 - mae: 0.1208 - pearson_correlation: 0.6018 - euclidean_distance: 0.1982
Epoch 198/300
76/76 [==============================] - 0s 831us/step - loss: 0.1204 - accuracy: 0.9532 - mae: 0.1204 - pearson_correlation: 0.6017 - euclidean_distance: 0.1968
Epoch 199/300
76/76 [==============================] - 0s 830us/step - loss: 0.1184 - accuracy: 0.9528 - mae: 0.1184 - pearson_correlation: 0.6069 - euclidean_distance: 0.1941
Epoch 200/300
76/76 [==============================] - 0s 831us/step - loss: 0.1188 - accuracy: 0.9532 - mae: 0.1188 - pearson_correlation: 0.6108 - euclidean_distance: 0.1951
Epoch 201/300
76/76 [==============================] - 0s 824us/step - loss: 0.1174 - accuracy: 0.9541 - mae: 0.1174 - pearson_correlation: 0.6189 - euclidean_distance: 0.1927
Epoch 202/300
76/76 [==============================] - 0s 833us/step - loss: 0.1160 - accuracy: 0.9537 - mae: 0.1160 - pearson_correlation: 0.6196 - euclidean_distance: 0.1900
Epoch 203/300
76/76 [==============================] - 0s 837us/step - loss: 0.1167 - accuracy: 0.9550 - mae: 0.1167 - pearson_correlation: 0.6253 - euclidean_distance: 0.1907
Epoch 204/300
76/76 [==============================] - 0s 829us/step - loss: 0.1174 - accuracy: 0.9537 - mae: 0.1174 - pearson_correlation: 0.6202 - euclidean_distance: 0.1918
Epoch 205/300
76/76 [==============================] - 0s 829us/step - loss: 0.1165 - accuracy: 0.9537 - mae: 0.1165 - pearson_correlation: 0.6199 - euclidean_distance: 0.1905
Epoch 206/300
76/76 [==============================] - 0s 829us/step - loss: 0.1164 - accuracy: 0.9532 - mae: 0.1164 - pearson_correlation: 0.6306 - euclidean_distance: 0.1902
Epoch 207/300
76/76 [==============================] - 0s 832us/step - loss: 0.1155 - accuracy: 0.9550 - mae: 0.1155 - pearson_correlation: 0.6254 - euclidean_distance: 0.1890
Epoch 208/300
76/76 [==============================] - 0s 825us/step - loss: 0.1153 - accuracy: 0.9546 - mae: 0.1153 - pearson_correlation: 0.6359 - euclidean_distance: 0.1883
Epoch 209/300
76/76 [==============================] - 0s 838us/step - loss: 0.1141 - accuracy: 0.9550 - mae: 0.1141 - pearson_correlation: 0.6350 - euclidean_distance: 0.1862
Epoch 210/300
76/76 [==============================] - 0s 830us/step - loss: 0.1163 - accuracy: 0.9559 - mae: 0.1163 - pearson_correlation: 0.6303 - euclidean_distance: 0.1896
Epoch 211/300
76/76 [==============================] - 0s 830us/step - loss: 0.1160 - accuracy: 0.9550 - mae: 0.1160 - pearson_correlation: 0.6284 - euclidean_distance: 0.1889
Epoch 212/300
76/76 [==============================] - 0s 828us/step - loss: 0.1122 - accuracy: 0.9546 - mae: 0.1122 - pearson_correlation: 0.6435 - euclidean_distance: 0.1835
Epoch 213/300
76/76 [==============================] - 0s 830us/step - loss: 0.1135 - accuracy: 0.9546 - mae: 0.1135 - pearson_correlation: 0.6411 - euclidean_distance: 0.1847
Epoch 214/300
76/76 [==============================] - 0s 826us/step - loss: 0.1114 - accuracy: 0.9550 - mae: 0.1114 - pearson_correlation: 0.6489 - euclidean_distance: 0.1822
Epoch 215/300
76/76 [==============================] - 0s 831us/step - loss: 0.1129 - accuracy: 0.9541 - mae: 0.1129 - pearson_correlation: 0.6416 - euclidean_distance: 0.1841
Epoch 216/300
76/76 [==============================] - 0s 893us/step - loss: 0.1125 - accuracy: 0.9550 - mae: 0.1125 - pearson_correlation: 0.6453 - euclidean_distance: 0.1833
Epoch 217/300
76/76 [==============================] - 0s 928us/step - loss: 0.1113 - accuracy: 0.9559 - mae: 0.1113 - pearson_correlation: 0.6547 - euclidean_distance: 0.1815
Epoch 218/300
76/76 [==============================] - 0s 926us/step - loss: 0.1114 - accuracy: 0.9550 - mae: 0.1114 - pearson_correlation: 0.6539 - euclidean_distance: 0.1818
Epoch 219/300
76/76 [==============================] - 0s 926us/step - loss: 0.1112 - accuracy: 0.9550 - mae: 0.1112 - pearson_correlation: 0.6571 - euclidean_distance: 0.1810
Epoch 220/300
76/76 [==============================] - 0s 1ms/step - loss: 0.1097 - accuracy: 0.9554 - mae: 0.1097 - pearson_correlation: 0.6578 - euclidean_distance: 0.1791
Epoch 221/300
76/76 [==============================] - 0s 926us/step - loss: 0.1080 - accuracy: 0.9550 - mae: 0.1080 - pearson_correlation: 0.6606 - euclidean_distance: 0.1770
Epoch 222/300
76/76 [==============================] - 0s 971us/step - loss: 0.1131 - accuracy: 0.9550 - mae: 0.1131 - pearson_correlation: 0.6441 - euclidean_distance: 0.1840
Epoch 223/300
76/76 [==============================] - 0s 964us/step - loss: 0.1088 - accuracy: 0.9550 - mae: 0.1088 - pearson_correlation: 0.6662 - euclidean_distance: 0.1770
Epoch 224/300
76/76 [==============================] - 0s 841us/step - loss: 0.1068 - accuracy: 0.9554 - mae: 0.1068 - pearson_correlation: 0.6692 - euclidean_distance: 0.1739
Epoch 225/300
76/76 [==============================] - 0s 829us/step - loss: 0.1078 - accuracy: 0.9554 - mae: 0.1078 - pearson_correlation: 0.6683 - euclidean_distance: 0.1754
Epoch 226/300
76/76 [==============================] - 0s 836us/step - loss: 0.1058 - accuracy: 0.9554 - mae: 0.1058 - pearson_correlation: 0.6726 - euclidean_distance: 0.1724
Epoch 227/300
76/76 [==============================] - 0s 834us/step - loss: 0.1073 - accuracy: 0.9554 - mae: 0.1073 - pearson_correlation: 0.6650 - euclidean_distance: 0.1750
Epoch 228/300
76/76 [==============================] - 0s 833us/step - loss: 0.1075 - accuracy: 0.9554 - mae: 0.1075 - pearson_correlation: 0.6679 - euclidean_distance: 0.1748
Epoch 229/300
76/76 [==============================] - 0s 839us/step - loss: 0.1089 - accuracy: 0.9554 - mae: 0.1089 - pearson_correlation: 0.6627 - euclidean_distance: 0.1772
Epoch 230/300
76/76 [==============================] - 0s 835us/step - loss: 0.1056 - accuracy: 0.9550 - mae: 0.1056 - pearson_correlation: 0.6706 - euclidean_distance: 0.1725
Epoch 231/300
76/76 [==============================] - 0s 838us/step - loss: 0.1059 - accuracy: 0.9554 - mae: 0.1059 - pearson_correlation: 0.6740 - euclidean_distance: 0.1720
Epoch 232/300
76/76 [==============================] - 0s 826us/step - loss: 0.1051 - accuracy: 0.9554 - mae: 0.1051 - pearson_correlation: 0.6778 - euclidean_distance: 0.1710
Epoch 233/300
76/76 [==============================] - 0s 835us/step - loss: 0.1070 - accuracy: 0.9554 - mae: 0.1070 - pearson_correlation: 0.6761 - euclidean_distance: 0.1740
Epoch 234/300
76/76 [==============================] - 0s 829us/step - loss: 0.1044 - accuracy: 0.9554 - mae: 0.1044 - pearson_correlation: 0.6852 - euclidean_distance: 0.1697
Epoch 235/300
76/76 [==============================] - 0s 827us/step - loss: 0.1046 - accuracy: 0.9554 - mae: 0.1046 - pearson_correlation: 0.6814 - euclidean_distance: 0.1697
Epoch 236/300
76/76 [==============================] - 0s 827us/step - loss: 0.1043 - accuracy: 0.9554 - mae: 0.1043 - pearson_correlation: 0.6816 - euclidean_distance: 0.1695
Epoch 237/300
76/76 [==============================] - 0s 832us/step - loss: 0.1055 - accuracy: 0.9554 - mae: 0.1055 - pearson_correlation: 0.6776 - euclidean_distance: 0.1713
Epoch 238/300
76/76 [==============================] - 0s 830us/step - loss: 0.1053 - accuracy: 0.9554 - mae: 0.1053 - pearson_correlation: 0.6813 - euclidean_distance: 0.1708
Epoch 239/300
76/76 [==============================] - 0s 838us/step - loss: 0.1017 - accuracy: 0.9554 - mae: 0.1017 - pearson_correlation: 0.6916 - euclidean_distance: 0.1657
Epoch 240/300
76/76 [==============================] - 0s 829us/step - loss: 0.1054 - accuracy: 0.9550 - mae: 0.1054 - pearson_correlation: 0.6859 - euclidean_distance: 0.1705
Epoch 241/300
76/76 [==============================] - 0s 835us/step - loss: 0.1047 - accuracy: 0.9554 - mae: 0.1047 - pearson_correlation: 0.6825 - euclidean_distance: 0.1696
Epoch 242/300
76/76 [==============================] - 0s 830us/step - loss: 0.1052 - accuracy: 0.9554 - mae: 0.1052 - pearson_correlation: 0.6816 - euclidean_distance: 0.1702
Epoch 243/300
76/76 [==============================] - 0s 841us/step - loss: 0.1011 - accuracy: 0.9554 - mae: 0.1011 - pearson_correlation: 0.6982 - euclidean_distance: 0.1644
Epoch 244/300
76/76 [==============================] - 0s 835us/step - loss: 0.1015 - accuracy: 0.9554 - mae: 0.1015 - pearson_correlation: 0.6941 - euclidean_distance: 0.1648
Epoch 245/300
76/76 [==============================] - 0s 831us/step - loss: 0.1031 - accuracy: 0.9554 - mae: 0.1031 - pearson_correlation: 0.6891 - euclidean_distance: 0.1676
Epoch 246/300
76/76 [==============================] - 0s 831us/step - loss: 0.1048 - accuracy: 0.9554 - mae: 0.1048 - pearson_correlation: 0.6841 - euclidean_distance: 0.1694
Epoch 247/300
76/76 [==============================] - 0s 860us/step - loss: 0.1025 - accuracy: 0.9554 - mae: 0.1025 - pearson_correlation: 0.6942 - euclidean_distance: 0.1666
Epoch 248/300
76/76 [==============================] - 0s 835us/step - loss: 0.1022 - accuracy: 0.9550 - mae: 0.1022 - pearson_correlation: 0.6956 - euclidean_distance: 0.1656
Epoch 249/300
76/76 [==============================] - 0s 829us/step - loss: 0.1034 - accuracy: 0.9554 - mae: 0.1034 - pearson_correlation: 0.6918 - euclidean_distance: 0.1673
Epoch 250/300
76/76 [==============================] - 0s 834us/step - loss: 0.0998 - accuracy: 0.9554 - mae: 0.0998 - pearson_correlation: 0.7033 - euclidean_distance: 0.1621
Epoch 251/300
76/76 [==============================] - 0s 837us/step - loss: 0.1008 - accuracy: 0.9554 - mae: 0.1008 - pearson_correlation: 0.7046 - euclidean_distance: 0.1637
Epoch 252/300
76/76 [==============================] - 0s 836us/step - loss: 0.1023 - accuracy: 0.9554 - mae: 0.1023 - pearson_correlation: 0.6948 - euclidean_distance: 0.1653
Epoch 253/300
76/76 [==============================] - 0s 834us/step - loss: 0.1004 - accuracy: 0.9554 - mae: 0.1004 - pearson_correlation: 0.7086 - euclidean_distance: 0.1623
Epoch 254/300
76/76 [==============================] - 0s 837us/step - loss: 0.1009 - accuracy: 0.9554 - mae: 0.1009 - pearson_correlation: 0.7057 - euclidean_distance: 0.1631
Epoch 255/300
76/76 [==============================] - 0s 832us/step - loss: 0.1020 - accuracy: 0.9554 - mae: 0.1020 - pearson_correlation: 0.7005 - euclidean_distance: 0.1645
Epoch 256/300
76/76 [==============================] - 0s 830us/step - loss: 0.1005 - accuracy: 0.9554 - mae: 0.1005 - pearson_correlation: 0.7003 - euclidean_distance: 0.1630
Epoch 257/300
76/76 [==============================] - 0s 833us/step - loss: 0.1010 - accuracy: 0.9554 - mae: 0.1010 - pearson_correlation: 0.7050 - euclidean_distance: 0.1631
Epoch 258/300
76/76 [==============================] - 0s 832us/step - loss: 0.0994 - accuracy: 0.9554 - mae: 0.0994 - pearson_correlation: 0.7072 - euclidean_distance: 0.1612
Epoch 259/300
76/76 [==============================] - 0s 833us/step - loss: 0.0976 - accuracy: 0.9554 - mae: 0.0976 - pearson_correlation: 0.7091 - euclidean_distance: 0.1585
Epoch 260/300
76/76 [==============================] - 0s 832us/step - loss: 0.0991 - accuracy: 0.9554 - mae: 0.0991 - pearson_correlation: 0.7087 - euclidean_distance: 0.1608
Epoch 261/300
76/76 [==============================] - 0s 831us/step - loss: 0.0981 - accuracy: 0.9554 - mae: 0.0981 - pearson_correlation: 0.7101 - euclidean_distance: 0.1592
Epoch 262/300
76/76 [==============================] - 0s 830us/step - loss: 0.0992 - accuracy: 0.9550 - mae: 0.0992 - pearson_correlation: 0.7087 - euclidean_distance: 0.1607
Epoch 263/300
76/76 [==============================] - 0s 837us/step - loss: 0.0993 - accuracy: 0.9554 - mae: 0.0993 - pearson_correlation: 0.7136 - euclidean_distance: 0.1606
Epoch 264/300
76/76 [==============================] - 0s 841us/step - loss: 0.0976 - accuracy: 0.9554 - mae: 0.0976 - pearson_correlation: 0.7082 - euclidean_distance: 0.1585
Epoch 265/300
76/76 [==============================] - 0s 827us/step - loss: 0.1009 - accuracy: 0.9554 - mae: 0.1009 - pearson_correlation: 0.7075 - euclidean_distance: 0.1626
Epoch 266/300
76/76 [==============================] - 0s 833us/step - loss: 0.0975 - accuracy: 0.9554 - mae: 0.0975 - pearson_correlation: 0.7152 - euclidean_distance: 0.1580
Epoch 267/300
76/76 [==============================] - 0s 835us/step - loss: 0.0998 - accuracy: 0.9554 - mae: 0.0998 - pearson_correlation: 0.7094 - euclidean_distance: 0.1613
Epoch 268/300
76/76 [==============================] - 0s 829us/step - loss: 0.0978 - accuracy: 0.9554 - mae: 0.0978 - pearson_correlation: 0.7130 - euclidean_distance: 0.1585
Epoch 269/300
76/76 [==============================] - 0s 832us/step - loss: 0.0978 - accuracy: 0.9554 - mae: 0.0978 - pearson_correlation: 0.7180 - euclidean_distance: 0.1585
Epoch 270/300
76/76 [==============================] - 0s 833us/step - loss: 0.0964 - accuracy: 0.9550 - mae: 0.0964 - pearson_correlation: 0.7236 - euclidean_distance: 0.1559
Epoch 271/300
76/76 [==============================] - 0s 831us/step - loss: 0.0996 - accuracy: 0.9554 - mae: 0.0996 - pearson_correlation: 0.7083 - euclidean_distance: 0.1607
Epoch 272/300
76/76 [==============================] - 0s 828us/step - loss: 0.0977 - accuracy: 0.9554 - mae: 0.0977 - pearson_correlation: 0.7171 - euclidean_distance: 0.1578
Epoch 273/300
76/76 [==============================] - 0s 825us/step - loss: 0.0939 - accuracy: 0.9554 - mae: 0.0939 - pearson_correlation: 0.7281 - euclidean_distance: 0.1522
Epoch 274/300
76/76 [==============================] - 0s 829us/step - loss: 0.0952 - accuracy: 0.9554 - mae: 0.0952 - pearson_correlation: 0.7248 - euclidean_distance: 0.1543
Epoch 275/300
76/76 [==============================] - 0s 888us/step - loss: 0.0988 - accuracy: 0.9554 - mae: 0.0988 - pearson_correlation: 0.7141 - euclidean_distance: 0.1596
Epoch 276/300
76/76 [==============================] - 0s 833us/step - loss: 0.0960 - accuracy: 0.9554 - mae: 0.0960 - pearson_correlation: 0.7214 - euclidean_distance: 0.1558
Epoch 277/300
76/76 [==============================] - 0s 829us/step - loss: 0.0935 - accuracy: 0.9554 - mae: 0.0935 - pearson_correlation: 0.7262 - euclidean_distance: 0.1514
Epoch 278/300
76/76 [==============================] - 0s 832us/step - loss: 0.0971 - accuracy: 0.9554 - mae: 0.0971 - pearson_correlation: 0.7173 - euclidean_distance: 0.1568
Epoch 279/300
76/76 [==============================] - 0s 832us/step - loss: 0.0935 - accuracy: 0.9554 - mae: 0.0935 - pearson_correlation: 0.7261 - euclidean_distance: 0.1514
Epoch 280/300
76/76 [==============================] - 0s 826us/step - loss: 0.0971 - accuracy: 0.9554 - mae: 0.0971 - pearson_correlation: 0.7226 - euclidean_distance: 0.1565
Epoch 281/300
76/76 [==============================] - 0s 826us/step - loss: 0.0984 - accuracy: 0.9554 - mae: 0.0984 - pearson_correlation: 0.7150 - euclidean_distance: 0.1582
Epoch 282/300
76/76 [==============================] - 0s 833us/step - loss: 0.0939 - accuracy: 0.9554 - mae: 0.0939 - pearson_correlation: 0.7300 - euclidean_distance: 0.1526
Epoch 283/300
76/76 [==============================] - 0s 834us/step - loss: 0.0985 - accuracy: 0.9554 - mae: 0.0985 - pearson_correlation: 0.7151 - euclidean_distance: 0.1588
Epoch 284/300
76/76 [==============================] - 0s 826us/step - loss: 0.0950 - accuracy: 0.9554 - mae: 0.0950 - pearson_correlation: 0.7312 - euclidean_distance: 0.1537
Epoch 285/300
76/76 [==============================] - 0s 822us/step - loss: 0.0917 - accuracy: 0.9554 - mae: 0.0917 - pearson_correlation: 0.7335 - euclidean_distance: 0.1488
Epoch 286/300
76/76 [==============================] - 0s 773us/step - loss: 0.0937 - accuracy: 0.9554 - mae: 0.0937 - pearson_correlation: 0.7302 - euclidean_distance: 0.1515
Epoch 287/300
76/76 [==============================] - 0s 769us/step - loss: 0.0960 - accuracy: 0.9554 - mae: 0.0960 - pearson_correlation: 0.7242 - euclidean_distance: 0.1549
Epoch 288/300
76/76 [==============================] - 0s 773us/step - loss: 0.0948 - accuracy: 0.9554 - mae: 0.0948 - pearson_correlation: 0.7306 - euclidean_distance: 0.1531
Epoch 289/300
76/76 [==============================] - 0s 775us/step - loss: 0.0936 - accuracy: 0.9554 - mae: 0.0936 - pearson_correlation: 0.7309 - euclidean_distance: 0.1516
Epoch 290/300
76/76 [==============================] - 0s 775us/step - loss: 0.0937 - accuracy: 0.9554 - mae: 0.0937 - pearson_correlation: 0.7331 - euclidean_distance: 0.1512
Epoch 291/300
76/76 [==============================] - 0s 769us/step - loss: 0.0929 - accuracy: 0.9554 - mae: 0.0929 - pearson_correlation: 0.7290 - euclidean_distance: 0.1506
Epoch 292/300
76/76 [==============================] - 0s 773us/step - loss: 0.0932 - accuracy: 0.9554 - mae: 0.0932 - pearson_correlation: 0.7357 - euclidean_distance: 0.1503
Epoch 293/300
76/76 [==============================] - 0s 775us/step - loss: 0.0924 - accuracy: 0.9554 - mae: 0.0924 - pearson_correlation: 0.7353 - euclidean_distance: 0.1495
Epoch 294/300
76/76 [==============================] - 0s 770us/step - loss: 0.0933 - accuracy: 0.9554 - mae: 0.0933 - pearson_correlation: 0.7280 - euclidean_distance: 0.1507
Epoch 295/300
76/76 [==============================] - 0s 774us/step - loss: 0.0933 - accuracy: 0.9554 - mae: 0.0933 - pearson_correlation: 0.7340 - euclidean_distance: 0.1510
Epoch 296/300
76/76 [==============================] - 0s 782us/step - loss: 0.0934 - accuracy: 0.9554 - mae: 0.0934 - pearson_correlation: 0.7370 - euclidean_distance: 0.1505
Epoch 297/300
76/76 [==============================] - 0s 770us/step - loss: 0.0914 - accuracy: 0.9554 - mae: 0.0914 - pearson_correlation: 0.7390 - euclidean_distance: 0.1482
Epoch 298/300
76/76 [==============================] - 0s 777us/step - loss: 0.0950 - accuracy: 0.9554 - mae: 0.0950 - pearson_correlation: 0.7270 - euclidean_distance: 0.1534
Epoch 299/300
76/76 [==============================] - 0s 777us/step - loss: 0.0939 - accuracy: 0.9554 - mae: 0.0939 - pearson_correlation: 0.7277 - euclidean_distance: 0.1514
Epoch 300/300
76/76 [==============================] - 0s 777us/step - loss: 0.0939 - accuracy: 0.9554 - mae: 0.0939 - pearson_correlation: 0.7353 - euclidean_distance: 0.1514
38/38 [==============================] - 0s 494us/step
Epoch 1/300
76/76 [==============================] - 1s 844us/step - loss: 0.3531 - accuracy: 0.6605 - mae: 0.3531 - pearson_correlation: 0.1392 - euclidean_distance: 0.5525
Epoch 2/300
76/76 [==============================] - 0s 847us/step - loss: 0.3523 - accuracy: 0.6658 - mae: 0.3523 - pearson_correlation: 0.1329 - euclidean_distance: 0.5519
Epoch 3/300
76/76 [==============================] - 0s 845us/step - loss: 0.3458 - accuracy: 0.6662 - mae: 0.3458 - pearson_correlation: 0.1495 - euclidean_distance: 0.5419
Epoch 4/300
76/76 [==============================] - 0s 838us/step - loss: 0.3425 - accuracy: 0.6799 - mae: 0.3425 - pearson_correlation: 0.1477 - euclidean_distance: 0.5373
Epoch 5/300
76/76 [==============================] - 0s 845us/step - loss: 0.3385 - accuracy: 0.6865 - mae: 0.3385 - pearson_correlation: 0.1602 - euclidean_distance: 0.5301
Epoch 6/300
76/76 [==============================] - 0s 838us/step - loss: 0.3337 - accuracy: 0.6958 - mae: 0.3337 - pearson_correlation: 0.1587 - euclidean_distance: 0.5232
Epoch 7/300
76/76 [==============================] - 0s 838us/step - loss: 0.3285 - accuracy: 0.7059 - mae: 0.3285 - pearson_correlation: 0.1702 - euclidean_distance: 0.5146
Epoch 8/300
76/76 [==============================] - 0s 843us/step - loss: 0.3248 - accuracy: 0.7086 - mae: 0.3248 - pearson_correlation: 0.1729 - euclidean_distance: 0.5092
Epoch 9/300
76/76 [==============================] - 0s 839us/step - loss: 0.3211 - accuracy: 0.7262 - mae: 0.3211 - pearson_correlation: 0.1723 - euclidean_distance: 0.5024
Epoch 10/300
76/76 [==============================] - 0s 843us/step - loss: 0.3162 - accuracy: 0.7324 - mae: 0.3162 - pearson_correlation: 0.1851 - euclidean_distance: 0.4954
Epoch 11/300
76/76 [==============================] - 0s 840us/step - loss: 0.3146 - accuracy: 0.7513 - mae: 0.3146 - pearson_correlation: 0.1900 - euclidean_distance: 0.4918
Epoch 12/300
76/76 [==============================] - 0s 836us/step - loss: 0.3092 - accuracy: 0.7496 - mae: 0.3092 - pearson_correlation: 0.1902 - euclidean_distance: 0.4840
Epoch 13/300
76/76 [==============================] - 0s 840us/step - loss: 0.3077 - accuracy: 0.7601 - mae: 0.3077 - pearson_correlation: 0.2064 - euclidean_distance: 0.4814
Epoch 14/300
76/76 [==============================] - 0s 838us/step - loss: 0.3034 - accuracy: 0.7663 - mae: 0.3034 - pearson_correlation: 0.2054 - euclidean_distance: 0.4750
Epoch 15/300
76/76 [==============================] - 0s 839us/step - loss: 0.2968 - accuracy: 0.7760 - mae: 0.2968 - pearson_correlation: 0.2133 - euclidean_distance: 0.4651
Epoch 16/300
76/76 [==============================] - 0s 837us/step - loss: 0.2957 - accuracy: 0.7870 - mae: 0.2957 - pearson_correlation: 0.2177 - euclidean_distance: 0.4637
Epoch 17/300
76/76 [==============================] - 0s 836us/step - loss: 0.2929 - accuracy: 0.7923 - mae: 0.2929 - pearson_correlation: 0.2300 - euclidean_distance: 0.4572
Epoch 18/300
76/76 [==============================] - 0s 835us/step - loss: 0.2887 - accuracy: 0.7972 - mae: 0.2887 - pearson_correlation: 0.2235 - euclidean_distance: 0.4508
Epoch 19/300
76/76 [==============================] - 0s 837us/step - loss: 0.2849 - accuracy: 0.8126 - mae: 0.2849 - pearson_correlation: 0.2379 - euclidean_distance: 0.4456
Epoch 20/300
76/76 [==============================] - 0s 842us/step - loss: 0.2807 - accuracy: 0.8100 - mae: 0.2807 - pearson_correlation: 0.2432 - euclidean_distance: 0.4387
Epoch 21/300
76/76 [==============================] - 0s 843us/step - loss: 0.2783 - accuracy: 0.8170 - mae: 0.2783 - pearson_correlation: 0.2497 - euclidean_distance: 0.4352
Epoch 22/300
76/76 [==============================] - 0s 836us/step - loss: 0.2744 - accuracy: 0.8223 - mae: 0.2744 - pearson_correlation: 0.2584 - euclidean_distance: 0.4287
Epoch 23/300
76/76 [==============================] - 0s 834us/step - loss: 0.2715 - accuracy: 0.8289 - mae: 0.2715 - pearson_correlation: 0.2644 - euclidean_distance: 0.4239
Epoch 24/300
76/76 [==============================] - 0s 838us/step - loss: 0.2654 - accuracy: 0.8342 - mae: 0.2654 - pearson_correlation: 0.2753 - euclidean_distance: 0.4140
Epoch 25/300
76/76 [==============================] - 0s 837us/step - loss: 0.2616 - accuracy: 0.8377 - mae: 0.2616 - pearson_correlation: 0.2781 - euclidean_distance: 0.4097
Epoch 26/300
76/76 [==============================] - 0s 834us/step - loss: 0.2563 - accuracy: 0.8430 - mae: 0.2563 - pearson_correlation: 0.2904 - euclidean_distance: 0.4005
Epoch 27/300
76/76 [==============================] - 0s 838us/step - loss: 0.2540 - accuracy: 0.8483 - mae: 0.2540 - pearson_correlation: 0.2918 - euclidean_distance: 0.3971
Epoch 28/300
76/76 [==============================] - 0s 837us/step - loss: 0.2520 - accuracy: 0.8488 - mae: 0.2520 - pearson_correlation: 0.3039 - euclidean_distance: 0.3932
Epoch 29/300
76/76 [==============================] - 0s 838us/step - loss: 0.2467 - accuracy: 0.8527 - mae: 0.2467 - pearson_correlation: 0.3120 - euclidean_distance: 0.3852
Epoch 30/300
76/76 [==============================] - 0s 837us/step - loss: 0.2427 - accuracy: 0.8576 - mae: 0.2427 - pearson_correlation: 0.3182 - euclidean_distance: 0.3784
Epoch 31/300
76/76 [==============================] - 0s 840us/step - loss: 0.2407 - accuracy: 0.8576 - mae: 0.2407 - pearson_correlation: 0.3230 - euclidean_distance: 0.3758
Epoch 32/300
76/76 [==============================] - 0s 837us/step - loss: 0.2390 - accuracy: 0.8673 - mae: 0.2390 - pearson_correlation: 0.3281 - euclidean_distance: 0.3725
Epoch 33/300
76/76 [==============================] - 0s 841us/step - loss: 0.2305 - accuracy: 0.8673 - mae: 0.2305 - pearson_correlation: 0.3448 - euclidean_distance: 0.3598
Epoch 34/300
76/76 [==============================] - 0s 836us/step - loss: 0.2345 - accuracy: 0.8638 - mae: 0.2345 - pearson_correlation: 0.3422 - euclidean_distance: 0.3656
Epoch 35/300
76/76 [==============================] - 0s 839us/step - loss: 0.2283 - accuracy: 0.8708 - mae: 0.2283 - pearson_correlation: 0.3543 - euclidean_distance: 0.3558
Epoch 36/300
76/76 [==============================] - 0s 840us/step - loss: 0.2257 - accuracy: 0.8761 - mae: 0.2257 - pearson_correlation: 0.3586 - euclidean_distance: 0.3511
Epoch 37/300
76/76 [==============================] - 0s 829us/step - loss: 0.2222 - accuracy: 0.8854 - mae: 0.2222 - pearson_correlation: 0.3668 - euclidean_distance: 0.3459
Epoch 38/300
76/76 [==============================] - 0s 835us/step - loss: 0.2178 - accuracy: 0.8840 - mae: 0.2178 - pearson_correlation: 0.3751 - euclidean_distance: 0.3398
Epoch 39/300
76/76 [==============================] - 0s 836us/step - loss: 0.2160 - accuracy: 0.8867 - mae: 0.2160 - pearson_correlation: 0.3778 - euclidean_distance: 0.3371
Epoch 40/300
76/76 [==============================] - 0s 840us/step - loss: 0.2145 - accuracy: 0.8942 - mae: 0.2145 - pearson_correlation: 0.3876 - euclidean_distance: 0.3328
Epoch 41/300
76/76 [==============================] - 0s 833us/step - loss: 0.2112 - accuracy: 0.8986 - mae: 0.2112 - pearson_correlation: 0.3967 - euclidean_distance: 0.3291
Epoch 42/300
76/76 [==============================] - 0s 831us/step - loss: 0.2076 - accuracy: 0.8973 - mae: 0.2076 - pearson_correlation: 0.3991 - euclidean_distance: 0.3226
Epoch 43/300
76/76 [==============================] - 0s 838us/step - loss: 0.2057 - accuracy: 0.8995 - mae: 0.2057 - pearson_correlation: 0.4093 - euclidean_distance: 0.3203
Epoch 44/300
76/76 [==============================] - 0s 839us/step - loss: 0.2001 - accuracy: 0.9008 - mae: 0.2001 - pearson_correlation: 0.4134 - euclidean_distance: 0.3119
Epoch 45/300
76/76 [==============================] - 0s 842us/step - loss: 0.2038 - accuracy: 0.9083 - mae: 0.2038 - pearson_correlation: 0.4210 - euclidean_distance: 0.3159
Epoch 46/300
76/76 [==============================] - 0s 837us/step - loss: 0.1990 - accuracy: 0.9030 - mae: 0.1990 - pearson_correlation: 0.4211 - euclidean_distance: 0.3096
Epoch 47/300
76/76 [==============================] - 0s 830us/step - loss: 0.1973 - accuracy: 0.9136 - mae: 0.1973 - pearson_correlation: 0.4290 - euclidean_distance: 0.3064
Epoch 48/300
76/76 [==============================] - 0s 839us/step - loss: 0.1956 - accuracy: 0.9026 - mae: 0.1956 - pearson_correlation: 0.4309 - euclidean_distance: 0.3052
Epoch 49/300
76/76 [==============================] - 0s 836us/step - loss: 0.1955 - accuracy: 0.9074 - mae: 0.1955 - pearson_correlation: 0.4422 - euclidean_distance: 0.3034
Epoch 50/300
76/76 [==============================] - 0s 834us/step - loss: 0.1915 - accuracy: 0.9145 - mae: 0.1915 - pearson_correlation: 0.4500 - euclidean_distance: 0.2970
Epoch 51/300
76/76 [==============================] - 0s 830us/step - loss: 0.1917 - accuracy: 0.9167 - mae: 0.1917 - pearson_correlation: 0.4474 - euclidean_distance: 0.2980
Epoch 52/300
76/76 [==============================] - 0s 848us/step - loss: 0.1898 - accuracy: 0.9145 - mae: 0.1898 - pearson_correlation: 0.4538 - euclidean_distance: 0.2959
Epoch 53/300
76/76 [==============================] - 0s 837us/step - loss: 0.1886 - accuracy: 0.9158 - mae: 0.1886 - pearson_correlation: 0.4616 - euclidean_distance: 0.2928
Epoch 54/300
76/76 [==============================] - 0s 836us/step - loss: 0.1879 - accuracy: 0.9171 - mae: 0.1879 - pearson_correlation: 0.4611 - euclidean_distance: 0.2922
Epoch 55/300
76/76 [==============================] - 0s 835us/step - loss: 0.1830 - accuracy: 0.9123 - mae: 0.1830 - pearson_correlation: 0.4650 - euclidean_distance: 0.2842
Epoch 56/300
76/76 [==============================] - 0s 837us/step - loss: 0.1849 - accuracy: 0.9198 - mae: 0.1849 - pearson_correlation: 0.4667 - euclidean_distance: 0.2875
Epoch 57/300
76/76 [==============================] - 0s 840us/step - loss: 0.1793 - accuracy: 0.9193 - mae: 0.1793 - pearson_correlation: 0.4810 - euclidean_distance: 0.2786
Epoch 58/300
76/76 [==============================] - 0s 837us/step - loss: 0.1778 - accuracy: 0.9299 - mae: 0.1778 - pearson_correlation: 0.4943 - euclidean_distance: 0.2764
Epoch 59/300
76/76 [==============================] - 0s 839us/step - loss: 0.1802 - accuracy: 0.9211 - mae: 0.1802 - pearson_correlation: 0.4816 - euclidean_distance: 0.2808
Epoch 60/300
76/76 [==============================] - 0s 832us/step - loss: 0.1747 - accuracy: 0.9250 - mae: 0.1747 - pearson_correlation: 0.4895 - euclidean_distance: 0.2726
Epoch 61/300
76/76 [==============================] - 0s 836us/step - loss: 0.1792 - accuracy: 0.9264 - mae: 0.1792 - pearson_correlation: 0.4921 - euclidean_distance: 0.2789
Epoch 62/300
76/76 [==============================] - 0s 835us/step - loss: 0.1801 - accuracy: 0.9272 - mae: 0.1801 - pearson_correlation: 0.4901 - euclidean_distance: 0.2796
Epoch 63/300
76/76 [==============================] - 0s 836us/step - loss: 0.1739 - accuracy: 0.9246 - mae: 0.1739 - pearson_correlation: 0.4998 - euclidean_distance: 0.2705
Epoch 64/300
76/76 [==============================] - 0s 837us/step - loss: 0.1699 - accuracy: 0.9295 - mae: 0.1699 - pearson_correlation: 0.5075 - euclidean_distance: 0.2648
Epoch 65/300
76/76 [==============================] - 0s 839us/step - loss: 0.1733 - accuracy: 0.9334 - mae: 0.1733 - pearson_correlation: 0.5025 - euclidean_distance: 0.2695
Epoch 66/300
76/76 [==============================] - 0s 839us/step - loss: 0.1717 - accuracy: 0.9277 - mae: 0.1717 - pearson_correlation: 0.5095 - euclidean_distance: 0.2669
Epoch 67/300
76/76 [==============================] - 0s 829us/step - loss: 0.1673 - accuracy: 0.9339 - mae: 0.1673 - pearson_correlation: 0.5269 - euclidean_distance: 0.2616
Epoch 68/300
76/76 [==============================] - 0s 840us/step - loss: 0.1705 - accuracy: 0.9365 - mae: 0.1705 - pearson_correlation: 0.5148 - euclidean_distance: 0.2654
Epoch 69/300
76/76 [==============================] - 0s 835us/step - loss: 0.1675 - accuracy: 0.9374 - mae: 0.1675 - pearson_correlation: 0.5238 - euclidean_distance: 0.2610
Epoch 70/300
76/76 [==============================] - 0s 836us/step - loss: 0.1680 - accuracy: 0.9378 - mae: 0.1680 - pearson_correlation: 0.5234 - euclidean_distance: 0.2609
Epoch 71/300
76/76 [==============================] - 0s 839us/step - loss: 0.1669 - accuracy: 0.9400 - mae: 0.1669 - pearson_correlation: 0.5295 - euclidean_distance: 0.2595
Epoch 72/300
76/76 [==============================] - 0s 841us/step - loss: 0.1654 - accuracy: 0.9361 - mae: 0.1654 - pearson_correlation: 0.5320 - euclidean_distance: 0.2574
Epoch 73/300
76/76 [==============================] - 0s 835us/step - loss: 0.1656 - accuracy: 0.9418 - mae: 0.1656 - pearson_correlation: 0.5314 - euclidean_distance: 0.2576
Epoch 74/300
76/76 [==============================] - 0s 839us/step - loss: 0.1659 - accuracy: 0.9361 - mae: 0.1659 - pearson_correlation: 0.5298 - euclidean_distance: 0.2589
Epoch 75/300
76/76 [==============================] - 0s 839us/step - loss: 0.1644 - accuracy: 0.9418 - mae: 0.1644 - pearson_correlation: 0.5322 - euclidean_distance: 0.2556
Epoch 76/300
76/76 [==============================] - 0s 845us/step - loss: 0.1593 - accuracy: 0.9414 - mae: 0.1593 - pearson_correlation: 0.5509 - euclidean_distance: 0.2473
Epoch 77/300
76/76 [==============================] - 0s 832us/step - loss: 0.1579 - accuracy: 0.9427 - mae: 0.1579 - pearson_correlation: 0.5465 - euclidean_distance: 0.2465
Epoch 78/300
76/76 [==============================] - 0s 840us/step - loss: 0.1584 - accuracy: 0.9431 - mae: 0.1584 - pearson_correlation: 0.5509 - euclidean_distance: 0.2479
Epoch 79/300
76/76 [==============================] - 0s 836us/step - loss: 0.1645 - accuracy: 0.9427 - mae: 0.1645 - pearson_correlation: 0.5340 - euclidean_distance: 0.2562
Epoch 80/300
76/76 [==============================] - 0s 836us/step - loss: 0.1564 - accuracy: 0.9466 - mae: 0.1564 - pearson_correlation: 0.5598 - euclidean_distance: 0.2440
Epoch 81/300
76/76 [==============================] - 0s 835us/step - loss: 0.1564 - accuracy: 0.9444 - mae: 0.1564 - pearson_correlation: 0.5533 - euclidean_distance: 0.2437
Epoch 82/300
76/76 [==============================] - 0s 836us/step - loss: 0.1556 - accuracy: 0.9453 - mae: 0.1556 - pearson_correlation: 0.5582 - euclidean_distance: 0.2422
Epoch 83/300
76/76 [==============================] - 0s 847us/step - loss: 0.1563 - accuracy: 0.9436 - mae: 0.1563 - pearson_correlation: 0.5602 - euclidean_distance: 0.2443
Epoch 84/300
76/76 [==============================] - 0s 836us/step - loss: 0.1521 - accuracy: 0.9458 - mae: 0.1521 - pearson_correlation: 0.5733 - euclidean_distance: 0.2372
Epoch 85/300
76/76 [==============================] - 0s 839us/step - loss: 0.1572 - accuracy: 0.9484 - mae: 0.1572 - pearson_correlation: 0.5594 - euclidean_distance: 0.2455
Epoch 86/300
76/76 [==============================] - 0s 837us/step - loss: 0.1503 - accuracy: 0.9471 - mae: 0.1503 - pearson_correlation: 0.5747 - euclidean_distance: 0.2345
Epoch 87/300
76/76 [==============================] - 0s 837us/step - loss: 0.1518 - accuracy: 0.9497 - mae: 0.1518 - pearson_correlation: 0.5748 - euclidean_distance: 0.2365
Epoch 88/300
76/76 [==============================] - 0s 838us/step - loss: 0.1527 - accuracy: 0.9489 - mae: 0.1527 - pearson_correlation: 0.5709 - euclidean_distance: 0.2378
Epoch 89/300
76/76 [==============================] - 0s 829us/step - loss: 0.1501 - accuracy: 0.9458 - mae: 0.1501 - pearson_correlation: 0.5741 - euclidean_distance: 0.2347
Epoch 90/300
76/76 [==============================] - 0s 864us/step - loss: 0.1506 - accuracy: 0.9489 - mae: 0.1506 - pearson_correlation: 0.5764 - euclidean_distance: 0.2357
Epoch 91/300
76/76 [==============================] - 0s 845us/step - loss: 0.1461 - accuracy: 0.9471 - mae: 0.1461 - pearson_correlation: 0.5830 - euclidean_distance: 0.2284
Epoch 92/300
76/76 [==============================] - 0s 833us/step - loss: 0.1523 - accuracy: 0.9471 - mae: 0.1523 - pearson_correlation: 0.5849 - euclidean_distance: 0.2372
Epoch 93/300
76/76 [==============================] - 0s 827us/step - loss: 0.1475 - accuracy: 0.9497 - mae: 0.1475 - pearson_correlation: 0.5902 - euclidean_distance: 0.2314
Epoch 94/300
76/76 [==============================] - 0s 836us/step - loss: 0.1499 - accuracy: 0.9502 - mae: 0.1499 - pearson_correlation: 0.5803 - euclidean_distance: 0.2348
Epoch 95/300
76/76 [==============================] - 0s 837us/step - loss: 0.1448 - accuracy: 0.9489 - mae: 0.1448 - pearson_correlation: 0.5963 - euclidean_distance: 0.2267
Epoch 96/300
76/76 [==============================] - 0s 836us/step - loss: 0.1424 - accuracy: 0.9480 - mae: 0.1424 - pearson_correlation: 0.5917 - euclidean_distance: 0.2229
Epoch 97/300
76/76 [==============================] - 0s 833us/step - loss: 0.1446 - accuracy: 0.9502 - mae: 0.1446 - pearson_correlation: 0.6008 - euclidean_distance: 0.2260
Epoch 98/300
76/76 [==============================] - 0s 842us/step - loss: 0.1395 - accuracy: 0.9515 - mae: 0.1395 - pearson_correlation: 0.6066 - euclidean_distance: 0.2188
Epoch 99/300
76/76 [==============================] - 0s 837us/step - loss: 0.1406 - accuracy: 0.9502 - mae: 0.1406 - pearson_correlation: 0.6024 - euclidean_distance: 0.2202
Epoch 100/300
76/76 [==============================] - 0s 844us/step - loss: 0.1399 - accuracy: 0.9511 - mae: 0.1399 - pearson_correlation: 0.6075 - euclidean_distance: 0.2191
Epoch 101/300
76/76 [==============================] - 0s 846us/step - loss: 0.1401 - accuracy: 0.9519 - mae: 0.1401 - pearson_correlation: 0.6093 - euclidean_distance: 0.2198
Epoch 102/300
76/76 [==============================] - 0s 881us/step - loss: 0.1359 - accuracy: 0.9506 - mae: 0.1359 - pearson_correlation: 0.6142 - euclidean_distance: 0.2130
Epoch 103/300
76/76 [==============================] - 0s 836us/step - loss: 0.1401 - accuracy: 0.9497 - mae: 0.1401 - pearson_correlation: 0.6027 - euclidean_distance: 0.2199
Epoch 104/300
76/76 [==============================] - 0s 839us/step - loss: 0.1401 - accuracy: 0.9519 - mae: 0.1401 - pearson_correlation: 0.6154 - euclidean_distance: 0.2194
Epoch 105/300
76/76 [==============================] - 0s 837us/step - loss: 0.1384 - accuracy: 0.9511 - mae: 0.1384 - pearson_correlation: 0.6063 - euclidean_distance: 0.2171
Epoch 106/300
76/76 [==============================] - 0s 840us/step - loss: 0.1375 - accuracy: 0.9511 - mae: 0.1375 - pearson_correlation: 0.6147 - euclidean_distance: 0.2155
Epoch 107/300
76/76 [==============================] - 0s 834us/step - loss: 0.1363 - accuracy: 0.9506 - mae: 0.1363 - pearson_correlation: 0.6175 - euclidean_distance: 0.2142
Epoch 108/300
76/76 [==============================] - 0s 834us/step - loss: 0.1395 - accuracy: 0.9484 - mae: 0.1395 - pearson_correlation: 0.6073 - euclidean_distance: 0.2193
Epoch 109/300
76/76 [==============================] - 0s 835us/step - loss: 0.1367 - accuracy: 0.9484 - mae: 0.1367 - pearson_correlation: 0.6172 - euclidean_distance: 0.2142
Epoch 110/300
76/76 [==============================] - 0s 836us/step - loss: 0.1354 - accuracy: 0.9475 - mae: 0.1354 - pearson_correlation: 0.6223 - euclidean_distance: 0.2127
Epoch 111/300
76/76 [==============================] - 0s 838us/step - loss: 0.1354 - accuracy: 0.9466 - mae: 0.1354 - pearson_correlation: 0.6238 - euclidean_distance: 0.2127
Epoch 112/300
76/76 [==============================] - 0s 830us/step - loss: 0.1345 - accuracy: 0.9506 - mae: 0.1345 - pearson_correlation: 0.6250 - euclidean_distance: 0.2115
Epoch 113/300
76/76 [==============================] - 0s 841us/step - loss: 0.1290 - accuracy: 0.9484 - mae: 0.1290 - pearson_correlation: 0.6367 - euclidean_distance: 0.2033
Epoch 114/300
76/76 [==============================] - 0s 835us/step - loss: 0.1295 - accuracy: 0.9519 - mae: 0.1295 - pearson_correlation: 0.6365 - euclidean_distance: 0.2038
Epoch 115/300
76/76 [==============================] - 0s 833us/step - loss: 0.1306 - accuracy: 0.9489 - mae: 0.1306 - pearson_correlation: 0.6309 - euclidean_distance: 0.2054
Epoch 116/300
76/76 [==============================] - 0s 830us/step - loss: 0.1331 - accuracy: 0.9489 - mae: 0.1331 - pearson_correlation: 0.6284 - euclidean_distance: 0.2096
Epoch 117/300
76/76 [==============================] - 0s 835us/step - loss: 0.1321 - accuracy: 0.9484 - mae: 0.1321 - pearson_correlation: 0.6297 - euclidean_distance: 0.2076
Epoch 118/300
76/76 [==============================] - 0s 831us/step - loss: 0.1279 - accuracy: 0.9506 - mae: 0.1279 - pearson_correlation: 0.6391 - euclidean_distance: 0.2013
Epoch 119/300
76/76 [==============================] - 0s 835us/step - loss: 0.1252 - accuracy: 0.9484 - mae: 0.1252 - pearson_correlation: 0.6450 - euclidean_distance: 0.1977
Epoch 120/300
76/76 [==============================] - 0s 835us/step - loss: 0.1278 - accuracy: 0.9550 - mae: 0.1278 - pearson_correlation: 0.6390 - euclidean_distance: 0.2021
Epoch 121/300
76/76 [==============================] - 0s 834us/step - loss: 0.1268 - accuracy: 0.9489 - mae: 0.1268 - pearson_correlation: 0.6460 - euclidean_distance: 0.1990
Epoch 122/300
76/76 [==============================] - 0s 837us/step - loss: 0.1282 - accuracy: 0.9497 - mae: 0.1282 - pearson_correlation: 0.6411 - euclidean_distance: 0.2014
Epoch 123/300
76/76 [==============================] - 0s 837us/step - loss: 0.1242 - accuracy: 0.9497 - mae: 0.1242 - pearson_correlation: 0.6466 - euclidean_distance: 0.1958
Epoch 124/300
76/76 [==============================] - 0s 829us/step - loss: 0.1277 - accuracy: 0.9480 - mae: 0.1277 - pearson_correlation: 0.6429 - euclidean_distance: 0.2009
Epoch 125/300
76/76 [==============================] - 0s 836us/step - loss: 0.1272 - accuracy: 0.9493 - mae: 0.1272 - pearson_correlation: 0.6419 - euclidean_distance: 0.2004
Epoch 126/300
76/76 [==============================] - 0s 835us/step - loss: 0.1257 - accuracy: 0.9524 - mae: 0.1257 - pearson_correlation: 0.6499 - euclidean_distance: 0.1980
Epoch 127/300
76/76 [==============================] - 0s 838us/step - loss: 0.1239 - accuracy: 0.9511 - mae: 0.1239 - pearson_correlation: 0.6486 - euclidean_distance: 0.1959
Epoch 128/300
76/76 [==============================] - 0s 835us/step - loss: 0.1253 - accuracy: 0.9502 - mae: 0.1253 - pearson_correlation: 0.6499 - euclidean_distance: 0.1979
Epoch 129/300
76/76 [==============================] - 0s 831us/step - loss: 0.1246 - accuracy: 0.9515 - mae: 0.1246 - pearson_correlation: 0.6528 - euclidean_distance: 0.1968
Epoch 130/300
76/76 [==============================] - 0s 836us/step - loss: 0.1242 - accuracy: 0.9533 - mae: 0.1242 - pearson_correlation: 0.6543 - euclidean_distance: 0.1954
Epoch 131/300
76/76 [==============================] - 0s 836us/step - loss: 0.1230 - accuracy: 0.9489 - mae: 0.1230 - pearson_correlation: 0.6503 - euclidean_distance: 0.1943
Epoch 132/300
76/76 [==============================] - 0s 836us/step - loss: 0.1247 - accuracy: 0.9480 - mae: 0.1247 - pearson_correlation: 0.6464 - euclidean_distance: 0.1966
Epoch 133/300
76/76 [==============================] - 0s 839us/step - loss: 0.1198 - accuracy: 0.9506 - mae: 0.1198 - pearson_correlation: 0.6644 - euclidean_distance: 0.1897
Epoch 134/300
76/76 [==============================] - 0s 839us/step - loss: 0.1223 - accuracy: 0.9506 - mae: 0.1223 - pearson_correlation: 0.6532 - euclidean_distance: 0.1933
Epoch 135/300
76/76 [==============================] - 0s 836us/step - loss: 0.1218 - accuracy: 0.9502 - mae: 0.1218 - pearson_correlation: 0.6585 - euclidean_distance: 0.1930
Epoch 136/300
76/76 [==============================] - 0s 832us/step - loss: 0.1181 - accuracy: 0.9502 - mae: 0.1181 - pearson_correlation: 0.6656 - euclidean_distance: 0.1869
Epoch 137/300
76/76 [==============================] - 0s 837us/step - loss: 0.1212 - accuracy: 0.9511 - mae: 0.1212 - pearson_correlation: 0.6575 - euclidean_distance: 0.1915
Epoch 138/300
76/76 [==============================] - 0s 834us/step - loss: 0.1236 - accuracy: 0.9515 - mae: 0.1236 - pearson_correlation: 0.6544 - euclidean_distance: 0.1947
Epoch 139/300
76/76 [==============================] - 0s 831us/step - loss: 0.1147 - accuracy: 0.9480 - mae: 0.1147 - pearson_correlation: 0.6766 - euclidean_distance: 0.1816
Epoch 140/300
76/76 [==============================] - 0s 831us/step - loss: 0.1213 - accuracy: 0.9497 - mae: 0.1213 - pearson_correlation: 0.6618 - euclidean_distance: 0.1913
Epoch 141/300
76/76 [==============================] - 0s 837us/step - loss: 0.1189 - accuracy: 0.9493 - mae: 0.1189 - pearson_correlation: 0.6673 - euclidean_distance: 0.1877
Epoch 142/300
76/76 [==============================] - 0s 835us/step - loss: 0.1198 - accuracy: 0.9502 - mae: 0.1198 - pearson_correlation: 0.6645 - euclidean_distance: 0.1894
Epoch 143/300
76/76 [==============================] - 0s 838us/step - loss: 0.1187 - accuracy: 0.9506 - mae: 0.1187 - pearson_correlation: 0.6627 - euclidean_distance: 0.1884
Epoch 144/300
76/76 [==============================] - 0s 836us/step - loss: 0.1172 - accuracy: 0.9497 - mae: 0.1172 - pearson_correlation: 0.6673 - euclidean_distance: 0.1856
Epoch 145/300
76/76 [==============================] - 0s 835us/step - loss: 0.1160 - accuracy: 0.9506 - mae: 0.1160 - pearson_correlation: 0.6749 - euclidean_distance: 0.1840
Epoch 146/300
76/76 [==============================] - 0s 832us/step - loss: 0.1164 - accuracy: 0.9519 - mae: 0.1164 - pearson_correlation: 0.6714 - euclidean_distance: 0.1843
Epoch 147/300
76/76 [==============================] - 0s 832us/step - loss: 0.1155 - accuracy: 0.9524 - mae: 0.1155 - pearson_correlation: 0.6751 - euclidean_distance: 0.1833
Epoch 148/300
76/76 [==============================] - 0s 837us/step - loss: 0.1123 - accuracy: 0.9493 - mae: 0.1123 - pearson_correlation: 0.6739 - euclidean_distance: 0.1782
Epoch 149/300
76/76 [==============================] - 0s 1ms/step - loss: 0.1161 - accuracy: 0.9502 - mae: 0.1161 - pearson_correlation: 0.6666 - euclidean_distance: 0.1843
Epoch 150/300
76/76 [==============================] - 0s 910us/step - loss: 0.1100 - accuracy: 0.9511 - mae: 0.1100 - pearson_correlation: 0.6881 - euclidean_distance: 0.1742
Epoch 151/300
76/76 [==============================] - 0s 911us/step - loss: 0.1147 - accuracy: 0.9502 - mae: 0.1147 - pearson_correlation: 0.6738 - euclidean_distance: 0.1822
Epoch 152/300
76/76 [==============================] - 0s 931us/step - loss: 0.1092 - accuracy: 0.9502 - mae: 0.1092 - pearson_correlation: 0.6881 - euclidean_distance: 0.1742
Epoch 153/300
76/76 [==============================] - 0s 1ms/step - loss: 0.1125 - accuracy: 0.9519 - mae: 0.1125 - pearson_correlation: 0.6846 - euclidean_distance: 0.1788
Epoch 154/300
76/76 [==============================] - 0s 936us/step - loss: 0.1156 - accuracy: 0.9524 - mae: 0.1156 - pearson_correlation: 0.6694 - euclidean_distance: 0.1836
Epoch 155/300
76/76 [==============================] - 0s 987us/step - loss: 0.1154 - accuracy: 0.9524 - mae: 0.1154 - pearson_correlation: 0.6832 - euclidean_distance: 0.1833
Epoch 156/300
76/76 [==============================] - 0s 958us/step - loss: 0.1147 - accuracy: 0.9519 - mae: 0.1147 - pearson_correlation: 0.6752 - euclidean_distance: 0.1818
Epoch 157/300
76/76 [==============================] - 0s 843us/step - loss: 0.1149 - accuracy: 0.9502 - mae: 0.1149 - pearson_correlation: 0.6758 - euclidean_distance: 0.1823
Epoch 158/300
76/76 [==============================] - 0s 838us/step - loss: 0.1102 - accuracy: 0.9515 - mae: 0.1102 - pearson_correlation: 0.6863 - euclidean_distance: 0.1755
Epoch 159/300
76/76 [==============================] - 0s 849us/step - loss: 0.1169 - accuracy: 0.9497 - mae: 0.1169 - pearson_correlation: 0.6693 - euclidean_distance: 0.1855
Epoch 160/300
76/76 [==============================] - 0s 836us/step - loss: 0.1135 - accuracy: 0.9511 - mae: 0.1135 - pearson_correlation: 0.6749 - euclidean_distance: 0.1808
Epoch 161/300
76/76 [==============================] - 0s 842us/step - loss: 0.1160 - accuracy: 0.9519 - mae: 0.1160 - pearson_correlation: 0.6746 - euclidean_distance: 0.1839
Epoch 162/300
76/76 [==============================] - 0s 841us/step - loss: 0.1130 - accuracy: 0.9528 - mae: 0.1130 - pearson_correlation: 0.6770 - euclidean_distance: 0.1798
Epoch 163/300
76/76 [==============================] - 0s 838us/step - loss: 0.1118 - accuracy: 0.9528 - mae: 0.1118 - pearson_correlation: 0.6827 - euclidean_distance: 0.1783
Epoch 164/300
76/76 [==============================] - 0s 835us/step - loss: 0.1133 - accuracy: 0.9524 - mae: 0.1133 - pearson_correlation: 0.6822 - euclidean_distance: 0.1800
Epoch 165/300
76/76 [==============================] - 0s 839us/step - loss: 0.1156 - accuracy: 0.9524 - mae: 0.1156 - pearson_correlation: 0.6790 - euclidean_distance: 0.1828
Epoch 166/300
76/76 [==============================] - 0s 839us/step - loss: 0.1090 - accuracy: 0.9502 - mae: 0.1090 - pearson_correlation: 0.6921 - euclidean_distance: 0.1738
Epoch 167/300
76/76 [==============================] - 0s 842us/step - loss: 0.1155 - accuracy: 0.9524 - mae: 0.1155 - pearson_correlation: 0.6742 - euclidean_distance: 0.1834
Epoch 168/300
76/76 [==============================] - 0s 843us/step - loss: 0.1122 - accuracy: 0.9506 - mae: 0.1122 - pearson_correlation: 0.6840 - euclidean_distance: 0.1780
Epoch 169/300
76/76 [==============================] - 0s 836us/step - loss: 0.1070 - accuracy: 0.9511 - mae: 0.1070 - pearson_correlation: 0.6994 - euclidean_distance: 0.1708
Epoch 170/300
76/76 [==============================] - 0s 837us/step - loss: 0.1059 - accuracy: 0.9515 - mae: 0.1059 - pearson_correlation: 0.6974 - euclidean_distance: 0.1700
Epoch 171/300
76/76 [==============================] - 0s 838us/step - loss: 0.1088 - accuracy: 0.9550 - mae: 0.1088 - pearson_correlation: 0.6918 - euclidean_distance: 0.1731
Epoch 172/300
76/76 [==============================] - 0s 835us/step - loss: 0.1094 - accuracy: 0.9541 - mae: 0.1094 - pearson_correlation: 0.6942 - euclidean_distance: 0.1744
Epoch 173/300
76/76 [==============================] - 0s 839us/step - loss: 0.1058 - accuracy: 0.9519 - mae: 0.1058 - pearson_correlation: 0.6991 - euclidean_distance: 0.1682
Epoch 174/300
76/76 [==============================] - 0s 840us/step - loss: 0.1095 - accuracy: 0.9537 - mae: 0.1095 - pearson_correlation: 0.6908 - euclidean_distance: 0.1747
Epoch 175/300
76/76 [==============================] - 0s 840us/step - loss: 0.1087 - accuracy: 0.9533 - mae: 0.1087 - pearson_correlation: 0.6908 - euclidean_distance: 0.1735
Epoch 176/300
76/76 [==============================] - 0s 838us/step - loss: 0.1069 - accuracy: 0.9493 - mae: 0.1069 - pearson_correlation: 0.6978 - euclidean_distance: 0.1706
Epoch 177/300
76/76 [==============================] - 0s 836us/step - loss: 0.1109 - accuracy: 0.9519 - mae: 0.1109 - pearson_correlation: 0.6905 - euclidean_distance: 0.1765
Epoch 178/300
76/76 [==============================] - 0s 840us/step - loss: 0.1073 - accuracy: 0.9515 - mae: 0.1073 - pearson_correlation: 0.6955 - euclidean_distance: 0.1715
Epoch 179/300
76/76 [==============================] - 0s 842us/step - loss: 0.1113 - accuracy: 0.9524 - mae: 0.1113 - pearson_correlation: 0.6952 - euclidean_distance: 0.1765
Epoch 180/300
76/76 [==============================] - 0s 834us/step - loss: 0.1048 - accuracy: 0.9528 - mae: 0.1048 - pearson_correlation: 0.7007 - euclidean_distance: 0.1674
Epoch 181/300
76/76 [==============================] - 0s 837us/step - loss: 0.1061 - accuracy: 0.9515 - mae: 0.1061 - pearson_correlation: 0.7046 - euclidean_distance: 0.1688
Epoch 182/300
76/76 [==============================] - 0s 835us/step - loss: 0.1062 - accuracy: 0.9524 - mae: 0.1062 - pearson_correlation: 0.6992 - euclidean_distance: 0.1693
Epoch 183/300
76/76 [==============================] - 0s 839us/step - loss: 0.1100 - accuracy: 0.9511 - mae: 0.1100 - pearson_correlation: 0.6889 - euclidean_distance: 0.1751
Epoch 184/300
76/76 [==============================] - 0s 833us/step - loss: 0.1030 - accuracy: 0.9546 - mae: 0.1030 - pearson_correlation: 0.7082 - euclidean_distance: 0.1640
Epoch 185/300
76/76 [==============================] - 0s 838us/step - loss: 0.1077 - accuracy: 0.9524 - mae: 0.1077 - pearson_correlation: 0.6974 - euclidean_distance: 0.1715
Epoch 186/300
76/76 [==============================] - 0s 831us/step - loss: 0.1041 - accuracy: 0.9528 - mae: 0.1041 - pearson_correlation: 0.7059 - euclidean_distance: 0.1660
Epoch 187/300
76/76 [==============================] - 0s 836us/step - loss: 0.1048 - accuracy: 0.9524 - mae: 0.1048 - pearson_correlation: 0.7050 - euclidean_distance: 0.1671
Epoch 188/300
76/76 [==============================] - 0s 836us/step - loss: 0.1079 - accuracy: 0.9519 - mae: 0.1079 - pearson_correlation: 0.6986 - euclidean_distance: 0.1723
Epoch 189/300
76/76 [==============================] - 0s 831us/step - loss: 0.1094 - accuracy: 0.9533 - mae: 0.1094 - pearson_correlation: 0.6947 - euclidean_distance: 0.1739
Epoch 190/300
76/76 [==============================] - 0s 838us/step - loss: 0.1062 - accuracy: 0.9524 - mae: 0.1062 - pearson_correlation: 0.6979 - euclidean_distance: 0.1699
Epoch 191/300
76/76 [==============================] - 0s 835us/step - loss: 0.1078 - accuracy: 0.9546 - mae: 0.1078 - pearson_correlation: 0.6979 - euclidean_distance: 0.1708
Epoch 192/300
76/76 [==============================] - 0s 839us/step - loss: 0.1072 - accuracy: 0.9528 - mae: 0.1072 - pearson_correlation: 0.6967 - euclidean_distance: 0.1707
Epoch 193/300
76/76 [==============================] - 0s 835us/step - loss: 0.1060 - accuracy: 0.9537 - mae: 0.1060 - pearson_correlation: 0.7019 - euclidean_distance: 0.1689
Epoch 194/300
76/76 [==============================] - 0s 835us/step - loss: 0.1060 - accuracy: 0.9533 - mae: 0.1060 - pearson_correlation: 0.6982 - euclidean_distance: 0.1693
Epoch 195/300
76/76 [==============================] - 0s 838us/step - loss: 0.1086 - accuracy: 0.9528 - mae: 0.1086 - pearson_correlation: 0.6973 - euclidean_distance: 0.1731
Epoch 196/300
76/76 [==============================] - 0s 833us/step - loss: 0.1019 - accuracy: 0.9537 - mae: 0.1019 - pearson_correlation: 0.7131 - euclidean_distance: 0.1624
Epoch 197/300
76/76 [==============================] - 0s 834us/step - loss: 0.1040 - accuracy: 0.9533 - mae: 0.1040 - pearson_correlation: 0.7054 - euclidean_distance: 0.1662
Epoch 198/300
76/76 [==============================] - 0s 835us/step - loss: 0.1035 - accuracy: 0.9533 - mae: 0.1035 - pearson_correlation: 0.7026 - euclidean_distance: 0.1660
Epoch 199/300
76/76 [==============================] - 0s 836us/step - loss: 0.1064 - accuracy: 0.9541 - mae: 0.1064 - pearson_correlation: 0.7005 - euclidean_distance: 0.1698
Epoch 200/300
76/76 [==============================] - 0s 831us/step - loss: 0.1065 - accuracy: 0.9524 - mae: 0.1065 - pearson_correlation: 0.7024 - euclidean_distance: 0.1696
Epoch 201/300
76/76 [==============================] - 0s 834us/step - loss: 0.1041 - accuracy: 0.9546 - mae: 0.1041 - pearson_correlation: 0.7091 - euclidean_distance: 0.1665
Epoch 202/300
76/76 [==============================] - 0s 834us/step - loss: 0.1081 - accuracy: 0.9533 - mae: 0.1081 - pearson_correlation: 0.6960 - euclidean_distance: 0.1724
Epoch 203/300
76/76 [==============================] - 0s 836us/step - loss: 0.1085 - accuracy: 0.9533 - mae: 0.1085 - pearson_correlation: 0.6964 - euclidean_distance: 0.1728
Epoch 204/300
76/76 [==============================] - 0s 829us/step - loss: 0.1033 - accuracy: 0.9541 - mae: 0.1033 - pearson_correlation: 0.7061 - euclidean_distance: 0.1652
Epoch 205/300
76/76 [==============================] - 0s 823us/step - loss: 0.1040 - accuracy: 0.9550 - mae: 0.1040 - pearson_correlation: 0.7041 - euclidean_distance: 0.1663
Epoch 206/300
76/76 [==============================] - 0s 833us/step - loss: 0.1006 - accuracy: 0.9537 - mae: 0.1006 - pearson_correlation: 0.7191 - euclidean_distance: 0.1607
Epoch 207/300
76/76 [==============================] - 0s 835us/step - loss: 0.1033 - accuracy: 0.9519 - mae: 0.1033 - pearson_correlation: 0.7105 - euclidean_distance: 0.1649
Epoch 208/300
76/76 [==============================] - 0s 838us/step - loss: 0.1047 - accuracy: 0.9541 - mae: 0.1047 - pearson_correlation: 0.7061 - euclidean_distance: 0.1670
Epoch 209/300
76/76 [==============================] - 0s 837us/step - loss: 0.1036 - accuracy: 0.9537 - mae: 0.1036 - pearson_correlation: 0.7131 - euclidean_distance: 0.1656
Epoch 210/300
76/76 [==============================] - 0s 831us/step - loss: 0.1060 - accuracy: 0.9537 - mae: 0.1060 - pearson_correlation: 0.6963 - euclidean_distance: 0.1693
Epoch 211/300
76/76 [==============================] - 0s 832us/step - loss: 0.1018 - accuracy: 0.9533 - mae: 0.1018 - pearson_correlation: 0.7140 - euclidean_distance: 0.1628
Epoch 212/300
76/76 [==============================] - 0s 833us/step - loss: 0.0999 - accuracy: 0.9519 - mae: 0.0999 - pearson_correlation: 0.7168 - euclidean_distance: 0.1597
Epoch 213/300
76/76 [==============================] - 0s 835us/step - loss: 0.1047 - accuracy: 0.9533 - mae: 0.1047 - pearson_correlation: 0.7069 - euclidean_distance: 0.1669
Epoch 214/300
76/76 [==============================] - 0s 834us/step - loss: 0.1040 - accuracy: 0.9541 - mae: 0.1040 - pearson_correlation: 0.7071 - euclidean_distance: 0.1661
Epoch 215/300
76/76 [==============================] - 0s 833us/step - loss: 0.1040 - accuracy: 0.9541 - mae: 0.1040 - pearson_correlation: 0.7081 - euclidean_distance: 0.1657
Epoch 216/300
76/76 [==============================] - 0s 832us/step - loss: 0.1048 - accuracy: 0.9537 - mae: 0.1048 - pearson_correlation: 0.7049 - euclidean_distance: 0.1670
Epoch 217/300
76/76 [==============================] - 0s 831us/step - loss: 0.0998 - accuracy: 0.9546 - mae: 0.0998 - pearson_correlation: 0.7178 - euclidean_distance: 0.1598
Epoch 218/300
76/76 [==============================] - 0s 837us/step - loss: 0.1035 - accuracy: 0.9546 - mae: 0.1035 - pearson_correlation: 0.7108 - euclidean_distance: 0.1654
Epoch 219/300
76/76 [==============================] - 0s 830us/step - loss: 0.1019 - accuracy: 0.9550 - mae: 0.1019 - pearson_correlation: 0.7108 - euclidean_distance: 0.1630
Epoch 220/300
76/76 [==============================] - 0s 836us/step - loss: 0.0987 - accuracy: 0.9537 - mae: 0.0987 - pearson_correlation: 0.7247 - euclidean_distance: 0.1582
Epoch 221/300
76/76 [==============================] - 0s 833us/step - loss: 0.1035 - accuracy: 0.9550 - mae: 0.1035 - pearson_correlation: 0.7103 - euclidean_distance: 0.1658
Epoch 222/300
76/76 [==============================] - 0s 836us/step - loss: 0.1032 - accuracy: 0.9550 - mae: 0.1032 - pearson_correlation: 0.7137 - euclidean_distance: 0.1645
Epoch 223/300
76/76 [==============================] - 0s 835us/step - loss: 0.1028 - accuracy: 0.9546 - mae: 0.1028 - pearson_correlation: 0.7120 - euclidean_distance: 0.1645
Epoch 224/300
76/76 [==============================] - 0s 833us/step - loss: 0.1001 - accuracy: 0.9537 - mae: 0.1001 - pearson_correlation: 0.7205 - euclidean_distance: 0.1603
Epoch 225/300
76/76 [==============================] - 0s 835us/step - loss: 0.0988 - accuracy: 0.9541 - mae: 0.0988 - pearson_correlation: 0.7203 - euclidean_distance: 0.1579
Epoch 226/300
76/76 [==============================] - 0s 835us/step - loss: 0.1011 - accuracy: 0.9555 - mae: 0.1011 - pearson_correlation: 0.7172 - euclidean_distance: 0.1617
Epoch 227/300
76/76 [==============================] - 0s 833us/step - loss: 0.0994 - accuracy: 0.9555 - mae: 0.0994 - pearson_correlation: 0.7274 - euclidean_distance: 0.1589
Epoch 228/300
76/76 [==============================] - 0s 834us/step - loss: 0.0976 - accuracy: 0.9546 - mae: 0.0976 - pearson_correlation: 0.7252 - euclidean_distance: 0.1565
Epoch 229/300
76/76 [==============================] - 0s 831us/step - loss: 0.1012 - accuracy: 0.9533 - mae: 0.1012 - pearson_correlation: 0.7177 - euclidean_distance: 0.1616
Epoch 230/300
76/76 [==============================] - 0s 836us/step - loss: 0.1004 - accuracy: 0.9541 - mae: 0.1004 - pearson_correlation: 0.7207 - euclidean_distance: 0.1607
Epoch 231/300
76/76 [==============================] - 0s 833us/step - loss: 0.1010 - accuracy: 0.9546 - mae: 0.1010 - pearson_correlation: 0.7135 - euclidean_distance: 0.1618
Epoch 232/300
76/76 [==============================] - 0s 832us/step - loss: 0.0976 - accuracy: 0.9550 - mae: 0.0976 - pearson_correlation: 0.7255 - euclidean_distance: 0.1558
Epoch 233/300
76/76 [==============================] - 0s 837us/step - loss: 0.1015 - accuracy: 0.9550 - mae: 0.1015 - pearson_correlation: 0.7163 - euclidean_distance: 0.1623
Epoch 234/300
76/76 [==============================] - 0s 834us/step - loss: 0.0968 - accuracy: 0.9546 - mae: 0.0968 - pearson_correlation: 0.7252 - euclidean_distance: 0.1556
Epoch 235/300
76/76 [==============================] - 0s 832us/step - loss: 0.0966 - accuracy: 0.9533 - mae: 0.0966 - pearson_correlation: 0.7271 - euclidean_distance: 0.1551
Epoch 236/300
76/76 [==============================] - 0s 830us/step - loss: 0.1015 - accuracy: 0.9555 - mae: 0.1015 - pearson_correlation: 0.7177 - euclidean_distance: 0.1618
Epoch 237/300
76/76 [==============================] - 0s 832us/step - loss: 0.0961 - accuracy: 0.9559 - mae: 0.0961 - pearson_correlation: 0.7350 - euclidean_distance: 0.1537
Epoch 238/300
76/76 [==============================] - 0s 834us/step - loss: 0.0955 - accuracy: 0.9546 - mae: 0.0955 - pearson_correlation: 0.7314 - euclidean_distance: 0.1528
Epoch 239/300
76/76 [==============================] - 0s 832us/step - loss: 0.0950 - accuracy: 0.9546 - mae: 0.0950 - pearson_correlation: 0.7320 - euclidean_distance: 0.1526
Epoch 240/300
76/76 [==============================] - 0s 872us/step - loss: 0.0965 - accuracy: 0.9550 - mae: 0.0965 - pearson_correlation: 0.7323 - euclidean_distance: 0.1545
Epoch 241/300
76/76 [==============================] - 0s 834us/step - loss: 0.0990 - accuracy: 0.9563 - mae: 0.0990 - pearson_correlation: 0.7236 - euclidean_distance: 0.1585
Epoch 242/300
76/76 [==============================] - 0s 836us/step - loss: 0.0952 - accuracy: 0.9550 - mae: 0.0952 - pearson_correlation: 0.7315 - euclidean_distance: 0.1527
Epoch 243/300
76/76 [==============================] - 0s 864us/step - loss: 0.0994 - accuracy: 0.9541 - mae: 0.0994 - pearson_correlation: 0.7231 - euclidean_distance: 0.1591
Epoch 244/300
76/76 [==============================] - 0s 838us/step - loss: 0.1018 - accuracy: 0.9537 - mae: 0.1018 - pearson_correlation: 0.7187 - euclidean_distance: 0.1625
Epoch 245/300
76/76 [==============================] - 0s 836us/step - loss: 0.0987 - accuracy: 0.9550 - mae: 0.0987 - pearson_correlation: 0.7262 - euclidean_distance: 0.1578
Epoch 246/300
76/76 [==============================] - 0s 839us/step - loss: 0.0975 - accuracy: 0.9559 - mae: 0.0975 - pearson_correlation: 0.7266 - euclidean_distance: 0.1563
Epoch 247/300
76/76 [==============================] - 0s 837us/step - loss: 0.0968 - accuracy: 0.9559 - mae: 0.0968 - pearson_correlation: 0.7286 - euclidean_distance: 0.1553
Epoch 248/300
76/76 [==============================] - 0s 832us/step - loss: 0.0969 - accuracy: 0.9559 - mae: 0.0969 - pearson_correlation: 0.7325 - euclidean_distance: 0.1556
Epoch 249/300
76/76 [==============================] - 0s 853us/step - loss: 0.0975 - accuracy: 0.9550 - mae: 0.0975 - pearson_correlation: 0.7212 - euclidean_distance: 0.1565
Epoch 250/300
76/76 [==============================] - 0s 836us/step - loss: 0.0960 - accuracy: 0.9550 - mae: 0.0960 - pearson_correlation: 0.7314 - euclidean_distance: 0.1541
Epoch 251/300
76/76 [==============================] - 0s 833us/step - loss: 0.0964 - accuracy: 0.9546 - mae: 0.0964 - pearson_correlation: 0.7314 - euclidean_distance: 0.1546
Epoch 252/300
76/76 [==============================] - 0s 838us/step - loss: 0.1002 - accuracy: 0.9555 - mae: 0.1002 - pearson_correlation: 0.7214 - euclidean_distance: 0.1603
Epoch 253/300
76/76 [==============================] - 0s 835us/step - loss: 0.1011 - accuracy: 0.9559 - mae: 0.1011 - pearson_correlation: 0.7177 - euclidean_distance: 0.1617
Epoch 254/300
76/76 [==============================] - 0s 838us/step - loss: 0.0986 - accuracy: 0.9546 - mae: 0.0986 - pearson_correlation: 0.7323 - euclidean_distance: 0.1574
Epoch 255/300
76/76 [==============================] - 0s 831us/step - loss: 0.0965 - accuracy: 0.9555 - mae: 0.0965 - pearson_correlation: 0.7333 - euclidean_distance: 0.1546
Epoch 256/300
76/76 [==============================] - 0s 833us/step - loss: 0.0969 - accuracy: 0.9550 - mae: 0.0969 - pearson_correlation: 0.7317 - euclidean_distance: 0.1550
Epoch 257/300
76/76 [==============================] - 0s 840us/step - loss: 0.0992 - accuracy: 0.9559 - mae: 0.0992 - pearson_correlation: 0.7261 - euclidean_distance: 0.1583
Epoch 258/300
76/76 [==============================] - 0s 835us/step - loss: 0.0955 - accuracy: 0.9559 - mae: 0.0955 - pearson_correlation: 0.7334 - euclidean_distance: 0.1528
Epoch 259/300
76/76 [==============================] - 0s 837us/step - loss: 0.0973 - accuracy: 0.9559 - mae: 0.0973 - pearson_correlation: 0.7260 - euclidean_distance: 0.1558
Epoch 260/300
76/76 [==============================] - 0s 837us/step - loss: 0.0962 - accuracy: 0.9555 - mae: 0.0962 - pearson_correlation: 0.7312 - euclidean_distance: 0.1540
Epoch 261/300
76/76 [==============================] - 0s 837us/step - loss: 0.0963 - accuracy: 0.9559 - mae: 0.0963 - pearson_correlation: 0.7296 - euclidean_distance: 0.1546
Epoch 262/300
76/76 [==============================] - 0s 829us/step - loss: 0.0968 - accuracy: 0.9550 - mae: 0.0968 - pearson_correlation: 0.7309 - euclidean_distance: 0.1548
Epoch 263/300
76/76 [==============================] - 0s 834us/step - loss: 0.0997 - accuracy: 0.9550 - mae: 0.0997 - pearson_correlation: 0.7245 - euclidean_distance: 0.1600
Epoch 264/300
76/76 [==============================] - 0s 835us/step - loss: 0.0956 - accuracy: 0.9555 - mae: 0.0956 - pearson_correlation: 0.7374 - euclidean_distance: 0.1533
Epoch 265/300
76/76 [==============================] - 0s 834us/step - loss: 0.0953 - accuracy: 0.9550 - mae: 0.0953 - pearson_correlation: 0.7339 - euclidean_distance: 0.1530
Epoch 266/300
76/76 [==============================] - 0s 831us/step - loss: 0.0953 - accuracy: 0.9550 - mae: 0.0953 - pearson_correlation: 0.7365 - euclidean_distance: 0.1528
Epoch 267/300
76/76 [==============================] - 0s 835us/step - loss: 0.0929 - accuracy: 0.9550 - mae: 0.0929 - pearson_correlation: 0.7405 - euclidean_distance: 0.1494
Epoch 268/300
76/76 [==============================] - 0s 827us/step - loss: 0.0964 - accuracy: 0.9555 - mae: 0.0964 - pearson_correlation: 0.7351 - euclidean_distance: 0.1543
Epoch 269/300
76/76 [==============================] - 0s 834us/step - loss: 0.0999 - accuracy: 0.9550 - mae: 0.0999 - pearson_correlation: 0.7270 - euclidean_distance: 0.1600
Epoch 270/300
76/76 [==============================] - 0s 838us/step - loss: 0.0938 - accuracy: 0.9555 - mae: 0.0938 - pearson_correlation: 0.7412 - euclidean_distance: 0.1501
Epoch 271/300
76/76 [==============================] - 0s 832us/step - loss: 0.0934 - accuracy: 0.9559 - mae: 0.0934 - pearson_correlation: 0.7371 - euclidean_distance: 0.1505
Epoch 272/300
76/76 [==============================] - 0s 838us/step - loss: 0.0913 - accuracy: 0.9546 - mae: 0.0913 - pearson_correlation: 0.7430 - euclidean_distance: 0.1468
Epoch 273/300
76/76 [==============================] - 0s 831us/step - loss: 0.0954 - accuracy: 0.9559 - mae: 0.0954 - pearson_correlation: 0.7346 - euclidean_distance: 0.1526
Epoch 274/300
76/76 [==============================] - 0s 840us/step - loss: 0.0942 - accuracy: 0.9550 - mae: 0.0942 - pearson_correlation: 0.7372 - euclidean_distance: 0.1509
Epoch 275/300
76/76 [==============================] - 0s 836us/step - loss: 0.0948 - accuracy: 0.9559 - mae: 0.0948 - pearson_correlation: 0.7329 - euclidean_distance: 0.1524
Epoch 276/300
76/76 [==============================] - 0s 837us/step - loss: 0.0897 - accuracy: 0.9559 - mae: 0.0897 - pearson_correlation: 0.7485 - euclidean_distance: 0.1445
Epoch 277/300
76/76 [==============================] - 0s 831us/step - loss: 0.0938 - accuracy: 0.9559 - mae: 0.0938 - pearson_correlation: 0.7356 - euclidean_distance: 0.1504
Epoch 278/300
76/76 [==============================] - 0s 834us/step - loss: 0.0929 - accuracy: 0.9568 - mae: 0.0929 - pearson_correlation: 0.7429 - euclidean_distance: 0.1494
Epoch 279/300
76/76 [==============================] - 0s 837us/step - loss: 0.0945 - accuracy: 0.9555 - mae: 0.0945 - pearson_correlation: 0.7393 - euclidean_distance: 0.1518
Epoch 280/300
76/76 [==============================] - 0s 834us/step - loss: 0.0935 - accuracy: 0.9559 - mae: 0.0935 - pearson_correlation: 0.7353 - euclidean_distance: 0.1502
Epoch 281/300
76/76 [==============================] - 0s 834us/step - loss: 0.0988 - accuracy: 0.9559 - mae: 0.0988 - pearson_correlation: 0.7306 - euclidean_distance: 0.1576
Epoch 282/300
76/76 [==============================] - 0s 833us/step - loss: 0.0949 - accuracy: 0.9555 - mae: 0.0949 - pearson_correlation: 0.7397 - euclidean_distance: 0.1522
Epoch 283/300
76/76 [==============================] - 0s 830us/step - loss: 0.0923 - accuracy: 0.9555 - mae: 0.0923 - pearson_correlation: 0.7446 - euclidean_distance: 0.1479
Epoch 284/300
76/76 [==============================] - 0s 839us/step - loss: 0.0926 - accuracy: 0.9555 - mae: 0.0926 - pearson_correlation: 0.7394 - euclidean_distance: 0.1490
Epoch 285/300
76/76 [==============================] - 0s 828us/step - loss: 0.0939 - accuracy: 0.9555 - mae: 0.0939 - pearson_correlation: 0.7407 - euclidean_distance: 0.1513
Epoch 286/300
76/76 [==============================] - 0s 832us/step - loss: 0.0947 - accuracy: 0.9541 - mae: 0.0947 - pearson_correlation: 0.7389 - euclidean_distance: 0.1527
Epoch 287/300
76/76 [==============================] - 0s 831us/step - loss: 0.0942 - accuracy: 0.9550 - mae: 0.0942 - pearson_correlation: 0.7378 - euclidean_distance: 0.1512
Epoch 288/300
76/76 [==============================] - 0s 834us/step - loss: 0.0936 - accuracy: 0.9559 - mae: 0.0936 - pearson_correlation: 0.7350 - euclidean_distance: 0.1499
Epoch 289/300
76/76 [==============================] - 0s 836us/step - loss: 0.0921 - accuracy: 0.9555 - mae: 0.0921 - pearson_correlation: 0.7454 - euclidean_distance: 0.1482
Epoch 290/300
76/76 [==============================] - 0s 837us/step - loss: 0.0930 - accuracy: 0.9555 - mae: 0.0930 - pearson_correlation: 0.7386 - euclidean_distance: 0.1495
Epoch 291/300
76/76 [==============================] - 0s 853us/step - loss: 0.0915 - accuracy: 0.9559 - mae: 0.0915 - pearson_correlation: 0.7421 - euclidean_distance: 0.1473
Epoch 292/300
76/76 [==============================] - 0s 830us/step - loss: 0.0931 - accuracy: 0.9555 - mae: 0.0931 - pearson_correlation: 0.7407 - euclidean_distance: 0.1499
Epoch 293/300
76/76 [==============================] - 0s 836us/step - loss: 0.0936 - accuracy: 0.9559 - mae: 0.0936 - pearson_correlation: 0.7407 - euclidean_distance: 0.1499
Epoch 294/300
76/76 [==============================] - 0s 829us/step - loss: 0.0943 - accuracy: 0.9550 - mae: 0.0943 - pearson_correlation: 0.7330 - euclidean_distance: 0.1519
Epoch 295/300
76/76 [==============================] - 0s 831us/step - loss: 0.0922 - accuracy: 0.9555 - mae: 0.0922 - pearson_correlation: 0.7432 - euclidean_distance: 0.1481
Epoch 296/300
76/76 [==============================] - 0s 829us/step - loss: 0.0931 - accuracy: 0.9555 - mae: 0.0931 - pearson_correlation: 0.7430 - euclidean_distance: 0.1495
Epoch 297/300
76/76 [==============================] - 0s 833us/step - loss: 0.0960 - accuracy: 0.9555 - mae: 0.0960 - pearson_correlation: 0.7308 - euclidean_distance: 0.1541
Epoch 298/300
76/76 [==============================] - 0s 831us/step - loss: 0.0915 - accuracy: 0.9559 - mae: 0.0915 - pearson_correlation: 0.7440 - euclidean_distance: 0.1475
Epoch 299/300
76/76 [==============================] - 0s 833us/step - loss: 0.0945 - accuracy: 0.9559 - mae: 0.0945 - pearson_correlation: 0.7355 - euclidean_distance: 0.1519
Epoch 300/300
76/76 [==============================] - 0s 844us/step - loss: 0.0916 - accuracy: 0.9559 - mae: 0.0916 - pearson_correlation: 0.7450 - euclidean_distance: 0.1469
38/38 [==============================] - 0s 464us/step
Epoch 1/350
76/76 [==============================] - 1s 823us/step - loss: 0.3362 - accuracy: 0.8624 - mae: 0.3362 - pearson_correlation: 0.4276 - euclidean_distance: 0.5030
Epoch 2/350
76/76 [==============================] - 0s 832us/step - loss: 0.3282 - accuracy: 0.8478 - mae: 0.3282 - pearson_correlation: 0.4256 - euclidean_distance: 0.4922
Epoch 3/350
76/76 [==============================] - 0s 840us/step - loss: 0.3217 - accuracy: 0.8487 - mae: 0.3217 - pearson_correlation: 0.4211 - euclidean_distance: 0.4841
Epoch 4/350
76/76 [==============================] - 0s 841us/step - loss: 0.3141 - accuracy: 0.8438 - mae: 0.3141 - pearson_correlation: 0.4233 - euclidean_distance: 0.4735
Epoch 5/350
76/76 [==============================] - 0s 840us/step - loss: 0.3097 - accuracy: 0.8505 - mae: 0.3097 - pearson_correlation: 0.4214 - euclidean_distance: 0.4673
Epoch 6/350
76/76 [==============================] - 0s 841us/step - loss: 0.3019 - accuracy: 0.8337 - mae: 0.3019 - pearson_correlation: 0.4141 - euclidean_distance: 0.4576
Epoch 7/350
76/76 [==============================] - 0s 836us/step - loss: 0.2916 - accuracy: 0.8306 - mae: 0.2916 - pearson_correlation: 0.4183 - euclidean_distance: 0.4434
Epoch 8/350
76/76 [==============================] - 0s 835us/step - loss: 0.2878 - accuracy: 0.8438 - mae: 0.2878 - pearson_correlation: 0.4132 - euclidean_distance: 0.4375
Epoch 9/350
76/76 [==============================] - 0s 837us/step - loss: 0.2801 - accuracy: 0.8319 - mae: 0.2801 - pearson_correlation: 0.4174 - euclidean_distance: 0.4281
Epoch 10/350
76/76 [==============================] - 0s 869us/step - loss: 0.2721 - accuracy: 0.8337 - mae: 0.2721 - pearson_correlation: 0.4162 - euclidean_distance: 0.4172
Epoch 11/350
76/76 [==============================] - 0s 836us/step - loss: 0.2665 - accuracy: 0.8359 - mae: 0.2665 - pearson_correlation: 0.4177 - euclidean_distance: 0.4091
Epoch 12/350
76/76 [==============================] - 0s 832us/step - loss: 0.2581 - accuracy: 0.8275 - mae: 0.2581 - pearson_correlation: 0.4117 - euclidean_distance: 0.3976
Epoch 13/350
76/76 [==============================] - 0s 838us/step - loss: 0.2543 - accuracy: 0.8368 - mae: 0.2543 - pearson_correlation: 0.4103 - euclidean_distance: 0.3926
Epoch 14/350
76/76 [==============================] - 0s 834us/step - loss: 0.2472 - accuracy: 0.8240 - mae: 0.2472 - pearson_correlation: 0.4074 - euclidean_distance: 0.3831
Epoch 15/350
76/76 [==============================] - 0s 838us/step - loss: 0.2421 - accuracy: 0.8363 - mae: 0.2421 - pearson_correlation: 0.4080 - euclidean_distance: 0.3765
Epoch 16/350
76/76 [==============================] - 0s 835us/step - loss: 0.2346 - accuracy: 0.8306 - mae: 0.2346 - pearson_correlation: 0.4162 - euclidean_distance: 0.3658
Epoch 17/350
76/76 [==============================] - 0s 832us/step - loss: 0.2295 - accuracy: 0.8293 - mae: 0.2295 - pearson_correlation: 0.4175 - euclidean_distance: 0.3578
Epoch 18/350
76/76 [==============================] - 0s 836us/step - loss: 0.2247 - accuracy: 0.8390 - mae: 0.2247 - pearson_correlation: 0.4211 - euclidean_distance: 0.3512
Epoch 19/350
76/76 [==============================] - 0s 838us/step - loss: 0.2191 - accuracy: 0.8315 - mae: 0.2191 - pearson_correlation: 0.4181 - euclidean_distance: 0.3441
Epoch 20/350
76/76 [==============================] - 0s 835us/step - loss: 0.2137 - accuracy: 0.8350 - mae: 0.2137 - pearson_correlation: 0.4211 - euclidean_distance: 0.3361
Epoch 21/350
76/76 [==============================] - 0s 838us/step - loss: 0.2107 - accuracy: 0.8359 - mae: 0.2107 - pearson_correlation: 0.4236 - euclidean_distance: 0.3317
Epoch 22/350
76/76 [==============================] - 0s 838us/step - loss: 0.2047 - accuracy: 0.8377 - mae: 0.2047 - pearson_correlation: 0.4375 - euclidean_distance: 0.3235
Epoch 23/350
76/76 [==============================] - 0s 832us/step - loss: 0.2014 - accuracy: 0.8430 - mae: 0.2014 - pearson_correlation: 0.4359 - euclidean_distance: 0.3180
Epoch 24/350
76/76 [==============================] - 0s 833us/step - loss: 0.1971 - accuracy: 0.8513 - mae: 0.1971 - pearson_correlation: 0.4414 - euclidean_distance: 0.3123
Epoch 25/350
76/76 [==============================] - 0s 831us/step - loss: 0.1933 - accuracy: 0.8447 - mae: 0.1933 - pearson_correlation: 0.4381 - euclidean_distance: 0.3070
Epoch 26/350
76/76 [==============================] - 0s 829us/step - loss: 0.1906 - accuracy: 0.8491 - mae: 0.1906 - pearson_correlation: 0.4471 - euclidean_distance: 0.3025
Epoch 27/350
76/76 [==============================] - 0s 827us/step - loss: 0.1868 - accuracy: 0.8553 - mae: 0.1868 - pearson_correlation: 0.4530 - euclidean_distance: 0.2967
Epoch 28/350
76/76 [==============================] - 0s 833us/step - loss: 0.1833 - accuracy: 0.8588 - mae: 0.1833 - pearson_correlation: 0.4585 - euclidean_distance: 0.2911
Epoch 29/350
76/76 [==============================] - 0s 831us/step - loss: 0.1799 - accuracy: 0.8637 - mae: 0.1799 - pearson_correlation: 0.4602 - euclidean_distance: 0.2863
Epoch 30/350
76/76 [==============================] - 0s 832us/step - loss: 0.1766 - accuracy: 0.8659 - mae: 0.1766 - pearson_correlation: 0.4761 - euclidean_distance: 0.2806
Epoch 31/350
76/76 [==============================] - 0s 830us/step - loss: 0.1746 - accuracy: 0.8663 - mae: 0.1746 - pearson_correlation: 0.4703 - euclidean_distance: 0.2777
Epoch 32/350
76/76 [==============================] - 0s 831us/step - loss: 0.1714 - accuracy: 0.8712 - mae: 0.1714 - pearson_correlation: 0.4830 - euclidean_distance: 0.2738
Epoch 33/350
76/76 [==============================] - 0s 838us/step - loss: 0.1668 - accuracy: 0.8827 - mae: 0.1668 - pearson_correlation: 0.4887 - euclidean_distance: 0.2664
Epoch 34/350
76/76 [==============================] - 0s 837us/step - loss: 0.1660 - accuracy: 0.8738 - mae: 0.1660 - pearson_correlation: 0.4937 - euclidean_distance: 0.2640
Epoch 35/350
76/76 [==============================] - 0s 843us/step - loss: 0.1635 - accuracy: 0.8818 - mae: 0.1635 - pearson_correlation: 0.5025 - euclidean_distance: 0.2611
Epoch 36/350
76/76 [==============================] - 0s 834us/step - loss: 0.1620 - accuracy: 0.8875 - mae: 0.1620 - pearson_correlation: 0.4994 - euclidean_distance: 0.2580
Epoch 37/350
76/76 [==============================] - 0s 836us/step - loss: 0.1590 - accuracy: 0.8968 - mae: 0.1590 - pearson_correlation: 0.5091 - euclidean_distance: 0.2540
Epoch 38/350
76/76 [==============================] - 0s 830us/step - loss: 0.1575 - accuracy: 0.8933 - mae: 0.1575 - pearson_correlation: 0.5168 - euclidean_distance: 0.2509
Epoch 39/350
76/76 [==============================] - 0s 832us/step - loss: 0.1562 - accuracy: 0.9034 - mae: 0.1562 - pearson_correlation: 0.5191 - euclidean_distance: 0.2490
Epoch 40/350
76/76 [==============================] - 0s 830us/step - loss: 0.1545 - accuracy: 0.9127 - mae: 0.1545 - pearson_correlation: 0.5272 - euclidean_distance: 0.2461
Epoch 41/350
76/76 [==============================] - 0s 835us/step - loss: 0.1529 - accuracy: 0.9135 - mae: 0.1529 - pearson_correlation: 0.5232 - euclidean_distance: 0.2436
Epoch 42/350
76/76 [==============================] - 0s 839us/step - loss: 0.1518 - accuracy: 0.9127 - mae: 0.1518 - pearson_correlation: 0.5331 - euclidean_distance: 0.2422
Epoch 43/350
76/76 [==============================] - 0s 835us/step - loss: 0.1472 - accuracy: 0.9175 - mae: 0.1472 - pearson_correlation: 0.5384 - euclidean_distance: 0.2350
Epoch 44/350
76/76 [==============================] - 0s 836us/step - loss: 0.1475 - accuracy: 0.9140 - mae: 0.1475 - pearson_correlation: 0.5442 - euclidean_distance: 0.2355
Epoch 45/350
76/76 [==============================] - 0s 836us/step - loss: 0.1487 - accuracy: 0.9255 - mae: 0.1487 - pearson_correlation: 0.5420 - euclidean_distance: 0.2374
Epoch 46/350
76/76 [==============================] - 0s 830us/step - loss: 0.1456 - accuracy: 0.9255 - mae: 0.1456 - pearson_correlation: 0.5478 - euclidean_distance: 0.2323
Epoch 47/350
76/76 [==============================] - 0s 834us/step - loss: 0.1417 - accuracy: 0.9272 - mae: 0.1417 - pearson_correlation: 0.5655 - euclidean_distance: 0.2258
Epoch 48/350
76/76 [==============================] - 0s 834us/step - loss: 0.1427 - accuracy: 0.9316 - mae: 0.1427 - pearson_correlation: 0.5636 - euclidean_distance: 0.2273
Epoch 49/350
76/76 [==============================] - 0s 832us/step - loss: 0.1388 - accuracy: 0.9237 - mae: 0.1388 - pearson_correlation: 0.5722 - euclidean_distance: 0.2215
Epoch 50/350
76/76 [==============================] - 0s 837us/step - loss: 0.1396 - accuracy: 0.9338 - mae: 0.1396 - pearson_correlation: 0.5695 - euclidean_distance: 0.2234
Epoch 51/350
76/76 [==============================] - 0s 832us/step - loss: 0.1408 - accuracy: 0.9369 - mae: 0.1408 - pearson_correlation: 0.5676 - euclidean_distance: 0.2244
Epoch 52/350
76/76 [==============================] - 0s 832us/step - loss: 0.1391 - accuracy: 0.9325 - mae: 0.1391 - pearson_correlation: 0.5805 - euclidean_distance: 0.2221
Epoch 53/350
76/76 [==============================] - 0s 829us/step - loss: 0.1355 - accuracy: 0.9427 - mae: 0.1355 - pearson_correlation: 0.5860 - euclidean_distance: 0.2165
Epoch 54/350
76/76 [==============================] - 0s 830us/step - loss: 0.1364 - accuracy: 0.9413 - mae: 0.1364 - pearson_correlation: 0.5916 - euclidean_distance: 0.2167
Epoch 55/350
76/76 [==============================] - 0s 834us/step - loss: 0.1356 - accuracy: 0.9435 - mae: 0.1356 - pearson_correlation: 0.5928 - euclidean_distance: 0.2158
Epoch 56/350
76/76 [==============================] - 0s 833us/step - loss: 0.1330 - accuracy: 0.9374 - mae: 0.1330 - pearson_correlation: 0.5946 - euclidean_distance: 0.2125
Epoch 57/350
76/76 [==============================] - 0s 831us/step - loss: 0.1307 - accuracy: 0.9466 - mae: 0.1307 - pearson_correlation: 0.6018 - euclidean_distance: 0.2091
Epoch 58/350
76/76 [==============================] - 0s 833us/step - loss: 0.1310 - accuracy: 0.9457 - mae: 0.1310 - pearson_correlation: 0.6007 - euclidean_distance: 0.2089
Epoch 59/350
76/76 [==============================] - 0s 832us/step - loss: 0.1295 - accuracy: 0.9466 - mae: 0.1295 - pearson_correlation: 0.6066 - euclidean_distance: 0.2067
Epoch 60/350
76/76 [==============================] - 0s 830us/step - loss: 0.1287 - accuracy: 0.9497 - mae: 0.1287 - pearson_correlation: 0.6102 - euclidean_distance: 0.2058
Epoch 61/350
76/76 [==============================] - 0s 829us/step - loss: 0.1292 - accuracy: 0.9479 - mae: 0.1292 - pearson_correlation: 0.6096 - euclidean_distance: 0.2068
Epoch 62/350
76/76 [==============================] - 0s 832us/step - loss: 0.1306 - accuracy: 0.9471 - mae: 0.1306 - pearson_correlation: 0.6060 - euclidean_distance: 0.2083
Epoch 63/350
76/76 [==============================] - 0s 833us/step - loss: 0.1301 - accuracy: 0.9510 - mae: 0.1301 - pearson_correlation: 0.6159 - euclidean_distance: 0.2073
Epoch 64/350
76/76 [==============================] - 0s 831us/step - loss: 0.1265 - accuracy: 0.9497 - mae: 0.1265 - pearson_correlation: 0.6180 - euclidean_distance: 0.2023
Epoch 65/350
76/76 [==============================] - 0s 827us/step - loss: 0.1275 - accuracy: 0.9493 - mae: 0.1275 - pearson_correlation: 0.6258 - euclidean_distance: 0.2031
Epoch 66/350
76/76 [==============================] - 0s 836us/step - loss: 0.1268 - accuracy: 0.9479 - mae: 0.1268 - pearson_correlation: 0.6233 - euclidean_distance: 0.2034
Epoch 67/350
76/76 [==============================] - 0s 827us/step - loss: 0.1258 - accuracy: 0.9488 - mae: 0.1258 - pearson_correlation: 0.6242 - euclidean_distance: 0.2005
Epoch 68/350
76/76 [==============================] - 0s 824us/step - loss: 0.1233 - accuracy: 0.9502 - mae: 0.1233 - pearson_correlation: 0.6306 - euclidean_distance: 0.1967
Epoch 69/350
76/76 [==============================] - 0s 832us/step - loss: 0.1260 - accuracy: 0.9475 - mae: 0.1260 - pearson_correlation: 0.6316 - euclidean_distance: 0.2012
Epoch 70/350
76/76 [==============================] - 0s 836us/step - loss: 0.1224 - accuracy: 0.9519 - mae: 0.1224 - pearson_correlation: 0.6415 - euclidean_distance: 0.1958
Epoch 71/350
76/76 [==============================] - 0s 833us/step - loss: 0.1228 - accuracy: 0.9519 - mae: 0.1228 - pearson_correlation: 0.6334 - euclidean_distance: 0.1968
Epoch 72/350
76/76 [==============================] - 0s 837us/step - loss: 0.1224 - accuracy: 0.9532 - mae: 0.1224 - pearson_correlation: 0.6357 - euclidean_distance: 0.1959
Epoch 73/350
76/76 [==============================] - 0s 833us/step - loss: 0.1199 - accuracy: 0.9550 - mae: 0.1199 - pearson_correlation: 0.6422 - euclidean_distance: 0.1929
Epoch 74/350
76/76 [==============================] - 0s 830us/step - loss: 0.1227 - accuracy: 0.9515 - mae: 0.1227 - pearson_correlation: 0.6430 - euclidean_distance: 0.1970
Epoch 75/350
76/76 [==============================] - 0s 834us/step - loss: 0.1197 - accuracy: 0.9502 - mae: 0.1197 - pearson_correlation: 0.6470 - euclidean_distance: 0.1920
Epoch 76/350
76/76 [==============================] - 0s 829us/step - loss: 0.1180 - accuracy: 0.9515 - mae: 0.1180 - pearson_correlation: 0.6516 - euclidean_distance: 0.1896
Epoch 77/350
76/76 [==============================] - 0s 827us/step - loss: 0.1187 - accuracy: 0.9510 - mae: 0.1187 - pearson_correlation: 0.6491 - euclidean_distance: 0.1910
Epoch 78/350
76/76 [==============================] - 0s 831us/step - loss: 0.1178 - accuracy: 0.9524 - mae: 0.1178 - pearson_correlation: 0.6532 - euclidean_distance: 0.1893
Epoch 79/350
76/76 [==============================] - 0s 834us/step - loss: 0.1178 - accuracy: 0.9528 - mae: 0.1178 - pearson_correlation: 0.6546 - euclidean_distance: 0.1892
Epoch 80/350
76/76 [==============================] - 0s 830us/step - loss: 0.1173 - accuracy: 0.9528 - mae: 0.1173 - pearson_correlation: 0.6596 - euclidean_distance: 0.1884
Epoch 81/350
76/76 [==============================] - 0s 834us/step - loss: 0.1156 - accuracy: 0.9537 - mae: 0.1156 - pearson_correlation: 0.6620 - euclidean_distance: 0.1862
Epoch 82/350
76/76 [==============================] - 0s 898us/step - loss: 0.1163 - accuracy: 0.9537 - mae: 0.1163 - pearson_correlation: 0.6600 - euclidean_distance: 0.1866
Epoch 83/350
76/76 [==============================] - 0s 982us/step - loss: 0.1150 - accuracy: 0.9537 - mae: 0.1150 - pearson_correlation: 0.6672 - euclidean_distance: 0.1842
Epoch 84/350
76/76 [==============================] - 0s 911us/step - loss: 0.1151 - accuracy: 0.9528 - mae: 0.1151 - pearson_correlation: 0.6660 - euclidean_distance: 0.1846
Epoch 85/350
76/76 [==============================] - 0s 894us/step - loss: 0.1124 - accuracy: 0.9532 - mae: 0.1124 - pearson_correlation: 0.6715 - euclidean_distance: 0.1810
Epoch 86/350
76/76 [==============================] - 0s 972us/step - loss: 0.1140 - accuracy: 0.9528 - mae: 0.1140 - pearson_correlation: 0.6711 - euclidean_distance: 0.1833
Epoch 87/350
76/76 [==============================] - 0s 947us/step - loss: 0.1130 - accuracy: 0.9524 - mae: 0.1130 - pearson_correlation: 0.6750 - euclidean_distance: 0.1813
Epoch 88/350
76/76 [==============================] - 0s 910us/step - loss: 0.1157 - accuracy: 0.9541 - mae: 0.1157 - pearson_correlation: 0.6706 - euclidean_distance: 0.1849
Epoch 89/350
76/76 [==============================] - 0s 961us/step - loss: 0.1132 - accuracy: 0.9554 - mae: 0.1132 - pearson_correlation: 0.6730 - euclidean_distance: 0.1820
Epoch 90/350
76/76 [==============================] - 0s 930us/step - loss: 0.1131 - accuracy: 0.9541 - mae: 0.1131 - pearson_correlation: 0.6733 - euclidean_distance: 0.1815
Epoch 91/350
76/76 [==============================] - 0s 839us/step - loss: 0.1106 - accuracy: 0.9515 - mae: 0.1106 - pearson_correlation: 0.6813 - euclidean_distance: 0.1778
Epoch 92/350
76/76 [==============================] - 0s 843us/step - loss: 0.1118 - accuracy: 0.9524 - mae: 0.1118 - pearson_correlation: 0.6763 - euclidean_distance: 0.1797
Epoch 93/350
76/76 [==============================] - 0s 840us/step - loss: 0.1127 - accuracy: 0.9541 - mae: 0.1127 - pearson_correlation: 0.6758 - euclidean_distance: 0.1806
Epoch 94/350
76/76 [==============================] - 0s 841us/step - loss: 0.1100 - accuracy: 0.9537 - mae: 0.1100 - pearson_correlation: 0.6841 - euclidean_distance: 0.1774
Epoch 95/350
76/76 [==============================] - 0s 836us/step - loss: 0.1081 - accuracy: 0.9541 - mae: 0.1081 - pearson_correlation: 0.6886 - euclidean_distance: 0.1744
Epoch 96/350
76/76 [==============================] - 0s 841us/step - loss: 0.1110 - accuracy: 0.9532 - mae: 0.1110 - pearson_correlation: 0.6791 - euclidean_distance: 0.1784
Epoch 97/350
76/76 [==============================] - 0s 836us/step - loss: 0.1071 - accuracy: 0.9537 - mae: 0.1071 - pearson_correlation: 0.6880 - euclidean_distance: 0.1732
Epoch 98/350
76/76 [==============================] - 0s 833us/step - loss: 0.1094 - accuracy: 0.9554 - mae: 0.1094 - pearson_correlation: 0.6891 - euclidean_distance: 0.1758
Epoch 99/350
76/76 [==============================] - 0s 828us/step - loss: 0.1073 - accuracy: 0.9532 - mae: 0.1073 - pearson_correlation: 0.6914 - euclidean_distance: 0.1729
Epoch 100/350
76/76 [==============================] - 0s 838us/step - loss: 0.1104 - accuracy: 0.9537 - mae: 0.1104 - pearson_correlation: 0.6822 - euclidean_distance: 0.1775
Epoch 101/350
76/76 [==============================] - 0s 837us/step - loss: 0.1072 - accuracy: 0.9554 - mae: 0.1072 - pearson_correlation: 0.6925 - euclidean_distance: 0.1728
Epoch 102/350
76/76 [==============================] - 0s 835us/step - loss: 0.1079 - accuracy: 0.9554 - mae: 0.1079 - pearson_correlation: 0.6960 - euclidean_distance: 0.1737
Epoch 103/350
76/76 [==============================] - 0s 834us/step - loss: 0.1092 - accuracy: 0.9541 - mae: 0.1092 - pearson_correlation: 0.6930 - euclidean_distance: 0.1756
Epoch 104/350
76/76 [==============================] - 0s 834us/step - loss: 0.1056 - accuracy: 0.9550 - mae: 0.1056 - pearson_correlation: 0.6957 - euclidean_distance: 0.1705
Epoch 105/350
76/76 [==============================] - 0s 835us/step - loss: 0.1075 - accuracy: 0.9541 - mae: 0.1075 - pearson_correlation: 0.6917 - euclidean_distance: 0.1736
Epoch 106/350
76/76 [==============================] - 0s 830us/step - loss: 0.1066 - accuracy: 0.9546 - mae: 0.1066 - pearson_correlation: 0.6955 - euclidean_distance: 0.1714
Epoch 107/350
76/76 [==============================] - 0s 834us/step - loss: 0.1051 - accuracy: 0.9554 - mae: 0.1051 - pearson_correlation: 0.7036 - euclidean_distance: 0.1693
Epoch 108/350
76/76 [==============================] - 0s 840us/step - loss: 0.1038 - accuracy: 0.9546 - mae: 0.1038 - pearson_correlation: 0.7084 - euclidean_distance: 0.1670
Epoch 109/350
76/76 [==============================] - 0s 838us/step - loss: 0.1047 - accuracy: 0.9532 - mae: 0.1047 - pearson_correlation: 0.7017 - euclidean_distance: 0.1689
Epoch 110/350
76/76 [==============================] - 0s 831us/step - loss: 0.1051 - accuracy: 0.9550 - mae: 0.1051 - pearson_correlation: 0.7053 - euclidean_distance: 0.1699
Epoch 111/350
76/76 [==============================] - 0s 834us/step - loss: 0.1035 - accuracy: 0.9537 - mae: 0.1035 - pearson_correlation: 0.7066 - euclidean_distance: 0.1668
Epoch 112/350
76/76 [==============================] - 0s 835us/step - loss: 0.1050 - accuracy: 0.9550 - mae: 0.1050 - pearson_correlation: 0.7019 - euclidean_distance: 0.1691
Epoch 113/350
76/76 [==============================] - 0s 835us/step - loss: 0.1061 - accuracy: 0.9559 - mae: 0.1061 - pearson_correlation: 0.6988 - euclidean_distance: 0.1705
Epoch 114/350
76/76 [==============================] - 0s 835us/step - loss: 0.1057 - accuracy: 0.9550 - mae: 0.1057 - pearson_correlation: 0.7050 - euclidean_distance: 0.1703
Epoch 115/350
76/76 [==============================] - 0s 830us/step - loss: 0.1032 - accuracy: 0.9550 - mae: 0.1032 - pearson_correlation: 0.7062 - euclidean_distance: 0.1666
Epoch 116/350
76/76 [==============================] - 0s 827us/step - loss: 0.1020 - accuracy: 0.9554 - mae: 0.1020 - pearson_correlation: 0.7142 - euclidean_distance: 0.1648
Epoch 117/350
76/76 [==============================] - 0s 838us/step - loss: 0.1043 - accuracy: 0.9550 - mae: 0.1043 - pearson_correlation: 0.7052 - euclidean_distance: 0.1676
Epoch 118/350
76/76 [==============================] - 0s 834us/step - loss: 0.1026 - accuracy: 0.9554 - mae: 0.1026 - pearson_correlation: 0.7144 - euclidean_distance: 0.1656
Epoch 119/350
76/76 [==============================] - 0s 835us/step - loss: 0.1038 - accuracy: 0.9537 - mae: 0.1038 - pearson_correlation: 0.7047 - euclidean_distance: 0.1674
Epoch 120/350
76/76 [==============================] - 0s 830us/step - loss: 0.1033 - accuracy: 0.9541 - mae: 0.1033 - pearson_correlation: 0.7105 - euclidean_distance: 0.1666
Epoch 121/350
76/76 [==============================] - 0s 834us/step - loss: 0.1029 - accuracy: 0.9554 - mae: 0.1029 - pearson_correlation: 0.7134 - euclidean_distance: 0.1656
Epoch 122/350
76/76 [==============================] - 0s 834us/step - loss: 0.1012 - accuracy: 0.9554 - mae: 0.1012 - pearson_correlation: 0.7141 - euclidean_distance: 0.1627
Epoch 123/350
76/76 [==============================] - 0s 829us/step - loss: 0.1038 - accuracy: 0.9563 - mae: 0.1038 - pearson_correlation: 0.7054 - euclidean_distance: 0.1681
Epoch 124/350
76/76 [==============================] - 0s 837us/step - loss: 0.1053 - accuracy: 0.9550 - mae: 0.1053 - pearson_correlation: 0.7039 - euclidean_distance: 0.1694
Epoch 125/350
76/76 [==============================] - 0s 834us/step - loss: 0.1018 - accuracy: 0.9559 - mae: 0.1018 - pearson_correlation: 0.7172 - euclidean_distance: 0.1641
Epoch 126/350
76/76 [==============================] - 0s 829us/step - loss: 0.1015 - accuracy: 0.9559 - mae: 0.1015 - pearson_correlation: 0.7128 - euclidean_distance: 0.1630
Epoch 127/350
76/76 [==============================] - 0s 841us/step - loss: 0.1003 - accuracy: 0.9563 - mae: 0.1003 - pearson_correlation: 0.7173 - euclidean_distance: 0.1622
Epoch 128/350
76/76 [==============================] - 0s 830us/step - loss: 0.1003 - accuracy: 0.9554 - mae: 0.1003 - pearson_correlation: 0.7189 - euclidean_distance: 0.1617
Epoch 129/350
76/76 [==============================] - 0s 833us/step - loss: 0.0991 - accuracy: 0.9546 - mae: 0.0991 - pearson_correlation: 0.7239 - euclidean_distance: 0.1597
Epoch 130/350
76/76 [==============================] - 0s 822us/step - loss: 0.1002 - accuracy: 0.9559 - mae: 0.1002 - pearson_correlation: 0.7205 - euclidean_distance: 0.1620
Epoch 131/350
76/76 [==============================] - 0s 831us/step - loss: 0.0990 - accuracy: 0.9550 - mae: 0.0990 - pearson_correlation: 0.7258 - euclidean_distance: 0.1594
Epoch 132/350
76/76 [==============================] - 0s 832us/step - loss: 0.1008 - accuracy: 0.9563 - mae: 0.1008 - pearson_correlation: 0.7164 - euclidean_distance: 0.1631
Epoch 133/350
76/76 [==============================] - 0s 836us/step - loss: 0.0998 - accuracy: 0.9546 - mae: 0.0998 - pearson_correlation: 0.7166 - euclidean_distance: 0.1614
Epoch 134/350
76/76 [==============================] - 0s 834us/step - loss: 0.1003 - accuracy: 0.9554 - mae: 0.1003 - pearson_correlation: 0.7197 - euclidean_distance: 0.1620
Epoch 135/350
76/76 [==============================] - 0s 827us/step - loss: 0.0986 - accuracy: 0.9554 - mae: 0.0986 - pearson_correlation: 0.7199 - euclidean_distance: 0.1590
Epoch 136/350
76/76 [==============================] - 0s 835us/step - loss: 0.1012 - accuracy: 0.9563 - mae: 0.1012 - pearson_correlation: 0.7197 - euclidean_distance: 0.1632
Epoch 137/350
76/76 [==============================] - 0s 832us/step - loss: 0.0982 - accuracy: 0.9550 - mae: 0.0982 - pearson_correlation: 0.7213 - euclidean_distance: 0.1583
Epoch 138/350
76/76 [==============================] - 0s 831us/step - loss: 0.1014 - accuracy: 0.9563 - mae: 0.1014 - pearson_correlation: 0.7190 - euclidean_distance: 0.1630
Epoch 139/350
76/76 [==============================] - 0s 832us/step - loss: 0.0980 - accuracy: 0.9554 - mae: 0.0980 - pearson_correlation: 0.7271 - euclidean_distance: 0.1584
Epoch 140/350
76/76 [==============================] - 0s 823us/step - loss: 0.0966 - accuracy: 0.9559 - mae: 0.0966 - pearson_correlation: 0.7292 - euclidean_distance: 0.1562
Epoch 141/350
76/76 [==============================] - 0s 832us/step - loss: 0.0985 - accuracy: 0.9550 - mae: 0.0985 - pearson_correlation: 0.7264 - euclidean_distance: 0.1590
Epoch 142/350
76/76 [==============================] - 0s 842us/step - loss: 0.0980 - accuracy: 0.9554 - mae: 0.0980 - pearson_correlation: 0.7264 - euclidean_distance: 0.1582
Epoch 143/350
76/76 [==============================] - 0s 835us/step - loss: 0.0998 - accuracy: 0.9546 - mae: 0.0998 - pearson_correlation: 0.7230 - euclidean_distance: 0.1610
Epoch 144/350
76/76 [==============================] - 0s 823us/step - loss: 0.0945 - accuracy: 0.9554 - mae: 0.0945 - pearson_correlation: 0.7356 - euclidean_distance: 0.1531
Epoch 145/350
76/76 [==============================] - 0s 836us/step - loss: 0.0955 - accuracy: 0.9559 - mae: 0.0955 - pearson_correlation: 0.7304 - euclidean_distance: 0.1544
Epoch 146/350
76/76 [==============================] - 0s 838us/step - loss: 0.0982 - accuracy: 0.9554 - mae: 0.0982 - pearson_correlation: 0.7238 - euclidean_distance: 0.1587
Epoch 147/350
76/76 [==============================] - 0s 836us/step - loss: 0.0980 - accuracy: 0.9554 - mae: 0.0980 - pearson_correlation: 0.7272 - euclidean_distance: 0.1583
Epoch 148/350
76/76 [==============================] - 0s 833us/step - loss: 0.0953 - accuracy: 0.9559 - mae: 0.0953 - pearson_correlation: 0.7311 - euclidean_distance: 0.1547
Epoch 149/350
76/76 [==============================] - 0s 830us/step - loss: 0.0983 - accuracy: 0.9554 - mae: 0.0983 - pearson_correlation: 0.7264 - euclidean_distance: 0.1587
Epoch 150/350
76/76 [==============================] - 0s 832us/step - loss: 0.0994 - accuracy: 0.9550 - mae: 0.0994 - pearson_correlation: 0.7263 - euclidean_distance: 0.1601
Epoch 151/350
76/76 [==============================] - 0s 835us/step - loss: 0.0965 - accuracy: 0.9559 - mae: 0.0965 - pearson_correlation: 0.7343 - euclidean_distance: 0.1552
Epoch 152/350
76/76 [==============================] - 0s 831us/step - loss: 0.0966 - accuracy: 0.9559 - mae: 0.0966 - pearson_correlation: 0.7287 - euclidean_distance: 0.1557
Epoch 153/350
76/76 [==============================] - 0s 834us/step - loss: 0.0965 - accuracy: 0.9563 - mae: 0.0965 - pearson_correlation: 0.7339 - euclidean_distance: 0.1559
Epoch 154/350
76/76 [==============================] - 0s 836us/step - loss: 0.0966 - accuracy: 0.9563 - mae: 0.0966 - pearson_correlation: 0.7337 - euclidean_distance: 0.1555
Epoch 155/350
76/76 [==============================] - 0s 831us/step - loss: 0.0984 - accuracy: 0.9563 - mae: 0.0984 - pearson_correlation: 0.7294 - euclidean_distance: 0.1585
Epoch 156/350
76/76 [==============================] - 0s 836us/step - loss: 0.0952 - accuracy: 0.9563 - mae: 0.0952 - pearson_correlation: 0.7345 - euclidean_distance: 0.1539
Epoch 157/350
76/76 [==============================] - 0s 838us/step - loss: 0.0961 - accuracy: 0.9554 - mae: 0.0961 - pearson_correlation: 0.7308 - euclidean_distance: 0.1553
Epoch 158/350
76/76 [==============================] - 0s 915us/step - loss: 0.0962 - accuracy: 0.9550 - mae: 0.0962 - pearson_correlation: 0.7381 - euclidean_distance: 0.1550
Epoch 159/350
76/76 [==============================] - 0s 842us/step - loss: 0.0981 - accuracy: 0.9546 - mae: 0.0981 - pearson_correlation: 0.7321 - euclidean_distance: 0.1577
Epoch 160/350
76/76 [==============================] - 0s 844us/step - loss: 0.0956 - accuracy: 0.9559 - mae: 0.0956 - pearson_correlation: 0.7394 - euclidean_distance: 0.1540
Epoch 161/350
76/76 [==============================] - 0s 833us/step - loss: 0.0973 - accuracy: 0.9559 - mae: 0.0973 - pearson_correlation: 0.7286 - euclidean_distance: 0.1571
Epoch 162/350
76/76 [==============================] - 0s 835us/step - loss: 0.0951 - accuracy: 0.9559 - mae: 0.0951 - pearson_correlation: 0.7356 - euclidean_distance: 0.1533
Epoch 163/350
76/76 [==============================] - 0s 836us/step - loss: 0.0945 - accuracy: 0.9568 - mae: 0.0945 - pearson_correlation: 0.7350 - euclidean_distance: 0.1523
Epoch 164/350
76/76 [==============================] - 0s 831us/step - loss: 0.0935 - accuracy: 0.9554 - mae: 0.0935 - pearson_correlation: 0.7348 - euclidean_distance: 0.1516
Epoch 165/350
76/76 [==============================] - 0s 834us/step - loss: 0.0930 - accuracy: 0.9568 - mae: 0.0930 - pearson_correlation: 0.7401 - euclidean_distance: 0.1506
Epoch 166/350
76/76 [==============================] - 0s 841us/step - loss: 0.0915 - accuracy: 0.9563 - mae: 0.0915 - pearson_correlation: 0.7467 - euclidean_distance: 0.1483
Epoch 167/350
76/76 [==============================] - 0s 837us/step - loss: 0.0952 - accuracy: 0.9559 - mae: 0.0952 - pearson_correlation: 0.7340 - euclidean_distance: 0.1530
Epoch 168/350
76/76 [==============================] - 0s 833us/step - loss: 0.0930 - accuracy: 0.9554 - mae: 0.0930 - pearson_correlation: 0.7367 - euclidean_distance: 0.1501
Epoch 169/350
76/76 [==============================] - 0s 837us/step - loss: 0.0926 - accuracy: 0.9554 - mae: 0.0926 - pearson_correlation: 0.7385 - euclidean_distance: 0.1494
Epoch 170/350
76/76 [==============================] - 0s 831us/step - loss: 0.0926 - accuracy: 0.9550 - mae: 0.0926 - pearson_correlation: 0.7444 - euclidean_distance: 0.1498
Epoch 171/350
76/76 [==============================] - 0s 828us/step - loss: 0.0939 - accuracy: 0.9554 - mae: 0.0939 - pearson_correlation: 0.7372 - euclidean_distance: 0.1520
Epoch 172/350
76/76 [==============================] - 0s 838us/step - loss: 0.0929 - accuracy: 0.9563 - mae: 0.0929 - pearson_correlation: 0.7412 - euclidean_distance: 0.1502
Epoch 173/350
76/76 [==============================] - 0s 841us/step - loss: 0.0971 - accuracy: 0.9563 - mae: 0.0971 - pearson_correlation: 0.7288 - euclidean_distance: 0.1568
Epoch 174/350
76/76 [==============================] - 0s 830us/step - loss: 0.0942 - accuracy: 0.9559 - mae: 0.0942 - pearson_correlation: 0.7413 - euclidean_distance: 0.1518
Epoch 175/350
76/76 [==============================] - 0s 828us/step - loss: 0.0940 - accuracy: 0.9568 - mae: 0.0940 - pearson_correlation: 0.7387 - euclidean_distance: 0.1515
Epoch 176/350
76/76 [==============================] - 0s 832us/step - loss: 0.0941 - accuracy: 0.9559 - mae: 0.0941 - pearson_correlation: 0.7424 - euclidean_distance: 0.1515
Epoch 177/350
76/76 [==============================] - 0s 835us/step - loss: 0.0928 - accuracy: 0.9563 - mae: 0.0928 - pearson_correlation: 0.7432 - euclidean_distance: 0.1502
Epoch 178/350
76/76 [==============================] - 0s 831us/step - loss: 0.0950 - accuracy: 0.9559 - mae: 0.0950 - pearson_correlation: 0.7407 - euclidean_distance: 0.1535
Epoch 179/350
76/76 [==============================] - 0s 828us/step - loss: 0.0921 - accuracy: 0.9559 - mae: 0.0921 - pearson_correlation: 0.7448 - euclidean_distance: 0.1484
Epoch 180/350
76/76 [==============================] - 0s 833us/step - loss: 0.0940 - accuracy: 0.9559 - mae: 0.0940 - pearson_correlation: 0.7420 - euclidean_distance: 0.1519
Epoch 181/350
76/76 [==============================] - 0s 833us/step - loss: 0.0928 - accuracy: 0.9563 - mae: 0.0928 - pearson_correlation: 0.7453 - euclidean_distance: 0.1494
Epoch 182/350
76/76 [==============================] - 0s 833us/step - loss: 0.0940 - accuracy: 0.9563 - mae: 0.0940 - pearson_correlation: 0.7401 - euclidean_distance: 0.1514
Epoch 183/350
76/76 [==============================] - 0s 830us/step - loss: 0.0927 - accuracy: 0.9568 - mae: 0.0927 - pearson_correlation: 0.7446 - euclidean_distance: 0.1498
Epoch 184/350
76/76 [==============================] - 0s 828us/step - loss: 0.0925 - accuracy: 0.9559 - mae: 0.0925 - pearson_correlation: 0.7443 - euclidean_distance: 0.1496
Epoch 185/350
76/76 [==============================] - 0s 832us/step - loss: 0.0913 - accuracy: 0.9559 - mae: 0.0913 - pearson_correlation: 0.7492 - euclidean_distance: 0.1477
Epoch 186/350
76/76 [==============================] - 0s 833us/step - loss: 0.0899 - accuracy: 0.9563 - mae: 0.0899 - pearson_correlation: 0.7541 - euclidean_distance: 0.1454
Epoch 187/350
76/76 [==============================] - 0s 832us/step - loss: 0.0903 - accuracy: 0.9563 - mae: 0.0903 - pearson_correlation: 0.7431 - euclidean_distance: 0.1466
Epoch 188/350
76/76 [==============================] - 0s 834us/step - loss: 0.0909 - accuracy: 0.9559 - mae: 0.0909 - pearson_correlation: 0.7439 - euclidean_distance: 0.1475
Epoch 189/350
76/76 [==============================] - 0s 835us/step - loss: 0.0906 - accuracy: 0.9554 - mae: 0.0906 - pearson_correlation: 0.7442 - euclidean_distance: 0.1469
Epoch 190/350
76/76 [==============================] - 0s 837us/step - loss: 0.0909 - accuracy: 0.9563 - mae: 0.0909 - pearson_correlation: 0.7476 - euclidean_distance: 0.1464
Epoch 191/350
76/76 [==============================] - 0s 1ms/step - loss: 0.0913 - accuracy: 0.9559 - mae: 0.0913 - pearson_correlation: 0.7488 - euclidean_distance: 0.1474
Epoch 192/350
76/76 [==============================] - 0s 979us/step - loss: 0.0920 - accuracy: 0.9563 - mae: 0.0920 - pearson_correlation: 0.7439 - euclidean_distance: 0.1485
Epoch 193/350
76/76 [==============================] - 0s 859us/step - loss: 0.0924 - accuracy: 0.9550 - mae: 0.0924 - pearson_correlation: 0.7419 - euclidean_distance: 0.1491
Epoch 194/350
76/76 [==============================] - 0s 906us/step - loss: 0.0902 - accuracy: 0.9559 - mae: 0.0902 - pearson_correlation: 0.7487 - euclidean_distance: 0.1461
Epoch 195/350
76/76 [==============================] - 0s 832us/step - loss: 0.0906 - accuracy: 0.9563 - mae: 0.0906 - pearson_correlation: 0.7504 - euclidean_distance: 0.1461
Epoch 196/350
76/76 [==============================] - 0s 835us/step - loss: 0.0915 - accuracy: 0.9554 - mae: 0.0915 - pearson_correlation: 0.7444 - euclidean_distance: 0.1476
Epoch 197/350
76/76 [==============================] - 0s 830us/step - loss: 0.0914 - accuracy: 0.9563 - mae: 0.0914 - pearson_correlation: 0.7485 - euclidean_distance: 0.1477
Epoch 198/350
76/76 [==============================] - 0s 832us/step - loss: 0.0913 - accuracy: 0.9563 - mae: 0.0913 - pearson_correlation: 0.7504 - euclidean_distance: 0.1470
Epoch 199/350
76/76 [==============================] - 0s 839us/step - loss: 0.0959 - accuracy: 0.9559 - mae: 0.0959 - pearson_correlation: 0.7402 - euclidean_distance: 0.1537
Epoch 200/350
76/76 [==============================] - 0s 840us/step - loss: 0.0879 - accuracy: 0.9559 - mae: 0.0879 - pearson_correlation: 0.7513 - euclidean_distance: 0.1422
Epoch 201/350
76/76 [==============================] - 0s 835us/step - loss: 0.0881 - accuracy: 0.9559 - mae: 0.0881 - pearson_correlation: 0.7543 - euclidean_distance: 0.1423
Epoch 202/350
76/76 [==============================] - 0s 832us/step - loss: 0.0907 - accuracy: 0.9563 - mae: 0.0907 - pearson_correlation: 0.7502 - euclidean_distance: 0.1459
Epoch 203/350
76/76 [==============================] - 0s 835us/step - loss: 0.0888 - accuracy: 0.9563 - mae: 0.0888 - pearson_correlation: 0.7543 - euclidean_distance: 0.1435
Epoch 204/350
76/76 [==============================] - 0s 836us/step - loss: 0.0896 - accuracy: 0.9559 - mae: 0.0896 - pearson_correlation: 0.7511 - euclidean_distance: 0.1446
Epoch 205/350
76/76 [==============================] - 0s 828us/step - loss: 0.0885 - accuracy: 0.9563 - mae: 0.0885 - pearson_correlation: 0.7583 - euclidean_distance: 0.1429
Epoch 206/350
76/76 [==============================] - 0s 830us/step - loss: 0.0873 - accuracy: 0.9559 - mae: 0.0873 - pearson_correlation: 0.7565 - euclidean_distance: 0.1415
Epoch 207/350
76/76 [==============================] - 0s 826us/step - loss: 0.0914 - accuracy: 0.9559 - mae: 0.0914 - pearson_correlation: 0.7510 - euclidean_distance: 0.1471
Epoch 208/350
76/76 [==============================] - 0s 837us/step - loss: 0.0885 - accuracy: 0.9563 - mae: 0.0885 - pearson_correlation: 0.7553 - euclidean_distance: 0.1430
Epoch 209/350
76/76 [==============================] - 0s 835us/step - loss: 0.0895 - accuracy: 0.9563 - mae: 0.0895 - pearson_correlation: 0.7534 - euclidean_distance: 0.1446
Epoch 210/350
76/76 [==============================] - 0s 836us/step - loss: 0.0882 - accuracy: 0.9559 - mae: 0.0882 - pearson_correlation: 0.7556 - euclidean_distance: 0.1429
Epoch 211/350
76/76 [==============================] - 0s 831us/step - loss: 0.0883 - accuracy: 0.9554 - mae: 0.0883 - pearson_correlation: 0.7543 - euclidean_distance: 0.1428
Epoch 212/350
76/76 [==============================] - 0s 830us/step - loss: 0.0894 - accuracy: 0.9563 - mae: 0.0894 - pearson_correlation: 0.7562 - euclidean_distance: 0.1440
Epoch 213/350
76/76 [==============================] - 0s 826us/step - loss: 0.0915 - accuracy: 0.9563 - mae: 0.0915 - pearson_correlation: 0.7459 - euclidean_distance: 0.1480
Epoch 214/350
76/76 [==============================] - 0s 820us/step - loss: 0.0871 - accuracy: 0.9559 - mae: 0.0871 - pearson_correlation: 0.7632 - euclidean_distance: 0.1405
Epoch 215/350
76/76 [==============================] - 0s 833us/step - loss: 0.0879 - accuracy: 0.9563 - mae: 0.0879 - pearson_correlation: 0.7559 - euclidean_distance: 0.1424
Epoch 216/350
76/76 [==============================] - 0s 826us/step - loss: 0.0880 - accuracy: 0.9559 - mae: 0.0880 - pearson_correlation: 0.7582 - euclidean_distance: 0.1422
Epoch 217/350
76/76 [==============================] - 0s 828us/step - loss: 0.0878 - accuracy: 0.9563 - mae: 0.0878 - pearson_correlation: 0.7568 - euclidean_distance: 0.1417
Epoch 218/350
76/76 [==============================] - 0s 827us/step - loss: 0.0877 - accuracy: 0.9559 - mae: 0.0877 - pearson_correlation: 0.7581 - euclidean_distance: 0.1420
Epoch 219/350
76/76 [==============================] - 0s 822us/step - loss: 0.0903 - accuracy: 0.9563 - mae: 0.0903 - pearson_correlation: 0.7542 - euclidean_distance: 0.1449
Epoch 220/350
76/76 [==============================] - 0s 821us/step - loss: 0.0884 - accuracy: 0.9563 - mae: 0.0884 - pearson_correlation: 0.7533 - euclidean_distance: 0.1430
Epoch 221/350
76/76 [==============================] - 0s 817us/step - loss: 0.0884 - accuracy: 0.9563 - mae: 0.0884 - pearson_correlation: 0.7575 - euclidean_distance: 0.1430
Epoch 222/350
76/76 [==============================] - 0s 821us/step - loss: 0.0868 - accuracy: 0.9563 - mae: 0.0868 - pearson_correlation: 0.7595 - euclidean_distance: 0.1404
Epoch 223/350
76/76 [==============================] - 0s 832us/step - loss: 0.0871 - accuracy: 0.9563 - mae: 0.0871 - pearson_correlation: 0.7612 - euclidean_distance: 0.1406
Epoch 224/350
76/76 [==============================] - 0s 828us/step - loss: 0.0872 - accuracy: 0.9563 - mae: 0.0872 - pearson_correlation: 0.7582 - euclidean_distance: 0.1413
Epoch 225/350
76/76 [==============================] - 0s 824us/step - loss: 0.0870 - accuracy: 0.9563 - mae: 0.0870 - pearson_correlation: 0.7559 - euclidean_distance: 0.1403
Epoch 226/350
76/76 [==============================] - 0s 825us/step - loss: 0.0888 - accuracy: 0.9563 - mae: 0.0888 - pearson_correlation: 0.7525 - euclidean_distance: 0.1438
Epoch 227/350
76/76 [==============================] - 0s 826us/step - loss: 0.0877 - accuracy: 0.9559 - mae: 0.0877 - pearson_correlation: 0.7585 - euclidean_distance: 0.1418
Epoch 228/350
76/76 [==============================] - 0s 822us/step - loss: 0.0896 - accuracy: 0.9559 - mae: 0.0896 - pearson_correlation: 0.7562 - euclidean_distance: 0.1439
Epoch 229/350
76/76 [==============================] - 0s 825us/step - loss: 0.0885 - accuracy: 0.9563 - mae: 0.0885 - pearson_correlation: 0.7552 - euclidean_distance: 0.1434
Epoch 230/350
76/76 [==============================] - 0s 840us/step - loss: 0.0910 - accuracy: 0.9563 - mae: 0.0910 - pearson_correlation: 0.7481 - euclidean_distance: 0.1461
Epoch 231/350
76/76 [==============================] - 0s 831us/step - loss: 0.0878 - accuracy: 0.9563 - mae: 0.0878 - pearson_correlation: 0.7608 - euclidean_distance: 0.1422
Epoch 232/350
76/76 [==============================] - 0s 836us/step - loss: 0.0872 - accuracy: 0.9559 - mae: 0.0872 - pearson_correlation: 0.7584 - euclidean_distance: 0.1410
Epoch 233/350
76/76 [==============================] - 0s 833us/step - loss: 0.0875 - accuracy: 0.9563 - mae: 0.0875 - pearson_correlation: 0.7613 - euclidean_distance: 0.1409
Epoch 234/350
76/76 [==============================] - 0s 836us/step - loss: 0.0865 - accuracy: 0.9563 - mae: 0.0865 - pearson_correlation: 0.7617 - euclidean_distance: 0.1393
Epoch 235/350
76/76 [==============================] - 0s 840us/step - loss: 0.0877 - accuracy: 0.9563 - mae: 0.0877 - pearson_correlation: 0.7616 - euclidean_distance: 0.1411
Epoch 236/350
76/76 [==============================] - 0s 832us/step - loss: 0.0859 - accuracy: 0.9559 - mae: 0.0859 - pearson_correlation: 0.7602 - euclidean_distance: 0.1393
Epoch 237/350
76/76 [==============================] - 0s 831us/step - loss: 0.0863 - accuracy: 0.9563 - mae: 0.0863 - pearson_correlation: 0.7622 - euclidean_distance: 0.1391
Epoch 238/350
76/76 [==============================] - 0s 836us/step - loss: 0.0870 - accuracy: 0.9563 - mae: 0.0870 - pearson_correlation: 0.7614 - euclidean_distance: 0.1405
Epoch 239/350
76/76 [==============================] - 0s 873us/step - loss: 0.0853 - accuracy: 0.9563 - mae: 0.0853 - pearson_correlation: 0.7635 - euclidean_distance: 0.1382
Epoch 240/350
76/76 [==============================] - 0s 842us/step - loss: 0.0862 - accuracy: 0.9563 - mae: 0.0862 - pearson_correlation: 0.7623 - euclidean_distance: 0.1392
Epoch 241/350
76/76 [==============================] - 0s 833us/step - loss: 0.0862 - accuracy: 0.9563 - mae: 0.0862 - pearson_correlation: 0.7656 - euclidean_distance: 0.1394
Epoch 242/350
76/76 [==============================] - 0s 831us/step - loss: 0.0847 - accuracy: 0.9563 - mae: 0.0847 - pearson_correlation: 0.7629 - euclidean_distance: 0.1374
Epoch 243/350
76/76 [==============================] - 0s 835us/step - loss: 0.0863 - accuracy: 0.9563 - mae: 0.0863 - pearson_correlation: 0.7580 - euclidean_distance: 0.1400
Epoch 244/350
76/76 [==============================] - 0s 834us/step - loss: 0.0848 - accuracy: 0.9563 - mae: 0.0848 - pearson_correlation: 0.7639 - euclidean_distance: 0.1380
Epoch 245/350
76/76 [==============================] - 0s 831us/step - loss: 0.0879 - accuracy: 0.9563 - mae: 0.0879 - pearson_correlation: 0.7585 - euclidean_distance: 0.1417
Epoch 246/350
76/76 [==============================] - 0s 831us/step - loss: 0.0863 - accuracy: 0.9563 - mae: 0.0863 - pearson_correlation: 0.7595 - euclidean_distance: 0.1399
Epoch 247/350
76/76 [==============================] - 0s 841us/step - loss: 0.0851 - accuracy: 0.9563 - mae: 0.0851 - pearson_correlation: 0.7637 - euclidean_distance: 0.1376
Epoch 248/350
76/76 [==============================] - 0s 839us/step - loss: 0.0884 - accuracy: 0.9559 - mae: 0.0884 - pearson_correlation: 0.7573 - euclidean_distance: 0.1423
Epoch 249/350
76/76 [==============================] - 0s 837us/step - loss: 0.0858 - accuracy: 0.9563 - mae: 0.0858 - pearson_correlation: 0.7637 - euclidean_distance: 0.1387
Epoch 250/350
76/76 [==============================] - 0s 838us/step - loss: 0.0847 - accuracy: 0.9563 - mae: 0.0847 - pearson_correlation: 0.7653 - euclidean_distance: 0.1366
Epoch 251/350
76/76 [==============================] - 0s 827us/step - loss: 0.0863 - accuracy: 0.9563 - mae: 0.0863 - pearson_correlation: 0.7574 - euclidean_distance: 0.1394
Epoch 252/350
76/76 [==============================] - 0s 890us/step - loss: 0.0854 - accuracy: 0.9563 - mae: 0.0854 - pearson_correlation: 0.7620 - euclidean_distance: 0.1379
Epoch 253/350
76/76 [==============================] - 0s 837us/step - loss: 0.0858 - accuracy: 0.9563 - mae: 0.0858 - pearson_correlation: 0.7627 - euclidean_distance: 0.1382
Epoch 254/350
76/76 [==============================] - 0s 834us/step - loss: 0.0892 - accuracy: 0.9563 - mae: 0.0892 - pearson_correlation: 0.7532 - euclidean_distance: 0.1444
Epoch 255/350
76/76 [==============================] - 0s 828us/step - loss: 0.0871 - accuracy: 0.9563 - mae: 0.0871 - pearson_correlation: 0.7580 - euclidean_distance: 0.1406
Epoch 256/350
76/76 [==============================] - 0s 838us/step - loss: 0.0845 - accuracy: 0.9563 - mae: 0.0845 - pearson_correlation: 0.7664 - euclidean_distance: 0.1368
Epoch 257/350
76/76 [==============================] - 0s 834us/step - loss: 0.0861 - accuracy: 0.9563 - mae: 0.0861 - pearson_correlation: 0.7618 - euclidean_distance: 0.1387
Epoch 258/350
76/76 [==============================] - 0s 834us/step - loss: 0.0855 - accuracy: 0.9563 - mae: 0.0855 - pearson_correlation: 0.7690 - euclidean_distance: 0.1374
Epoch 259/350
76/76 [==============================] - 0s 834us/step - loss: 0.0848 - accuracy: 0.9563 - mae: 0.0848 - pearson_correlation: 0.7638 - euclidean_distance: 0.1368
Epoch 260/350
76/76 [==============================] - 0s 830us/step - loss: 0.0844 - accuracy: 0.9563 - mae: 0.0844 - pearson_correlation: 0.7704 - euclidean_distance: 0.1362
Epoch 261/350
76/76 [==============================] - 0s 826us/step - loss: 0.0869 - accuracy: 0.9559 - mae: 0.0869 - pearson_correlation: 0.7619 - euclidean_distance: 0.1402
Epoch 262/350
76/76 [==============================] - 0s 834us/step - loss: 0.0819 - accuracy: 0.9563 - mae: 0.0819 - pearson_correlation: 0.7695 - euclidean_distance: 0.1323
Epoch 263/350
76/76 [==============================] - 0s 826us/step - loss: 0.0855 - accuracy: 0.9554 - mae: 0.0855 - pearson_correlation: 0.7643 - euclidean_distance: 0.1379
Epoch 264/350
76/76 [==============================] - 0s 832us/step - loss: 0.0861 - accuracy: 0.9563 - mae: 0.0861 - pearson_correlation: 0.7612 - euclidean_distance: 0.1390
Epoch 265/350
76/76 [==============================] - 0s 828us/step - loss: 0.0845 - accuracy: 0.9563 - mae: 0.0845 - pearson_correlation: 0.7636 - euclidean_distance: 0.1372
Epoch 266/350
76/76 [==============================] - 0s 840us/step - loss: 0.0840 - accuracy: 0.9568 - mae: 0.0840 - pearson_correlation: 0.7626 - euclidean_distance: 0.1358
Epoch 267/350
76/76 [==============================] - 0s 835us/step - loss: 0.0837 - accuracy: 0.9563 - mae: 0.0837 - pearson_correlation: 0.7667 - euclidean_distance: 0.1358
Epoch 268/350
76/76 [==============================] - 0s 831us/step - loss: 0.0851 - accuracy: 0.9563 - mae: 0.0851 - pearson_correlation: 0.7652 - euclidean_distance: 0.1369
Epoch 269/350
76/76 [==============================] - 0s 834us/step - loss: 0.0862 - accuracy: 0.9550 - mae: 0.0862 - pearson_correlation: 0.7633 - euclidean_distance: 0.1385
Epoch 270/350
76/76 [==============================] - 0s 833us/step - loss: 0.0822 - accuracy: 0.9563 - mae: 0.0822 - pearson_correlation: 0.7682 - euclidean_distance: 0.1334
Epoch 271/350
76/76 [==============================] - 0s 831us/step - loss: 0.0859 - accuracy: 0.9563 - mae: 0.0859 - pearson_correlation: 0.7638 - euclidean_distance: 0.1383
Epoch 272/350
76/76 [==============================] - 0s 828us/step - loss: 0.0835 - accuracy: 0.9563 - mae: 0.0835 - pearson_correlation: 0.7715 - euclidean_distance: 0.1347
Epoch 273/350
76/76 [==============================] - 0s 828us/step - loss: 0.0808 - accuracy: 0.9563 - mae: 0.0808 - pearson_correlation: 0.7715 - euclidean_distance: 0.1313
Epoch 274/350
76/76 [==============================] - 0s 825us/step - loss: 0.0825 - accuracy: 0.9563 - mae: 0.0825 - pearson_correlation: 0.7716 - euclidean_distance: 0.1331
Epoch 275/350
76/76 [==============================] - 0s 835us/step - loss: 0.0838 - accuracy: 0.9563 - mae: 0.0838 - pearson_correlation: 0.7713 - euclidean_distance: 0.1352
Epoch 276/350
76/76 [==============================] - 0s 857us/step - loss: 0.0862 - accuracy: 0.9563 - mae: 0.0862 - pearson_correlation: 0.7605 - euclidean_distance: 0.1393
Epoch 277/350
76/76 [==============================] - 0s 913us/step - loss: 0.0855 - accuracy: 0.9563 - mae: 0.0855 - pearson_correlation: 0.7668 - euclidean_distance: 0.1378
Epoch 278/350
76/76 [==============================] - 0s 834us/step - loss: 0.0847 - accuracy: 0.9563 - mae: 0.0847 - pearson_correlation: 0.7635 - euclidean_distance: 0.1374
Epoch 279/350
76/76 [==============================] - 0s 837us/step - loss: 0.0827 - accuracy: 0.9563 - mae: 0.0827 - pearson_correlation: 0.7737 - euclidean_distance: 0.1337
Epoch 280/350
76/76 [==============================] - 0s 823us/step - loss: 0.0827 - accuracy: 0.9563 - mae: 0.0827 - pearson_correlation: 0.7728 - euclidean_distance: 0.1337
Epoch 281/350
76/76 [==============================] - 0s 837us/step - loss: 0.0839 - accuracy: 0.9563 - mae: 0.0839 - pearson_correlation: 0.7701 - euclidean_distance: 0.1354
Epoch 282/350
76/76 [==============================] - 0s 830us/step - loss: 0.0814 - accuracy: 0.9563 - mae: 0.0814 - pearson_correlation: 0.7730 - euclidean_distance: 0.1320
Epoch 283/350
76/76 [==============================] - 0s 833us/step - loss: 0.0869 - accuracy: 0.9563 - mae: 0.0869 - pearson_correlation: 0.7646 - euclidean_distance: 0.1400
Epoch 284/350
76/76 [==============================] - 0s 824us/step - loss: 0.0838 - accuracy: 0.9563 - mae: 0.0838 - pearson_correlation: 0.7686 - euclidean_distance: 0.1353
Epoch 285/350
76/76 [==============================] - 0s 827us/step - loss: 0.0824 - accuracy: 0.9563 - mae: 0.0824 - pearson_correlation: 0.7729 - euclidean_distance: 0.1331
Epoch 286/350
76/76 [==============================] - 0s 826us/step - loss: 0.0839 - accuracy: 0.9563 - mae: 0.0839 - pearson_correlation: 0.7678 - euclidean_distance: 0.1352
Epoch 287/350
76/76 [==============================] - 0s 834us/step - loss: 0.0832 - accuracy: 0.9559 - mae: 0.0832 - pearson_correlation: 0.7691 - euclidean_distance: 0.1345
Epoch 288/350
76/76 [==============================] - 0s 824us/step - loss: 0.0847 - accuracy: 0.9563 - mae: 0.0847 - pearson_correlation: 0.7695 - euclidean_distance: 0.1371
Epoch 289/350
76/76 [==============================] - 0s 831us/step - loss: 0.0813 - accuracy: 0.9563 - mae: 0.0813 - pearson_correlation: 0.7765 - euclidean_distance: 0.1312
Epoch 290/350
76/76 [==============================] - 0s 829us/step - loss: 0.0851 - accuracy: 0.9563 - mae: 0.0851 - pearson_correlation: 0.7688 - euclidean_distance: 0.1371
Epoch 291/350
76/76 [==============================] - 0s 836us/step - loss: 0.0846 - accuracy: 0.9563 - mae: 0.0846 - pearson_correlation: 0.7655 - euclidean_distance: 0.1364
Epoch 292/350
76/76 [==============================] - 0s 831us/step - loss: 0.0826 - accuracy: 0.9563 - mae: 0.0826 - pearson_correlation: 0.7763 - euclidean_distance: 0.1331
Epoch 293/350
76/76 [==============================] - 0s 830us/step - loss: 0.0832 - accuracy: 0.9563 - mae: 0.0832 - pearson_correlation: 0.7681 - euclidean_distance: 0.1349
Epoch 294/350
76/76 [==============================] - 0s 831us/step - loss: 0.0815 - accuracy: 0.9563 - mae: 0.0815 - pearson_correlation: 0.7741 - euclidean_distance: 0.1318
Epoch 295/350
76/76 [==============================] - 0s 827us/step - loss: 0.0808 - accuracy: 0.9563 - mae: 0.0808 - pearson_correlation: 0.7759 - euclidean_distance: 0.1307
Epoch 296/350
76/76 [==============================] - 0s 870us/step - loss: 0.0830 - accuracy: 0.9563 - mae: 0.0830 - pearson_correlation: 0.7731 - euclidean_distance: 0.1345
Epoch 297/350
76/76 [==============================] - 0s 846us/step - loss: 0.0817 - accuracy: 0.9563 - mae: 0.0817 - pearson_correlation: 0.7745 - euclidean_distance: 0.1323
Epoch 298/350
76/76 [==============================] - 0s 837us/step - loss: 0.0804 - accuracy: 0.9559 - mae: 0.0804 - pearson_correlation: 0.7764 - euclidean_distance: 0.1302
Epoch 299/350
76/76 [==============================] - 0s 831us/step - loss: 0.0797 - accuracy: 0.9563 - mae: 0.0797 - pearson_correlation: 0.7761 - euclidean_distance: 0.1292
Epoch 300/350
76/76 [==============================] - 0s 828us/step - loss: 0.0821 - accuracy: 0.9563 - mae: 0.0821 - pearson_correlation: 0.7749 - euclidean_distance: 0.1328
Epoch 301/350
76/76 [==============================] - 0s 833us/step - loss: 0.0828 - accuracy: 0.9563 - mae: 0.0828 - pearson_correlation: 0.7700 - euclidean_distance: 0.1338
Epoch 302/350
76/76 [==============================] - 0s 831us/step - loss: 0.0818 - accuracy: 0.9563 - mae: 0.0818 - pearson_correlation: 0.7704 - euclidean_distance: 0.1330
Epoch 303/350
76/76 [==============================] - 0s 828us/step - loss: 0.0821 - accuracy: 0.9563 - mae: 0.0821 - pearson_correlation: 0.7695 - euclidean_distance: 0.1323
Epoch 304/350
76/76 [==============================] - 0s 827us/step - loss: 0.0804 - accuracy: 0.9563 - mae: 0.0804 - pearson_correlation: 0.7739 - euclidean_distance: 0.1304
Epoch 305/350
76/76 [==============================] - 0s 833us/step - loss: 0.0842 - accuracy: 0.9563 - mae: 0.0842 - pearson_correlation: 0.7762 - euclidean_distance: 0.1355
Epoch 306/350
76/76 [==============================] - 0s 831us/step - loss: 0.0821 - accuracy: 0.9563 - mae: 0.0821 - pearson_correlation: 0.7711 - euclidean_distance: 0.1334
Epoch 307/350
76/76 [==============================] - 0s 830us/step - loss: 0.0827 - accuracy: 0.9563 - mae: 0.0827 - pearson_correlation: 0.7718 - euclidean_distance: 0.1335
Epoch 308/350
76/76 [==============================] - 0s 834us/step - loss: 0.0837 - accuracy: 0.9563 - mae: 0.0837 - pearson_correlation: 0.7656 - euclidean_distance: 0.1355
Epoch 309/350
76/76 [==============================] - 0s 827us/step - loss: 0.0826 - accuracy: 0.9563 - mae: 0.0826 - pearson_correlation: 0.7712 - euclidean_distance: 0.1335
Epoch 310/350
76/76 [==============================] - 0s 828us/step - loss: 0.0827 - accuracy: 0.9563 - mae: 0.0827 - pearson_correlation: 0.7748 - euclidean_distance: 0.1338
Epoch 311/350
76/76 [==============================] - 0s 829us/step - loss: 0.0830 - accuracy: 0.9563 - mae: 0.0830 - pearson_correlation: 0.7740 - euclidean_distance: 0.1339
Epoch 312/350
76/76 [==============================] - 0s 834us/step - loss: 0.0844 - accuracy: 0.9563 - mae: 0.0844 - pearson_correlation: 0.7696 - euclidean_distance: 0.1361
Epoch 313/350
76/76 [==============================] - 0s 831us/step - loss: 0.0820 - accuracy: 0.9563 - mae: 0.0820 - pearson_correlation: 0.7696 - euclidean_distance: 0.1323
Epoch 314/350
76/76 [==============================] - 0s 831us/step - loss: 0.0819 - accuracy: 0.9563 - mae: 0.0819 - pearson_correlation: 0.7739 - euclidean_distance: 0.1325
Epoch 315/350
76/76 [==============================] - 0s 831us/step - loss: 0.0839 - accuracy: 0.9563 - mae: 0.0839 - pearson_correlation: 0.7691 - euclidean_distance: 0.1348
Epoch 316/350
76/76 [==============================] - 0s 833us/step - loss: 0.0796 - accuracy: 0.9559 - mae: 0.0796 - pearson_correlation: 0.7803 - euclidean_distance: 0.1286
Epoch 317/350
76/76 [==============================] - 0s 826us/step - loss: 0.0810 - accuracy: 0.9563 - mae: 0.0810 - pearson_correlation: 0.7778 - euclidean_distance: 0.1311
Epoch 318/350
76/76 [==============================] - 0s 834us/step - loss: 0.0815 - accuracy: 0.9563 - mae: 0.0815 - pearson_correlation: 0.7797 - euclidean_distance: 0.1319
Epoch 319/350
76/76 [==============================] - 0s 827us/step - loss: 0.0812 - accuracy: 0.9563 - mae: 0.0812 - pearson_correlation: 0.7757 - euclidean_distance: 0.1312
Epoch 320/350
76/76 [==============================] - 0s 818us/step - loss: 0.0802 - accuracy: 0.9563 - mae: 0.0802 - pearson_correlation: 0.7767 - euclidean_distance: 0.1301
Epoch 321/350
76/76 [==============================] - 0s 816us/step - loss: 0.0819 - accuracy: 0.9563 - mae: 0.0819 - pearson_correlation: 0.7735 - euclidean_distance: 0.1324
Epoch 322/350
76/76 [==============================] - 0s 824us/step - loss: 0.0804 - accuracy: 0.9563 - mae: 0.0804 - pearson_correlation: 0.7769 - euclidean_distance: 0.1301
Epoch 323/350
76/76 [==============================] - 0s 831us/step - loss: 0.0789 - accuracy: 0.9563 - mae: 0.0789 - pearson_correlation: 0.7772 - euclidean_distance: 0.1285
Epoch 324/350
76/76 [==============================] - 0s 832us/step - loss: 0.0830 - accuracy: 0.9563 - mae: 0.0830 - pearson_correlation: 0.7678 - euclidean_distance: 0.1340
Epoch 325/350
76/76 [==============================] - 0s 828us/step - loss: 0.0798 - accuracy: 0.9563 - mae: 0.0798 - pearson_correlation: 0.7803 - euclidean_distance: 0.1293
Epoch 326/350
76/76 [==============================] - 0s 933us/step - loss: 0.0799 - accuracy: 0.9563 - mae: 0.0799 - pearson_correlation: 0.7774 - euclidean_distance: 0.1292
Epoch 327/350
76/76 [==============================] - 0s 924us/step - loss: 0.0809 - accuracy: 0.9563 - mae: 0.0809 - pearson_correlation: 0.7747 - euclidean_distance: 0.1306
Epoch 328/350
76/76 [==============================] - 0s 875us/step - loss: 0.0816 - accuracy: 0.9563 - mae: 0.0816 - pearson_correlation: 0.7754 - euclidean_distance: 0.1323
Epoch 329/350
76/76 [==============================] - 0s 889us/step - loss: 0.0801 - accuracy: 0.9563 - mae: 0.0801 - pearson_correlation: 0.7783 - euclidean_distance: 0.1294
Epoch 330/350
76/76 [==============================] - 0s 933us/step - loss: 0.0831 - accuracy: 0.9563 - mae: 0.0831 - pearson_correlation: 0.7703 - euclidean_distance: 0.1345
Epoch 331/350
76/76 [==============================] - 0s 958us/step - loss: 0.0785 - accuracy: 0.9563 - mae: 0.0785 - pearson_correlation: 0.7839 - euclidean_distance: 0.1271
Epoch 332/350
76/76 [==============================] - 0s 919us/step - loss: 0.0802 - accuracy: 0.9563 - mae: 0.0802 - pearson_correlation: 0.7790 - euclidean_distance: 0.1299
Epoch 333/350
76/76 [==============================] - 0s 974us/step - loss: 0.0795 - accuracy: 0.9563 - mae: 0.0795 - pearson_correlation: 0.7768 - euclidean_distance: 0.1293
Epoch 334/350
76/76 [==============================] - 0s 915us/step - loss: 0.0817 - accuracy: 0.9563 - mae: 0.0817 - pearson_correlation: 0.7711 - euclidean_distance: 0.1321
Epoch 335/350
76/76 [==============================] - 0s 837us/step - loss: 0.0821 - accuracy: 0.9563 - mae: 0.0821 - pearson_correlation: 0.7760 - euclidean_distance: 0.1323
Epoch 336/350
76/76 [==============================] - 0s 840us/step - loss: 0.0833 - accuracy: 0.9563 - mae: 0.0833 - pearson_correlation: 0.7733 - euclidean_distance: 0.1342
Epoch 337/350
76/76 [==============================] - 0s 838us/step - loss: 0.0791 - accuracy: 0.9563 - mae: 0.0791 - pearson_correlation: 0.7772 - euclidean_distance: 0.1284
Epoch 338/350
76/76 [==============================] - 0s 836us/step - loss: 0.0796 - accuracy: 0.9563 - mae: 0.0796 - pearson_correlation: 0.7753 - euclidean_distance: 0.1290
Epoch 339/350
76/76 [==============================] - 0s 831us/step - loss: 0.0816 - accuracy: 0.9563 - mae: 0.0816 - pearson_correlation: 0.7733 - euclidean_distance: 0.1317
Epoch 340/350
76/76 [==============================] - 0s 832us/step - loss: 0.0797 - accuracy: 0.9563 - mae: 0.0797 - pearson_correlation: 0.7794 - euclidean_distance: 0.1293
Epoch 341/350
76/76 [==============================] - 0s 828us/step - loss: 0.0837 - accuracy: 0.9563 - mae: 0.0837 - pearson_correlation: 0.7703 - euclidean_distance: 0.1348
Epoch 342/350
76/76 [==============================] - 0s 835us/step - loss: 0.0777 - accuracy: 0.9563 - mae: 0.0777 - pearson_correlation: 0.7829 - euclidean_distance: 0.1261
Epoch 343/350
76/76 [==============================] - 0s 829us/step - loss: 0.0802 - accuracy: 0.9563 - mae: 0.0802 - pearson_correlation: 0.7789 - euclidean_distance: 0.1295
Epoch 344/350
76/76 [==============================] - 0s 825us/step - loss: 0.0791 - accuracy: 0.9563 - mae: 0.0791 - pearson_correlation: 0.7823 - euclidean_distance: 0.1281
Epoch 345/350
76/76 [==============================] - 0s 832us/step - loss: 0.0795 - accuracy: 0.9563 - mae: 0.0795 - pearson_correlation: 0.7791 - euclidean_distance: 0.1286
Epoch 346/350
76/76 [==============================] - 0s 835us/step - loss: 0.0816 - accuracy: 0.9563 - mae: 0.0816 - pearson_correlation: 0.7770 - euclidean_distance: 0.1319
Epoch 347/350
76/76 [==============================] - 0s 832us/step - loss: 0.0789 - accuracy: 0.9563 - mae: 0.0789 - pearson_correlation: 0.7805 - euclidean_distance: 0.1275
Epoch 348/350
76/76 [==============================] - 0s 835us/step - loss: 0.0826 - accuracy: 0.9563 - mae: 0.0826 - pearson_correlation: 0.7726 - euclidean_distance: 0.1329
Epoch 349/350
76/76 [==============================] - 0s 829us/step - loss: 0.0798 - accuracy: 0.9563 - mae: 0.0798 - pearson_correlation: 0.7777 - euclidean_distance: 0.1294
Epoch 350/350
76/76 [==============================] - 0s 832us/step - loss: 0.0807 - accuracy: 0.9563 - mae: 0.0807 - pearson_correlation: 0.7778 - euclidean_distance: 0.1307
38/38 [==============================] - 0s 500us/step
Epoch 1/350
76/76 [==============================] - 1s 826us/step - loss: 0.4696 - accuracy: 0.2704 - mae: 0.4696 - pearson_correlation: -0.4144 - euclidean_distance: 0.7847
Epoch 2/350
76/76 [==============================] - 0s 809us/step - loss: 0.4621 - accuracy: 0.2854 - mae: 0.4621 - pearson_correlation: -0.3918 - euclidean_distance: 0.7699
Epoch 3/350
76/76 [==============================] - 0s 833us/step - loss: 0.4538 - accuracy: 0.3105 - mae: 0.4538 - pearson_correlation: -0.3676 - euclidean_distance: 0.7551
Epoch 4/350
76/76 [==============================] - 0s 825us/step - loss: 0.4462 - accuracy: 0.3242 - mae: 0.4462 - pearson_correlation: -0.3572 - euclidean_distance: 0.7410
Epoch 5/350
76/76 [==============================] - 0s 817us/step - loss: 0.4380 - accuracy: 0.3436 - mae: 0.4380 - pearson_correlation: -0.3279 - euclidean_distance: 0.7271
Epoch 6/350
76/76 [==============================] - 0s 822us/step - loss: 0.4301 - accuracy: 0.3622 - mae: 0.4301 - pearson_correlation: -0.3150 - euclidean_distance: 0.7141
Epoch 7/350
76/76 [==============================] - 0s 822us/step - loss: 0.4223 - accuracy: 0.3789 - mae: 0.4223 - pearson_correlation: -0.2921 - euclidean_distance: 0.6988
Epoch 8/350
76/76 [==============================] - 0s 826us/step - loss: 0.4142 - accuracy: 0.4102 - mae: 0.4142 - pearson_correlation: -0.2720 - euclidean_distance: 0.6845
Epoch 9/350
76/76 [==============================] - 0s 827us/step - loss: 0.4036 - accuracy: 0.4257 - mae: 0.4036 - pearson_correlation: -0.2418 - euclidean_distance: 0.6665
Epoch 10/350
76/76 [==============================] - 0s 824us/step - loss: 0.3961 - accuracy: 0.4455 - mae: 0.3961 - pearson_correlation: -0.2139 - euclidean_distance: 0.6519
Epoch 11/350
76/76 [==============================] - 0s 821us/step - loss: 0.3883 - accuracy: 0.4671 - mae: 0.3883 - pearson_correlation: -0.1974 - euclidean_distance: 0.6375
Epoch 12/350
76/76 [==============================] - 0s 825us/step - loss: 0.3793 - accuracy: 0.4826 - mae: 0.3793 - pearson_correlation: -0.1692 - euclidean_distance: 0.6218
Epoch 13/350
76/76 [==============================] - 0s 812us/step - loss: 0.3723 - accuracy: 0.4949 - mae: 0.3723 - pearson_correlation: -0.1475 - euclidean_distance: 0.6091
Epoch 14/350
76/76 [==============================] - 0s 816us/step - loss: 0.3638 - accuracy: 0.5170 - mae: 0.3638 - pearson_correlation: -0.1118 - euclidean_distance: 0.5940
Epoch 15/350
76/76 [==============================] - 0s 816us/step - loss: 0.3530 - accuracy: 0.5333 - mae: 0.3530 - pearson_correlation: -0.0880 - euclidean_distance: 0.5762
Epoch 16/350
76/76 [==============================] - 0s 819us/step - loss: 0.3455 - accuracy: 0.5399 - mae: 0.3455 - pearson_correlation: -0.0638 - euclidean_distance: 0.5626
Epoch 17/350
76/76 [==============================] - 0s 814us/step - loss: 0.3353 - accuracy: 0.5567 - mae: 0.3353 - pearson_correlation: -0.0313 - euclidean_distance: 0.5460
Epoch 18/350
76/76 [==============================] - 0s 815us/step - loss: 0.3265 - accuracy: 0.5686 - mae: 0.3265 - pearson_correlation: -0.0029 - euclidean_distance: 0.5304
Epoch 19/350
76/76 [==============================] - 0s 818us/step - loss: 0.3217 - accuracy: 0.5827 - mae: 0.3217 - pearson_correlation: 0.0247 - euclidean_distance: 0.5213
Epoch 20/350
76/76 [==============================] - 0s 814us/step - loss: 0.3122 - accuracy: 0.5955 - mae: 0.3122 - pearson_correlation: 0.0445 - euclidean_distance: 0.5042
Epoch 21/350
76/76 [==============================] - 0s 816us/step - loss: 0.3083 - accuracy: 0.6012 - mae: 0.3083 - pearson_correlation: 0.0660 - euclidean_distance: 0.4974
Epoch 22/350
76/76 [==============================] - 0s 820us/step - loss: 0.2976 - accuracy: 0.6127 - mae: 0.2976 - pearson_correlation: 0.0956 - euclidean_distance: 0.4803
Epoch 23/350
76/76 [==============================] - 0s 818us/step - loss: 0.2926 - accuracy: 0.6246 - mae: 0.2926 - pearson_correlation: 0.1124 - euclidean_distance: 0.4722
Epoch 24/350
76/76 [==============================] - 0s 812us/step - loss: 0.2875 - accuracy: 0.6321 - mae: 0.2875 - pearson_correlation: 0.1333 - euclidean_distance: 0.4628
Epoch 25/350
76/76 [==============================] - 0s 818us/step - loss: 0.2801 - accuracy: 0.6405 - mae: 0.2801 - pearson_correlation: 0.1600 - euclidean_distance: 0.4504
Epoch 26/350
76/76 [==============================] - 0s 822us/step - loss: 0.2740 - accuracy: 0.6590 - mae: 0.2740 - pearson_correlation: 0.1791 - euclidean_distance: 0.4409
Epoch 27/350
76/76 [==============================] - 0s 814us/step - loss: 0.2700 - accuracy: 0.6568 - mae: 0.2700 - pearson_correlation: 0.1883 - euclidean_distance: 0.4333
Epoch 28/350
76/76 [==============================] - 0s 821us/step - loss: 0.2654 - accuracy: 0.6670 - mae: 0.2654 - pearson_correlation: 0.2075 - euclidean_distance: 0.4263
Epoch 29/350
76/76 [==============================] - 0s 825us/step - loss: 0.2612 - accuracy: 0.6868 - mae: 0.2612 - pearson_correlation: 0.2325 - euclidean_distance: 0.4178
Epoch 30/350
76/76 [==============================] - 0s 852us/step - loss: 0.2545 - accuracy: 0.6952 - mae: 0.2545 - pearson_correlation: 0.2440 - euclidean_distance: 0.4075
Epoch 31/350
76/76 [==============================] - 0s 813us/step - loss: 0.2500 - accuracy: 0.6859 - mae: 0.2500 - pearson_correlation: 0.2537 - euclidean_distance: 0.4002
Epoch 32/350
76/76 [==============================] - 0s 860us/step - loss: 0.2467 - accuracy: 0.7102 - mae: 0.2467 - pearson_correlation: 0.2665 - euclidean_distance: 0.3942
Epoch 33/350
76/76 [==============================] - 0s 826us/step - loss: 0.2430 - accuracy: 0.7155 - mae: 0.2430 - pearson_correlation: 0.2780 - euclidean_distance: 0.3898
Epoch 34/350
76/76 [==============================] - 0s 820us/step - loss: 0.2389 - accuracy: 0.7327 - mae: 0.2389 - pearson_correlation: 0.3007 - euclidean_distance: 0.3818
Epoch 35/350
76/76 [==============================] - 0s 816us/step - loss: 0.2361 - accuracy: 0.7296 - mae: 0.2361 - pearson_correlation: 0.3094 - euclidean_distance: 0.3777
Epoch 36/350
76/76 [==============================] - 0s 818us/step - loss: 0.2329 - accuracy: 0.7305 - mae: 0.2329 - pearson_correlation: 0.3184 - euclidean_distance: 0.3726
Epoch 37/350
76/76 [==============================] - 0s 817us/step - loss: 0.2313 - accuracy: 0.7353 - mae: 0.2313 - pearson_correlation: 0.3274 - euclidean_distance: 0.3694
Epoch 38/350
76/76 [==============================] - 0s 805us/step - loss: 0.2264 - accuracy: 0.7446 - mae: 0.2264 - pearson_correlation: 0.3429 - euclidean_distance: 0.3616
Epoch 39/350
76/76 [==============================] - 0s 826us/step - loss: 0.2251 - accuracy: 0.7437 - mae: 0.2251 - pearson_correlation: 0.3399 - euclidean_distance: 0.3602
Epoch 40/350
76/76 [==============================] - 0s 820us/step - loss: 0.2199 - accuracy: 0.7525 - mae: 0.2199 - pearson_correlation: 0.3610 - euclidean_distance: 0.3517
Epoch 41/350
76/76 [==============================] - 0s 813us/step - loss: 0.2205 - accuracy: 0.7609 - mae: 0.2205 - pearson_correlation: 0.3655 - euclidean_distance: 0.3515
Epoch 42/350
76/76 [==============================] - 0s 813us/step - loss: 0.2160 - accuracy: 0.7653 - mae: 0.2160 - pearson_correlation: 0.3760 - euclidean_distance: 0.3449
Epoch 43/350
76/76 [==============================] - 0s 820us/step - loss: 0.2136 - accuracy: 0.7728 - mae: 0.2136 - pearson_correlation: 0.3853 - euclidean_distance: 0.3403
Epoch 44/350
76/76 [==============================] - 0s 824us/step - loss: 0.2123 - accuracy: 0.7662 - mae: 0.2123 - pearson_correlation: 0.3875 - euclidean_distance: 0.3390
Epoch 45/350
76/76 [==============================] - 0s 823us/step - loss: 0.2094 - accuracy: 0.7737 - mae: 0.2094 - pearson_correlation: 0.3955 - euclidean_distance: 0.3355
Epoch 46/350
76/76 [==============================] - 0s 814us/step - loss: 0.2094 - accuracy: 0.7799 - mae: 0.2094 - pearson_correlation: 0.4021 - euclidean_distance: 0.3347
Epoch 47/350
76/76 [==============================] - 0s 819us/step - loss: 0.2077 - accuracy: 0.7816 - mae: 0.2077 - pearson_correlation: 0.4044 - euclidean_distance: 0.3315
Epoch 48/350
76/76 [==============================] - 0s 820us/step - loss: 0.2042 - accuracy: 0.7883 - mae: 0.2042 - pearson_correlation: 0.4208 - euclidean_distance: 0.3252
Epoch 49/350
76/76 [==============================] - 0s 821us/step - loss: 0.2021 - accuracy: 0.7878 - mae: 0.2021 - pearson_correlation: 0.4197 - euclidean_distance: 0.3229
Epoch 50/350
76/76 [==============================] - 0s 814us/step - loss: 0.2007 - accuracy: 0.7980 - mae: 0.2007 - pearson_correlation: 0.4253 - euclidean_distance: 0.3207
Epoch 51/350
76/76 [==============================] - 0s 812us/step - loss: 0.2002 - accuracy: 0.7883 - mae: 0.2002 - pearson_correlation: 0.4276 - euclidean_distance: 0.3200
Epoch 52/350
76/76 [==============================] - 0s 818us/step - loss: 0.1981 - accuracy: 0.7958 - mae: 0.1981 - pearson_correlation: 0.4322 - euclidean_distance: 0.3164
Epoch 53/350
76/76 [==============================] - 0s 812us/step - loss: 0.1957 - accuracy: 0.8028 - mae: 0.1957 - pearson_correlation: 0.4362 - euclidean_distance: 0.3129
Epoch 54/350
76/76 [==============================] - 0s 816us/step - loss: 0.1912 - accuracy: 0.8094 - mae: 0.1912 - pearson_correlation: 0.4552 - euclidean_distance: 0.3059
Epoch 55/350
76/76 [==============================] - 0s 820us/step - loss: 0.1915 - accuracy: 0.8011 - mae: 0.1915 - pearson_correlation: 0.4464 - euclidean_distance: 0.3070
Epoch 56/350
76/76 [==============================] - 0s 831us/step - loss: 0.1923 - accuracy: 0.8139 - mae: 0.1923 - pearson_correlation: 0.4558 - euclidean_distance: 0.3067
Epoch 57/350
76/76 [==============================] - 0s 826us/step - loss: 0.1872 - accuracy: 0.8121 - mae: 0.1872 - pearson_correlation: 0.4667 - euclidean_distance: 0.2992
Epoch 58/350
76/76 [==============================] - 0s 810us/step - loss: 0.1880 - accuracy: 0.8116 - mae: 0.1880 - pearson_correlation: 0.4638 - euclidean_distance: 0.2999
Epoch 59/350
76/76 [==============================] - 0s 825us/step - loss: 0.1848 - accuracy: 0.8191 - mae: 0.1848 - pearson_correlation: 0.4764 - euclidean_distance: 0.2963
Epoch 60/350
76/76 [==============================] - 0s 820us/step - loss: 0.1871 - accuracy: 0.8249 - mae: 0.1871 - pearson_correlation: 0.4672 - euclidean_distance: 0.2991
Epoch 61/350
76/76 [==============================] - 0s 818us/step - loss: 0.1832 - accuracy: 0.8271 - mae: 0.1832 - pearson_correlation: 0.4780 - euclidean_distance: 0.2923
Epoch 62/350
76/76 [==============================] - 0s 821us/step - loss: 0.1795 - accuracy: 0.8275 - mae: 0.1795 - pearson_correlation: 0.4920 - euclidean_distance: 0.2863
Epoch 63/350
76/76 [==============================] - 0s 824us/step - loss: 0.1796 - accuracy: 0.8333 - mae: 0.1796 - pearson_correlation: 0.4946 - euclidean_distance: 0.2868
Epoch 64/350
76/76 [==============================] - 0s 815us/step - loss: 0.1777 - accuracy: 0.8262 - mae: 0.1777 - pearson_correlation: 0.4923 - euclidean_distance: 0.2846
Epoch 65/350
76/76 [==============================] - 0s 815us/step - loss: 0.1767 - accuracy: 0.8355 - mae: 0.1767 - pearson_correlation: 0.4930 - euclidean_distance: 0.2823
Epoch 66/350
76/76 [==============================] - 0s 815us/step - loss: 0.1758 - accuracy: 0.8280 - mae: 0.1758 - pearson_correlation: 0.4994 - euclidean_distance: 0.2820
Epoch 67/350
76/76 [==============================] - 0s 816us/step - loss: 0.1760 - accuracy: 0.8363 - mae: 0.1760 - pearson_correlation: 0.5060 - euclidean_distance: 0.2815
Epoch 68/350
76/76 [==============================] - 0s 815us/step - loss: 0.1736 - accuracy: 0.8377 - mae: 0.1736 - pearson_correlation: 0.5100 - euclidean_distance: 0.2780
Epoch 69/350
76/76 [==============================] - 0s 818us/step - loss: 0.1717 - accuracy: 0.8465 - mae: 0.1717 - pearson_correlation: 0.5102 - euclidean_distance: 0.2745
Epoch 70/350
76/76 [==============================] - 0s 816us/step - loss: 0.1701 - accuracy: 0.8513 - mae: 0.1701 - pearson_correlation: 0.5192 - euclidean_distance: 0.2716
Epoch 71/350
76/76 [==============================] - 0s 821us/step - loss: 0.1678 - accuracy: 0.8540 - mae: 0.1678 - pearson_correlation: 0.5235 - euclidean_distance: 0.2694
Epoch 72/350
76/76 [==============================] - 0s 817us/step - loss: 0.1696 - accuracy: 0.8540 - mae: 0.1696 - pearson_correlation: 0.5151 - euclidean_distance: 0.2715
Epoch 73/350
76/76 [==============================] - 0s 815us/step - loss: 0.1708 - accuracy: 0.8566 - mae: 0.1708 - pearson_correlation: 0.5264 - euclidean_distance: 0.2720
Epoch 74/350
76/76 [==============================] - 0s 814us/step - loss: 0.1685 - accuracy: 0.8536 - mae: 0.1685 - pearson_correlation: 0.5200 - euclidean_distance: 0.2696
Epoch 75/350
76/76 [==============================] - 0s 817us/step - loss: 0.1650 - accuracy: 0.8505 - mae: 0.1650 - pearson_correlation: 0.5321 - euclidean_distance: 0.2646
Epoch 76/350
76/76 [==============================] - 0s 816us/step - loss: 0.1658 - accuracy: 0.8602 - mae: 0.1658 - pearson_correlation: 0.5338 - euclidean_distance: 0.2649
Epoch 77/350
76/76 [==============================] - 0s 824us/step - loss: 0.1622 - accuracy: 0.8655 - mae: 0.1622 - pearson_correlation: 0.5439 - euclidean_distance: 0.2597
Epoch 78/350
76/76 [==============================] - 0s 816us/step - loss: 0.1651 - accuracy: 0.8575 - mae: 0.1651 - pearson_correlation: 0.5341 - euclidean_distance: 0.2641
Epoch 79/350
76/76 [==============================] - 0s 818us/step - loss: 0.1614 - accuracy: 0.8588 - mae: 0.1614 - pearson_correlation: 0.5394 - euclidean_distance: 0.2586
Epoch 80/350
76/76 [==============================] - 0s 818us/step - loss: 0.1630 - accuracy: 0.8703 - mae: 0.1630 - pearson_correlation: 0.5526 - euclidean_distance: 0.2602
Epoch 81/350
76/76 [==============================] - 0s 818us/step - loss: 0.1589 - accuracy: 0.8668 - mae: 0.1589 - pearson_correlation: 0.5491 - euclidean_distance: 0.2545
Epoch 82/350
76/76 [==============================] - 0s 818us/step - loss: 0.1585 - accuracy: 0.8681 - mae: 0.1585 - pearson_correlation: 0.5509 - euclidean_distance: 0.2539
Epoch 83/350
76/76 [==============================] - 0s 818us/step - loss: 0.1577 - accuracy: 0.8663 - mae: 0.1577 - pearson_correlation: 0.5542 - euclidean_distance: 0.2530
Epoch 84/350
76/76 [==============================] - 0s 816us/step - loss: 0.1589 - accuracy: 0.8694 - mae: 0.1589 - pearson_correlation: 0.5520 - euclidean_distance: 0.2538
Epoch 85/350
76/76 [==============================] - 0s 812us/step - loss: 0.1550 - accuracy: 0.8862 - mae: 0.1550 - pearson_correlation: 0.5664 - euclidean_distance: 0.2479
Epoch 86/350
76/76 [==============================] - 0s 829us/step - loss: 0.1560 - accuracy: 0.8730 - mae: 0.1560 - pearson_correlation: 0.5651 - euclidean_distance: 0.2496
Epoch 87/350
76/76 [==============================] - 0s 812us/step - loss: 0.1527 - accuracy: 0.8752 - mae: 0.1527 - pearson_correlation: 0.5669 - euclidean_distance: 0.2448
Epoch 88/350
76/76 [==============================] - 0s 816us/step - loss: 0.1533 - accuracy: 0.8822 - mae: 0.1533 - pearson_correlation: 0.5712 - euclidean_distance: 0.2453
Epoch 89/350
76/76 [==============================] - 0s 816us/step - loss: 0.1528 - accuracy: 0.8809 - mae: 0.1528 - pearson_correlation: 0.5688 - euclidean_distance: 0.2448
Epoch 90/350
76/76 [==============================] - 0s 812us/step - loss: 0.1511 - accuracy: 0.8752 - mae: 0.1511 - pearson_correlation: 0.5699 - euclidean_distance: 0.2425
Epoch 91/350
76/76 [==============================] - 0s 818us/step - loss: 0.1519 - accuracy: 0.8831 - mae: 0.1519 - pearson_correlation: 0.5735 - euclidean_distance: 0.2433
Epoch 92/350
76/76 [==============================] - 0s 813us/step - loss: 0.1484 - accuracy: 0.8862 - mae: 0.1484 - pearson_correlation: 0.5833 - euclidean_distance: 0.2370
Epoch 93/350
76/76 [==============================] - 0s 820us/step - loss: 0.1498 - accuracy: 0.8946 - mae: 0.1498 - pearson_correlation: 0.5819 - euclidean_distance: 0.2403
Epoch 94/350
76/76 [==============================] - 0s 823us/step - loss: 0.1454 - accuracy: 0.8893 - mae: 0.1454 - pearson_correlation: 0.5856 - euclidean_distance: 0.2337
Epoch 95/350
76/76 [==============================] - 0s 819us/step - loss: 0.1454 - accuracy: 0.9012 - mae: 0.1454 - pearson_correlation: 0.5950 - euclidean_distance: 0.2337
Epoch 96/350
76/76 [==============================] - 0s 822us/step - loss: 0.1441 - accuracy: 0.8968 - mae: 0.1441 - pearson_correlation: 0.5945 - euclidean_distance: 0.2312
Epoch 97/350
76/76 [==============================] - 0s 816us/step - loss: 0.1460 - accuracy: 0.8981 - mae: 0.1460 - pearson_correlation: 0.5937 - euclidean_distance: 0.2339
Epoch 98/350
76/76 [==============================] - 0s 818us/step - loss: 0.1480 - accuracy: 0.8999 - mae: 0.1480 - pearson_correlation: 0.5911 - euclidean_distance: 0.2363
Epoch 99/350
76/76 [==============================] - 0s 816us/step - loss: 0.1416 - accuracy: 0.9003 - mae: 0.1416 - pearson_correlation: 0.5979 - euclidean_distance: 0.2274
Epoch 100/350
76/76 [==============================] - 0s 824us/step - loss: 0.1406 - accuracy: 0.9060 - mae: 0.1406 - pearson_correlation: 0.6069 - euclidean_distance: 0.2259
Epoch 101/350
76/76 [==============================] - 0s 819us/step - loss: 0.1428 - accuracy: 0.9065 - mae: 0.1428 - pearson_correlation: 0.6027 - euclidean_distance: 0.2286
Epoch 102/350
76/76 [==============================] - 0s 812us/step - loss: 0.1404 - accuracy: 0.9047 - mae: 0.1404 - pearson_correlation: 0.6078 - euclidean_distance: 0.2257
Epoch 103/350
76/76 [==============================] - 0s 813us/step - loss: 0.1425 - accuracy: 0.9069 - mae: 0.1425 - pearson_correlation: 0.6049 - euclidean_distance: 0.2289
Epoch 104/350
76/76 [==============================] - 0s 818us/step - loss: 0.1390 - accuracy: 0.9109 - mae: 0.1390 - pearson_correlation: 0.6130 - euclidean_distance: 0.2231
Epoch 105/350
76/76 [==============================] - 0s 814us/step - loss: 0.1380 - accuracy: 0.9118 - mae: 0.1380 - pearson_correlation: 0.6109 - euclidean_distance: 0.2220
Epoch 106/350
76/76 [==============================] - 0s 823us/step - loss: 0.1388 - accuracy: 0.9153 - mae: 0.1388 - pearson_correlation: 0.6163 - euclidean_distance: 0.2232
Epoch 107/350
76/76 [==============================] - 0s 817us/step - loss: 0.1376 - accuracy: 0.9113 - mae: 0.1376 - pearson_correlation: 0.6129 - euclidean_distance: 0.2207
Epoch 108/350
76/76 [==============================] - 0s 812us/step - loss: 0.1372 - accuracy: 0.9144 - mae: 0.1372 - pearson_correlation: 0.6222 - euclidean_distance: 0.2198
Epoch 109/350
76/76 [==============================] - 0s 815us/step - loss: 0.1343 - accuracy: 0.9127 - mae: 0.1343 - pearson_correlation: 0.6248 - euclidean_distance: 0.2158
Epoch 110/350
76/76 [==============================] - 0s 816us/step - loss: 0.1347 - accuracy: 0.9153 - mae: 0.1347 - pearson_correlation: 0.6262 - euclidean_distance: 0.2168
Epoch 111/350
76/76 [==============================] - 0s 806us/step - loss: 0.1347 - accuracy: 0.9197 - mae: 0.1347 - pearson_correlation: 0.6318 - euclidean_distance: 0.2159
Epoch 112/350
76/76 [==============================] - 0s 812us/step - loss: 0.1369 - accuracy: 0.9232 - mae: 0.1369 - pearson_correlation: 0.6220 - euclidean_distance: 0.2190
Epoch 113/350
76/76 [==============================] - 0s 812us/step - loss: 0.1383 - accuracy: 0.9162 - mae: 0.1383 - pearson_correlation: 0.6186 - euclidean_distance: 0.2215
Epoch 114/350
76/76 [==============================] - 0s 813us/step - loss: 0.1351 - accuracy: 0.9175 - mae: 0.1351 - pearson_correlation: 0.6290 - euclidean_distance: 0.2164
Epoch 115/350
76/76 [==============================] - 0s 818us/step - loss: 0.1308 - accuracy: 0.9197 - mae: 0.1308 - pearson_correlation: 0.6409 - euclidean_distance: 0.2111
Epoch 116/350
76/76 [==============================] - 0s 818us/step - loss: 0.1300 - accuracy: 0.9219 - mae: 0.1300 - pearson_correlation: 0.6356 - euclidean_distance: 0.2088
Epoch 117/350
76/76 [==============================] - 0s 817us/step - loss: 0.1351 - accuracy: 0.9140 - mae: 0.1351 - pearson_correlation: 0.6284 - euclidean_distance: 0.2162
Epoch 118/350
76/76 [==============================] - 0s 815us/step - loss: 0.1297 - accuracy: 0.9263 - mae: 0.1297 - pearson_correlation: 0.6456 - euclidean_distance: 0.2087
Epoch 119/350
76/76 [==============================] - 0s 817us/step - loss: 0.1300 - accuracy: 0.9232 - mae: 0.1300 - pearson_correlation: 0.6393 - euclidean_distance: 0.2087
Epoch 120/350
76/76 [==============================] - 0s 813us/step - loss: 0.1310 - accuracy: 0.9219 - mae: 0.1310 - pearson_correlation: 0.6426 - euclidean_distance: 0.2105
Epoch 121/350
76/76 [==============================] - 0s 817us/step - loss: 0.1336 - accuracy: 0.9246 - mae: 0.1336 - pearson_correlation: 0.6388 - euclidean_distance: 0.2133
Epoch 122/350
76/76 [==============================] - 0s 817us/step - loss: 0.1311 - accuracy: 0.9241 - mae: 0.1311 - pearson_correlation: 0.6330 - euclidean_distance: 0.2102
Epoch 123/350
76/76 [==============================] - 0s 819us/step - loss: 0.1254 - accuracy: 0.9237 - mae: 0.1254 - pearson_correlation: 0.6512 - euclidean_distance: 0.2024
Epoch 124/350
76/76 [==============================] - 0s 810us/step - loss: 0.1268 - accuracy: 0.9299 - mae: 0.1268 - pearson_correlation: 0.6536 - euclidean_distance: 0.2034
Epoch 125/350
76/76 [==============================] - 0s 818us/step - loss: 0.1262 - accuracy: 0.9325 - mae: 0.1262 - pearson_correlation: 0.6542 - euclidean_distance: 0.2028
Epoch 126/350
76/76 [==============================] - 0s 818us/step - loss: 0.1267 - accuracy: 0.9307 - mae: 0.1267 - pearson_correlation: 0.6467 - euclidean_distance: 0.2038
Epoch 127/350
76/76 [==============================] - 0s 813us/step - loss: 0.1256 - accuracy: 0.9312 - mae: 0.1256 - pearson_correlation: 0.6524 - euclidean_distance: 0.2019
Epoch 128/350
76/76 [==============================] - 0s 821us/step - loss: 0.1243 - accuracy: 0.9316 - mae: 0.1243 - pearson_correlation: 0.6528 - euclidean_distance: 0.2001
Epoch 129/350
76/76 [==============================] - 0s 818us/step - loss: 0.1233 - accuracy: 0.9312 - mae: 0.1233 - pearson_correlation: 0.6566 - euclidean_distance: 0.1984
Epoch 130/350
76/76 [==============================] - 0s 822us/step - loss: 0.1240 - accuracy: 0.9228 - mae: 0.1240 - pearson_correlation: 0.6569 - euclidean_distance: 0.1995
Epoch 131/350
76/76 [==============================] - 0s 821us/step - loss: 0.1229 - accuracy: 0.9312 - mae: 0.1229 - pearson_correlation: 0.6643 - euclidean_distance: 0.1971
Epoch 132/350
76/76 [==============================] - 0s 813us/step - loss: 0.1222 - accuracy: 0.9334 - mae: 0.1222 - pearson_correlation: 0.6638 - euclidean_distance: 0.1966
Epoch 133/350
76/76 [==============================] - 0s 814us/step - loss: 0.1240 - accuracy: 0.9347 - mae: 0.1240 - pearson_correlation: 0.6552 - euclidean_distance: 0.1998
Epoch 134/350
76/76 [==============================] - 0s 817us/step - loss: 0.1241 - accuracy: 0.9378 - mae: 0.1241 - pearson_correlation: 0.6634 - euclidean_distance: 0.1993
Epoch 135/350
76/76 [==============================] - 0s 816us/step - loss: 0.1236 - accuracy: 0.9316 - mae: 0.1236 - pearson_correlation: 0.6587 - euclidean_distance: 0.1982
Epoch 136/350
76/76 [==============================] - 0s 820us/step - loss: 0.1184 - accuracy: 0.9382 - mae: 0.1184 - pearson_correlation: 0.6685 - euclidean_distance: 0.1906
Epoch 137/350
76/76 [==============================] - 0s 812us/step - loss: 0.1198 - accuracy: 0.9369 - mae: 0.1198 - pearson_correlation: 0.6757 - euclidean_distance: 0.1927
Epoch 138/350
76/76 [==============================] - 0s 814us/step - loss: 0.1224 - accuracy: 0.9338 - mae: 0.1224 - pearson_correlation: 0.6691 - euclidean_distance: 0.1961
Epoch 139/350
76/76 [==============================] - 0s 815us/step - loss: 0.1219 - accuracy: 0.9365 - mae: 0.1219 - pearson_correlation: 0.6697 - euclidean_distance: 0.1957
Epoch 140/350
76/76 [==============================] - 0s 820us/step - loss: 0.1168 - accuracy: 0.9404 - mae: 0.1168 - pearson_correlation: 0.6777 - euclidean_distance: 0.1880
Epoch 141/350
76/76 [==============================] - 0s 825us/step - loss: 0.1190 - accuracy: 0.9365 - mae: 0.1190 - pearson_correlation: 0.6655 - euclidean_distance: 0.1918
Epoch 142/350
76/76 [==============================] - 0s 812us/step - loss: 0.1166 - accuracy: 0.9387 - mae: 0.1166 - pearson_correlation: 0.6786 - euclidean_distance: 0.1875
Epoch 143/350
76/76 [==============================] - 0s 816us/step - loss: 0.1181 - accuracy: 0.9365 - mae: 0.1181 - pearson_correlation: 0.6790 - euclidean_distance: 0.1896
Epoch 144/350
76/76 [==============================] - 0s 812us/step - loss: 0.1193 - accuracy: 0.9409 - mae: 0.1193 - pearson_correlation: 0.6750 - euclidean_distance: 0.1918
Epoch 145/350
76/76 [==============================] - 0s 814us/step - loss: 0.1178 - accuracy: 0.9387 - mae: 0.1178 - pearson_correlation: 0.6781 - euclidean_distance: 0.1889
Epoch 146/350
76/76 [==============================] - 0s 815us/step - loss: 0.1171 - accuracy: 0.9422 - mae: 0.1171 - pearson_correlation: 0.6792 - euclidean_distance: 0.1881
Epoch 147/350
76/76 [==============================] - 0s 821us/step - loss: 0.1170 - accuracy: 0.9382 - mae: 0.1170 - pearson_correlation: 0.6799 - euclidean_distance: 0.1877
Epoch 148/350
76/76 [==============================] - 0s 813us/step - loss: 0.1181 - accuracy: 0.9360 - mae: 0.1181 - pearson_correlation: 0.6789 - euclidean_distance: 0.1901
Epoch 149/350
76/76 [==============================] - 0s 821us/step - loss: 0.1167 - accuracy: 0.9413 - mae: 0.1167 - pearson_correlation: 0.6831 - euclidean_distance: 0.1867
Epoch 150/350
76/76 [==============================] - 0s 815us/step - loss: 0.1170 - accuracy: 0.9409 - mae: 0.1170 - pearson_correlation: 0.6798 - euclidean_distance: 0.1876
Epoch 151/350
76/76 [==============================] - 0s 817us/step - loss: 0.1176 - accuracy: 0.9418 - mae: 0.1176 - pearson_correlation: 0.6818 - euclidean_distance: 0.1889
Epoch 152/350
76/76 [==============================] - 0s 813us/step - loss: 0.1144 - accuracy: 0.9391 - mae: 0.1144 - pearson_correlation: 0.6844 - euclidean_distance: 0.1832
Epoch 153/350
76/76 [==============================] - 0s 818us/step - loss: 0.1135 - accuracy: 0.9427 - mae: 0.1135 - pearson_correlation: 0.6924 - euclidean_distance: 0.1820
Epoch 154/350
76/76 [==============================] - 0s 815us/step - loss: 0.1150 - accuracy: 0.9404 - mae: 0.1150 - pearson_correlation: 0.6843 - euclidean_distance: 0.1851
Epoch 155/350
76/76 [==============================] - 0s 825us/step - loss: 0.1135 - accuracy: 0.9435 - mae: 0.1135 - pearson_correlation: 0.6878 - euclidean_distance: 0.1824
Epoch 156/350
76/76 [==============================] - 0s 812us/step - loss: 0.1147 - accuracy: 0.9427 - mae: 0.1147 - pearson_correlation: 0.6839 - euclidean_distance: 0.1842
Epoch 157/350
76/76 [==============================] - 0s 817us/step - loss: 0.1157 - accuracy: 0.9409 - mae: 0.1157 - pearson_correlation: 0.6877 - euclidean_distance: 0.1851
Epoch 158/350
76/76 [==============================] - 0s 812us/step - loss: 0.1114 - accuracy: 0.9396 - mae: 0.1114 - pearson_correlation: 0.6945 - euclidean_distance: 0.1790
Epoch 159/350
76/76 [==============================] - 0s 811us/step - loss: 0.1135 - accuracy: 0.9422 - mae: 0.1135 - pearson_correlation: 0.6922 - euclidean_distance: 0.1819
Epoch 160/350
76/76 [==============================] - 0s 811us/step - loss: 0.1155 - accuracy: 0.9374 - mae: 0.1155 - pearson_correlation: 0.6870 - euclidean_distance: 0.1859
Epoch 161/350
76/76 [==============================] - 0s 810us/step - loss: 0.1131 - accuracy: 0.9413 - mae: 0.1131 - pearson_correlation: 0.6941 - euclidean_distance: 0.1811
Epoch 162/350
76/76 [==============================] - 0s 813us/step - loss: 0.1111 - accuracy: 0.9457 - mae: 0.1111 - pearson_correlation: 0.6964 - euclidean_distance: 0.1783
Epoch 163/350
76/76 [==============================] - 0s 814us/step - loss: 0.1133 - accuracy: 0.9431 - mae: 0.1133 - pearson_correlation: 0.6848 - euclidean_distance: 0.1815
Epoch 164/350
76/76 [==============================] - 0s 814us/step - loss: 0.1113 - accuracy: 0.9440 - mae: 0.1113 - pearson_correlation: 0.6982 - euclidean_distance: 0.1787
Epoch 165/350
76/76 [==============================] - 0s 812us/step - loss: 0.1097 - accuracy: 0.9440 - mae: 0.1097 - pearson_correlation: 0.6992 - euclidean_distance: 0.1768
Epoch 166/350
76/76 [==============================] - 0s 820us/step - loss: 0.1123 - accuracy: 0.9457 - mae: 0.1123 - pearson_correlation: 0.6971 - euclidean_distance: 0.1808
Epoch 167/350
76/76 [==============================] - 0s 822us/step - loss: 0.1107 - accuracy: 0.9431 - mae: 0.1107 - pearson_correlation: 0.6952 - euclidean_distance: 0.1778
Epoch 168/350
76/76 [==============================] - 0s 819us/step - loss: 0.1104 - accuracy: 0.9475 - mae: 0.1104 - pearson_correlation: 0.6980 - euclidean_distance: 0.1770
Epoch 169/350
76/76 [==============================] - 0s 816us/step - loss: 0.1117 - accuracy: 0.9422 - mae: 0.1117 - pearson_correlation: 0.6984 - euclidean_distance: 0.1793
Epoch 170/350
76/76 [==============================] - 0s 821us/step - loss: 0.1108 - accuracy: 0.9466 - mae: 0.1108 - pearson_correlation: 0.6970 - euclidean_distance: 0.1778
Epoch 171/350
76/76 [==============================] - 0s 820us/step - loss: 0.1105 - accuracy: 0.9488 - mae: 0.1105 - pearson_correlation: 0.7006 - euclidean_distance: 0.1769
Epoch 172/350
76/76 [==============================] - 0s 810us/step - loss: 0.1100 - accuracy: 0.9422 - mae: 0.1100 - pearson_correlation: 0.7020 - euclidean_distance: 0.1763
Epoch 173/350
76/76 [==============================] - 0s 817us/step - loss: 0.1086 - accuracy: 0.9431 - mae: 0.1086 - pearson_correlation: 0.7037 - euclidean_distance: 0.1746
Epoch 174/350
76/76 [==============================] - 0s 811us/step - loss: 0.1085 - accuracy: 0.9462 - mae: 0.1085 - pearson_correlation: 0.7027 - euclidean_distance: 0.1741
Epoch 175/350
76/76 [==============================] - 0s 821us/step - loss: 0.1063 - accuracy: 0.9435 - mae: 0.1063 - pearson_correlation: 0.7109 - euclidean_distance: 0.1705
Epoch 176/350
76/76 [==============================] - 0s 813us/step - loss: 0.1092 - accuracy: 0.9409 - mae: 0.1092 - pearson_correlation: 0.7056 - euclidean_distance: 0.1753
Epoch 177/350
76/76 [==============================] - 0s 817us/step - loss: 0.1077 - accuracy: 0.9449 - mae: 0.1077 - pearson_correlation: 0.7105 - euclidean_distance: 0.1722
Epoch 178/350
76/76 [==============================] - 0s 808us/step - loss: 0.1039 - accuracy: 0.9440 - mae: 0.1039 - pearson_correlation: 0.7141 - euclidean_distance: 0.1671
Epoch 179/350
76/76 [==============================] - 0s 812us/step - loss: 0.1068 - accuracy: 0.9479 - mae: 0.1068 - pearson_correlation: 0.7119 - euclidean_distance: 0.1713
Epoch 180/350
76/76 [==============================] - 0s 814us/step - loss: 0.1053 - accuracy: 0.9466 - mae: 0.1053 - pearson_correlation: 0.7138 - euclidean_distance: 0.1689
Epoch 181/350
76/76 [==============================] - 0s 815us/step - loss: 0.1080 - accuracy: 0.9418 - mae: 0.1080 - pearson_correlation: 0.7066 - euclidean_distance: 0.1734
Epoch 182/350
76/76 [==============================] - 0s 811us/step - loss: 0.1091 - accuracy: 0.9462 - mae: 0.1091 - pearson_correlation: 0.7058 - euclidean_distance: 0.1745
Epoch 183/350
76/76 [==============================] - 0s 819us/step - loss: 0.1053 - accuracy: 0.9479 - mae: 0.1053 - pearson_correlation: 0.7159 - euclidean_distance: 0.1694
Epoch 184/350
76/76 [==============================] - 0s 814us/step - loss: 0.1040 - accuracy: 0.9457 - mae: 0.1040 - pearson_correlation: 0.7182 - euclidean_distance: 0.1667
Epoch 185/350
76/76 [==============================] - 0s 810us/step - loss: 0.1068 - accuracy: 0.9484 - mae: 0.1068 - pearson_correlation: 0.7063 - euclidean_distance: 0.1708
Epoch 186/350
76/76 [==============================] - 0s 811us/step - loss: 0.1106 - accuracy: 0.9466 - mae: 0.1106 - pearson_correlation: 0.7041 - euclidean_distance: 0.1770
Epoch 187/350
76/76 [==============================] - 0s 821us/step - loss: 0.1063 - accuracy: 0.9466 - mae: 0.1063 - pearson_correlation: 0.7094 - euclidean_distance: 0.1704
Epoch 188/350
76/76 [==============================] - 0s 813us/step - loss: 0.1080 - accuracy: 0.9484 - mae: 0.1080 - pearson_correlation: 0.7070 - euclidean_distance: 0.1729
Epoch 189/350
76/76 [==============================] - 0s 814us/step - loss: 0.1049 - accuracy: 0.9479 - mae: 0.1049 - pearson_correlation: 0.7118 - euclidean_distance: 0.1680
Epoch 190/350
76/76 [==============================] - 0s 849us/step - loss: 0.1043 - accuracy: 0.9471 - mae: 0.1043 - pearson_correlation: 0.7202 - euclidean_distance: 0.1675
Epoch 191/350
76/76 [==============================] - 0s 820us/step - loss: 0.1049 - accuracy: 0.9462 - mae: 0.1049 - pearson_correlation: 0.7150 - euclidean_distance: 0.1685
Epoch 192/350
76/76 [==============================] - 0s 814us/step - loss: 0.1034 - accuracy: 0.9510 - mae: 0.1034 - pearson_correlation: 0.7167 - euclidean_distance: 0.1658
Epoch 193/350
76/76 [==============================] - 0s 822us/step - loss: 0.1015 - accuracy: 0.9488 - mae: 0.1015 - pearson_correlation: 0.7245 - euclidean_distance: 0.1627
Epoch 194/350
76/76 [==============================] - 0s 818us/step - loss: 0.1047 - accuracy: 0.9457 - mae: 0.1047 - pearson_correlation: 0.7183 - euclidean_distance: 0.1681
Epoch 195/350
76/76 [==============================] - 0s 820us/step - loss: 0.1038 - accuracy: 0.9497 - mae: 0.1038 - pearson_correlation: 0.7210 - euclidean_distance: 0.1659
Epoch 196/350
76/76 [==============================] - 0s 820us/step - loss: 0.1035 - accuracy: 0.9497 - mae: 0.1035 - pearson_correlation: 0.7194 - euclidean_distance: 0.1658
Epoch 197/350
76/76 [==============================] - 0s 811us/step - loss: 0.1027 - accuracy: 0.9453 - mae: 0.1027 - pearson_correlation: 0.7229 - euclidean_distance: 0.1649
Epoch 198/350
76/76 [==============================] - 0s 813us/step - loss: 0.1021 - accuracy: 0.9475 - mae: 0.1021 - pearson_correlation: 0.7224 - euclidean_distance: 0.1641
Epoch 199/350
76/76 [==============================] - 0s 811us/step - loss: 0.1035 - accuracy: 0.9449 - mae: 0.1035 - pearson_correlation: 0.7173 - euclidean_distance: 0.1668
Epoch 200/350
76/76 [==============================] - 0s 821us/step - loss: 0.1042 - accuracy: 0.9457 - mae: 0.1042 - pearson_correlation: 0.7184 - euclidean_distance: 0.1673
Epoch 201/350
76/76 [==============================] - 0s 820us/step - loss: 0.1035 - accuracy: 0.9462 - mae: 0.1035 - pearson_correlation: 0.7233 - euclidean_distance: 0.1660
Epoch 202/350
76/76 [==============================] - 0s 810us/step - loss: 0.1037 - accuracy: 0.9462 - mae: 0.1037 - pearson_correlation: 0.7148 - euclidean_distance: 0.1665
Epoch 203/350
76/76 [==============================] - 0s 811us/step - loss: 0.1022 - accuracy: 0.9462 - mae: 0.1022 - pearson_correlation: 0.7259 - euclidean_distance: 0.1641
Epoch 204/350
76/76 [==============================] - 0s 820us/step - loss: 0.1052 - accuracy: 0.9466 - mae: 0.1052 - pearson_correlation: 0.7137 - euclidean_distance: 0.1689
Epoch 205/350
76/76 [==============================] - 0s 819us/step - loss: 0.1010 - accuracy: 0.9475 - mae: 0.1010 - pearson_correlation: 0.7257 - euclidean_distance: 0.1619
Epoch 206/350
76/76 [==============================] - 0s 808us/step - loss: 0.1027 - accuracy: 0.9488 - mae: 0.1027 - pearson_correlation: 0.7197 - euclidean_distance: 0.1651
Epoch 207/350
76/76 [==============================] - 0s 809us/step - loss: 0.1023 - accuracy: 0.9479 - mae: 0.1023 - pearson_correlation: 0.7270 - euclidean_distance: 0.1635
Epoch 208/350
76/76 [==============================] - 0s 816us/step - loss: 0.0991 - accuracy: 0.9475 - mae: 0.0991 - pearson_correlation: 0.7271 - euclidean_distance: 0.1592
Epoch 209/350
76/76 [==============================] - 0s 816us/step - loss: 0.1054 - accuracy: 0.9453 - mae: 0.1054 - pearson_correlation: 0.7163 - euclidean_distance: 0.1689
Epoch 210/350
76/76 [==============================] - 0s 810us/step - loss: 0.1015 - accuracy: 0.9466 - mae: 0.1015 - pearson_correlation: 0.7223 - euclidean_distance: 0.1629
Epoch 211/350
76/76 [==============================] - 0s 808us/step - loss: 0.1033 - accuracy: 0.9479 - mae: 0.1033 - pearson_correlation: 0.7176 - euclidean_distance: 0.1656
Epoch 212/350
76/76 [==============================] - 0s 820us/step - loss: 0.1025 - accuracy: 0.9471 - mae: 0.1025 - pearson_correlation: 0.7281 - euclidean_distance: 0.1638
Epoch 213/350
76/76 [==============================] - 0s 874us/step - loss: 0.1026 - accuracy: 0.9497 - mae: 0.1026 - pearson_correlation: 0.7254 - euclidean_distance: 0.1643
Epoch 214/350
76/76 [==============================] - 0s 881us/step - loss: 0.1015 - accuracy: 0.9497 - mae: 0.1015 - pearson_correlation: 0.7245 - euclidean_distance: 0.1627
Epoch 215/350
76/76 [==============================] - 0s 914us/step - loss: 0.1018 - accuracy: 0.9479 - mae: 0.1018 - pearson_correlation: 0.7205 - euclidean_distance: 0.1633
Epoch 216/350
76/76 [==============================] - 0s 949us/step - loss: 0.1025 - accuracy: 0.9475 - mae: 0.1025 - pearson_correlation: 0.7235 - euclidean_distance: 0.1645
Epoch 217/350
76/76 [==============================] - 0s 919us/step - loss: 0.0981 - accuracy: 0.9497 - mae: 0.0981 - pearson_correlation: 0.7330 - euclidean_distance: 0.1574
Epoch 218/350
76/76 [==============================] - 0s 1ms/step - loss: 0.1023 - accuracy: 0.9484 - mae: 0.1023 - pearson_correlation: 0.7226 - euclidean_distance: 0.1643
Epoch 219/350
76/76 [==============================] - 0s 918us/step - loss: 0.1033 - accuracy: 0.9484 - mae: 0.1033 - pearson_correlation: 0.7262 - euclidean_distance: 0.1646
Epoch 220/350
76/76 [==============================] - 0s 942us/step - loss: 0.0997 - accuracy: 0.9484 - mae: 0.0997 - pearson_correlation: 0.7271 - euclidean_distance: 0.1600
Epoch 221/350
76/76 [==============================] - 0s 933us/step - loss: 0.0974 - accuracy: 0.9497 - mae: 0.0974 - pearson_correlation: 0.7368 - euclidean_distance: 0.1562
Epoch 222/350
76/76 [==============================] - 0s 825us/step - loss: 0.0969 - accuracy: 0.9502 - mae: 0.0969 - pearson_correlation: 0.7372 - euclidean_distance: 0.1557
Epoch 223/350
76/76 [==============================] - 0s 824us/step - loss: 0.0986 - accuracy: 0.9475 - mae: 0.0986 - pearson_correlation: 0.7314 - euclidean_distance: 0.1582
Epoch 224/350
76/76 [==============================] - 0s 813us/step - loss: 0.0977 - accuracy: 0.9488 - mae: 0.0977 - pearson_correlation: 0.7389 - euclidean_distance: 0.1569
Epoch 225/350
76/76 [==============================] - 0s 819us/step - loss: 0.1007 - accuracy: 0.9466 - mae: 0.1007 - pearson_correlation: 0.7287 - euclidean_distance: 0.1613
Epoch 226/350
76/76 [==============================] - 0s 825us/step - loss: 0.0974 - accuracy: 0.9502 - mae: 0.0974 - pearson_correlation: 0.7396 - euclidean_distance: 0.1564
Epoch 227/350
76/76 [==============================] - 0s 818us/step - loss: 0.0984 - accuracy: 0.9471 - mae: 0.0984 - pearson_correlation: 0.7319 - euclidean_distance: 0.1585
Epoch 228/350
76/76 [==============================] - 0s 826us/step - loss: 0.1007 - accuracy: 0.9471 - mae: 0.1007 - pearson_correlation: 0.7263 - euclidean_distance: 0.1612
Epoch 229/350
76/76 [==============================] - 0s 819us/step - loss: 0.0989 - accuracy: 0.9475 - mae: 0.0989 - pearson_correlation: 0.7360 - euclidean_distance: 0.1583
Epoch 230/350
76/76 [==============================] - 0s 817us/step - loss: 0.0968 - accuracy: 0.9506 - mae: 0.0968 - pearson_correlation: 0.7362 - euclidean_distance: 0.1555
Epoch 231/350
76/76 [==============================] - 0s 814us/step - loss: 0.0961 - accuracy: 0.9493 - mae: 0.0961 - pearson_correlation: 0.7413 - euclidean_distance: 0.1538
Epoch 232/350
76/76 [==============================] - 0s 817us/step - loss: 0.0966 - accuracy: 0.9510 - mae: 0.0966 - pearson_correlation: 0.7380 - euclidean_distance: 0.1556
Epoch 233/350
76/76 [==============================] - 0s 821us/step - loss: 0.0975 - accuracy: 0.9502 - mae: 0.0975 - pearson_correlation: 0.7368 - euclidean_distance: 0.1565
Epoch 234/350
76/76 [==============================] - 0s 816us/step - loss: 0.0980 - accuracy: 0.9479 - mae: 0.0980 - pearson_correlation: 0.7343 - euclidean_distance: 0.1572
Epoch 235/350
76/76 [==============================] - 0s 822us/step - loss: 0.0972 - accuracy: 0.9475 - mae: 0.0972 - pearson_correlation: 0.7377 - euclidean_distance: 0.1559
Epoch 236/350
76/76 [==============================] - 0s 818us/step - loss: 0.0981 - accuracy: 0.9502 - mae: 0.0981 - pearson_correlation: 0.7351 - euclidean_distance: 0.1575
Epoch 237/350
76/76 [==============================] - 0s 820us/step - loss: 0.0971 - accuracy: 0.9488 - mae: 0.0971 - pearson_correlation: 0.7397 - euclidean_distance: 0.1559
Epoch 238/350
76/76 [==============================] - 0s 814us/step - loss: 0.0974 - accuracy: 0.9484 - mae: 0.0974 - pearson_correlation: 0.7377 - euclidean_distance: 0.1563
Epoch 239/350
76/76 [==============================] - 0s 816us/step - loss: 0.0974 - accuracy: 0.9502 - mae: 0.0974 - pearson_correlation: 0.7343 - euclidean_distance: 0.1562
Epoch 240/350
76/76 [==============================] - 0s 812us/step - loss: 0.0951 - accuracy: 0.9506 - mae: 0.0951 - pearson_correlation: 0.7428 - euclidean_distance: 0.1531
Epoch 241/350
76/76 [==============================] - 0s 811us/step - loss: 0.0968 - accuracy: 0.9475 - mae: 0.0968 - pearson_correlation: 0.7354 - euclidean_distance: 0.1556
Epoch 242/350
76/76 [==============================] - 0s 814us/step - loss: 0.0959 - accuracy: 0.9497 - mae: 0.0959 - pearson_correlation: 0.7392 - euclidean_distance: 0.1540
Epoch 243/350
76/76 [==============================] - 0s 812us/step - loss: 0.0958 - accuracy: 0.9506 - mae: 0.0958 - pearson_correlation: 0.7427 - euclidean_distance: 0.1530
Epoch 244/350
76/76 [==============================] - 0s 818us/step - loss: 0.0957 - accuracy: 0.9488 - mae: 0.0957 - pearson_correlation: 0.7418 - euclidean_distance: 0.1531
Epoch 245/350
76/76 [==============================] - 0s 823us/step - loss: 0.0945 - accuracy: 0.9502 - mae: 0.0945 - pearson_correlation: 0.7445 - euclidean_distance: 0.1520
Epoch 246/350
76/76 [==============================] - 0s 807us/step - loss: 0.0953 - accuracy: 0.9493 - mae: 0.0953 - pearson_correlation: 0.7427 - euclidean_distance: 0.1531
Epoch 247/350
76/76 [==============================] - 0s 811us/step - loss: 0.0951 - accuracy: 0.9484 - mae: 0.0951 - pearson_correlation: 0.7429 - euclidean_distance: 0.1523
Epoch 248/350
76/76 [==============================] - 0s 820us/step - loss: 0.0994 - accuracy: 0.9466 - mae: 0.0994 - pearson_correlation: 0.7278 - euclidean_distance: 0.1595
Epoch 249/350
76/76 [==============================] - 0s 819us/step - loss: 0.0975 - accuracy: 0.9497 - mae: 0.0975 - pearson_correlation: 0.7345 - euclidean_distance: 0.1569
Epoch 250/350
76/76 [==============================] - 0s 813us/step - loss: 0.0942 - accuracy: 0.9502 - mae: 0.0942 - pearson_correlation: 0.7398 - euclidean_distance: 0.1513
Epoch 251/350
76/76 [==============================] - 0s 816us/step - loss: 0.0961 - accuracy: 0.9502 - mae: 0.0961 - pearson_correlation: 0.7405 - euclidean_distance: 0.1545
Epoch 252/350
76/76 [==============================] - 0s 817us/step - loss: 0.0953 - accuracy: 0.9510 - mae: 0.0953 - pearson_correlation: 0.7451 - euclidean_distance: 0.1533
Epoch 253/350
76/76 [==============================] - 0s 816us/step - loss: 0.0959 - accuracy: 0.9493 - mae: 0.0959 - pearson_correlation: 0.7346 - euclidean_distance: 0.1544
Epoch 254/350
76/76 [==============================] - 0s 809us/step - loss: 0.0979 - accuracy: 0.9488 - mae: 0.0979 - pearson_correlation: 0.7354 - euclidean_distance: 0.1568
Epoch 255/350
76/76 [==============================] - 0s 820us/step - loss: 0.0961 - accuracy: 0.9475 - mae: 0.0961 - pearson_correlation: 0.7353 - euclidean_distance: 0.1548
Epoch 256/350
76/76 [==============================] - 0s 814us/step - loss: 0.0954 - accuracy: 0.9502 - mae: 0.0954 - pearson_correlation: 0.7391 - euclidean_distance: 0.1530
Epoch 257/350
76/76 [==============================] - 0s 815us/step - loss: 0.0914 - accuracy: 0.9502 - mae: 0.0914 - pearson_correlation: 0.7517 - euclidean_distance: 0.1471
Epoch 258/350
76/76 [==============================] - 0s 815us/step - loss: 0.0944 - accuracy: 0.9479 - mae: 0.0944 - pearson_correlation: 0.7448 - euclidean_distance: 0.1515
Epoch 259/350
76/76 [==============================] - 0s 813us/step - loss: 0.0915 - accuracy: 0.9488 - mae: 0.0915 - pearson_correlation: 0.7514 - euclidean_distance: 0.1468
Epoch 260/350
76/76 [==============================] - 0s 821us/step - loss: 0.0951 - accuracy: 0.9510 - mae: 0.0951 - pearson_correlation: 0.7452 - euclidean_distance: 0.1520
Epoch 261/350
76/76 [==============================] - 0s 815us/step - loss: 0.0967 - accuracy: 0.9493 - mae: 0.0967 - pearson_correlation: 0.7366 - euclidean_distance: 0.1551
Epoch 262/350
76/76 [==============================] - 0s 836us/step - loss: 0.0950 - accuracy: 0.9493 - mae: 0.0950 - pearson_correlation: 0.7432 - euclidean_distance: 0.1526
Epoch 263/350
76/76 [==============================] - 0s 856us/step - loss: 0.0947 - accuracy: 0.9497 - mae: 0.0947 - pearson_correlation: 0.7428 - euclidean_distance: 0.1522
Epoch 264/350
76/76 [==============================] - 0s 826us/step - loss: 0.0947 - accuracy: 0.9502 - mae: 0.0947 - pearson_correlation: 0.7443 - euclidean_distance: 0.1525
Epoch 265/350
76/76 [==============================] - 0s 822us/step - loss: 0.0930 - accuracy: 0.9475 - mae: 0.0930 - pearson_correlation: 0.7482 - euclidean_distance: 0.1495
Epoch 266/350
76/76 [==============================] - 0s 807us/step - loss: 0.0949 - accuracy: 0.9488 - mae: 0.0949 - pearson_correlation: 0.7444 - euclidean_distance: 0.1519
Epoch 267/350
76/76 [==============================] - 0s 826us/step - loss: 0.0944 - accuracy: 0.9506 - mae: 0.0944 - pearson_correlation: 0.7432 - euclidean_distance: 0.1514
Epoch 268/350
76/76 [==============================] - 0s 821us/step - loss: 0.0921 - accuracy: 0.9466 - mae: 0.0921 - pearson_correlation: 0.7493 - euclidean_distance: 0.1484
Epoch 269/350
76/76 [==============================] - 0s 816us/step - loss: 0.0938 - accuracy: 0.9497 - mae: 0.0938 - pearson_correlation: 0.7499 - euclidean_distance: 0.1505
Epoch 270/350
76/76 [==============================] - 0s 814us/step - loss: 0.0925 - accuracy: 0.9502 - mae: 0.0925 - pearson_correlation: 0.7471 - euclidean_distance: 0.1481
Epoch 271/350
76/76 [==============================] - 0s 817us/step - loss: 0.0925 - accuracy: 0.9506 - mae: 0.0925 - pearson_correlation: 0.7515 - euclidean_distance: 0.1486
Epoch 272/350
76/76 [==============================] - 0s 820us/step - loss: 0.0930 - accuracy: 0.9488 - mae: 0.0930 - pearson_correlation: 0.7451 - euclidean_distance: 0.1489
Epoch 273/350
76/76 [==============================] - 0s 820us/step - loss: 0.0895 - accuracy: 0.9488 - mae: 0.0895 - pearson_correlation: 0.7538 - euclidean_distance: 0.1442
Epoch 274/350
76/76 [==============================] - 0s 815us/step - loss: 0.0912 - accuracy: 0.9510 - mae: 0.0912 - pearson_correlation: 0.7494 - euclidean_distance: 0.1470
Epoch 275/350
76/76 [==============================] - 0s 821us/step - loss: 0.0941 - accuracy: 0.9479 - mae: 0.0941 - pearson_correlation: 0.7393 - euclidean_distance: 0.1512
Epoch 276/350
76/76 [==============================] - 0s 811us/step - loss: 0.0912 - accuracy: 0.9488 - mae: 0.0912 - pearson_correlation: 0.7484 - euclidean_distance: 0.1461
Epoch 277/350
76/76 [==============================] - 0s 818us/step - loss: 0.0927 - accuracy: 0.9506 - mae: 0.0927 - pearson_correlation: 0.7423 - euclidean_distance: 0.1497
Epoch 278/350
76/76 [==============================] - 0s 826us/step - loss: 0.0913 - accuracy: 0.9502 - mae: 0.0913 - pearson_correlation: 0.7449 - euclidean_distance: 0.1472
Epoch 279/350
76/76 [==============================] - 0s 893us/step - loss: 0.0905 - accuracy: 0.9497 - mae: 0.0905 - pearson_correlation: 0.7536 - euclidean_distance: 0.1454
Epoch 280/350
76/76 [==============================] - 0s 837us/step - loss: 0.0904 - accuracy: 0.9506 - mae: 0.0904 - pearson_correlation: 0.7527 - euclidean_distance: 0.1453
Epoch 281/350
76/76 [==============================] - 0s 833us/step - loss: 0.0939 - accuracy: 0.9497 - mae: 0.0939 - pearson_correlation: 0.7409 - euclidean_distance: 0.1510
Epoch 282/350
76/76 [==============================] - 0s 814us/step - loss: 0.0915 - accuracy: 0.9497 - mae: 0.0915 - pearson_correlation: 0.7497 - euclidean_distance: 0.1468
Epoch 283/350
76/76 [==============================] - 0s 816us/step - loss: 0.0899 - accuracy: 0.9510 - mae: 0.0899 - pearson_correlation: 0.7541 - euclidean_distance: 0.1444
Epoch 284/350
76/76 [==============================] - 0s 815us/step - loss: 0.0931 - accuracy: 0.9506 - mae: 0.0931 - pearson_correlation: 0.7458 - euclidean_distance: 0.1497
Epoch 285/350
76/76 [==============================] - 0s 811us/step - loss: 0.0911 - accuracy: 0.9502 - mae: 0.0911 - pearson_correlation: 0.7566 - euclidean_distance: 0.1466
Epoch 286/350
76/76 [==============================] - 0s 817us/step - loss: 0.0916 - accuracy: 0.9497 - mae: 0.0916 - pearson_correlation: 0.7490 - euclidean_distance: 0.1479
Epoch 287/350
76/76 [==============================] - 0s 816us/step - loss: 0.0912 - accuracy: 0.9493 - mae: 0.0912 - pearson_correlation: 0.7510 - euclidean_distance: 0.1466
Epoch 288/350
76/76 [==============================] - 0s 809us/step - loss: 0.0890 - accuracy: 0.9506 - mae: 0.0890 - pearson_correlation: 0.7541 - euclidean_distance: 0.1437
Epoch 289/350
76/76 [==============================] - 0s 817us/step - loss: 0.0895 - accuracy: 0.9506 - mae: 0.0895 - pearson_correlation: 0.7584 - euclidean_distance: 0.1442
Epoch 290/350
76/76 [==============================] - 0s 813us/step - loss: 0.0910 - accuracy: 0.9510 - mae: 0.0910 - pearson_correlation: 0.7537 - euclidean_distance: 0.1459
Epoch 291/350
76/76 [==============================] - 0s 816us/step - loss: 0.0916 - accuracy: 0.9493 - mae: 0.0916 - pearson_correlation: 0.7503 - euclidean_distance: 0.1476
Epoch 292/350
76/76 [==============================] - 0s 816us/step - loss: 0.0900 - accuracy: 0.9515 - mae: 0.0900 - pearson_correlation: 0.7516 - euclidean_distance: 0.1448
Epoch 293/350
76/76 [==============================] - 0s 813us/step - loss: 0.0916 - accuracy: 0.9510 - mae: 0.0916 - pearson_correlation: 0.7531 - euclidean_distance: 0.1471
Epoch 294/350
76/76 [==============================] - 0s 825us/step - loss: 0.0881 - accuracy: 0.9519 - mae: 0.0881 - pearson_correlation: 0.7577 - euclidean_distance: 0.1421
Epoch 295/350
76/76 [==============================] - 0s 819us/step - loss: 0.0933 - accuracy: 0.9502 - mae: 0.0933 - pearson_correlation: 0.7469 - euclidean_distance: 0.1495
Epoch 296/350
76/76 [==============================] - 0s 824us/step - loss: 0.0877 - accuracy: 0.9510 - mae: 0.0877 - pearson_correlation: 0.7586 - euclidean_distance: 0.1412
Epoch 297/350
76/76 [==============================] - 0s 816us/step - loss: 0.0890 - accuracy: 0.9497 - mae: 0.0890 - pearson_correlation: 0.7584 - euclidean_distance: 0.1434
Epoch 298/350
76/76 [==============================] - 0s 816us/step - loss: 0.0893 - accuracy: 0.9502 - mae: 0.0893 - pearson_correlation: 0.7561 - euclidean_distance: 0.1438
Epoch 299/350
76/76 [==============================] - 0s 813us/step - loss: 0.0882 - accuracy: 0.9502 - mae: 0.0882 - pearson_correlation: 0.7600 - euclidean_distance: 0.1419
Epoch 300/350
76/76 [==============================] - 0s 821us/step - loss: 0.0897 - accuracy: 0.9488 - mae: 0.0897 - pearson_correlation: 0.7524 - euclidean_distance: 0.1448
Epoch 301/350
76/76 [==============================] - 0s 818us/step - loss: 0.0905 - accuracy: 0.9502 - mae: 0.0905 - pearson_correlation: 0.7555 - euclidean_distance: 0.1452
Epoch 302/350
76/76 [==============================] - 0s 814us/step - loss: 0.0924 - accuracy: 0.9484 - mae: 0.0924 - pearson_correlation: 0.7454 - euclidean_distance: 0.1484
Epoch 303/350
76/76 [==============================] - 0s 820us/step - loss: 0.0877 - accuracy: 0.9519 - mae: 0.0877 - pearson_correlation: 0.7613 - euclidean_distance: 0.1410
Epoch 304/350
76/76 [==============================] - 0s 816us/step - loss: 0.0896 - accuracy: 0.9502 - mae: 0.0896 - pearson_correlation: 0.7589 - euclidean_distance: 0.1444
Epoch 305/350
76/76 [==============================] - 0s 818us/step - loss: 0.0876 - accuracy: 0.9502 - mae: 0.0876 - pearson_correlation: 0.7588 - euclidean_distance: 0.1413
Epoch 306/350
76/76 [==============================] - 0s 816us/step - loss: 0.0890 - accuracy: 0.9506 - mae: 0.0890 - pearson_correlation: 0.7556 - euclidean_distance: 0.1430
Epoch 307/350
76/76 [==============================] - 0s 820us/step - loss: 0.0869 - accuracy: 0.9506 - mae: 0.0869 - pearson_correlation: 0.7621 - euclidean_distance: 0.1401
Epoch 308/350
76/76 [==============================] - 0s 827us/step - loss: 0.0896 - accuracy: 0.9502 - mae: 0.0896 - pearson_correlation: 0.7534 - euclidean_distance: 0.1443
Epoch 309/350
76/76 [==============================] - 0s 818us/step - loss: 0.0883 - accuracy: 0.9479 - mae: 0.0883 - pearson_correlation: 0.7546 - euclidean_distance: 0.1423
Epoch 310/350
76/76 [==============================] - 0s 816us/step - loss: 0.0867 - accuracy: 0.9497 - mae: 0.0867 - pearson_correlation: 0.7612 - euclidean_distance: 0.1397
Epoch 311/350
76/76 [==============================] - 0s 824us/step - loss: 0.0933 - accuracy: 0.9497 - mae: 0.0933 - pearson_correlation: 0.7459 - euclidean_distance: 0.1493
Epoch 312/350
76/76 [==============================] - 0s 811us/step - loss: 0.0874 - accuracy: 0.9497 - mae: 0.0874 - pearson_correlation: 0.7596 - euclidean_distance: 0.1409
Epoch 313/350
76/76 [==============================] - 0s 824us/step - loss: 0.0883 - accuracy: 0.9502 - mae: 0.0883 - pearson_correlation: 0.7518 - euclidean_distance: 0.1427
Epoch 314/350
76/76 [==============================] - 0s 815us/step - loss: 0.0879 - accuracy: 0.9493 - mae: 0.0879 - pearson_correlation: 0.7596 - euclidean_distance: 0.1416
Epoch 315/350
76/76 [==============================] - 0s 817us/step - loss: 0.0853 - accuracy: 0.9493 - mae: 0.0853 - pearson_correlation: 0.7633 - euclidean_distance: 0.1378
Epoch 316/350
76/76 [==============================] - 0s 819us/step - loss: 0.0901 - accuracy: 0.9506 - mae: 0.0901 - pearson_correlation: 0.7539 - euclidean_distance: 0.1452
Epoch 317/350
76/76 [==============================] - 0s 813us/step - loss: 0.0872 - accuracy: 0.9510 - mae: 0.0872 - pearson_correlation: 0.7576 - euclidean_distance: 0.1405
Epoch 318/350
76/76 [==============================] - 0s 819us/step - loss: 0.0903 - accuracy: 0.9497 - mae: 0.0903 - pearson_correlation: 0.7551 - euclidean_distance: 0.1451
Epoch 319/350
76/76 [==============================] - 0s 817us/step - loss: 0.0880 - accuracy: 0.9488 - mae: 0.0880 - pearson_correlation: 0.7587 - euclidean_distance: 0.1417
Epoch 320/350
76/76 [==============================] - 0s 818us/step - loss: 0.0885 - accuracy: 0.9510 - mae: 0.0885 - pearson_correlation: 0.7579 - euclidean_distance: 0.1427
Epoch 321/350
76/76 [==============================] - 0s 823us/step - loss: 0.0846 - accuracy: 0.9488 - mae: 0.0846 - pearson_correlation: 0.7723 - euclidean_distance: 0.1363
Epoch 322/350
76/76 [==============================] - 0s 823us/step - loss: 0.0884 - accuracy: 0.9502 - mae: 0.0884 - pearson_correlation: 0.7543 - euclidean_distance: 0.1428
Epoch 323/350
76/76 [==============================] - 0s 822us/step - loss: 0.0860 - accuracy: 0.9506 - mae: 0.0860 - pearson_correlation: 0.7604 - euclidean_distance: 0.1386
Epoch 324/350
76/76 [==============================] - 0s 817us/step - loss: 0.0888 - accuracy: 0.9506 - mae: 0.0888 - pearson_correlation: 0.7534 - euclidean_distance: 0.1430
Epoch 325/350
76/76 [==============================] - 0s 814us/step - loss: 0.0867 - accuracy: 0.9506 - mae: 0.0867 - pearson_correlation: 0.7641 - euclidean_distance: 0.1398
Epoch 326/350
76/76 [==============================] - 0s 811us/step - loss: 0.0878 - accuracy: 0.9497 - mae: 0.0878 - pearson_correlation: 0.7560 - euclidean_distance: 0.1414
Epoch 327/350
76/76 [==============================] - 0s 816us/step - loss: 0.0888 - accuracy: 0.9524 - mae: 0.0888 - pearson_correlation: 0.7583 - euclidean_distance: 0.1432
Epoch 328/350
76/76 [==============================] - 0s 811us/step - loss: 0.0875 - accuracy: 0.9519 - mae: 0.0875 - pearson_correlation: 0.7642 - euclidean_distance: 0.1408
Epoch 329/350
76/76 [==============================] - 0s 819us/step - loss: 0.0868 - accuracy: 0.9506 - mae: 0.0868 - pearson_correlation: 0.7625 - euclidean_distance: 0.1394
Epoch 330/350
76/76 [==============================] - 0s 819us/step - loss: 0.0889 - accuracy: 0.9488 - mae: 0.0889 - pearson_correlation: 0.7596 - euclidean_distance: 0.1428
Epoch 331/350
76/76 [==============================] - 0s 813us/step - loss: 0.0853 - accuracy: 0.9506 - mae: 0.0853 - pearson_correlation: 0.7626 - euclidean_distance: 0.1382
Epoch 332/350
76/76 [==============================] - 0s 814us/step - loss: 0.0888 - accuracy: 0.9510 - mae: 0.0888 - pearson_correlation: 0.7591 - euclidean_distance: 0.1435
Epoch 333/350
76/76 [==============================] - 0s 815us/step - loss: 0.0875 - accuracy: 0.9515 - mae: 0.0875 - pearson_correlation: 0.7581 - euclidean_distance: 0.1411
Epoch 334/350
76/76 [==============================] - 0s 823us/step - loss: 0.0867 - accuracy: 0.9506 - mae: 0.0867 - pearson_correlation: 0.7641 - euclidean_distance: 0.1396
Epoch 335/350
76/76 [==============================] - 0s 818us/step - loss: 0.0879 - accuracy: 0.9515 - mae: 0.0879 - pearson_correlation: 0.7631 - euclidean_distance: 0.1411
Epoch 336/350
76/76 [==============================] - 0s 822us/step - loss: 0.0866 - accuracy: 0.9497 - mae: 0.0866 - pearson_correlation: 0.7641 - euclidean_distance: 0.1396
Epoch 337/350
76/76 [==============================] - 0s 810us/step - loss: 0.0881 - accuracy: 0.9502 - mae: 0.0881 - pearson_correlation: 0.7601 - euclidean_distance: 0.1415
Epoch 338/350
76/76 [==============================] - 0s 813us/step - loss: 0.0867 - accuracy: 0.9493 - mae: 0.0867 - pearson_correlation: 0.7616 - euclidean_distance: 0.1398
Epoch 339/350
76/76 [==============================] - 0s 815us/step - loss: 0.0866 - accuracy: 0.9497 - mae: 0.0866 - pearson_correlation: 0.7607 - euclidean_distance: 0.1397
Epoch 340/350
76/76 [==============================] - 0s 809us/step - loss: 0.0866 - accuracy: 0.9502 - mae: 0.0866 - pearson_correlation: 0.7596 - euclidean_distance: 0.1395
Epoch 341/350
76/76 [==============================] - 0s 819us/step - loss: 0.0848 - accuracy: 0.9488 - mae: 0.0848 - pearson_correlation: 0.7694 - euclidean_distance: 0.1369
Epoch 342/350
76/76 [==============================] - 0s 819us/step - loss: 0.0872 - accuracy: 0.9510 - mae: 0.0872 - pearson_correlation: 0.7633 - euclidean_distance: 0.1410
Epoch 343/350
76/76 [==============================] - 0s 809us/step - loss: 0.0854 - accuracy: 0.9502 - mae: 0.0854 - pearson_correlation: 0.7696 - euclidean_distance: 0.1374
Epoch 344/350
76/76 [==============================] - 0s 844us/step - loss: 0.0845 - accuracy: 0.9506 - mae: 0.0845 - pearson_correlation: 0.7654 - euclidean_distance: 0.1365
Epoch 345/350
76/76 [==============================] - 0s 816us/step - loss: 0.0883 - accuracy: 0.9493 - mae: 0.0883 - pearson_correlation: 0.7581 - euclidean_distance: 0.1422
Epoch 346/350
76/76 [==============================] - 0s 845us/step - loss: 0.0855 - accuracy: 0.9510 - mae: 0.0855 - pearson_correlation: 0.7608 - euclidean_distance: 0.1379
Epoch 347/350
76/76 [==============================] - 0s 828us/step - loss: 0.0887 - accuracy: 0.9506 - mae: 0.0887 - pearson_correlation: 0.7583 - euclidean_distance: 0.1424
Epoch 348/350
76/76 [==============================] - 0s 825us/step - loss: 0.0868 - accuracy: 0.9488 - mae: 0.0868 - pearson_correlation: 0.7574 - euclidean_distance: 0.1400
Epoch 349/350
76/76 [==============================] - 0s 822us/step - loss: 0.0857 - accuracy: 0.9506 - mae: 0.0857 - pearson_correlation: 0.7667 - euclidean_distance: 0.1383
Epoch 350/350
76/76 [==============================] - 0s 819us/step - loss: 0.0887 - accuracy: 0.9506 - mae: 0.0887 - pearson_correlation: 0.7570 - euclidean_distance: 0.1426
38/38 [==============================] - 0s 471us/step
Epoch 1/350
76/76 [==============================] - 2s 854us/step - loss: 0.3418 - accuracy: 0.7928 - mae: 0.3418 - pearson_correlation: 0.3938 - euclidean_distance: 0.5200
Epoch 2/350
76/76 [==============================] - 0s 830us/step - loss: 0.3350 - accuracy: 0.7870 - mae: 0.3350 - pearson_correlation: 0.3952 - euclidean_distance: 0.5104
Epoch 3/350
76/76 [==============================] - 0s 880us/step - loss: 0.3293 - accuracy: 0.7914 - mae: 0.3293 - pearson_correlation: 0.4108 - euclidean_distance: 0.5016
Epoch 4/350
76/76 [==============================] - 0s 844us/step - loss: 0.3215 - accuracy: 0.7941 - mae: 0.3215 - pearson_correlation: 0.4093 - euclidean_distance: 0.4911
Epoch 5/350
76/76 [==============================] - 0s 868us/step - loss: 0.3160 - accuracy: 0.7928 - mae: 0.3160 - pearson_correlation: 0.4100 - euclidean_distance: 0.4839
Epoch 6/350
76/76 [==============================] - 0s 848us/step - loss: 0.3112 - accuracy: 0.7972 - mae: 0.3112 - pearson_correlation: 0.4134 - euclidean_distance: 0.4766
Epoch 7/350
76/76 [==============================] - 0s 845us/step - loss: 0.3050 - accuracy: 0.7963 - mae: 0.3050 - pearson_correlation: 0.4099 - euclidean_distance: 0.4676
Epoch 8/350
76/76 [==============================] - 0s 855us/step - loss: 0.2973 - accuracy: 0.7989 - mae: 0.2973 - pearson_correlation: 0.4193 - euclidean_distance: 0.4565
Epoch 9/350
76/76 [==============================] - 0s 834us/step - loss: 0.2904 - accuracy: 0.7967 - mae: 0.2904 - pearson_correlation: 0.4257 - euclidean_distance: 0.4469
Epoch 10/350
76/76 [==============================] - 0s 842us/step - loss: 0.2830 - accuracy: 0.7985 - mae: 0.2830 - pearson_correlation: 0.4267 - euclidean_distance: 0.4365
Epoch 11/350
76/76 [==============================] - 0s 843us/step - loss: 0.2776 - accuracy: 0.7989 - mae: 0.2776 - pearson_correlation: 0.4201 - euclidean_distance: 0.4291
Epoch 12/350
76/76 [==============================] - 0s 840us/step - loss: 0.2721 - accuracy: 0.8029 - mae: 0.2721 - pearson_correlation: 0.4304 - euclidean_distance: 0.4212
Epoch 13/350
76/76 [==============================] - -0s -54us/step - loss: 0.2638 - accuracy: 0.8056 - mae: 0.2638 - pearson_correlation: 0.4375 - euclidean_distance: 0.4089
Epoch 14/350
76/76 [==============================] - 0s 887us/step - loss: 0.2582 - accuracy: 0.8095 - mae: 0.2582 - pearson_correlation: 0.4378 - euclidean_distance: 0.4006
Epoch 15/350
76/76 [==============================] - 0s 851us/step - loss: 0.2514 - accuracy: 0.8131 - mae: 0.2514 - pearson_correlation: 0.4460 - euclidean_distance: 0.3908
Epoch 16/350
76/76 [==============================] - 0s 844us/step - loss: 0.2481 - accuracy: 0.8104 - mae: 0.2481 - pearson_correlation: 0.4445 - euclidean_distance: 0.3861
Epoch 17/350
76/76 [==============================] - 0s 845us/step - loss: 0.2381 - accuracy: 0.8051 - mae: 0.2381 - pearson_correlation: 0.4489 - euclidean_distance: 0.3729
Epoch 18/350
76/76 [==============================] - 0s 835us/step - loss: 0.2338 - accuracy: 0.8148 - mae: 0.2338 - pearson_correlation: 0.4542 - euclidean_distance: 0.3665
Epoch 19/350
76/76 [==============================] - 0s 835us/step - loss: 0.2278 - accuracy: 0.8153 - mae: 0.2278 - pearson_correlation: 0.4546 - euclidean_distance: 0.3578
Epoch 20/350
76/76 [==============================] - 0s 850us/step - loss: 0.2219 - accuracy: 0.8148 - mae: 0.2219 - pearson_correlation: 0.4620 - euclidean_distance: 0.3493
Epoch 21/350
76/76 [==============================] - 0s 844us/step - loss: 0.2179 - accuracy: 0.8117 - mae: 0.2179 - pearson_correlation: 0.4600 - euclidean_distance: 0.3439
Epoch 22/350
76/76 [==============================] - 0s 843us/step - loss: 0.2113 - accuracy: 0.8192 - mae: 0.2113 - pearson_correlation: 0.4679 - euclidean_distance: 0.3342
Epoch 23/350
76/76 [==============================] - 0s 841us/step - loss: 0.2087 - accuracy: 0.8298 - mae: 0.2087 - pearson_correlation: 0.4712 - euclidean_distance: 0.3303
Epoch 24/350
76/76 [==============================] - 0s 843us/step - loss: 0.2019 - accuracy: 0.8250 - mae: 0.2019 - pearson_correlation: 0.4745 - euclidean_distance: 0.3213
Epoch 25/350
76/76 [==============================] - 0s 839us/step - loss: 0.2001 - accuracy: 0.8276 - mae: 0.2001 - pearson_correlation: 0.4739 - euclidean_distance: 0.3184
Epoch 26/350
76/76 [==============================] - 0s 840us/step - loss: 0.1935 - accuracy: 0.8298 - mae: 0.1935 - pearson_correlation: 0.4844 - euclidean_distance: 0.3093
Epoch 27/350
76/76 [==============================] - 0s 837us/step - loss: 0.1885 - accuracy: 0.8276 - mae: 0.1885 - pearson_correlation: 0.4869 - euclidean_distance: 0.3018
Epoch 28/350
76/76 [==============================] - 0s 917us/step - loss: 0.1845 - accuracy: 0.8373 - mae: 0.1845 - pearson_correlation: 0.4904 - euclidean_distance: 0.2957
Epoch 29/350
76/76 [==============================] - 0s 1ms/step - loss: 0.1839 - accuracy: 0.8320 - mae: 0.1839 - pearson_correlation: 0.4897 - euclidean_distance: 0.2944
Epoch 30/350
76/76 [==============================] - 0s 924us/step - loss: 0.1797 - accuracy: 0.8351 - mae: 0.1797 - pearson_correlation: 0.4958 - euclidean_distance: 0.2877
Epoch 31/350
76/76 [==============================] - 0s 942us/step - loss: 0.1790 - accuracy: 0.8364 - mae: 0.1790 - pearson_correlation: 0.4975 - euclidean_distance: 0.2865
Epoch 32/350
76/76 [==============================] - 0s 987us/step - loss: 0.1728 - accuracy: 0.8496 - mae: 0.1728 - pearson_correlation: 0.5153 - euclidean_distance: 0.2777
Epoch 33/350
76/76 [==============================] - 0s 858us/step - loss: 0.1718 - accuracy: 0.8488 - mae: 0.1718 - pearson_correlation: 0.5146 - euclidean_distance: 0.2757
Epoch 34/350
76/76 [==============================] - 0s 853us/step - loss: 0.1689 - accuracy: 0.8541 - mae: 0.1689 - pearson_correlation: 0.5149 - euclidean_distance: 0.2713
Epoch 35/350
76/76 [==============================] - 0s 885us/step - loss: 0.1663 - accuracy: 0.8523 - mae: 0.1663 - pearson_correlation: 0.5244 - euclidean_distance: 0.2679
Epoch 36/350
76/76 [==============================] - 0s 850us/step - loss: 0.1643 - accuracy: 0.8558 - mae: 0.1643 - pearson_correlation: 0.5215 - euclidean_distance: 0.2641
Epoch 37/350
76/76 [==============================] - 0s 850us/step - loss: 0.1599 - accuracy: 0.8677 - mae: 0.1599 - pearson_correlation: 0.5338 - euclidean_distance: 0.2574
Epoch 38/350
76/76 [==============================] - 0s 846us/step - loss: 0.1582 - accuracy: 0.8593 - mae: 0.1582 - pearson_correlation: 0.5304 - euclidean_distance: 0.2544
Epoch 39/350
76/76 [==============================] - 0s 847us/step - loss: 0.1587 - accuracy: 0.8739 - mae: 0.1587 - pearson_correlation: 0.5372 - euclidean_distance: 0.2544
Epoch 40/350
76/76 [==============================] - 0s 841us/step - loss: 0.1553 - accuracy: 0.8748 - mae: 0.1553 - pearson_correlation: 0.5444 - euclidean_distance: 0.2495
Epoch 41/350
76/76 [==============================] - 0s 844us/step - loss: 0.1570 - accuracy: 0.8757 - mae: 0.1570 - pearson_correlation: 0.5363 - euclidean_distance: 0.2524
Epoch 42/350
76/76 [==============================] - 0s 852us/step - loss: 0.1524 - accuracy: 0.8796 - mae: 0.1524 - pearson_correlation: 0.5500 - euclidean_distance: 0.2454
Epoch 43/350
76/76 [==============================] - 0s 848us/step - loss: 0.1501 - accuracy: 0.8810 - mae: 0.1501 - pearson_correlation: 0.5600 - euclidean_distance: 0.2415
Epoch 44/350
76/76 [==============================] - 0s 846us/step - loss: 0.1479 - accuracy: 0.8902 - mae: 0.1479 - pearson_correlation: 0.5591 - euclidean_distance: 0.2382
Epoch 45/350
76/76 [==============================] - 0s 846us/step - loss: 0.1465 - accuracy: 0.8955 - mae: 0.1465 - pearson_correlation: 0.5675 - euclidean_distance: 0.2359
Epoch 46/350
76/76 [==============================] - 0s 845us/step - loss: 0.1444 - accuracy: 0.8929 - mae: 0.1444 - pearson_correlation: 0.5720 - euclidean_distance: 0.2323
Epoch 47/350
76/76 [==============================] - 0s 842us/step - loss: 0.1467 - accuracy: 0.8937 - mae: 0.1467 - pearson_correlation: 0.5652 - euclidean_distance: 0.2357
Epoch 48/350
76/76 [==============================] - 0s 845us/step - loss: 0.1424 - accuracy: 0.9034 - mae: 0.1424 - pearson_correlation: 0.5802 - euclidean_distance: 0.2291
Epoch 49/350
76/76 [==============================] - 0s 836us/step - loss: 0.1444 - accuracy: 0.9074 - mae: 0.1444 - pearson_correlation: 0.5735 - euclidean_distance: 0.2321
Epoch 50/350
76/76 [==============================] - 0s 844us/step - loss: 0.1415 - accuracy: 0.9048 - mae: 0.1415 - pearson_correlation: 0.5834 - euclidean_distance: 0.2277
Epoch 51/350
76/76 [==============================] - 0s 844us/step - loss: 0.1439 - accuracy: 0.9096 - mae: 0.1439 - pearson_correlation: 0.5814 - euclidean_distance: 0.2308
Epoch 52/350
76/76 [==============================] - 0s 844us/step - loss: 0.1394 - accuracy: 0.9171 - mae: 0.1394 - pearson_correlation: 0.5909 - euclidean_distance: 0.2237
Epoch 53/350
76/76 [==============================] - 0s 839us/step - loss: 0.1385 - accuracy: 0.9162 - mae: 0.1385 - pearson_correlation: 0.5902 - euclidean_distance: 0.2225
Epoch 54/350
76/76 [==============================] - 0s 847us/step - loss: 0.1376 - accuracy: 0.9127 - mae: 0.1376 - pearson_correlation: 0.5959 - euclidean_distance: 0.2215
Epoch 55/350
76/76 [==============================] - 0s 840us/step - loss: 0.1357 - accuracy: 0.9162 - mae: 0.1357 - pearson_correlation: 0.6019 - euclidean_distance: 0.2183
Epoch 56/350
76/76 [==============================] - 0s 841us/step - loss: 0.1342 - accuracy: 0.9171 - mae: 0.1342 - pearson_correlation: 0.6064 - euclidean_distance: 0.2162
Epoch 57/350
76/76 [==============================] - 0s 841us/step - loss: 0.1338 - accuracy: 0.9202 - mae: 0.1338 - pearson_correlation: 0.6059 - euclidean_distance: 0.2147
Epoch 58/350
76/76 [==============================] - 0s 847us/step - loss: 0.1313 - accuracy: 0.9250 - mae: 0.1313 - pearson_correlation: 0.6174 - euclidean_distance: 0.2113
Epoch 59/350
76/76 [==============================] - 0s 845us/step - loss: 0.1336 - accuracy: 0.9198 - mae: 0.1336 - pearson_correlation: 0.6076 - euclidean_distance: 0.2143
Epoch 60/350
76/76 [==============================] - 0s 845us/step - loss: 0.1283 - accuracy: 0.9264 - mae: 0.1283 - pearson_correlation: 0.6190 - euclidean_distance: 0.2065
Epoch 61/350
76/76 [==============================] - 0s 846us/step - loss: 0.1309 - accuracy: 0.9228 - mae: 0.1309 - pearson_correlation: 0.6140 - euclidean_distance: 0.2099
Epoch 62/350
76/76 [==============================] - 0s 849us/step - loss: 0.1288 - accuracy: 0.9281 - mae: 0.1288 - pearson_correlation: 0.6226 - euclidean_distance: 0.2068
Epoch 63/350
76/76 [==============================] - 0s 845us/step - loss: 0.1288 - accuracy: 0.9268 - mae: 0.1288 - pearson_correlation: 0.6247 - euclidean_distance: 0.2070
Epoch 64/350
76/76 [==============================] - 0s 845us/step - loss: 0.1264 - accuracy: 0.9286 - mae: 0.1264 - pearson_correlation: 0.6331 - euclidean_distance: 0.2035
Epoch 65/350
76/76 [==============================] - 0s 831us/step - loss: 0.1257 - accuracy: 0.9365 - mae: 0.1257 - pearson_correlation: 0.6319 - euclidean_distance: 0.2020
Epoch 66/350
76/76 [==============================] - 0s 836us/step - loss: 0.1249 - accuracy: 0.9343 - mae: 0.1249 - pearson_correlation: 0.6361 - euclidean_distance: 0.2008
Epoch 67/350
76/76 [==============================] - 0s 836us/step - loss: 0.1236 - accuracy: 0.9339 - mae: 0.1236 - pearson_correlation: 0.6405 - euclidean_distance: 0.1983
Epoch 68/350
76/76 [==============================] - 0s 865us/step - loss: 0.1212 - accuracy: 0.9339 - mae: 0.1212 - pearson_correlation: 0.6473 - euclidean_distance: 0.1939
Epoch 69/350
76/76 [==============================] - 0s 939us/step - loss: 0.1211 - accuracy: 0.9352 - mae: 0.1211 - pearson_correlation: 0.6439 - euclidean_distance: 0.1942
Epoch 70/350
76/76 [==============================] - 0s 920us/step - loss: 0.1210 - accuracy: 0.9400 - mae: 0.1210 - pearson_correlation: 0.6524 - euclidean_distance: 0.1943
Epoch 71/350
76/76 [==============================] - 0s 917us/step - loss: 0.1232 - accuracy: 0.9387 - mae: 0.1232 - pearson_correlation: 0.6437 - euclidean_distance: 0.1973
Epoch 72/350
76/76 [==============================] - 0s 908us/step - loss: 0.1193 - accuracy: 0.9361 - mae: 0.1193 - pearson_correlation: 0.6609 - euclidean_distance: 0.1919
Epoch 73/350
76/76 [==============================] - 0s 900us/step - loss: 0.1203 - accuracy: 0.9369 - mae: 0.1203 - pearson_correlation: 0.6615 - euclidean_distance: 0.1923
Epoch 74/350
76/76 [==============================] - 0s 942us/step - loss: 0.1180 - accuracy: 0.9400 - mae: 0.1180 - pearson_correlation: 0.6680 - euclidean_distance: 0.1891
Epoch 75/350
76/76 [==============================] - 0s 981us/step - loss: 0.1208 - accuracy: 0.9414 - mae: 0.1208 - pearson_correlation: 0.6558 - euclidean_distance: 0.1935
Epoch 76/350
76/76 [==============================] - 0s 986us/step - loss: 0.1175 - accuracy: 0.9409 - mae: 0.1175 - pearson_correlation: 0.6632 - euclidean_distance: 0.1889
Epoch 77/350
76/76 [==============================] - 0s 974us/step - loss: 0.1158 - accuracy: 0.9418 - mae: 0.1158 - pearson_correlation: 0.6687 - euclidean_distance: 0.1862
Epoch 78/350
76/76 [==============================] - 0s 973us/step - loss: 0.1179 - accuracy: 0.9422 - mae: 0.1179 - pearson_correlation: 0.6694 - euclidean_distance: 0.1886
Epoch 79/350
76/76 [==============================] - 0s 912us/step - loss: 0.1152 - accuracy: 0.9444 - mae: 0.1152 - pearson_correlation: 0.6763 - euclidean_distance: 0.1841
Epoch 80/350
76/76 [==============================] - 0s 850us/step - loss: 0.1152 - accuracy: 0.9422 - mae: 0.1152 - pearson_correlation: 0.6691 - euclidean_distance: 0.1850
Epoch 81/350
76/76 [==============================] - 0s 844us/step - loss: 0.1129 - accuracy: 0.9453 - mae: 0.1129 - pearson_correlation: 0.6827 - euclidean_distance: 0.1806
Epoch 82/350
76/76 [==============================] - 0s 846us/step - loss: 0.1156 - accuracy: 0.9458 - mae: 0.1156 - pearson_correlation: 0.6797 - euclidean_distance: 0.1845
Epoch 83/350
76/76 [==============================] - 0s 846us/step - loss: 0.1139 - accuracy: 0.9462 - mae: 0.1139 - pearson_correlation: 0.6812 - euclidean_distance: 0.1831
Epoch 84/350
76/76 [==============================] - 0s 843us/step - loss: 0.1134 - accuracy: 0.9462 - mae: 0.1134 - pearson_correlation: 0.6801 - euclidean_distance: 0.1818
Epoch 85/350
76/76 [==============================] - 0s 843us/step - loss: 0.1110 - accuracy: 0.9480 - mae: 0.1110 - pearson_correlation: 0.6881 - euclidean_distance: 0.1782
Epoch 86/350
76/76 [==============================] - 0s 838us/step - loss: 0.1117 - accuracy: 0.9484 - mae: 0.1117 - pearson_correlation: 0.6865 - euclidean_distance: 0.1791
Epoch 87/350
76/76 [==============================] - 0s 844us/step - loss: 0.1120 - accuracy: 0.9475 - mae: 0.1120 - pearson_correlation: 0.6881 - euclidean_distance: 0.1793
Epoch 88/350
76/76 [==============================] - 0s 848us/step - loss: 0.1107 - accuracy: 0.9471 - mae: 0.1107 - pearson_correlation: 0.6880 - euclidean_distance: 0.1771
Epoch 89/350
76/76 [==============================] - 0s 841us/step - loss: 0.1087 - accuracy: 0.9475 - mae: 0.1087 - pearson_correlation: 0.7005 - euclidean_distance: 0.1742
Epoch 90/350
76/76 [==============================] - 0s 843us/step - loss: 0.1118 - accuracy: 0.9489 - mae: 0.1118 - pearson_correlation: 0.6947 - euclidean_distance: 0.1790
Epoch 91/350
76/76 [==============================] - 0s 845us/step - loss: 0.1094 - accuracy: 0.9462 - mae: 0.1094 - pearson_correlation: 0.6998 - euclidean_distance: 0.1743
Epoch 92/350
76/76 [==============================] - 0s 840us/step - loss: 0.1111 - accuracy: 0.9453 - mae: 0.1111 - pearson_correlation: 0.6939 - euclidean_distance: 0.1779
Epoch 93/350
76/76 [==============================] - 0s 842us/step - loss: 0.1061 - accuracy: 0.9489 - mae: 0.1061 - pearson_correlation: 0.7064 - euclidean_distance: 0.1702
Epoch 94/350
76/76 [==============================] - 0s 843us/step - loss: 0.1114 - accuracy: 0.9471 - mae: 0.1114 - pearson_correlation: 0.6945 - euclidean_distance: 0.1780
Epoch 95/350
76/76 [==============================] - 0s 844us/step - loss: 0.1052 - accuracy: 0.9497 - mae: 0.1052 - pearson_correlation: 0.7054 - euclidean_distance: 0.1686
Epoch 96/350
76/76 [==============================] - 0s 839us/step - loss: 0.1064 - accuracy: 0.9493 - mae: 0.1064 - pearson_correlation: 0.7089 - euclidean_distance: 0.1699
Epoch 97/350
76/76 [==============================] - 0s 837us/step - loss: 0.1053 - accuracy: 0.9511 - mae: 0.1053 - pearson_correlation: 0.7108 - euclidean_distance: 0.1689
Epoch 98/350
76/76 [==============================] - 0s 841us/step - loss: 0.1059 - accuracy: 0.9497 - mae: 0.1059 - pearson_correlation: 0.7126 - euclidean_distance: 0.1696
Epoch 99/350
76/76 [==============================] - 0s 842us/step - loss: 0.1064 - accuracy: 0.9537 - mae: 0.1064 - pearson_correlation: 0.7081 - euclidean_distance: 0.1700
Epoch 100/350
76/76 [==============================] - 0s 841us/step - loss: 0.1052 - accuracy: 0.9519 - mae: 0.1052 - pearson_correlation: 0.7161 - euclidean_distance: 0.1683
Epoch 101/350
76/76 [==============================] - 0s 845us/step - loss: 0.1046 - accuracy: 0.9511 - mae: 0.1046 - pearson_correlation: 0.7113 - euclidean_distance: 0.1682
Epoch 102/350
76/76 [==============================] - 0s 842us/step - loss: 0.1039 - accuracy: 0.9519 - mae: 0.1039 - pearson_correlation: 0.7148 - euclidean_distance: 0.1664
Epoch 103/350
76/76 [==============================] - 0s 841us/step - loss: 0.1067 - accuracy: 0.9519 - mae: 0.1067 - pearson_correlation: 0.7182 - euclidean_distance: 0.1709
Epoch 104/350
76/76 [==============================] - 0s 840us/step - loss: 0.1015 - accuracy: 0.9519 - mae: 0.1015 - pearson_correlation: 0.7235 - euclidean_distance: 0.1629
Epoch 105/350
76/76 [==============================] - 0s 847us/step - loss: 0.1043 - accuracy: 0.9528 - mae: 0.1043 - pearson_correlation: 0.7212 - euclidean_distance: 0.1667
Epoch 106/350
76/76 [==============================] - 0s 845us/step - loss: 0.1000 - accuracy: 0.9533 - mae: 0.1000 - pearson_correlation: 0.7269 - euclidean_distance: 0.1603
Epoch 107/350
76/76 [==============================] - 0s 841us/step - loss: 0.0992 - accuracy: 0.9528 - mae: 0.0992 - pearson_correlation: 0.7316 - euclidean_distance: 0.1587
Epoch 108/350
76/76 [==============================] - 0s 846us/step - loss: 0.1020 - accuracy: 0.9528 - mae: 0.1020 - pearson_correlation: 0.7226 - euclidean_distance: 0.1635
Epoch 109/350
76/76 [==============================] - 0s 838us/step - loss: 0.1042 - accuracy: 0.9537 - mae: 0.1042 - pearson_correlation: 0.7220 - euclidean_distance: 0.1668
Epoch 110/350
76/76 [==============================] - 0s 841us/step - loss: 0.1024 - accuracy: 0.9533 - mae: 0.1024 - pearson_correlation: 0.7268 - euclidean_distance: 0.1635
Epoch 111/350
76/76 [==============================] - 0s 849us/step - loss: 0.0987 - accuracy: 0.9550 - mae: 0.0987 - pearson_correlation: 0.7290 - euclidean_distance: 0.1586
Epoch 112/350
76/76 [==============================] - 0s 844us/step - loss: 0.1019 - accuracy: 0.9528 - mae: 0.1019 - pearson_correlation: 0.7255 - euclidean_distance: 0.1633
Epoch 113/350
76/76 [==============================] - 0s 846us/step - loss: 0.1030 - accuracy: 0.9541 - mae: 0.1030 - pearson_correlation: 0.7222 - euclidean_distance: 0.1650
Epoch 114/350
76/76 [==============================] - 0s 844us/step - loss: 0.1002 - accuracy: 0.9515 - mae: 0.1002 - pearson_correlation: 0.7269 - euclidean_distance: 0.1603
Epoch 115/350
76/76 [==============================] - 0s 842us/step - loss: 0.0980 - accuracy: 0.9546 - mae: 0.0980 - pearson_correlation: 0.7355 - euclidean_distance: 0.1574
Epoch 116/350
76/76 [==============================] - 0s 842us/step - loss: 0.1019 - accuracy: 0.9533 - mae: 0.1019 - pearson_correlation: 0.7276 - euclidean_distance: 0.1632
Epoch 117/350
76/76 [==============================] - 0s 842us/step - loss: 0.0980 - accuracy: 0.9515 - mae: 0.0980 - pearson_correlation: 0.7306 - euclidean_distance: 0.1572
Epoch 118/350
76/76 [==============================] - 0s 846us/step - loss: 0.0989 - accuracy: 0.9546 - mae: 0.0989 - pearson_correlation: 0.7326 - euclidean_distance: 0.1590
Epoch 119/350
76/76 [==============================] - 0s 839us/step - loss: 0.0995 - accuracy: 0.9537 - mae: 0.0995 - pearson_correlation: 0.7328 - euclidean_distance: 0.1593
Epoch 120/350
76/76 [==============================] - 0s 843us/step - loss: 0.0962 - accuracy: 0.9546 - mae: 0.0962 - pearson_correlation: 0.7402 - euclidean_distance: 0.1546
Epoch 121/350
76/76 [==============================] - 0s 889us/step - loss: 0.1008 - accuracy: 0.9533 - mae: 0.1008 - pearson_correlation: 0.7296 - euclidean_distance: 0.1611
Epoch 122/350
76/76 [==============================] - 0s 841us/step - loss: 0.0981 - accuracy: 0.9555 - mae: 0.0981 - pearson_correlation: 0.7359 - euclidean_distance: 0.1574
Epoch 123/350
76/76 [==============================] - 0s 842us/step - loss: 0.1004 - accuracy: 0.9546 - mae: 0.1004 - pearson_correlation: 0.7318 - euclidean_distance: 0.1612
Epoch 124/350
76/76 [==============================] - 0s 835us/step - loss: 0.0954 - accuracy: 0.9546 - mae: 0.0954 - pearson_correlation: 0.7436 - euclidean_distance: 0.1529
Epoch 125/350
76/76 [==============================] - 0s 842us/step - loss: 0.0961 - accuracy: 0.9546 - mae: 0.0961 - pearson_correlation: 0.7391 - euclidean_distance: 0.1542
Epoch 126/350
76/76 [==============================] - 0s 847us/step - loss: 0.0953 - accuracy: 0.9555 - mae: 0.0953 - pearson_correlation: 0.7450 - euclidean_distance: 0.1531
Epoch 127/350
76/76 [==============================] - 0s 845us/step - loss: 0.0956 - accuracy: 0.9541 - mae: 0.0956 - pearson_correlation: 0.7406 - euclidean_distance: 0.1534
Epoch 128/350
76/76 [==============================] - 0s 845us/step - loss: 0.0947 - accuracy: 0.9555 - mae: 0.0947 - pearson_correlation: 0.7450 - euclidean_distance: 0.1518
Epoch 129/350
76/76 [==============================] - 0s 839us/step - loss: 0.0945 - accuracy: 0.9537 - mae: 0.0945 - pearson_correlation: 0.7456 - euclidean_distance: 0.1517
Epoch 130/350
76/76 [==============================] - 0s 840us/step - loss: 0.0938 - accuracy: 0.9559 - mae: 0.0938 - pearson_correlation: 0.7505 - euclidean_distance: 0.1502
Epoch 131/350
76/76 [==============================] - 0s 842us/step - loss: 0.0932 - accuracy: 0.9559 - mae: 0.0932 - pearson_correlation: 0.7468 - euclidean_distance: 0.1500
Epoch 132/350
76/76 [==============================] - 0s 873us/step - loss: 0.0939 - accuracy: 0.9555 - mae: 0.0939 - pearson_correlation: 0.7447 - euclidean_distance: 0.1513
Epoch 133/350
76/76 [==============================] - 0s 848us/step - loss: 0.0955 - accuracy: 0.9555 - mae: 0.0955 - pearson_correlation: 0.7402 - euclidean_distance: 0.1539
Epoch 134/350
76/76 [==============================] - 0s 841us/step - loss: 0.0928 - accuracy: 0.9550 - mae: 0.0928 - pearson_correlation: 0.7501 - euclidean_distance: 0.1493
Epoch 135/350
76/76 [==============================] - 0s 844us/step - loss: 0.0967 - accuracy: 0.9550 - mae: 0.0967 - pearson_correlation: 0.7430 - euclidean_distance: 0.1548
Epoch 136/350
76/76 [==============================] - 0s 886us/step - loss: 0.0937 - accuracy: 0.9550 - mae: 0.0937 - pearson_correlation: 0.7451 - euclidean_distance: 0.1505
Epoch 137/350
76/76 [==============================] - 0s 847us/step - loss: 0.0955 - accuracy: 0.9537 - mae: 0.0955 - pearson_correlation: 0.7390 - euclidean_distance: 0.1537
Epoch 138/350
76/76 [==============================] - 0s 842us/step - loss: 0.0911 - accuracy: 0.9550 - mae: 0.0911 - pearson_correlation: 0.7550 - euclidean_distance: 0.1461
Epoch 139/350
76/76 [==============================] - 0s 846us/step - loss: 0.0949 - accuracy: 0.9559 - mae: 0.0949 - pearson_correlation: 0.7470 - euclidean_distance: 0.1525
Epoch 140/350
76/76 [==============================] - 0s 844us/step - loss: 0.0903 - accuracy: 0.9550 - mae: 0.0903 - pearson_correlation: 0.7556 - euclidean_distance: 0.1455
Epoch 141/350
76/76 [==============================] - 0s 839us/step - loss: 0.0921 - accuracy: 0.9550 - mae: 0.0921 - pearson_correlation: 0.7529 - euclidean_distance: 0.1477
Epoch 142/350
76/76 [==============================] - 0s 841us/step - loss: 0.0924 - accuracy: 0.9546 - mae: 0.0924 - pearson_correlation: 0.7473 - euclidean_distance: 0.1489
Epoch 143/350
76/76 [==============================] - 0s 847us/step - loss: 0.0937 - accuracy: 0.9555 - mae: 0.0937 - pearson_correlation: 0.7502 - euclidean_distance: 0.1504
Epoch 144/350
76/76 [==============================] - 0s 847us/step - loss: 0.0926 - accuracy: 0.9559 - mae: 0.0926 - pearson_correlation: 0.7490 - euclidean_distance: 0.1490
Epoch 145/350
76/76 [==============================] - 0s 836us/step - loss: 0.0945 - accuracy: 0.9555 - mae: 0.0945 - pearson_correlation: 0.7505 - euclidean_distance: 0.1518
Epoch 146/350
76/76 [==============================] - 0s 837us/step - loss: 0.0901 - accuracy: 0.9559 - mae: 0.0901 - pearson_correlation: 0.7586 - euclidean_distance: 0.1451
Epoch 147/350
76/76 [==============================] - 0s 834us/step - loss: 0.0930 - accuracy: 0.9555 - mae: 0.0930 - pearson_correlation: 0.7516 - euclidean_distance: 0.1493
Epoch 148/350
76/76 [==============================] - 0s 839us/step - loss: 0.0909 - accuracy: 0.9559 - mae: 0.0909 - pearson_correlation: 0.7560 - euclidean_distance: 0.1461
Epoch 149/350
76/76 [==============================] - 0s 842us/step - loss: 0.0917 - accuracy: 0.9546 - mae: 0.0917 - pearson_correlation: 0.7525 - euclidean_distance: 0.1480
Epoch 150/350
76/76 [==============================] - 0s 844us/step - loss: 0.0899 - accuracy: 0.9550 - mae: 0.0899 - pearson_correlation: 0.7590 - euclidean_distance: 0.1448
Epoch 151/350
76/76 [==============================] - 0s 850us/step - loss: 0.0904 - accuracy: 0.9550 - mae: 0.0904 - pearson_correlation: 0.7545 - euclidean_distance: 0.1455
Epoch 152/350
76/76 [==============================] - 0s 841us/step - loss: 0.0920 - accuracy: 0.9559 - mae: 0.0920 - pearson_correlation: 0.7511 - euclidean_distance: 0.1482
Epoch 153/350
76/76 [==============================] - 0s 841us/step - loss: 0.0895 - accuracy: 0.9555 - mae: 0.0895 - pearson_correlation: 0.7544 - euclidean_distance: 0.1445
Epoch 154/350
76/76 [==============================] - 0s 836us/step - loss: 0.0884 - accuracy: 0.9555 - mae: 0.0884 - pearson_correlation: 0.7588 - euclidean_distance: 0.1428
Epoch 155/350
76/76 [==============================] - 0s 838us/step - loss: 0.0885 - accuracy: 0.9555 - mae: 0.0885 - pearson_correlation: 0.7594 - euclidean_distance: 0.1431
Epoch 156/350
76/76 [==============================] - 0s 844us/step - loss: 0.0904 - accuracy: 0.9559 - mae: 0.0904 - pearson_correlation: 0.7586 - euclidean_distance: 0.1454
Epoch 157/350
76/76 [==============================] - 0s 839us/step - loss: 0.0912 - accuracy: 0.9559 - mae: 0.0912 - pearson_correlation: 0.7507 - euclidean_distance: 0.1473
Epoch 158/350
76/76 [==============================] - 0s 850us/step - loss: 0.0893 - accuracy: 0.9555 - mae: 0.0893 - pearson_correlation: 0.7568 - euclidean_distance: 0.1438
Epoch 159/350
76/76 [==============================] - 0s 861us/step - loss: 0.0870 - accuracy: 0.9546 - mae: 0.0870 - pearson_correlation: 0.7617 - euclidean_distance: 0.1401
Epoch 160/350
76/76 [==============================] - 0s 836us/step - loss: 0.0902 - accuracy: 0.9559 - mae: 0.0902 - pearson_correlation: 0.7561 - euclidean_distance: 0.1454
Epoch 161/350
76/76 [==============================] - 0s 841us/step - loss: 0.0873 - accuracy: 0.9559 - mae: 0.0873 - pearson_correlation: 0.7638 - euclidean_distance: 0.1403
Epoch 162/350
76/76 [==============================] - 0s 836us/step - loss: 0.0863 - accuracy: 0.9559 - mae: 0.0863 - pearson_correlation: 0.7675 - euclidean_distance: 0.1390
Epoch 163/350
76/76 [==============================] - 0s 837us/step - loss: 0.0899 - accuracy: 0.9559 - mae: 0.0899 - pearson_correlation: 0.7545 - euclidean_distance: 0.1446
Epoch 164/350
76/76 [==============================] - 0s 841us/step - loss: 0.0883 - accuracy: 0.9559 - mae: 0.0883 - pearson_correlation: 0.7599 - euclidean_distance: 0.1424
Epoch 165/350
76/76 [==============================] - 0s 840us/step - loss: 0.0878 - accuracy: 0.9555 - mae: 0.0878 - pearson_correlation: 0.7621 - euclidean_distance: 0.1422
Epoch 166/350
76/76 [==============================] - 0s 841us/step - loss: 0.0869 - accuracy: 0.9559 - mae: 0.0869 - pearson_correlation: 0.7592 - euclidean_distance: 0.1403
Epoch 167/350
76/76 [==============================] - 0s 840us/step - loss: 0.0872 - accuracy: 0.9550 - mae: 0.0872 - pearson_correlation: 0.7621 - euclidean_distance: 0.1408
Epoch 168/350
76/76 [==============================] - 0s 841us/step - loss: 0.0894 - accuracy: 0.9555 - mae: 0.0894 - pearson_correlation: 0.7620 - euclidean_distance: 0.1438
Epoch 169/350
76/76 [==============================] - 0s 847us/step - loss: 0.0899 - accuracy: 0.9555 - mae: 0.0899 - pearson_correlation: 0.7604 - euclidean_distance: 0.1446
Epoch 170/350
76/76 [==============================] - 0s 847us/step - loss: 0.0882 - accuracy: 0.9559 - mae: 0.0882 - pearson_correlation: 0.7584 - euclidean_distance: 0.1424
Epoch 171/350
76/76 [==============================] - 0s 842us/step - loss: 0.0828 - accuracy: 0.9555 - mae: 0.0828 - pearson_correlation: 0.7749 - euclidean_distance: 0.1340
Epoch 172/350
76/76 [==============================] - 0s 847us/step - loss: 0.0878 - accuracy: 0.9555 - mae: 0.0878 - pearson_correlation: 0.7619 - euclidean_distance: 0.1417
Epoch 173/350
76/76 [==============================] - 0s 904us/step - loss: 0.0878 - accuracy: 0.9559 - mae: 0.0878 - pearson_correlation: 0.7619 - euclidean_distance: 0.1413
Epoch 174/350
76/76 [==============================] - 0s 843us/step - loss: 0.0884 - accuracy: 0.9559 - mae: 0.0884 - pearson_correlation: 0.7576 - euclidean_distance: 0.1419
Epoch 175/350
76/76 [==============================] - 0s 841us/step - loss: 0.0888 - accuracy: 0.9559 - mae: 0.0888 - pearson_correlation: 0.7610 - euclidean_distance: 0.1428
Epoch 176/350
76/76 [==============================] - 0s 840us/step - loss: 0.0858 - accuracy: 0.9555 - mae: 0.0858 - pearson_correlation: 0.7663 - euclidean_distance: 0.1385
Epoch 177/350
76/76 [==============================] - 0s 844us/step - loss: 0.0866 - accuracy: 0.9555 - mae: 0.0866 - pearson_correlation: 0.7659 - euclidean_distance: 0.1393
Epoch 178/350
76/76 [==============================] - 0s 839us/step - loss: 0.0862 - accuracy: 0.9555 - mae: 0.0862 - pearson_correlation: 0.7676 - euclidean_distance: 0.1396
Epoch 179/350
76/76 [==============================] - 0s 839us/step - loss: 0.0874 - accuracy: 0.9555 - mae: 0.0874 - pearson_correlation: 0.7606 - euclidean_distance: 0.1406
Epoch 180/350
76/76 [==============================] - 0s 848us/step - loss: 0.0861 - accuracy: 0.9555 - mae: 0.0861 - pearson_correlation: 0.7655 - euclidean_distance: 0.1390
Epoch 181/350
76/76 [==============================] - 0s 844us/step - loss: 0.0856 - accuracy: 0.9559 - mae: 0.0856 - pearson_correlation: 0.7686 - euclidean_distance: 0.1380
Epoch 182/350
76/76 [==============================] - 0s 842us/step - loss: 0.0869 - accuracy: 0.9559 - mae: 0.0869 - pearson_correlation: 0.7664 - euclidean_distance: 0.1400
Epoch 183/350
76/76 [==============================] - 0s 846us/step - loss: 0.0873 - accuracy: 0.9559 - mae: 0.0873 - pearson_correlation: 0.7598 - euclidean_distance: 0.1413
Epoch 184/350
76/76 [==============================] - 0s 841us/step - loss: 0.0867 - accuracy: 0.9563 - mae: 0.0867 - pearson_correlation: 0.7622 - euclidean_distance: 0.1402
Epoch 185/350
76/76 [==============================] - 0s 839us/step - loss: 0.0889 - accuracy: 0.9559 - mae: 0.0889 - pearson_correlation: 0.7600 - euclidean_distance: 0.1428
Epoch 186/350
76/76 [==============================] - 0s 835us/step - loss: 0.0880 - accuracy: 0.9559 - mae: 0.0880 - pearson_correlation: 0.7652 - euclidean_distance: 0.1417
Epoch 187/350
76/76 [==============================] - 0s 839us/step - loss: 0.0848 - accuracy: 0.9555 - mae: 0.0848 - pearson_correlation: 0.7691 - euclidean_distance: 0.1373
Epoch 188/350
76/76 [==============================] - 0s 845us/step - loss: 0.0868 - accuracy: 0.9559 - mae: 0.0868 - pearson_correlation: 0.7638 - euclidean_distance: 0.1399
Epoch 189/350
76/76 [==============================] - 0s 842us/step - loss: 0.0852 - accuracy: 0.9559 - mae: 0.0852 - pearson_correlation: 0.7671 - euclidean_distance: 0.1372
Epoch 190/350
76/76 [==============================] - 0s 841us/step - loss: 0.0838 - accuracy: 0.9559 - mae: 0.0838 - pearson_correlation: 0.7695 - euclidean_distance: 0.1359
Epoch 191/350
76/76 [==============================] - 0s 844us/step - loss: 0.0840 - accuracy: 0.9559 - mae: 0.0840 - pearson_correlation: 0.7671 - euclidean_distance: 0.1362
Epoch 192/350
76/76 [==============================] - 0s 842us/step - loss: 0.0866 - accuracy: 0.9559 - mae: 0.0866 - pearson_correlation: 0.7638 - euclidean_distance: 0.1399
Epoch 193/350
76/76 [==============================] - 0s 845us/step - loss: 0.0841 - accuracy: 0.9559 - mae: 0.0841 - pearson_correlation: 0.7721 - euclidean_distance: 0.1357
Epoch 194/350
76/76 [==============================] - 0s 840us/step - loss: 0.0853 - accuracy: 0.9559 - mae: 0.0853 - pearson_correlation: 0.7670 - euclidean_distance: 0.1378
Epoch 195/350
76/76 [==============================] - 0s 840us/step - loss: 0.0896 - accuracy: 0.9559 - mae: 0.0896 - pearson_correlation: 0.7542 - euclidean_distance: 0.1442
Epoch 196/350
76/76 [==============================] - 0s 836us/step - loss: 0.0866 - accuracy: 0.9559 - mae: 0.0866 - pearson_correlation: 0.7655 - euclidean_distance: 0.1400
Epoch 197/350
76/76 [==============================] - 0s 846us/step - loss: 0.0844 - accuracy: 0.9555 - mae: 0.0844 - pearson_correlation: 0.7715 - euclidean_distance: 0.1363
Epoch 198/350
76/76 [==============================] - 0s 842us/step - loss: 0.0856 - accuracy: 0.9559 - mae: 0.0856 - pearson_correlation: 0.7714 - euclidean_distance: 0.1380
Epoch 199/350
76/76 [==============================] - 0s 844us/step - loss: 0.0842 - accuracy: 0.9559 - mae: 0.0842 - pearson_correlation: 0.7716 - euclidean_distance: 0.1360
Epoch 200/350
76/76 [==============================] - 0s 838us/step - loss: 0.0836 - accuracy: 0.9559 - mae: 0.0836 - pearson_correlation: 0.7731 - euclidean_distance: 0.1352
Epoch 201/350
76/76 [==============================] - 0s 838us/step - loss: 0.0839 - accuracy: 0.9559 - mae: 0.0839 - pearson_correlation: 0.7713 - euclidean_distance: 0.1357
Epoch 202/350
76/76 [==============================] - 0s 834us/step - loss: 0.0836 - accuracy: 0.9559 - mae: 0.0836 - pearson_correlation: 0.7693 - euclidean_distance: 0.1352
Epoch 203/350
76/76 [==============================] - 0s 836us/step - loss: 0.0865 - accuracy: 0.9559 - mae: 0.0865 - pearson_correlation: 0.7649 - euclidean_distance: 0.1393
Epoch 204/350
76/76 [==============================] - 0s 839us/step - loss: 0.0848 - accuracy: 0.9559 - mae: 0.0848 - pearson_correlation: 0.7657 - euclidean_distance: 0.1366
Epoch 205/350
76/76 [==============================] - 0s 841us/step - loss: 0.0849 - accuracy: 0.9555 - mae: 0.0849 - pearson_correlation: 0.7714 - euclidean_distance: 0.1369
Epoch 206/350
76/76 [==============================] - 0s 840us/step - loss: 0.0804 - accuracy: 0.9559 - mae: 0.0804 - pearson_correlation: 0.7782 - euclidean_distance: 0.1303
Epoch 207/350
76/76 [==============================] - 0s 838us/step - loss: 0.0836 - accuracy: 0.9559 - mae: 0.0836 - pearson_correlation: 0.7706 - euclidean_distance: 0.1346
Epoch 208/350
76/76 [==============================] - 0s 844us/step - loss: 0.0844 - accuracy: 0.9559 - mae: 0.0844 - pearson_correlation: 0.7690 - euclidean_distance: 0.1359
Epoch 209/350
76/76 [==============================] - 0s 838us/step - loss: 0.0850 - accuracy: 0.9559 - mae: 0.0850 - pearson_correlation: 0.7691 - euclidean_distance: 0.1367
Epoch 210/350
76/76 [==============================] - 0s 838us/step - loss: 0.0832 - accuracy: 0.9559 - mae: 0.0832 - pearson_correlation: 0.7717 - euclidean_distance: 0.1342
Epoch 211/350
76/76 [==============================] - 0s 838us/step - loss: 0.0838 - accuracy: 0.9559 - mae: 0.0838 - pearson_correlation: 0.7726 - euclidean_distance: 0.1356
Epoch 212/350
76/76 [==============================] - 0s 842us/step - loss: 0.0820 - accuracy: 0.9559 - mae: 0.0820 - pearson_correlation: 0.7759 - euclidean_distance: 0.1322
Epoch 213/350
76/76 [==============================] - 0s 843us/step - loss: 0.0860 - accuracy: 0.9559 - mae: 0.0860 - pearson_correlation: 0.7667 - euclidean_distance: 0.1383
Epoch 214/350
76/76 [==============================] - 0s 844us/step - loss: 0.0844 - accuracy: 0.9559 - mae: 0.0844 - pearson_correlation: 0.7697 - euclidean_distance: 0.1365
Epoch 215/350
76/76 [==============================] - 0s 840us/step - loss: 0.0846 - accuracy: 0.9555 - mae: 0.0846 - pearson_correlation: 0.7679 - euclidean_distance: 0.1367
Epoch 216/350
76/76 [==============================] - 0s 843us/step - loss: 0.0842 - accuracy: 0.9559 - mae: 0.0842 - pearson_correlation: 0.7683 - euclidean_distance: 0.1366
Epoch 217/350
76/76 [==============================] - 0s 841us/step - loss: 0.0854 - accuracy: 0.9559 - mae: 0.0854 - pearson_correlation: 0.7628 - euclidean_distance: 0.1381
Epoch 218/350
76/76 [==============================] - 0s 840us/step - loss: 0.0835 - accuracy: 0.9559 - mae: 0.0835 - pearson_correlation: 0.7717 - euclidean_distance: 0.1348
Epoch 219/350
76/76 [==============================] - 0s 853us/step - loss: 0.0836 - accuracy: 0.9559 - mae: 0.0836 - pearson_correlation: 0.7693 - euclidean_distance: 0.1348
Epoch 220/350
76/76 [==============================] - 0s 848us/step - loss: 0.0852 - accuracy: 0.9559 - mae: 0.0852 - pearson_correlation: 0.7665 - euclidean_distance: 0.1372
Epoch 221/350
76/76 [==============================] - 0s 837us/step - loss: 0.0828 - accuracy: 0.9559 - mae: 0.0828 - pearson_correlation: 0.7752 - euclidean_distance: 0.1335
Epoch 222/350
76/76 [==============================] - 0s 838us/step - loss: 0.0811 - accuracy: 0.9559 - mae: 0.0811 - pearson_correlation: 0.7769 - euclidean_distance: 0.1312
Epoch 223/350
76/76 [==============================] - 0s 841us/step - loss: 0.0823 - accuracy: 0.9559 - mae: 0.0823 - pearson_correlation: 0.7695 - euclidean_distance: 0.1330
Epoch 224/350
76/76 [==============================] - 0s 843us/step - loss: 0.0844 - accuracy: 0.9559 - mae: 0.0844 - pearson_correlation: 0.7678 - euclidean_distance: 0.1360
Epoch 225/350
76/76 [==============================] - 0s 841us/step - loss: 0.0836 - accuracy: 0.9559 - mae: 0.0836 - pearson_correlation: 0.7696 - euclidean_distance: 0.1348
Epoch 226/350
76/76 [==============================] - 0s 835us/step - loss: 0.0835 - accuracy: 0.9559 - mae: 0.0835 - pearson_correlation: 0.7713 - euclidean_distance: 0.1351
Epoch 227/350
76/76 [==============================] - 0s 836us/step - loss: 0.0849 - accuracy: 0.9559 - mae: 0.0849 - pearson_correlation: 0.7754 - euclidean_distance: 0.1368
Epoch 228/350
76/76 [==============================] - 0s 839us/step - loss: 0.0794 - accuracy: 0.9555 - mae: 0.0794 - pearson_correlation: 0.7814 - euclidean_distance: 0.1286
Epoch 229/350
76/76 [==============================] - 0s 841us/step - loss: 0.0813 - accuracy: 0.9559 - mae: 0.0813 - pearson_correlation: 0.7711 - euclidean_distance: 0.1319
Epoch 230/350
76/76 [==============================] - 0s 849us/step - loss: 0.0828 - accuracy: 0.9559 - mae: 0.0828 - pearson_correlation: 0.7715 - euclidean_distance: 0.1340
Epoch 231/350
76/76 [==============================] - 0s 832us/step - loss: 0.0830 - accuracy: 0.9559 - mae: 0.0830 - pearson_correlation: 0.7726 - euclidean_distance: 0.1340
Epoch 232/350
76/76 [==============================] - 0s 842us/step - loss: 0.0800 - accuracy: 0.9559 - mae: 0.0800 - pearson_correlation: 0.7819 - euclidean_distance: 0.1286
Epoch 233/350
76/76 [==============================] - 0s 831us/step - loss: 0.0835 - accuracy: 0.9559 - mae: 0.0835 - pearson_correlation: 0.7723 - euclidean_distance: 0.1348
Epoch 234/350
76/76 [==============================] - 0s 838us/step - loss: 0.0829 - accuracy: 0.9559 - mae: 0.0829 - pearson_correlation: 0.7742 - euclidean_distance: 0.1339
Epoch 235/350
76/76 [==============================] - 0s 845us/step - loss: 0.0804 - accuracy: 0.9559 - mae: 0.0804 - pearson_correlation: 0.7741 - euclidean_distance: 0.1305
Epoch 236/350
76/76 [==============================] - 0s 836us/step - loss: 0.0828 - accuracy: 0.9559 - mae: 0.0828 - pearson_correlation: 0.7689 - euclidean_distance: 0.1342
Epoch 237/350
76/76 [==============================] - 0s 840us/step - loss: 0.0807 - accuracy: 0.9559 - mae: 0.0807 - pearson_correlation: 0.7776 - euclidean_distance: 0.1309
Epoch 238/350
76/76 [==============================] - 0s 845us/step - loss: 0.0815 - accuracy: 0.9559 - mae: 0.0815 - pearson_correlation: 0.7727 - euclidean_distance: 0.1321
Epoch 239/350
76/76 [==============================] - 0s 840us/step - loss: 0.0796 - accuracy: 0.9563 - mae: 0.0796 - pearson_correlation: 0.7719 - euclidean_distance: 0.1288
Epoch 240/350
76/76 [==============================] - 0s 842us/step - loss: 0.0839 - accuracy: 0.9563 - mae: 0.0839 - pearson_correlation: 0.7701 - euclidean_distance: 0.1351
Epoch 241/350
76/76 [==============================] - 0s 840us/step - loss: 0.0843 - accuracy: 0.9559 - mae: 0.0843 - pearson_correlation: 0.7699 - euclidean_distance: 0.1362
Epoch 242/350
76/76 [==============================] - 0s 840us/step - loss: 0.0813 - accuracy: 0.9559 - mae: 0.0813 - pearson_correlation: 0.7771 - euclidean_distance: 0.1313
Epoch 243/350
76/76 [==============================] - 0s 844us/step - loss: 0.0831 - accuracy: 0.9559 - mae: 0.0831 - pearson_correlation: 0.7744 - euclidean_distance: 0.1343
Epoch 244/350
76/76 [==============================] - 0s 839us/step - loss: 0.0797 - accuracy: 0.9559 - mae: 0.0797 - pearson_correlation: 0.7765 - euclidean_distance: 0.1294
Epoch 245/350
76/76 [==============================] - 0s 838us/step - loss: 0.0808 - accuracy: 0.9559 - mae: 0.0808 - pearson_correlation: 0.7777 - euclidean_distance: 0.1303
Epoch 246/350
76/76 [==============================] - 0s 844us/step - loss: 0.0816 - accuracy: 0.9559 - mae: 0.0816 - pearson_correlation: 0.7768 - euclidean_distance: 0.1318
Epoch 247/350
76/76 [==============================] - 0s 841us/step - loss: 0.0834 - accuracy: 0.9559 - mae: 0.0834 - pearson_correlation: 0.7688 - euclidean_distance: 0.1347
Epoch 248/350
76/76 [==============================] - 0s 834us/step - loss: 0.0794 - accuracy: 0.9559 - mae: 0.0794 - pearson_correlation: 0.7805 - euclidean_distance: 0.1287
Epoch 249/350
76/76 [==============================] - 0s 845us/step - loss: 0.0834 - accuracy: 0.9559 - mae: 0.0834 - pearson_correlation: 0.7746 - euclidean_distance: 0.1344
Epoch 250/350
76/76 [==============================] - 0s 842us/step - loss: 0.0834 - accuracy: 0.9559 - mae: 0.0834 - pearson_correlation: 0.7726 - euclidean_distance: 0.1338
Epoch 251/350
76/76 [==============================] - 0s 836us/step - loss: 0.0839 - accuracy: 0.9559 - mae: 0.0839 - pearson_correlation: 0.7711 - euclidean_distance: 0.1352
Epoch 252/350
76/76 [==============================] - 0s 840us/step - loss: 0.0806 - accuracy: 0.9559 - mae: 0.0806 - pearson_correlation: 0.7824 - euclidean_distance: 0.1300
Epoch 253/350
76/76 [==============================] - 0s 841us/step - loss: 0.0787 - accuracy: 0.9559 - mae: 0.0787 - pearson_correlation: 0.7806 - euclidean_distance: 0.1279
Epoch 254/350
76/76 [==============================] - 0s 836us/step - loss: 0.0842 - accuracy: 0.9559 - mae: 0.0842 - pearson_correlation: 0.7704 - euclidean_distance: 0.1358
Epoch 255/350
76/76 [==============================] - 0s 841us/step - loss: 0.0823 - accuracy: 0.9559 - mae: 0.0823 - pearson_correlation: 0.7740 - euclidean_distance: 0.1329
Epoch 256/350
76/76 [==============================] - 0s 842us/step - loss: 0.0808 - accuracy: 0.9559 - mae: 0.0808 - pearson_correlation: 0.7772 - euclidean_distance: 0.1308
Epoch 257/350
76/76 [==============================] - 0s 836us/step - loss: 0.0817 - accuracy: 0.9559 - mae: 0.0817 - pearson_correlation: 0.7745 - euclidean_distance: 0.1324
Epoch 258/350
76/76 [==============================] - 0s 841us/step - loss: 0.0818 - accuracy: 0.9559 - mae: 0.0818 - pearson_correlation: 0.7724 - euclidean_distance: 0.1323
Epoch 259/350
76/76 [==============================] - 0s 885us/step - loss: 0.0801 - accuracy: 0.9559 - mae: 0.0801 - pearson_correlation: 0.7801 - euclidean_distance: 0.1296
Epoch 260/350
76/76 [==============================] - 0s 839us/step - loss: 0.0827 - accuracy: 0.9559 - mae: 0.0827 - pearson_correlation: 0.7697 - euclidean_distance: 0.1336
Epoch 261/350
76/76 [==============================] - 0s 842us/step - loss: 0.0821 - accuracy: 0.9559 - mae: 0.0821 - pearson_correlation: 0.7738 - euclidean_distance: 0.1326
Epoch 262/350
76/76 [==============================] - 0s 840us/step - loss: 0.0809 - accuracy: 0.9559 - mae: 0.0809 - pearson_correlation: 0.7790 - euclidean_distance: 0.1307
Epoch 263/350
76/76 [==============================] - 0s 842us/step - loss: 0.0804 - accuracy: 0.9555 - mae: 0.0804 - pearson_correlation: 0.7824 - euclidean_distance: 0.1300
Epoch 264/350
76/76 [==============================] - 0s 836us/step - loss: 0.0794 - accuracy: 0.9559 - mae: 0.0794 - pearson_correlation: 0.7831 - euclidean_distance: 0.1286
Epoch 265/350
76/76 [==============================] - 0s 836us/step - loss: 0.0811 - accuracy: 0.9559 - mae: 0.0811 - pearson_correlation: 0.7740 - euclidean_distance: 0.1317
Epoch 266/350
76/76 [==============================] - 0s 840us/step - loss: 0.0826 - accuracy: 0.9559 - mae: 0.0826 - pearson_correlation: 0.7714 - euclidean_distance: 0.1332
Epoch 267/350
76/76 [==============================] - 0s 840us/step - loss: 0.0811 - accuracy: 0.9559 - mae: 0.0811 - pearson_correlation: 0.7787 - euclidean_distance: 0.1310
Epoch 268/350
76/76 [==============================] - 0s 838us/step - loss: 0.0783 - accuracy: 0.9559 - mae: 0.0783 - pearson_correlation: 0.7797 - euclidean_distance: 0.1272
Epoch 269/350
76/76 [==============================] - 0s 844us/step - loss: 0.0810 - accuracy: 0.9559 - mae: 0.0810 - pearson_correlation: 0.7743 - euclidean_distance: 0.1311
Epoch 270/350
76/76 [==============================] - 0s 836us/step - loss: 0.0827 - accuracy: 0.9559 - mae: 0.0827 - pearson_correlation: 0.7767 - euclidean_distance: 0.1334
Epoch 271/350
76/76 [==============================] - 0s 843us/step - loss: 0.0801 - accuracy: 0.9559 - mae: 0.0801 - pearson_correlation: 0.7793 - euclidean_distance: 0.1296
Epoch 272/350
76/76 [==============================] - 0s 844us/step - loss: 0.0757 - accuracy: 0.9559 - mae: 0.0757 - pearson_correlation: 0.7848 - euclidean_distance: 0.1230
Epoch 273/350
76/76 [==============================] - 0s 841us/step - loss: 0.0808 - accuracy: 0.9559 - mae: 0.0808 - pearson_correlation: 0.7777 - euclidean_distance: 0.1306
Epoch 274/350
76/76 [==============================] - 0s 849us/step - loss: 0.0797 - accuracy: 0.9559 - mae: 0.0797 - pearson_correlation: 0.7781 - euclidean_distance: 0.1293
Epoch 275/350
76/76 [==============================] - 0s 839us/step - loss: 0.0827 - accuracy: 0.9559 - mae: 0.0827 - pearson_correlation: 0.7709 - euclidean_distance: 0.1336
Epoch 276/350
76/76 [==============================] - 0s 842us/step - loss: 0.0788 - accuracy: 0.9555 - mae: 0.0788 - pearson_correlation: 0.7806 - euclidean_distance: 0.1275
Epoch 277/350
76/76 [==============================] - 0s 843us/step - loss: 0.0828 - accuracy: 0.9559 - mae: 0.0828 - pearson_correlation: 0.7707 - euclidean_distance: 0.1337
Epoch 278/350
76/76 [==============================] - 0s 838us/step - loss: 0.0784 - accuracy: 0.9559 - mae: 0.0784 - pearson_correlation: 0.7841 - euclidean_distance: 0.1267
Epoch 279/350
76/76 [==============================] - 0s 838us/step - loss: 0.0775 - accuracy: 0.9559 - mae: 0.0775 - pearson_correlation: 0.7801 - euclidean_distance: 0.1257
Epoch 280/350
76/76 [==============================] - 0s 840us/step - loss: 0.0824 - accuracy: 0.9559 - mae: 0.0824 - pearson_correlation: 0.7719 - euclidean_distance: 0.1334
Epoch 281/350
76/76 [==============================] - 0s 842us/step - loss: 0.0775 - accuracy: 0.9559 - mae: 0.0775 - pearson_correlation: 0.7822 - euclidean_distance: 0.1258
Epoch 282/350
76/76 [==============================] - 0s 835us/step - loss: 0.0812 - accuracy: 0.9559 - mae: 0.0812 - pearson_correlation: 0.7787 - euclidean_distance: 0.1307
Epoch 283/350
76/76 [==============================] - 0s 845us/step - loss: 0.0766 - accuracy: 0.9559 - mae: 0.0766 - pearson_correlation: 0.7833 - euclidean_distance: 0.1245
Epoch 284/350
76/76 [==============================] - 0s 846us/step - loss: 0.0789 - accuracy: 0.9559 - mae: 0.0789 - pearson_correlation: 0.7800 - euclidean_distance: 0.1281
Epoch 285/350
76/76 [==============================] - 0s 881us/step - loss: 0.0798 - accuracy: 0.9559 - mae: 0.0798 - pearson_correlation: 0.7804 - euclidean_distance: 0.1292
Epoch 286/350
76/76 [==============================] - 0s 850us/step - loss: 0.0844 - accuracy: 0.9559 - mae: 0.0844 - pearson_correlation: 0.7693 - euclidean_distance: 0.1364
Epoch 287/350
76/76 [==============================] - 0s 845us/step - loss: 0.0761 - accuracy: 0.9559 - mae: 0.0761 - pearson_correlation: 0.7867 - euclidean_distance: 0.1232
Epoch 288/350
76/76 [==============================] - 0s 841us/step - loss: 0.0801 - accuracy: 0.9559 - mae: 0.0801 - pearson_correlation: 0.7775 - euclidean_distance: 0.1295
Epoch 289/350
76/76 [==============================] - 0s 847us/step - loss: 0.0783 - accuracy: 0.9559 - mae: 0.0783 - pearson_correlation: 0.7788 - euclidean_distance: 0.1270
Epoch 290/350
76/76 [==============================] - 0s 844us/step - loss: 0.0785 - accuracy: 0.9559 - mae: 0.0785 - pearson_correlation: 0.7814 - euclidean_distance: 0.1272
Epoch 291/350
76/76 [==============================] - 0s 838us/step - loss: 0.0784 - accuracy: 0.9559 - mae: 0.0784 - pearson_correlation: 0.7802 - euclidean_distance: 0.1272
Epoch 292/350
76/76 [==============================] - 0s 840us/step - loss: 0.0777 - accuracy: 0.9559 - mae: 0.0777 - pearson_correlation: 0.7831 - euclidean_distance: 0.1257
Epoch 293/350
76/76 [==============================] - 0s 836us/step - loss: 0.0769 - accuracy: 0.9559 - mae: 0.0769 - pearson_correlation: 0.7870 - euclidean_distance: 0.1242
Epoch 294/350
76/76 [==============================] - 0s 843us/step - loss: 0.0794 - accuracy: 0.9559 - mae: 0.0794 - pearson_correlation: 0.7788 - euclidean_distance: 0.1288
Epoch 295/350
76/76 [==============================] - 0s 837us/step - loss: 0.0790 - accuracy: 0.9559 - mae: 0.0790 - pearson_correlation: 0.7808 - euclidean_distance: 0.1285
Epoch 296/350
76/76 [==============================] - 0s 845us/step - loss: 0.0775 - accuracy: 0.9559 - mae: 0.0775 - pearson_correlation: 0.7841 - euclidean_distance: 0.1255
Epoch 297/350
76/76 [==============================] - 0s 839us/step - loss: 0.0774 - accuracy: 0.9555 - mae: 0.0774 - pearson_correlation: 0.7846 - euclidean_distance: 0.1257
Epoch 298/350
76/76 [==============================] - 0s 838us/step - loss: 0.0771 - accuracy: 0.9559 - mae: 0.0771 - pearson_correlation: 0.7842 - euclidean_distance: 0.1256
Epoch 299/350
76/76 [==============================] - 0s 837us/step - loss: 0.0791 - accuracy: 0.9559 - mae: 0.0791 - pearson_correlation: 0.7819 - euclidean_distance: 0.1286
Epoch 300/350
76/76 [==============================] - 0s 838us/step - loss: 0.0802 - accuracy: 0.9559 - mae: 0.0802 - pearson_correlation: 0.7762 - euclidean_distance: 0.1308
Epoch 301/350
76/76 [==============================] - 0s 840us/step - loss: 0.0764 - accuracy: 0.9555 - mae: 0.0764 - pearson_correlation: 0.7863 - euclidean_distance: 0.1243
Epoch 302/350
76/76 [==============================] - 0s 840us/step - loss: 0.0795 - accuracy: 0.9559 - mae: 0.0795 - pearson_correlation: 0.7763 - euclidean_distance: 0.1286
Epoch 303/350
76/76 [==============================] - 0s 836us/step - loss: 0.0794 - accuracy: 0.9559 - mae: 0.0794 - pearson_correlation: 0.7806 - euclidean_distance: 0.1284
Epoch 304/350
76/76 [==============================] - 0s 841us/step - loss: 0.0809 - accuracy: 0.9559 - mae: 0.0809 - pearson_correlation: 0.7754 - euclidean_distance: 0.1311
Epoch 305/350
76/76 [==============================] - 0s 839us/step - loss: 0.0808 - accuracy: 0.9559 - mae: 0.0808 - pearson_correlation: 0.7786 - euclidean_distance: 0.1309
Epoch 306/350
76/76 [==============================] - 0s 845us/step - loss: 0.0767 - accuracy: 0.9559 - mae: 0.0767 - pearson_correlation: 0.7849 - euclidean_distance: 0.1246
Epoch 307/350
76/76 [==============================] - 0s 843us/step - loss: 0.0784 - accuracy: 0.9559 - mae: 0.0784 - pearson_correlation: 0.7796 - euclidean_distance: 0.1271
Epoch 308/350
76/76 [==============================] - 0s 845us/step - loss: 0.0786 - accuracy: 0.9555 - mae: 0.0786 - pearson_correlation: 0.7871 - euclidean_distance: 0.1271
Epoch 309/350
76/76 [==============================] - 0s 841us/step - loss: 0.0775 - accuracy: 0.9559 - mae: 0.0775 - pearson_correlation: 0.7857 - euclidean_distance: 0.1256
Epoch 310/350
76/76 [==============================] - 0s 910us/step - loss: 0.0764 - accuracy: 0.9559 - mae: 0.0764 - pearson_correlation: 0.7864 - euclidean_distance: 0.1240
Epoch 311/350
76/76 [==============================] - 0s 947us/step - loss: 0.0757 - accuracy: 0.9559 - mae: 0.0757 - pearson_correlation: 0.7892 - euclidean_distance: 0.1227
Epoch 312/350
76/76 [==============================] - 0s 963us/step - loss: 0.0797 - accuracy: 0.9559 - mae: 0.0797 - pearson_correlation: 0.7789 - euclidean_distance: 0.1292
Epoch 313/350
76/76 [==============================] - 0s 921us/step - loss: 0.0774 - accuracy: 0.9559 - mae: 0.0774 - pearson_correlation: 0.7861 - euclidean_distance: 0.1256
Epoch 314/350
76/76 [==============================] - 0s 1ms/step - loss: 0.0826 - accuracy: 0.9559 - mae: 0.0826 - pearson_correlation: 0.7761 - euclidean_distance: 0.1332
Epoch 315/350
76/76 [==============================] - 0s 1ms/step - loss: 0.0781 - accuracy: 0.9559 - mae: 0.0781 - pearson_correlation: 0.7825 - euclidean_distance: 0.1264
Epoch 316/350
76/76 [==============================] - 0s 1ms/step - loss: 0.0779 - accuracy: 0.9559 - mae: 0.0779 - pearson_correlation: 0.7810 - euclidean_distance: 0.1266
Epoch 317/350
76/76 [==============================] - 0s 994us/step - loss: 0.0791 - accuracy: 0.9559 - mae: 0.0791 - pearson_correlation: 0.7830 - euclidean_distance: 0.1284
Epoch 318/350
76/76 [==============================] - 0s 849us/step - loss: 0.0765 - accuracy: 0.9559 - mae: 0.0765 - pearson_correlation: 0.7892 - euclidean_distance: 0.1239
Epoch 319/350
76/76 [==============================] - 0s 846us/step - loss: 0.0786 - accuracy: 0.9559 - mae: 0.0786 - pearson_correlation: 0.7844 - euclidean_distance: 0.1272
Epoch 320/350
76/76 [==============================] - 0s 840us/step - loss: 0.0798 - accuracy: 0.9559 - mae: 0.0798 - pearson_correlation: 0.7749 - euclidean_distance: 0.1290
Epoch 321/350
76/76 [==============================] - 0s 842us/step - loss: 0.0768 - accuracy: 0.9559 - mae: 0.0768 - pearson_correlation: 0.7873 - euclidean_distance: 0.1245
Epoch 322/350
76/76 [==============================] - 0s 837us/step - loss: 0.0787 - accuracy: 0.9559 - mae: 0.0787 - pearson_correlation: 0.7776 - euclidean_distance: 0.1282
Epoch 323/350
76/76 [==============================] - 0s 849us/step - loss: 0.0766 - accuracy: 0.9559 - mae: 0.0766 - pearson_correlation: 0.7843 - euclidean_distance: 0.1244
Epoch 324/350
76/76 [==============================] - 0s 841us/step - loss: 0.0769 - accuracy: 0.9559 - mae: 0.0769 - pearson_correlation: 0.7873 - euclidean_distance: 0.1247
Epoch 325/350
76/76 [==============================] - 0s 849us/step - loss: 0.0769 - accuracy: 0.9559 - mae: 0.0769 - pearson_correlation: 0.7879 - euclidean_distance: 0.1246
Epoch 326/350
76/76 [==============================] - 0s 844us/step - loss: 0.0770 - accuracy: 0.9559 - mae: 0.0770 - pearson_correlation: 0.7871 - euclidean_distance: 0.1246
Epoch 327/350
76/76 [==============================] - 0s 842us/step - loss: 0.0780 - accuracy: 0.9563 - mae: 0.0780 - pearson_correlation: 0.7805 - euclidean_distance: 0.1259
Epoch 328/350
76/76 [==============================] - 0s 854us/step - loss: 0.0751 - accuracy: 0.9559 - mae: 0.0751 - pearson_correlation: 0.7928 - euclidean_distance: 0.1223
Epoch 329/350
76/76 [==============================] - 0s 844us/step - loss: 0.0754 - accuracy: 0.9559 - mae: 0.0754 - pearson_correlation: 0.7868 - euclidean_distance: 0.1228
Epoch 330/350
76/76 [==============================] - 0s 845us/step - loss: 0.0796 - accuracy: 0.9559 - mae: 0.0796 - pearson_correlation: 0.7757 - euclidean_distance: 0.1286
Epoch 331/350
76/76 [==============================] - 0s 844us/step - loss: 0.0792 - accuracy: 0.9559 - mae: 0.0792 - pearson_correlation: 0.7807 - euclidean_distance: 0.1282
Epoch 332/350
76/76 [==============================] - 0s 844us/step - loss: 0.0793 - accuracy: 0.9559 - mae: 0.0793 - pearson_correlation: 0.7756 - euclidean_distance: 0.1288
Epoch 333/350
76/76 [==============================] - 0s 844us/step - loss: 0.0773 - accuracy: 0.9559 - mae: 0.0773 - pearson_correlation: 0.7845 - euclidean_distance: 0.1259
Epoch 334/350
76/76 [==============================] - 0s 844us/step - loss: 0.0779 - accuracy: 0.9559 - mae: 0.0779 - pearson_correlation: 0.7816 - euclidean_distance: 0.1264
Epoch 335/350
76/76 [==============================] - 0s 844us/step - loss: 0.0764 - accuracy: 0.9563 - mae: 0.0764 - pearson_correlation: 0.7911 - euclidean_distance: 0.1237
Epoch 336/350
76/76 [==============================] - 0s 845us/step - loss: 0.0793 - accuracy: 0.9559 - mae: 0.0793 - pearson_correlation: 0.7827 - euclidean_distance: 0.1283
Epoch 337/350
76/76 [==============================] - 0s 845us/step - loss: 0.0771 - accuracy: 0.9559 - mae: 0.0771 - pearson_correlation: 0.7849 - euclidean_distance: 0.1250
Epoch 338/350
76/76 [==============================] - 0s 837us/step - loss: 0.0772 - accuracy: 0.9559 - mae: 0.0772 - pearson_correlation: 0.7825 - euclidean_distance: 0.1251
Epoch 339/350
76/76 [==============================] - 0s 850us/step - loss: 0.0755 - accuracy: 0.9559 - mae: 0.0755 - pearson_correlation: 0.7809 - euclidean_distance: 0.1236
Epoch 340/350
76/76 [==============================] - 0s 843us/step - loss: 0.0780 - accuracy: 0.9559 - mae: 0.0780 - pearson_correlation: 0.7835 - euclidean_distance: 0.1261
Epoch 341/350
76/76 [==============================] - 0s 845us/step - loss: 0.0762 - accuracy: 0.9559 - mae: 0.0762 - pearson_correlation: 0.7861 - euclidean_distance: 0.1237
Epoch 342/350
76/76 [==============================] - 0s 842us/step - loss: 0.0749 - accuracy: 0.9559 - mae: 0.0749 - pearson_correlation: 0.7892 - euclidean_distance: 0.1221
Epoch 343/350
76/76 [==============================] - 0s 847us/step - loss: 0.0758 - accuracy: 0.9559 - mae: 0.0758 - pearson_correlation: 0.7857 - euclidean_distance: 0.1234
Epoch 344/350
76/76 [==============================] - 0s 852us/step - loss: 0.0774 - accuracy: 0.9559 - mae: 0.0774 - pearson_correlation: 0.7831 - euclidean_distance: 0.1256
Epoch 345/350
76/76 [==============================] - 0s 845us/step - loss: 0.0786 - accuracy: 0.9559 - mae: 0.0786 - pearson_correlation: 0.7802 - euclidean_distance: 0.1277
Epoch 346/350
76/76 [==============================] - 0s 845us/step - loss: 0.0733 - accuracy: 0.9559 - mae: 0.0733 - pearson_correlation: 0.7907 - euclidean_distance: 0.1196
Epoch 347/350
76/76 [==============================] - 0s 843us/step - loss: 0.0778 - accuracy: 0.9559 - mae: 0.0778 - pearson_correlation: 0.7865 - euclidean_distance: 0.1256
Epoch 348/350
76/76 [==============================] - 0s 842us/step - loss: 0.0756 - accuracy: 0.9559 - mae: 0.0756 - pearson_correlation: 0.7889 - euclidean_distance: 0.1232
Epoch 349/350
76/76 [==============================] - 0s 845us/step - loss: 0.0774 - accuracy: 0.9555 - mae: 0.0774 - pearson_correlation: 0.7822 - euclidean_distance: 0.1255
Epoch 350/350
76/76 [==============================] - 0s 837us/step - loss: 0.0732 - accuracy: 0.9559 - mae: 0.0732 - pearson_correlation: 0.7947 - euclidean_distance: 0.1190
38/38 [==============================] - 0s 464us/step
Epoch 1/100
57/57 [==============================] - 1s 870us/step - loss: 0.3970 - accuracy: 0.7816 - mae: 0.3970 - pearson_correlation: 0.4334 - euclidean_distance: 0.5960
Epoch 2/100
57/57 [==============================] - 0s 821us/step - loss: 0.3922 - accuracy: 0.7958 - mae: 0.3922 - pearson_correlation: 0.4328 - euclidean_distance: 0.5887
Epoch 3/100
57/57 [==============================] - 0s 842us/step - loss: 0.3850 - accuracy: 0.7958 - mae: 0.3850 - pearson_correlation: 0.4338 - euclidean_distance: 0.5783
Epoch 4/100
57/57 [==============================] - 0s 866us/step - loss: 0.3787 - accuracy: 0.8086 - mae: 0.3787 - pearson_correlation: 0.4434 - euclidean_distance: 0.5692
Epoch 5/100
57/57 [==============================] - 0s 863us/step - loss: 0.3738 - accuracy: 0.8134 - mae: 0.3738 - pearson_correlation: 0.4481 - euclidean_distance: 0.5621
Epoch 6/100
57/57 [==============================] - 0s 850us/step - loss: 0.3667 - accuracy: 0.8253 - mae: 0.3667 - pearson_correlation: 0.4482 - euclidean_distance: 0.5518
Epoch 7/100
57/57 [==============================] - 0s 869us/step - loss: 0.3614 - accuracy: 0.8213 - mae: 0.3614 - pearson_correlation: 0.4552 - euclidean_distance: 0.5443
Epoch 8/100
57/57 [==============================] - 0s 863us/step - loss: 0.3552 - accuracy: 0.8337 - mae: 0.3552 - pearson_correlation: 0.4600 - euclidean_distance: 0.5363
Epoch 9/100
57/57 [==============================] - 0s 856us/step - loss: 0.3490 - accuracy: 0.8368 - mae: 0.3490 - pearson_correlation: 0.4653 - euclidean_distance: 0.5264
Epoch 10/100
57/57 [==============================] - 0s 933us/step - loss: 0.3426 - accuracy: 0.8416 - mae: 0.3426 - pearson_correlation: 0.4659 - euclidean_distance: 0.5170
Epoch 11/100
57/57 [==============================] - 0s 931us/step - loss: 0.3350 - accuracy: 0.8474 - mae: 0.3350 - pearson_correlation: 0.4694 - euclidean_distance: 0.5065
Epoch 12/100
57/57 [==============================] - 0s 880us/step - loss: 0.3282 - accuracy: 0.8513 - mae: 0.3282 - pearson_correlation: 0.4748 - euclidean_distance: 0.4972
Epoch 13/100
57/57 [==============================] - 0s 857us/step - loss: 0.3231 - accuracy: 0.8518 - mae: 0.3231 - pearson_correlation: 0.4775 - euclidean_distance: 0.4894
Epoch 14/100
57/57 [==============================] - 0s 870us/step - loss: 0.3177 - accuracy: 0.8606 - mae: 0.3177 - pearson_correlation: 0.4799 - euclidean_distance: 0.4815
Epoch 15/100
57/57 [==============================] - 0s 868us/step - loss: 0.3114 - accuracy: 0.8690 - mae: 0.3114 - pearson_correlation: 0.4854 - euclidean_distance: 0.4725
Epoch 16/100
57/57 [==============================] - 0s 860us/step - loss: 0.3043 - accuracy: 0.8743 - mae: 0.3043 - pearson_correlation: 0.4887 - euclidean_distance: 0.4626
Epoch 17/100
57/57 [==============================] - 0s 864us/step - loss: 0.2986 - accuracy: 0.8747 - mae: 0.2986 - pearson_correlation: 0.4900 - euclidean_distance: 0.4537
Epoch 18/100
57/57 [==============================] - 0s 864us/step - loss: 0.2904 - accuracy: 0.8760 - mae: 0.2904 - pearson_correlation: 0.4996 - euclidean_distance: 0.4429
Epoch 19/100
57/57 [==============================] - 0s 860us/step - loss: 0.2842 - accuracy: 0.8747 - mae: 0.2842 - pearson_correlation: 0.4992 - euclidean_distance: 0.4339
Epoch 20/100
57/57 [==============================] - 0s 852us/step - loss: 0.2799 - accuracy: 0.8862 - mae: 0.2799 - pearson_correlation: 0.4975 - euclidean_distance: 0.4280
Epoch 21/100
57/57 [==============================] - 0s 861us/step - loss: 0.2722 - accuracy: 0.8831 - mae: 0.2722 - pearson_correlation: 0.5031 - euclidean_distance: 0.4170
Epoch 22/100
57/57 [==============================] - 0s 866us/step - loss: 0.2663 - accuracy: 0.8906 - mae: 0.2663 - pearson_correlation: 0.4992 - euclidean_distance: 0.4080
Epoch 23/100
57/57 [==============================] - 0s 857us/step - loss: 0.2614 - accuracy: 0.8888 - mae: 0.2614 - pearson_correlation: 0.5051 - euclidean_distance: 0.4023
Epoch 24/100
57/57 [==============================] - 0s 855us/step - loss: 0.2534 - accuracy: 0.8950 - mae: 0.2534 - pearson_correlation: 0.5093 - euclidean_distance: 0.3907
Epoch 25/100
57/57 [==============================] - 0s 854us/step - loss: 0.2504 - accuracy: 0.8963 - mae: 0.2504 - pearson_correlation: 0.5113 - euclidean_distance: 0.3863
Epoch 26/100
57/57 [==============================] - 0s 855us/step - loss: 0.2455 - accuracy: 0.8910 - mae: 0.2455 - pearson_correlation: 0.5098 - euclidean_distance: 0.3796
Epoch 27/100
57/57 [==============================] - 0s 848us/step - loss: 0.2397 - accuracy: 0.8884 - mae: 0.2397 - pearson_correlation: 0.5133 - euclidean_distance: 0.3715
Epoch 28/100
57/57 [==============================] - 0s 851us/step - loss: 0.2332 - accuracy: 0.8924 - mae: 0.2332 - pearson_correlation: 0.5208 - euclidean_distance: 0.3622
Epoch 29/100
57/57 [==============================] - 0s 858us/step - loss: 0.2293 - accuracy: 0.8906 - mae: 0.2293 - pearson_correlation: 0.5192 - euclidean_distance: 0.3569
Epoch 30/100
57/57 [==============================] - 0s 850us/step - loss: 0.2237 - accuracy: 0.8946 - mae: 0.2237 - pearson_correlation: 0.5204 - euclidean_distance: 0.3488
Epoch 31/100
57/57 [==============================] - 0s 864us/step - loss: 0.2177 - accuracy: 0.8968 - mae: 0.2177 - pearson_correlation: 0.5227 - euclidean_distance: 0.3405
Epoch 32/100
57/57 [==============================] - 0s 869us/step - loss: 0.2141 - accuracy: 0.8888 - mae: 0.2141 - pearson_correlation: 0.5255 - euclidean_distance: 0.3356
Epoch 33/100
57/57 [==============================] - 0s 854us/step - loss: 0.2105 - accuracy: 0.8827 - mae: 0.2105 - pearson_correlation: 0.5181 - euclidean_distance: 0.3316
Epoch 34/100
57/57 [==============================] - 0s 850us/step - loss: 0.2075 - accuracy: 0.8862 - mae: 0.2075 - pearson_correlation: 0.5244 - euclidean_distance: 0.3270
Epoch 35/100
57/57 [==============================] - 0s 847us/step - loss: 0.2029 - accuracy: 0.8760 - mae: 0.2029 - pearson_correlation: 0.5226 - euclidean_distance: 0.3207
Epoch 36/100
57/57 [==============================] - 0s 858us/step - loss: 0.1973 - accuracy: 0.8791 - mae: 0.1973 - pearson_correlation: 0.5282 - euclidean_distance: 0.3131
Epoch 37/100
57/57 [==============================] - 0s 854us/step - loss: 0.1938 - accuracy: 0.8875 - mae: 0.1938 - pearson_correlation: 0.5330 - euclidean_distance: 0.3085
Epoch 38/100
57/57 [==============================] - 0s 856us/step - loss: 0.1909 - accuracy: 0.8813 - mae: 0.1909 - pearson_correlation: 0.5323 - euclidean_distance: 0.3030
Epoch 39/100
57/57 [==============================] - 0s 856us/step - loss: 0.1892 - accuracy: 0.8760 - mae: 0.1892 - pearson_correlation: 0.5252 - euclidean_distance: 0.3017
Epoch 40/100
57/57 [==============================] - 0s 850us/step - loss: 0.1850 - accuracy: 0.8778 - mae: 0.1850 - pearson_correlation: 0.5367 - euclidean_distance: 0.2950
Epoch 41/100
57/57 [==============================] - 0s 863us/step - loss: 0.1816 - accuracy: 0.8752 - mae: 0.1816 - pearson_correlation: 0.5385 - euclidean_distance: 0.2897
Epoch 42/100
57/57 [==============================] - 0s 855us/step - loss: 0.1792 - accuracy: 0.8809 - mae: 0.1792 - pearson_correlation: 0.5412 - euclidean_distance: 0.2859
Epoch 43/100
57/57 [==============================] - 0s 859us/step - loss: 0.1767 - accuracy: 0.8822 - mae: 0.1767 - pearson_correlation: 0.5375 - euclidean_distance: 0.2826
Epoch 44/100
57/57 [==============================] - 0s 864us/step - loss: 0.1724 - accuracy: 0.8738 - mae: 0.1724 - pearson_correlation: 0.5433 - euclidean_distance: 0.2762
Epoch 45/100
57/57 [==============================] - 0s 860us/step - loss: 0.1697 - accuracy: 0.8760 - mae: 0.1697 - pearson_correlation: 0.5463 - euclidean_distance: 0.2726
Epoch 46/100
57/57 [==============================] - 0s 860us/step - loss: 0.1680 - accuracy: 0.8796 - mae: 0.1680 - pearson_correlation: 0.5473 - euclidean_distance: 0.2697
Epoch 47/100
57/57 [==============================] - 0s 856us/step - loss: 0.1676 - accuracy: 0.8778 - mae: 0.1676 - pearson_correlation: 0.5510 - euclidean_distance: 0.2691
Epoch 48/100
57/57 [==============================] - 0s 849us/step - loss: 0.1652 - accuracy: 0.8844 - mae: 0.1652 - pearson_correlation: 0.5526 - euclidean_distance: 0.2654
Epoch 49/100
57/57 [==============================] - 0s 859us/step - loss: 0.1609 - accuracy: 0.8835 - mae: 0.1609 - pearson_correlation: 0.5614 - euclidean_distance: 0.2588
Epoch 50/100
57/57 [==============================] - 0s 854us/step - loss: 0.1606 - accuracy: 0.8840 - mae: 0.1606 - pearson_correlation: 0.5620 - euclidean_distance: 0.2579
Epoch 51/100
57/57 [==============================] - 0s 859us/step - loss: 0.1600 - accuracy: 0.8796 - mae: 0.1600 - pearson_correlation: 0.5553 - euclidean_distance: 0.2584
Epoch 52/100
57/57 [==============================] - 0s 850us/step - loss: 0.1578 - accuracy: 0.8924 - mae: 0.1578 - pearson_correlation: 0.5612 - euclidean_distance: 0.2534
Epoch 53/100
57/57 [==============================] - 0s 861us/step - loss: 0.1539 - accuracy: 0.8862 - mae: 0.1539 - pearson_correlation: 0.5664 - euclidean_distance: 0.2488
Epoch 54/100
57/57 [==============================] - 0s 863us/step - loss: 0.1533 - accuracy: 0.8818 - mae: 0.1533 - pearson_correlation: 0.5656 - euclidean_distance: 0.2474
Epoch 55/100
57/57 [==============================] - 0s 861us/step - loss: 0.1517 - accuracy: 0.8858 - mae: 0.1517 - pearson_correlation: 0.5697 - euclidean_distance: 0.2449
Epoch 56/100
57/57 [==============================] - 0s 846us/step - loss: 0.1504 - accuracy: 0.8994 - mae: 0.1504 - pearson_correlation: 0.5734 - euclidean_distance: 0.2422
Epoch 57/100
57/57 [==============================] - 0s 864us/step - loss: 0.1531 - accuracy: 0.8915 - mae: 0.1531 - pearson_correlation: 0.5724 - euclidean_distance: 0.2463
Epoch 58/100
57/57 [==============================] - 0s 859us/step - loss: 0.1468 - accuracy: 0.8941 - mae: 0.1468 - pearson_correlation: 0.5848 - euclidean_distance: 0.2370
Epoch 59/100
57/57 [==============================] - 0s 862us/step - loss: 0.1454 - accuracy: 0.8963 - mae: 0.1454 - pearson_correlation: 0.5827 - euclidean_distance: 0.2353
Epoch 60/100
57/57 [==============================] - 0s 859us/step - loss: 0.1438 - accuracy: 0.8959 - mae: 0.1438 - pearson_correlation: 0.5927 - euclidean_distance: 0.2319
Epoch 61/100
57/57 [==============================] - 0s 852us/step - loss: 0.1447 - accuracy: 0.8928 - mae: 0.1447 - pearson_correlation: 0.5847 - euclidean_distance: 0.2335
Epoch 62/100
57/57 [==============================] - 0s 852us/step - loss: 0.1423 - accuracy: 0.8968 - mae: 0.1423 - pearson_correlation: 0.5912 - euclidean_distance: 0.2300
Epoch 63/100
57/57 [==============================] - 0s 859us/step - loss: 0.1441 - accuracy: 0.8977 - mae: 0.1441 - pearson_correlation: 0.5936 - euclidean_distance: 0.2322
Epoch 64/100
57/57 [==============================] - 0s 848us/step - loss: 0.1403 - accuracy: 0.9012 - mae: 0.1403 - pearson_correlation: 0.5982 - euclidean_distance: 0.2261
Epoch 65/100
57/57 [==============================] - 0s 878us/step - loss: 0.1397 - accuracy: 0.9016 - mae: 0.1397 - pearson_correlation: 0.5982 - euclidean_distance: 0.2254
Epoch 66/100
57/57 [==============================] - 0s 852us/step - loss: 0.1385 - accuracy: 0.8977 - mae: 0.1385 - pearson_correlation: 0.6033 - euclidean_distance: 0.2236
Epoch 67/100
57/57 [==============================] - 0s 851us/step - loss: 0.1376 - accuracy: 0.8999 - mae: 0.1376 - pearson_correlation: 0.6128 - euclidean_distance: 0.2217
Epoch 68/100
57/57 [==============================] - 0s 856us/step - loss: 0.1376 - accuracy: 0.9078 - mae: 0.1376 - pearson_correlation: 0.6046 - euclidean_distance: 0.2216
Epoch 69/100
57/57 [==============================] - 0s 853us/step - loss: 0.1365 - accuracy: 0.9003 - mae: 0.1365 - pearson_correlation: 0.6092 - euclidean_distance: 0.2209
Epoch 70/100
57/57 [==============================] - 0s 859us/step - loss: 0.1356 - accuracy: 0.9082 - mae: 0.1356 - pearson_correlation: 0.6124 - euclidean_distance: 0.2186
Epoch 71/100
57/57 [==============================] - 0s 864us/step - loss: 0.1344 - accuracy: 0.9074 - mae: 0.1344 - pearson_correlation: 0.6137 - euclidean_distance: 0.2170
Epoch 72/100
57/57 [==============================] - 0s 868us/step - loss: 0.1317 - accuracy: 0.9060 - mae: 0.1317 - pearson_correlation: 0.6202 - euclidean_distance: 0.2127
Epoch 73/100
57/57 [==============================] - 0s 856us/step - loss: 0.1327 - accuracy: 0.9100 - mae: 0.1327 - pearson_correlation: 0.6176 - euclidean_distance: 0.2148
Epoch 74/100
57/57 [==============================] - 0s 858us/step - loss: 0.1318 - accuracy: 0.9091 - mae: 0.1318 - pearson_correlation: 0.6265 - euclidean_distance: 0.2134
Epoch 75/100
57/57 [==============================] - 0s 861us/step - loss: 0.1307 - accuracy: 0.9113 - mae: 0.1307 - pearson_correlation: 0.6268 - euclidean_distance: 0.2103
Epoch 76/100
57/57 [==============================] - 0s 850us/step - loss: 0.1310 - accuracy: 0.9166 - mae: 0.1310 - pearson_correlation: 0.6229 - euclidean_distance: 0.2112
Epoch 77/100
57/57 [==============================] - 0s 851us/step - loss: 0.1283 - accuracy: 0.9149 - mae: 0.1283 - pearson_correlation: 0.6355 - euclidean_distance: 0.2071
Epoch 78/100
57/57 [==============================] - 0s 864us/step - loss: 0.1310 - accuracy: 0.9162 - mae: 0.1310 - pearson_correlation: 0.6270 - euclidean_distance: 0.2119
Epoch 79/100
57/57 [==============================] - 0s 865us/step - loss: 0.1272 - accuracy: 0.9135 - mae: 0.1272 - pearson_correlation: 0.6315 - euclidean_distance: 0.2052
Epoch 80/100
57/57 [==============================] - 0s 853us/step - loss: 0.1275 - accuracy: 0.9157 - mae: 0.1275 - pearson_correlation: 0.6352 - euclidean_distance: 0.2062
Epoch 81/100
57/57 [==============================] - 0s 864us/step - loss: 0.1257 - accuracy: 0.9188 - mae: 0.1257 - pearson_correlation: 0.6411 - euclidean_distance: 0.2033
Epoch 82/100
57/57 [==============================] - 0s 855us/step - loss: 0.1268 - accuracy: 0.9175 - mae: 0.1268 - pearson_correlation: 0.6398 - euclidean_distance: 0.2047
Epoch 83/100
57/57 [==============================] - 0s 847us/step - loss: 0.1252 - accuracy: 0.9197 - mae: 0.1252 - pearson_correlation: 0.6425 - euclidean_distance: 0.2019
Epoch 84/100
57/57 [==============================] - 0s 853us/step - loss: 0.1272 - accuracy: 0.9219 - mae: 0.1272 - pearson_correlation: 0.6382 - euclidean_distance: 0.2054
Epoch 85/100
57/57 [==============================] - 0s 865us/step - loss: 0.1225 - accuracy: 0.9228 - mae: 0.1225 - pearson_correlation: 0.6494 - euclidean_distance: 0.1988
Epoch 86/100
57/57 [==============================] - 0s 855us/step - loss: 0.1236 - accuracy: 0.9219 - mae: 0.1236 - pearson_correlation: 0.6450 - euclidean_distance: 0.1996
Epoch 87/100
57/57 [==============================] - 0s 848us/step - loss: 0.1217 - accuracy: 0.9263 - mae: 0.1217 - pearson_correlation: 0.6491 - euclidean_distance: 0.1966
Epoch 88/100
57/57 [==============================] - 0s 845us/step - loss: 0.1224 - accuracy: 0.9184 - mae: 0.1224 - pearson_correlation: 0.6517 - euclidean_distance: 0.1977
Epoch 89/100
57/57 [==============================] - 0s 847us/step - loss: 0.1244 - accuracy: 0.9241 - mae: 0.1244 - pearson_correlation: 0.6499 - euclidean_distance: 0.2004
Epoch 90/100
57/57 [==============================] - 0s 846us/step - loss: 0.1211 - accuracy: 0.9224 - mae: 0.1211 - pearson_correlation: 0.6524 - euclidean_distance: 0.1957
Epoch 91/100
57/57 [==============================] - 0s 847us/step - loss: 0.1228 - accuracy: 0.9237 - mae: 0.1228 - pearson_correlation: 0.6505 - euclidean_distance: 0.1983
Epoch 92/100
57/57 [==============================] - 0s 854us/step - loss: 0.1215 - accuracy: 0.9307 - mae: 0.1215 - pearson_correlation: 0.6551 - euclidean_distance: 0.1962
Epoch 93/100
57/57 [==============================] - 0s 842us/step - loss: 0.1193 - accuracy: 0.9285 - mae: 0.1193 - pearson_correlation: 0.6600 - euclidean_distance: 0.1930
Epoch 94/100
57/57 [==============================] - 0s 852us/step - loss: 0.1218 - accuracy: 0.9285 - mae: 0.1218 - pearson_correlation: 0.6630 - euclidean_distance: 0.1961
Epoch 95/100
57/57 [==============================] - 0s 856us/step - loss: 0.1170 - accuracy: 0.9312 - mae: 0.1170 - pearson_correlation: 0.6710 - euclidean_distance: 0.1891
Epoch 96/100
57/57 [==============================] - 0s 850us/step - loss: 0.1204 - accuracy: 0.9316 - mae: 0.1204 - pearson_correlation: 0.6547 - euclidean_distance: 0.1947
Epoch 97/100
57/57 [==============================] - 0s 849us/step - loss: 0.1193 - accuracy: 0.9334 - mae: 0.1193 - pearson_correlation: 0.6660 - euclidean_distance: 0.1924
Epoch 98/100
57/57 [==============================] - 0s 882us/step - loss: 0.1213 - accuracy: 0.9321 - mae: 0.1213 - pearson_correlation: 0.6590 - euclidean_distance: 0.1957
Epoch 99/100
57/57 [==============================] - 0s 888us/step - loss: 0.1181 - accuracy: 0.9316 - mae: 0.1181 - pearson_correlation: 0.6696 - euclidean_distance: 0.1906
Epoch 100/100
57/57 [==============================] - 0s 870us/step - loss: 0.1179 - accuracy: 0.9294 - mae: 0.1179 - pearson_correlation: 0.6705 - euclidean_distance: 0.1903
29/29 [==============================] - 0s 488us/step
Epoch 1/100
57/57 [==============================] - 1s 964us/step - loss: 0.5132 - accuracy: 0.6206 - mae: 0.5132 - pearson_correlation: 0.1665 - euclidean_distance: 0.7666
Epoch 2/100
57/57 [==============================] - 0s 840us/step - loss: 0.5085 - accuracy: 0.6290 - mae: 0.5085 - pearson_correlation: 0.1650 - euclidean_distance: 0.7603
Epoch 3/100
57/57 [==============================] - 0s 863us/step - loss: 0.5011 - accuracy: 0.6184 - mae: 0.5011 - pearson_correlation: 0.1678 - euclidean_distance: 0.7506
Epoch 4/100
57/57 [==============================] - 0s 867us/step - loss: 0.4951 - accuracy: 0.6242 - mae: 0.4951 - pearson_correlation: 0.1705 - euclidean_distance: 0.7418
Epoch 5/100
57/57 [==============================] - 0s 865us/step - loss: 0.4898 - accuracy: 0.6255 - mae: 0.4898 - pearson_correlation: 0.1704 - euclidean_distance: 0.7348
Epoch 6/100
57/57 [==============================] - 0s 861us/step - loss: 0.4839 - accuracy: 0.6233 - mae: 0.4839 - pearson_correlation: 0.1718 - euclidean_distance: 0.7262
Epoch 7/100
57/57 [==============================] - 0s 863us/step - loss: 0.4769 - accuracy: 0.6255 - mae: 0.4769 - pearson_correlation: 0.1676 - euclidean_distance: 0.7168
Epoch 8/100
57/57 [==============================] - 0s 863us/step - loss: 0.4719 - accuracy: 0.6295 - mae: 0.4719 - pearson_correlation: 0.1663 - euclidean_distance: 0.7095
Epoch 9/100
57/57 [==============================] - 0s 865us/step - loss: 0.4657 - accuracy: 0.6317 - mae: 0.4657 - pearson_correlation: 0.1712 - euclidean_distance: 0.7010
Epoch 10/100
57/57 [==============================] - 0s 863us/step - loss: 0.4608 - accuracy: 0.6198 - mae: 0.4608 - pearson_correlation: 0.1734 - euclidean_distance: 0.6942
Epoch 11/100
57/57 [==============================] - 0s 868us/step - loss: 0.4557 - accuracy: 0.6308 - mae: 0.4557 - pearson_correlation: 0.1703 - euclidean_distance: 0.6877
Epoch 12/100
57/57 [==============================] - 0s 870us/step - loss: 0.4483 - accuracy: 0.6418 - mae: 0.4483 - pearson_correlation: 0.1725 - euclidean_distance: 0.6771
Epoch 13/100
57/57 [==============================] - 0s 869us/step - loss: 0.4419 - accuracy: 0.6392 - mae: 0.4419 - pearson_correlation: 0.1741 - euclidean_distance: 0.6685
Epoch 14/100
57/57 [==============================] - 0s 863us/step - loss: 0.4374 - accuracy: 0.6295 - mae: 0.4374 - pearson_correlation: 0.1710 - euclidean_distance: 0.6623
Epoch 15/100
57/57 [==============================] - 0s 859us/step - loss: 0.4306 - accuracy: 0.6378 - mae: 0.4306 - pearson_correlation: 0.1748 - euclidean_distance: 0.6533
Epoch 16/100
57/57 [==============================] - 0s 862us/step - loss: 0.4248 - accuracy: 0.6383 - mae: 0.4248 - pearson_correlation: 0.1776 - euclidean_distance: 0.6445
Epoch 17/100
57/57 [==============================] - 0s 860us/step - loss: 0.4191 - accuracy: 0.6476 - mae: 0.4191 - pearson_correlation: 0.1712 - euclidean_distance: 0.6366
Epoch 18/100
57/57 [==============================] - 0s 868us/step - loss: 0.4132 - accuracy: 0.6423 - mae: 0.4132 - pearson_correlation: 0.1806 - euclidean_distance: 0.6279
Epoch 19/100
57/57 [==============================] - 0s 856us/step - loss: 0.4070 - accuracy: 0.6480 - mae: 0.4070 - pearson_correlation: 0.1782 - euclidean_distance: 0.6193
Epoch 20/100
57/57 [==============================] - 0s 866us/step - loss: 0.4026 - accuracy: 0.6480 - mae: 0.4026 - pearson_correlation: 0.1790 - euclidean_distance: 0.6134
Epoch 21/100
57/57 [==============================] - 0s 861us/step - loss: 0.3969 - accuracy: 0.6515 - mae: 0.3969 - pearson_correlation: 0.1829 - euclidean_distance: 0.6051
Epoch 22/100
57/57 [==============================] - 0s 863us/step - loss: 0.3922 - accuracy: 0.6511 - mae: 0.3922 - pearson_correlation: 0.1807 - euclidean_distance: 0.5987
Epoch 23/100
57/57 [==============================] - 0s 865us/step - loss: 0.3841 - accuracy: 0.6568 - mae: 0.3841 - pearson_correlation: 0.1808 - euclidean_distance: 0.5877
Epoch 24/100
57/57 [==============================] - 0s 865us/step - loss: 0.3810 - accuracy: 0.6599 - mae: 0.3810 - pearson_correlation: 0.1822 - euclidean_distance: 0.5830
Epoch 25/100
57/57 [==============================] - 0s 867us/step - loss: 0.3753 - accuracy: 0.6661 - mae: 0.3753 - pearson_correlation: 0.1840 - euclidean_distance: 0.5748
Epoch 26/100
57/57 [==============================] - 0s 864us/step - loss: 0.3695 - accuracy: 0.6762 - mae: 0.3695 - pearson_correlation: 0.1904 - euclidean_distance: 0.5670
Epoch 27/100
57/57 [==============================] - 0s 863us/step - loss: 0.3646 - accuracy: 0.6714 - mae: 0.3646 - pearson_correlation: 0.1899 - euclidean_distance: 0.5596
Epoch 28/100
57/57 [==============================] - 0s 868us/step - loss: 0.3590 - accuracy: 0.6780 - mae: 0.3590 - pearson_correlation: 0.1885 - euclidean_distance: 0.5514
Epoch 29/100
57/57 [==============================] - 0s 869us/step - loss: 0.3535 - accuracy: 0.6820 - mae: 0.3535 - pearson_correlation: 0.1899 - euclidean_distance: 0.5443
Epoch 30/100
57/57 [==============================] - 0s 865us/step - loss: 0.3490 - accuracy: 0.6881 - mae: 0.3490 - pearson_correlation: 0.1928 - euclidean_distance: 0.5383
Epoch 31/100
57/57 [==============================] - 0s 861us/step - loss: 0.3445 - accuracy: 0.6908 - mae: 0.3445 - pearson_correlation: 0.1979 - euclidean_distance: 0.5314
Epoch 32/100
57/57 [==============================] - 0s 861us/step - loss: 0.3378 - accuracy: 0.7018 - mae: 0.3378 - pearson_correlation: 0.1975 - euclidean_distance: 0.5226
Epoch 33/100
57/57 [==============================] - 0s 872us/step - loss: 0.3361 - accuracy: 0.6996 - mae: 0.3361 - pearson_correlation: 0.1968 - euclidean_distance: 0.5189
Epoch 34/100
57/57 [==============================] - 0s 864us/step - loss: 0.3297 - accuracy: 0.7009 - mae: 0.3297 - pearson_correlation: 0.2012 - euclidean_distance: 0.5103
Epoch 35/100
57/57 [==============================] - 0s 866us/step - loss: 0.3249 - accuracy: 0.7067 - mae: 0.3249 - pearson_correlation: 0.2036 - euclidean_distance: 0.5039
Epoch 36/100
57/57 [==============================] - 0s 861us/step - loss: 0.3218 - accuracy: 0.7186 - mae: 0.3218 - pearson_correlation: 0.2032 - euclidean_distance: 0.4982
Epoch 37/100
57/57 [==============================] - 0s 861us/step - loss: 0.3168 - accuracy: 0.7168 - mae: 0.3168 - pearson_correlation: 0.2023 - euclidean_distance: 0.4921
Epoch 38/100
57/57 [==============================] - 0s 855us/step - loss: 0.3113 - accuracy: 0.7256 - mae: 0.3113 - pearson_correlation: 0.2098 - euclidean_distance: 0.4845
Epoch 39/100
57/57 [==============================] - 0s 860us/step - loss: 0.3073 - accuracy: 0.7234 - mae: 0.3073 - pearson_correlation: 0.2123 - euclidean_distance: 0.4786
Epoch 40/100
57/57 [==============================] - 0s 860us/step - loss: 0.3028 - accuracy: 0.7292 - mae: 0.3028 - pearson_correlation: 0.2168 - euclidean_distance: 0.4715
Epoch 41/100
57/57 [==============================] - 0s 862us/step - loss: 0.3000 - accuracy: 0.7349 - mae: 0.3000 - pearson_correlation: 0.2181 - euclidean_distance: 0.4671
Epoch 42/100
57/57 [==============================] - 0s 863us/step - loss: 0.2947 - accuracy: 0.7384 - mae: 0.2947 - pearson_correlation: 0.2183 - euclidean_distance: 0.4597
Epoch 43/100
57/57 [==============================] - 0s 861us/step - loss: 0.2896 - accuracy: 0.7508 - mae: 0.2896 - pearson_correlation: 0.2217 - euclidean_distance: 0.4524
Epoch 44/100
57/57 [==============================] - 0s 849us/step - loss: 0.2862 - accuracy: 0.7521 - mae: 0.2862 - pearson_correlation: 0.2242 - euclidean_distance: 0.4481
Epoch 45/100
57/57 [==============================] - 0s 857us/step - loss: 0.2815 - accuracy: 0.7521 - mae: 0.2815 - pearson_correlation: 0.2313 - euclidean_distance: 0.4409
Epoch 46/100
57/57 [==============================] - 0s 863us/step - loss: 0.2768 - accuracy: 0.7530 - mae: 0.2768 - pearson_correlation: 0.2390 - euclidean_distance: 0.4344
Epoch 47/100
57/57 [==============================] - 0s 859us/step - loss: 0.2743 - accuracy: 0.7649 - mae: 0.2743 - pearson_correlation: 0.2370 - euclidean_distance: 0.4299
Epoch 48/100
57/57 [==============================] - 0s 854us/step - loss: 0.2693 - accuracy: 0.7693 - mae: 0.2693 - pearson_correlation: 0.2368 - euclidean_distance: 0.4230
Epoch 49/100
57/57 [==============================] - 0s 862us/step - loss: 0.2671 - accuracy: 0.7808 - mae: 0.2671 - pearson_correlation: 0.2408 - euclidean_distance: 0.4199
Epoch 50/100
57/57 [==============================] - 0s 861us/step - loss: 0.2625 - accuracy: 0.7874 - mae: 0.2625 - pearson_correlation: 0.2500 - euclidean_distance: 0.4128
Epoch 51/100
57/57 [==============================] - 0s 855us/step - loss: 0.2571 - accuracy: 0.7825 - mae: 0.2571 - pearson_correlation: 0.2515 - euclidean_distance: 0.4052
Epoch 52/100
57/57 [==============================] - 0s 864us/step - loss: 0.2542 - accuracy: 0.7975 - mae: 0.2542 - pearson_correlation: 0.2593 - euclidean_distance: 0.4005
Epoch 53/100
57/57 [==============================] - 0s 866us/step - loss: 0.2508 - accuracy: 0.8006 - mae: 0.2508 - pearson_correlation: 0.2605 - euclidean_distance: 0.3962
Epoch 54/100
57/57 [==============================] - 0s 858us/step - loss: 0.2468 - accuracy: 0.8099 - mae: 0.2468 - pearson_correlation: 0.2663 - euclidean_distance: 0.3899
Epoch 55/100
57/57 [==============================] - 0s 858us/step - loss: 0.2419 - accuracy: 0.8130 - mae: 0.2419 - pearson_correlation: 0.2718 - euclidean_distance: 0.3831
Epoch 56/100
57/57 [==============================] - 0s 859us/step - loss: 0.2398 - accuracy: 0.8152 - mae: 0.2398 - pearson_correlation: 0.2715 - euclidean_distance: 0.3791
Epoch 57/100
57/57 [==============================] - 0s 854us/step - loss: 0.2349 - accuracy: 0.8244 - mae: 0.2349 - pearson_correlation: 0.2758 - euclidean_distance: 0.3735
Epoch 58/100
57/57 [==============================] - 0s 856us/step - loss: 0.2313 - accuracy: 0.8293 - mae: 0.2313 - pearson_correlation: 0.2813 - euclidean_distance: 0.3678
Epoch 59/100
57/57 [==============================] - 0s 862us/step - loss: 0.2309 - accuracy: 0.8377 - mae: 0.2309 - pearson_correlation: 0.2914 - euclidean_distance: 0.3664
Epoch 60/100
57/57 [==============================] - 0s 865us/step - loss: 0.2268 - accuracy: 0.8483 - mae: 0.2268 - pearson_correlation: 0.2926 - euclidean_distance: 0.3599
Epoch 61/100
57/57 [==============================] - 0s 858us/step - loss: 0.2218 - accuracy: 0.8465 - mae: 0.2218 - pearson_correlation: 0.3026 - euclidean_distance: 0.3522
Epoch 62/100
57/57 [==============================] - 0s 867us/step - loss: 0.2195 - accuracy: 0.8483 - mae: 0.2195 - pearson_correlation: 0.3077 - euclidean_distance: 0.3489
Epoch 63/100
57/57 [==============================] - 0s 855us/step - loss: 0.2180 - accuracy: 0.8491 - mae: 0.2180 - pearson_correlation: 0.3027 - euclidean_distance: 0.3469
Epoch 64/100
57/57 [==============================] - 0s 860us/step - loss: 0.2128 - accuracy: 0.8562 - mae: 0.2128 - pearson_correlation: 0.3157 - euclidean_distance: 0.3392
Epoch 65/100
57/57 [==============================] - 0s 855us/step - loss: 0.2105 - accuracy: 0.8628 - mae: 0.2105 - pearson_correlation: 0.3252 - euclidean_distance: 0.3361
Epoch 66/100
57/57 [==============================] - 0s 861us/step - loss: 0.2080 - accuracy: 0.8619 - mae: 0.2080 - pearson_correlation: 0.3215 - euclidean_distance: 0.3317
Epoch 67/100
57/57 [==============================] - 0s 864us/step - loss: 0.2062 - accuracy: 0.8668 - mae: 0.2062 - pearson_correlation: 0.3300 - euclidean_distance: 0.3290
Epoch 68/100
57/57 [==============================] - 0s 858us/step - loss: 0.2025 - accuracy: 0.8708 - mae: 0.2025 - pearson_correlation: 0.3405 - euclidean_distance: 0.3233
Epoch 69/100
57/57 [==============================] - 0s 859us/step - loss: 0.2005 - accuracy: 0.8769 - mae: 0.2005 - pearson_correlation: 0.3412 - euclidean_distance: 0.3199
Epoch 70/100
57/57 [==============================] - 0s 862us/step - loss: 0.1972 - accuracy: 0.8783 - mae: 0.1972 - pearson_correlation: 0.3520 - euclidean_distance: 0.3143
Epoch 71/100
57/57 [==============================] - 0s 858us/step - loss: 0.1950 - accuracy: 0.8791 - mae: 0.1950 - pearson_correlation: 0.3522 - euclidean_distance: 0.3113
Epoch 72/100
57/57 [==============================] - 0s 868us/step - loss: 0.1938 - accuracy: 0.8902 - mae: 0.1938 - pearson_correlation: 0.3614 - euclidean_distance: 0.3091
Epoch 73/100
57/57 [==============================] - 0s 859us/step - loss: 0.1881 - accuracy: 0.8919 - mae: 0.1881 - pearson_correlation: 0.3713 - euclidean_distance: 0.2997
Epoch 74/100
57/57 [==============================] - 0s 859us/step - loss: 0.1888 - accuracy: 0.8884 - mae: 0.1888 - pearson_correlation: 0.3747 - euclidean_distance: 0.3011
Epoch 75/100
57/57 [==============================] - 0s 862us/step - loss: 0.1861 - accuracy: 0.8928 - mae: 0.1861 - pearson_correlation: 0.3815 - euclidean_distance: 0.2971
Epoch 76/100
57/57 [==============================] - 0s 860us/step - loss: 0.1836 - accuracy: 0.8968 - mae: 0.1836 - pearson_correlation: 0.3836 - euclidean_distance: 0.2933
Epoch 77/100
57/57 [==============================] - 0s 856us/step - loss: 0.1816 - accuracy: 0.8968 - mae: 0.1816 - pearson_correlation: 0.3876 - euclidean_distance: 0.2899
Epoch 78/100
57/57 [==============================] - 0s 857us/step - loss: 0.1813 - accuracy: 0.9007 - mae: 0.1813 - pearson_correlation: 0.3956 - euclidean_distance: 0.2897
Epoch 79/100
57/57 [==============================] - 0s 857us/step - loss: 0.1780 - accuracy: 0.8985 - mae: 0.1780 - pearson_correlation: 0.4054 - euclidean_distance: 0.2837
Epoch 80/100
57/57 [==============================] - 0s 865us/step - loss: 0.1765 - accuracy: 0.9030 - mae: 0.1765 - pearson_correlation: 0.4067 - euclidean_distance: 0.2820
Epoch 81/100
57/57 [==============================] - 0s 860us/step - loss: 0.1759 - accuracy: 0.9087 - mae: 0.1759 - pearson_correlation: 0.4061 - euclidean_distance: 0.2806
Epoch 82/100
57/57 [==============================] - 0s 864us/step - loss: 0.1750 - accuracy: 0.9069 - mae: 0.1750 - pearson_correlation: 0.4184 - euclidean_distance: 0.2792
Epoch 83/100
57/57 [==============================] - 0s 858us/step - loss: 0.1719 - accuracy: 0.9078 - mae: 0.1719 - pearson_correlation: 0.4251 - euclidean_distance: 0.2744
Epoch 84/100
57/57 [==============================] - 0s 859us/step - loss: 0.1693 - accuracy: 0.9153 - mae: 0.1693 - pearson_correlation: 0.4339 - euclidean_distance: 0.2696
Epoch 85/100
57/57 [==============================] - 0s 853us/step - loss: 0.1671 - accuracy: 0.9184 - mae: 0.1671 - pearson_correlation: 0.4367 - euclidean_distance: 0.2668
Epoch 86/100
57/57 [==============================] - 0s 857us/step - loss: 0.1656 - accuracy: 0.9166 - mae: 0.1656 - pearson_correlation: 0.4404 - euclidean_distance: 0.2644
Epoch 87/100
57/57 [==============================] - 0s 865us/step - loss: 0.1647 - accuracy: 0.9180 - mae: 0.1647 - pearson_correlation: 0.4446 - euclidean_distance: 0.2631
Epoch 88/100
57/57 [==============================] - 0s 855us/step - loss: 0.1609 - accuracy: 0.9224 - mae: 0.1609 - pearson_correlation: 0.4538 - euclidean_distance: 0.2563
Epoch 89/100
57/57 [==============================] - 0s 864us/step - loss: 0.1603 - accuracy: 0.9188 - mae: 0.1603 - pearson_correlation: 0.4612 - euclidean_distance: 0.2555
Epoch 90/100
57/57 [==============================] - 0s 849us/step - loss: 0.1602 - accuracy: 0.9228 - mae: 0.1602 - pearson_correlation: 0.4595 - euclidean_distance: 0.2560
Epoch 91/100
57/57 [==============================] - 0s 843us/step - loss: 0.1556 - accuracy: 0.9246 - mae: 0.1556 - pearson_correlation: 0.4689 - euclidean_distance: 0.2482
Epoch 92/100
57/57 [==============================] - 0s 851us/step - loss: 0.1564 - accuracy: 0.9250 - mae: 0.1564 - pearson_correlation: 0.4752 - euclidean_distance: 0.2497
Epoch 93/100
57/57 [==============================] - 0s 863us/step - loss: 0.1548 - accuracy: 0.9290 - mae: 0.1548 - pearson_correlation: 0.4784 - euclidean_distance: 0.2467
Epoch 94/100
57/57 [==============================] - 0s 856us/step - loss: 0.1541 - accuracy: 0.9277 - mae: 0.1541 - pearson_correlation: 0.4841 - euclidean_distance: 0.2455
Epoch 95/100
57/57 [==============================] - 0s 859us/step - loss: 0.1539 - accuracy: 0.9299 - mae: 0.1539 - pearson_correlation: 0.4854 - euclidean_distance: 0.2455
Epoch 96/100
57/57 [==============================] - 0s 859us/step - loss: 0.1524 - accuracy: 0.9352 - mae: 0.1524 - pearson_correlation: 0.4910 - euclidean_distance: 0.2426
Epoch 97/100
57/57 [==============================] - 0s 860us/step - loss: 0.1505 - accuracy: 0.9299 - mae: 0.1505 - pearson_correlation: 0.4960 - euclidean_distance: 0.2400
Epoch 98/100
57/57 [==============================] - 0s 856us/step - loss: 0.1465 - accuracy: 0.9347 - mae: 0.1465 - pearson_correlation: 0.5060 - euclidean_distance: 0.2333
Epoch 99/100
57/57 [==============================] - 0s 852us/step - loss: 0.1471 - accuracy: 0.9356 - mae: 0.1471 - pearson_correlation: 0.5074 - euclidean_distance: 0.2353
Epoch 100/100
57/57 [==============================] - 0s 863us/step - loss: 0.1487 - accuracy: 0.9347 - mae: 0.1487 - pearson_correlation: 0.5062 - euclidean_distance: 0.2377
29/29 [==============================] - 0s 496us/step
Epoch 1/100
57/57 [==============================] - 1s 868us/step - loss: 0.5235 - accuracy: 0.2641 - mae: 0.5235 - pearson_correlation: -0.4503 - euclidean_distance: 0.8452
Epoch 2/100
57/57 [==============================] - 0s 884us/step - loss: 0.5184 - accuracy: 0.2619 - mae: 0.5184 - pearson_correlation: -0.4498 - euclidean_distance: 0.8396
Epoch 3/100
57/57 [==============================] - 0s 932us/step - loss: 0.5139 - accuracy: 0.2641 - mae: 0.5139 - pearson_correlation: -0.4507 - euclidean_distance: 0.8339
Epoch 4/100
57/57 [==============================] - 0s 872us/step - loss: 0.5107 - accuracy: 0.2676 - mae: 0.5107 - pearson_correlation: -0.4437 - euclidean_distance: 0.8288
Epoch 5/100
57/57 [==============================] - 0s 868us/step - loss: 0.5069 - accuracy: 0.2672 - mae: 0.5069 - pearson_correlation: -0.4471 - euclidean_distance: 0.8233
Epoch 6/100
57/57 [==============================] - 0s 864us/step - loss: 0.5012 - accuracy: 0.2628 - mae: 0.5012 - pearson_correlation: -0.4532 - euclidean_distance: 0.8174
Epoch 7/100
57/57 [==============================] - 0s 867us/step - loss: 0.4988 - accuracy: 0.2676 - mae: 0.4988 - pearson_correlation: -0.4477 - euclidean_distance: 0.8140
Epoch 8/100
57/57 [==============================] - 0s 867us/step - loss: 0.4944 - accuracy: 0.2703 - mae: 0.4944 - pearson_correlation: -0.4490 - euclidean_distance: 0.8074
Epoch 9/100
57/57 [==============================] - 0s 863us/step - loss: 0.4898 - accuracy: 0.2623 - mae: 0.4898 - pearson_correlation: -0.4443 - euclidean_distance: 0.8012
Epoch 10/100
57/57 [==============================] - 0s 854us/step - loss: 0.4863 - accuracy: 0.2676 - mae: 0.4863 - pearson_correlation: -0.4484 - euclidean_distance: 0.7977
Epoch 11/100
57/57 [==============================] - 0s 868us/step - loss: 0.4813 - accuracy: 0.2566 - mae: 0.4813 - pearson_correlation: -0.4546 - euclidean_distance: 0.7915
Epoch 12/100
57/57 [==============================] - 0s 863us/step - loss: 0.4787 - accuracy: 0.2575 - mae: 0.4787 - pearson_correlation: -0.4454 - euclidean_distance: 0.7866
Epoch 13/100
57/57 [==============================] - 0s 862us/step - loss: 0.4735 - accuracy: 0.2840 - mae: 0.4735 - pearson_correlation: -0.4403 - euclidean_distance: 0.7788
Epoch 14/100
57/57 [==============================] - 0s 867us/step - loss: 0.4692 - accuracy: 0.2707 - mae: 0.4692 - pearson_correlation: -0.4374 - euclidean_distance: 0.7731
Epoch 15/100
57/57 [==============================] - 0s 855us/step - loss: 0.4659 - accuracy: 0.2681 - mae: 0.4659 - pearson_correlation: -0.4431 - euclidean_distance: 0.7696
Epoch 16/100
57/57 [==============================] - 0s 877us/step - loss: 0.4613 - accuracy: 0.2641 - mae: 0.4613 - pearson_correlation: -0.4375 - euclidean_distance: 0.7625
Epoch 17/100
57/57 [==============================] - 0s 860us/step - loss: 0.4570 - accuracy: 0.2729 - mae: 0.4570 - pearson_correlation: -0.4321 - euclidean_distance: 0.7566
Epoch 18/100
57/57 [==============================] - 0s 861us/step - loss: 0.4540 - accuracy: 0.2703 - mae: 0.4540 - pearson_correlation: -0.4357 - euclidean_distance: 0.7506
Epoch 19/100
57/57 [==============================] - 0s 871us/step - loss: 0.4503 - accuracy: 0.2725 - mae: 0.4503 - pearson_correlation: -0.4296 - euclidean_distance: 0.7457
Epoch 20/100
57/57 [==============================] - 0s 867us/step - loss: 0.4443 - accuracy: 0.2716 - mae: 0.4443 - pearson_correlation: -0.4250 - euclidean_distance: 0.7387
Epoch 21/100
57/57 [==============================] - 0s 956us/step - loss: 0.4402 - accuracy: 0.2751 - mae: 0.4402 - pearson_correlation: -0.4262 - euclidean_distance: 0.7325
Epoch 22/100
57/57 [==============================] - 0s 989us/step - loss: 0.4373 - accuracy: 0.2822 - mae: 0.4373 - pearson_correlation: -0.4171 - euclidean_distance: 0.7279
Epoch 23/100
57/57 [==============================] - 0s 968us/step - loss: 0.4327 - accuracy: 0.2800 - mae: 0.4327 - pearson_correlation: -0.4152 - euclidean_distance: 0.7212
Epoch 24/100
57/57 [==============================] - 0s 965us/step - loss: 0.4290 - accuracy: 0.2809 - mae: 0.4290 - pearson_correlation: -0.4199 - euclidean_distance: 0.7159
Epoch 25/100
57/57 [==============================] - 0s 991us/step - loss: 0.4247 - accuracy: 0.2822 - mae: 0.4247 - pearson_correlation: -0.4083 - euclidean_distance: 0.7095
Epoch 26/100
57/57 [==============================] - 0s 1ms/step - loss: 0.4200 - accuracy: 0.2769 - mae: 0.4200 - pearson_correlation: -0.4068 - euclidean_distance: 0.7034
Epoch 27/100
57/57 [==============================] - 0s 1ms/step - loss: 0.4159 - accuracy: 0.2840 - mae: 0.4159 - pearson_correlation: -0.4020 - euclidean_distance: 0.6976
Epoch 28/100
57/57 [==============================] - 0s 982us/step - loss: 0.4113 - accuracy: 0.2835 - mae: 0.4113 - pearson_correlation: -0.3964 - euclidean_distance: 0.6903
Epoch 29/100
57/57 [==============================] - 0s 1ms/step - loss: 0.4091 - accuracy: 0.2809 - mae: 0.4091 - pearson_correlation: -0.3929 - euclidean_distance: 0.6862
Epoch 30/100
57/57 [==============================] - 0s 1ms/step - loss: 0.4022 - accuracy: 0.2817 - mae: 0.4022 - pearson_correlation: -0.3977 - euclidean_distance: 0.6786
Epoch 31/100
57/57 [==============================] - 0s 878us/step - loss: 0.4005 - accuracy: 0.2826 - mae: 0.4005 - pearson_correlation: -0.3895 - euclidean_distance: 0.6740
Epoch 32/100
57/57 [==============================] - 0s 864us/step - loss: 0.3961 - accuracy: 0.2862 - mae: 0.3961 - pearson_correlation: -0.3781 - euclidean_distance: 0.6669
Epoch 33/100
57/57 [==============================] - 0s 866us/step - loss: 0.3902 - accuracy: 0.2901 - mae: 0.3902 - pearson_correlation: -0.3674 - euclidean_distance: 0.6587
Epoch 34/100
57/57 [==============================] - 0s 866us/step - loss: 0.3864 - accuracy: 0.2963 - mae: 0.3864 - pearson_correlation: -0.3683 - euclidean_distance: 0.6533
Epoch 35/100
57/57 [==============================] - 0s 864us/step - loss: 0.3843 - accuracy: 0.2928 - mae: 0.3843 - pearson_correlation: -0.3625 - euclidean_distance: 0.6486
Epoch 36/100
57/57 [==============================] - 0s 859us/step - loss: 0.3795 - accuracy: 0.2963 - mae: 0.3795 - pearson_correlation: -0.3581 - euclidean_distance: 0.6415
Epoch 37/100
57/57 [==============================] - 0s 872us/step - loss: 0.3754 - accuracy: 0.3003 - mae: 0.3754 - pearson_correlation: -0.3435 - euclidean_distance: 0.6354
Epoch 38/100
57/57 [==============================] - 0s 860us/step - loss: 0.3712 - accuracy: 0.3025 - mae: 0.3712 - pearson_correlation: -0.3360 - euclidean_distance: 0.6292
Epoch 39/100
57/57 [==============================] - 0s 866us/step - loss: 0.3661 - accuracy: 0.3016 - mae: 0.3661 - pearson_correlation: -0.3360 - euclidean_distance: 0.6219
Epoch 40/100
57/57 [==============================] - 0s 857us/step - loss: 0.3635 - accuracy: 0.3029 - mae: 0.3635 - pearson_correlation: -0.3331 - euclidean_distance: 0.6171
Epoch 41/100
57/57 [==============================] - 0s 860us/step - loss: 0.3595 - accuracy: 0.3051 - mae: 0.3595 - pearson_correlation: -0.3297 - euclidean_distance: 0.6112
Epoch 42/100
57/57 [==============================] - 0s 868us/step - loss: 0.3553 - accuracy: 0.3104 - mae: 0.3553 - pearson_correlation: -0.3210 - euclidean_distance: 0.6042
Epoch 43/100
57/57 [==============================] - 0s 864us/step - loss: 0.3520 - accuracy: 0.3157 - mae: 0.3520 - pearson_correlation: -0.3149 - euclidean_distance: 0.5991
Epoch 44/100
57/57 [==============================] - 0s 856us/step - loss: 0.3481 - accuracy: 0.3183 - mae: 0.3481 - pearson_correlation: -0.2975 - euclidean_distance: 0.5915
Epoch 45/100
57/57 [==============================] - 0s 852us/step - loss: 0.3443 - accuracy: 0.3183 - mae: 0.3443 - pearson_correlation: -0.2902 - euclidean_distance: 0.5864
Epoch 46/100
57/57 [==============================] - 0s 860us/step - loss: 0.3412 - accuracy: 0.3223 - mae: 0.3412 - pearson_correlation: -0.2799 - euclidean_distance: 0.5805
Epoch 47/100
57/57 [==============================] - 0s 859us/step - loss: 0.3367 - accuracy: 0.3188 - mae: 0.3367 - pearson_correlation: -0.2834 - euclidean_distance: 0.5746
Epoch 48/100
57/57 [==============================] - 0s 860us/step - loss: 0.3334 - accuracy: 0.3302 - mae: 0.3334 - pearson_correlation: -0.2658 - euclidean_distance: 0.5686
Epoch 49/100
57/57 [==============================] - 0s 859us/step - loss: 0.3289 - accuracy: 0.3351 - mae: 0.3289 - pearson_correlation: -0.2590 - euclidean_distance: 0.5613
Epoch 50/100
57/57 [==============================] - 0s 861us/step - loss: 0.3266 - accuracy: 0.3391 - mae: 0.3266 - pearson_correlation: -0.2437 - euclidean_distance: 0.5561
Epoch 51/100
57/57 [==============================] - 0s 865us/step - loss: 0.3228 - accuracy: 0.3448 - mae: 0.3228 - pearson_correlation: -0.2334 - euclidean_distance: 0.5502
Epoch 52/100
57/57 [==============================] - 0s 860us/step - loss: 0.3190 - accuracy: 0.3386 - mae: 0.3190 - pearson_correlation: -0.2263 - euclidean_distance: 0.5444
Epoch 53/100
57/57 [==============================] - 0s 853us/step - loss: 0.3164 - accuracy: 0.3541 - mae: 0.3164 - pearson_correlation: -0.2228 - euclidean_distance: 0.5397
Epoch 54/100
57/57 [==============================] - 0s 864us/step - loss: 0.3116 - accuracy: 0.3541 - mae: 0.3116 - pearson_correlation: -0.2094 - euclidean_distance: 0.5325
Epoch 55/100
57/57 [==============================] - 0s 908us/step - loss: 0.3094 - accuracy: 0.3554 - mae: 0.3094 - pearson_correlation: -0.2063 - euclidean_distance: 0.5286
Epoch 56/100
57/57 [==============================] - 0s 872us/step - loss: 0.3037 - accuracy: 0.3638 - mae: 0.3037 - pearson_correlation: -0.1883 - euclidean_distance: 0.5190
Epoch 57/100
57/57 [==============================] - 0s 864us/step - loss: 0.3023 - accuracy: 0.3651 - mae: 0.3023 - pearson_correlation: -0.1844 - euclidean_distance: 0.5164
Epoch 58/100
57/57 [==============================] - 0s 867us/step - loss: 0.3004 - accuracy: 0.3686 - mae: 0.3004 - pearson_correlation: -0.1692 - euclidean_distance: 0.5128
Epoch 59/100
57/57 [==============================] - 0s 886us/step - loss: 0.2964 - accuracy: 0.3752 - mae: 0.2964 - pearson_correlation: -0.1607 - euclidean_distance: 0.5061
Epoch 60/100
57/57 [==============================] - 0s 861us/step - loss: 0.2930 - accuracy: 0.3761 - mae: 0.2930 - pearson_correlation: -0.1485 - euclidean_distance: 0.5000
Epoch 61/100
57/57 [==============================] - 0s 869us/step - loss: 0.2922 - accuracy: 0.3805 - mae: 0.2922 - pearson_correlation: -0.1451 - euclidean_distance: 0.4985
Epoch 62/100
57/57 [==============================] - 0s 859us/step - loss: 0.2865 - accuracy: 0.3854 - mae: 0.2865 - pearson_correlation: -0.1291 - euclidean_distance: 0.4900
Epoch 63/100
57/57 [==============================] - 0s 868us/step - loss: 0.2833 - accuracy: 0.3876 - mae: 0.2833 - pearson_correlation: -0.1189 - euclidean_distance: 0.4843
Epoch 64/100
57/57 [==============================] - 0s 865us/step - loss: 0.2815 - accuracy: 0.3933 - mae: 0.2815 - pearson_correlation: -0.1082 - euclidean_distance: 0.4793
Epoch 65/100
57/57 [==============================] - 0s 866us/step - loss: 0.2792 - accuracy: 0.3915 - mae: 0.2792 - pearson_correlation: -0.1054 - euclidean_distance: 0.4759
Epoch 66/100
57/57 [==============================] - 0s 856us/step - loss: 0.2754 - accuracy: 0.4030 - mae: 0.2754 - pearson_correlation: -0.0862 - euclidean_distance: 0.4702
Epoch 67/100
57/57 [==============================] - 0s 863us/step - loss: 0.2740 - accuracy: 0.4078 - mae: 0.2740 - pearson_correlation: -0.0769 - euclidean_distance: 0.4671
Epoch 68/100
57/57 [==============================] - 0s 890us/step - loss: 0.2709 - accuracy: 0.4061 - mae: 0.2709 - pearson_correlation: -0.0748 - euclidean_distance: 0.4618
Epoch 69/100
57/57 [==============================] - 0s 860us/step - loss: 0.2660 - accuracy: 0.4092 - mae: 0.2660 - pearson_correlation: -0.0632 - euclidean_distance: 0.4553
Epoch 70/100
57/57 [==============================] - 0s 869us/step - loss: 0.2654 - accuracy: 0.4149 - mae: 0.2654 - pearson_correlation: -0.0546 - euclidean_distance: 0.4531
Epoch 71/100
57/57 [==============================] - 0s 856us/step - loss: 0.2639 - accuracy: 0.4272 - mae: 0.2639 - pearson_correlation: -0.0438 - euclidean_distance: 0.4491
Epoch 72/100
57/57 [==============================] - 0s 861us/step - loss: 0.2606 - accuracy: 0.4321 - mae: 0.2606 - pearson_correlation: -0.0304 - euclidean_distance: 0.4444
Epoch 73/100
57/57 [==============================] - 0s 859us/step - loss: 0.2599 - accuracy: 0.4308 - mae: 0.2599 - pearson_correlation: -0.0258 - euclidean_distance: 0.4434
Epoch 74/100
57/57 [==============================] - 0s 865us/step - loss: 0.2581 - accuracy: 0.4462 - mae: 0.2581 - pearson_correlation: -0.0105 - euclidean_distance: 0.4391
Epoch 75/100
57/57 [==============================] - 0s 855us/step - loss: 0.2521 - accuracy: 0.4418 - mae: 0.2521 - pearson_correlation: -0.0082 - euclidean_distance: 0.4316
Epoch 76/100
57/57 [==============================] - 0s 854us/step - loss: 0.2532 - accuracy: 0.4436 - mae: 0.2532 - pearson_correlation: 0.0055 - euclidean_distance: 0.4301
Epoch 77/100
57/57 [==============================] - 0s 872us/step - loss: 0.2506 - accuracy: 0.4524 - mae: 0.2506 - pearson_correlation: 0.0111 - euclidean_distance: 0.4270
Epoch 78/100
57/57 [==============================] - 0s 854us/step - loss: 0.2503 - accuracy: 0.4555 - mae: 0.2503 - pearson_correlation: 0.0166 - euclidean_distance: 0.4256
Epoch 79/100
57/57 [==============================] - 0s 852us/step - loss: 0.2462 - accuracy: 0.4656 - mae: 0.2462 - pearson_correlation: 0.0219 - euclidean_distance: 0.4193
Epoch 80/100
57/57 [==============================] - 0s 860us/step - loss: 0.2436 - accuracy: 0.4599 - mae: 0.2436 - pearson_correlation: 0.0367 - euclidean_distance: 0.4146
Epoch 81/100
57/57 [==============================] - 0s 862us/step - loss: 0.2418 - accuracy: 0.4749 - mae: 0.2418 - pearson_correlation: 0.0494 - euclidean_distance: 0.4121
Epoch 82/100
57/57 [==============================] - 0s 866us/step - loss: 0.2394 - accuracy: 0.4766 - mae: 0.2394 - pearson_correlation: 0.0587 - euclidean_distance: 0.4084
Epoch 83/100
57/57 [==============================] - 0s 854us/step - loss: 0.2379 - accuracy: 0.4894 - mae: 0.2379 - pearson_correlation: 0.0605 - euclidean_distance: 0.4050
Epoch 84/100
57/57 [==============================] - 0s 856us/step - loss: 0.2392 - accuracy: 0.4894 - mae: 0.2392 - pearson_correlation: 0.0668 - euclidean_distance: 0.4060
Epoch 85/100
57/57 [==============================] - 0s 849us/step - loss: 0.2357 - accuracy: 0.4982 - mae: 0.2357 - pearson_correlation: 0.0811 - euclidean_distance: 0.3997
Epoch 86/100
57/57 [==============================] - 0s 842us/step - loss: 0.2345 - accuracy: 0.4969 - mae: 0.2345 - pearson_correlation: 0.0836 - euclidean_distance: 0.3984
Epoch 87/100
57/57 [==============================] - 0s 865us/step - loss: 0.2332 - accuracy: 0.5088 - mae: 0.2332 - pearson_correlation: 0.0984 - euclidean_distance: 0.3940
Epoch 88/100
57/57 [==============================] - 0s 860us/step - loss: 0.2289 - accuracy: 0.5053 - mae: 0.2289 - pearson_correlation: 0.1037 - euclidean_distance: 0.3881
Epoch 89/100
57/57 [==============================] - 0s 862us/step - loss: 0.2261 - accuracy: 0.5190 - mae: 0.2261 - pearson_correlation: 0.1105 - euclidean_distance: 0.3838
Epoch 90/100
57/57 [==============================] - 0s 859us/step - loss: 0.2278 - accuracy: 0.5220 - mae: 0.2278 - pearson_correlation: 0.1197 - euclidean_distance: 0.3853
Epoch 91/100
57/57 [==============================] - 0s 860us/step - loss: 0.2257 - accuracy: 0.5291 - mae: 0.2257 - pearson_correlation: 0.1161 - euclidean_distance: 0.3823
Epoch 92/100
57/57 [==============================] - 0s 848us/step - loss: 0.2227 - accuracy: 0.5392 - mae: 0.2227 - pearson_correlation: 0.1379 - euclidean_distance: 0.3770
Epoch 93/100
57/57 [==============================] - 0s 855us/step - loss: 0.2208 - accuracy: 0.5450 - mae: 0.2208 - pearson_correlation: 0.1459 - euclidean_distance: 0.3743
Epoch 94/100
57/57 [==============================] - 0s 858us/step - loss: 0.2188 - accuracy: 0.5498 - mae: 0.2188 - pearson_correlation: 0.1485 - euclidean_distance: 0.3713
Epoch 95/100
57/57 [==============================] - 0s 863us/step - loss: 0.2175 - accuracy: 0.5591 - mae: 0.2175 - pearson_correlation: 0.1550 - euclidean_distance: 0.3682
Epoch 96/100
57/57 [==============================] - 0s 861us/step - loss: 0.2148 - accuracy: 0.5657 - mae: 0.2148 - pearson_correlation: 0.1598 - euclidean_distance: 0.3643
Epoch 97/100
57/57 [==============================] - 0s 864us/step - loss: 0.2157 - accuracy: 0.5780 - mae: 0.2157 - pearson_correlation: 0.1677 - euclidean_distance: 0.3640
Epoch 98/100
57/57 [==============================] - 0s 859us/step - loss: 0.2108 - accuracy: 0.5847 - mae: 0.2108 - pearson_correlation: 0.1866 - euclidean_distance: 0.3565
Epoch 99/100
57/57 [==============================] - 0s 863us/step - loss: 0.2088 - accuracy: 0.5886 - mae: 0.2088 - pearson_correlation: 0.1878 - euclidean_distance: 0.3531
Epoch 100/100
57/57 [==============================] - 0s 862us/step - loss: 0.2084 - accuracy: 0.5913 - mae: 0.2084 - pearson_correlation: 0.2028 - euclidean_distance: 0.3518
29/29 [==============================] - 0s 475us/step
Epoch 1/150
57/57 [==============================] - 1s 862us/step - loss: 0.5558 - accuracy: 0.5929 - mae: 0.5558 - pearson_correlation: 0.1940 - euclidean_distance: 0.8493
Epoch 2/150
57/57 [==============================] - 0s 837us/step - loss: 0.5517 - accuracy: 0.5946 - mae: 0.5517 - pearson_correlation: 0.1883 - euclidean_distance: 0.8435
Epoch 3/150
57/57 [==============================] - 0s 870us/step - loss: 0.5464 - accuracy: 0.5915 - mae: 0.5464 - pearson_correlation: 0.1853 - euclidean_distance: 0.8360
Epoch 4/150
57/57 [==============================] - 0s 874us/step - loss: 0.5419 - accuracy: 0.5717 - mae: 0.5419 - pearson_correlation: 0.1825 - euclidean_distance: 0.8290
Epoch 5/150
57/57 [==============================] - 0s 864us/step - loss: 0.5387 - accuracy: 0.5770 - mae: 0.5387 - pearson_correlation: 0.1806 - euclidean_distance: 0.8246
Epoch 6/150
57/57 [==============================] - 0s 871us/step - loss: 0.5333 - accuracy: 0.5739 - mae: 0.5333 - pearson_correlation: 0.1793 - euclidean_distance: 0.8161
Epoch 7/150
57/57 [==============================] - 0s 870us/step - loss: 0.5303 - accuracy: 0.5809 - mae: 0.5303 - pearson_correlation: 0.1761 - euclidean_distance: 0.8106
Epoch 8/150
57/57 [==============================] - 0s 869us/step - loss: 0.5252 - accuracy: 0.5708 - mae: 0.5252 - pearson_correlation: 0.1683 - euclidean_distance: 0.8037
Epoch 9/150
57/57 [==============================] - 0s 871us/step - loss: 0.5194 - accuracy: 0.5774 - mae: 0.5194 - pearson_correlation: 0.1745 - euclidean_distance: 0.7952
Epoch 10/150
57/57 [==============================] - 0s 870us/step - loss: 0.5148 - accuracy: 0.5699 - mae: 0.5148 - pearson_correlation: 0.1738 - euclidean_distance: 0.7883
Epoch 11/150
57/57 [==============================] - 0s 869us/step - loss: 0.5098 - accuracy: 0.5584 - mae: 0.5098 - pearson_correlation: 0.1668 - euclidean_distance: 0.7817
Epoch 12/150
57/57 [==============================] - 0s 877us/step - loss: 0.5049 - accuracy: 0.5580 - mae: 0.5049 - pearson_correlation: 0.1673 - euclidean_distance: 0.7733
Epoch 13/150
57/57 [==============================] - 0s 870us/step - loss: 0.5005 - accuracy: 0.5721 - mae: 0.5005 - pearson_correlation: 0.1683 - euclidean_distance: 0.7664
Epoch 14/150
57/57 [==============================] - 0s 871us/step - loss: 0.4963 - accuracy: 0.5580 - mae: 0.4963 - pearson_correlation: 0.1643 - euclidean_distance: 0.7605
Epoch 15/150
57/57 [==============================] - 0s 866us/step - loss: 0.4912 - accuracy: 0.5589 - mae: 0.4912 - pearson_correlation: 0.1597 - euclidean_distance: 0.7533
Epoch 16/150
57/57 [==============================] - 0s 866us/step - loss: 0.4855 - accuracy: 0.5664 - mae: 0.4855 - pearson_correlation: 0.1576 - euclidean_distance: 0.7441
Epoch 17/150
57/57 [==============================] - 0s 866us/step - loss: 0.4803 - accuracy: 0.5584 - mae: 0.4803 - pearson_correlation: 0.1552 - euclidean_distance: 0.7377
Epoch 18/150
57/57 [==============================] - 0s 870us/step - loss: 0.4762 - accuracy: 0.5607 - mae: 0.4762 - pearson_correlation: 0.1576 - euclidean_distance: 0.7309
Epoch 19/150
57/57 [==============================] - 0s 869us/step - loss: 0.4709 - accuracy: 0.5695 - mae: 0.4709 - pearson_correlation: 0.1551 - euclidean_distance: 0.7231
Epoch 20/150
57/57 [==============================] - 0s 865us/step - loss: 0.4661 - accuracy: 0.5633 - mae: 0.4661 - pearson_correlation: 0.1548 - euclidean_distance: 0.7149
Epoch 21/150
57/57 [==============================] - 0s 866us/step - loss: 0.4599 - accuracy: 0.5717 - mae: 0.4599 - pearson_correlation: 0.1597 - euclidean_distance: 0.7057
Epoch 22/150
57/57 [==============================] - 0s 864us/step - loss: 0.4570 - accuracy: 0.5664 - mae: 0.4570 - pearson_correlation: 0.1534 - euclidean_distance: 0.7010
Epoch 23/150
57/57 [==============================] - 0s 872us/step - loss: 0.4507 - accuracy: 0.5554 - mae: 0.4507 - pearson_correlation: 0.1542 - euclidean_distance: 0.6926
Epoch 24/150
57/57 [==============================] - 0s 871us/step - loss: 0.4461 - accuracy: 0.5664 - mae: 0.4461 - pearson_correlation: 0.1554 - euclidean_distance: 0.6847
Epoch 25/150
57/57 [==============================] - 0s 865us/step - loss: 0.4423 - accuracy: 0.5637 - mae: 0.4423 - pearson_correlation: 0.1592 - euclidean_distance: 0.6795
Epoch 26/150
57/57 [==============================] - 0s 871us/step - loss: 0.4385 - accuracy: 0.5620 - mae: 0.4385 - pearson_correlation: 0.1524 - euclidean_distance: 0.6731
Epoch 27/150
57/57 [==============================] - 0s 863us/step - loss: 0.4332 - accuracy: 0.5611 - mae: 0.4332 - pearson_correlation: 0.1547 - euclidean_distance: 0.6654
Epoch 28/150
57/57 [==============================] - 0s 863us/step - loss: 0.4293 - accuracy: 0.5699 - mae: 0.4293 - pearson_correlation: 0.1536 - euclidean_distance: 0.6592
Epoch 29/150
57/57 [==============================] - 0s 865us/step - loss: 0.4233 - accuracy: 0.5752 - mae: 0.4233 - pearson_correlation: 0.1628 - euclidean_distance: 0.6502
Epoch 30/150
57/57 [==============================] - 0s 865us/step - loss: 0.4188 - accuracy: 0.5876 - mae: 0.4188 - pearson_correlation: 0.1596 - euclidean_distance: 0.6430
Epoch 31/150
57/57 [==============================] - 0s 859us/step - loss: 0.4128 - accuracy: 0.5787 - mae: 0.4128 - pearson_correlation: 0.1548 - euclidean_distance: 0.6344
Epoch 32/150
57/57 [==============================] - 0s 865us/step - loss: 0.4100 - accuracy: 0.5871 - mae: 0.4100 - pearson_correlation: 0.1627 - euclidean_distance: 0.6302
Epoch 33/150
57/57 [==============================] - 0s 864us/step - loss: 0.4040 - accuracy: 0.5721 - mae: 0.4040 - pearson_correlation: 0.1563 - euclidean_distance: 0.6211
Epoch 34/150
57/57 [==============================] - 0s 855us/step - loss: 0.4010 - accuracy: 0.5818 - mae: 0.4010 - pearson_correlation: 0.1643 - euclidean_distance: 0.6154
Epoch 35/150
57/57 [==============================] - 0s 865us/step - loss: 0.3951 - accuracy: 0.5876 - mae: 0.3951 - pearson_correlation: 0.1630 - euclidean_distance: 0.6072
Epoch 36/150
57/57 [==============================] - 0s 869us/step - loss: 0.3914 - accuracy: 0.5911 - mae: 0.3914 - pearson_correlation: 0.1652 - euclidean_distance: 0.6018
Epoch 37/150
57/57 [==============================] - 0s 866us/step - loss: 0.3876 - accuracy: 0.5889 - mae: 0.3876 - pearson_correlation: 0.1629 - euclidean_distance: 0.5965
Epoch 38/150
57/57 [==============================] - 0s 862us/step - loss: 0.3804 - accuracy: 0.6105 - mae: 0.3804 - pearson_correlation: 0.1705 - euclidean_distance: 0.5854
Epoch 39/150
57/57 [==============================] - 0s 866us/step - loss: 0.3762 - accuracy: 0.6017 - mae: 0.3762 - pearson_correlation: 0.1778 - euclidean_distance: 0.5799
Epoch 40/150
57/57 [==============================] - 0s 865us/step - loss: 0.3729 - accuracy: 0.6043 - mae: 0.3729 - pearson_correlation: 0.1751 - euclidean_distance: 0.5744
Epoch 41/150
57/57 [==============================] - 0s 953us/step - loss: 0.3682 - accuracy: 0.6123 - mae: 0.3682 - pearson_correlation: 0.1783 - euclidean_distance: 0.5672
Epoch 42/150
57/57 [==============================] - 0s 857us/step - loss: 0.3630 - accuracy: 0.6149 - mae: 0.3630 - pearson_correlation: 0.1787 - euclidean_distance: 0.5590
Epoch 43/150
57/57 [==============================] - 0s 872us/step - loss: 0.3594 - accuracy: 0.6127 - mae: 0.3594 - pearson_correlation: 0.1864 - euclidean_distance: 0.5544
Epoch 44/150
57/57 [==============================] - 0s 865us/step - loss: 0.3533 - accuracy: 0.6330 - mae: 0.3533 - pearson_correlation: 0.1937 - euclidean_distance: 0.5453
Epoch 45/150
57/57 [==============================] - 0s 863us/step - loss: 0.3485 - accuracy: 0.6361 - mae: 0.3485 - pearson_correlation: 0.1940 - euclidean_distance: 0.5384
Epoch 46/150
57/57 [==============================] - 0s 866us/step - loss: 0.3457 - accuracy: 0.6409 - mae: 0.3457 - pearson_correlation: 0.1966 - euclidean_distance: 0.5340
Epoch 47/150
57/57 [==============================] - 0s 862us/step - loss: 0.3393 - accuracy: 0.6352 - mae: 0.3393 - pearson_correlation: 0.1918 - euclidean_distance: 0.5257
Epoch 48/150
57/57 [==============================] - 0s 857us/step - loss: 0.3359 - accuracy: 0.6299 - mae: 0.3359 - pearson_correlation: 0.1932 - euclidean_distance: 0.5205
Epoch 49/150
57/57 [==============================] - 0s 866us/step - loss: 0.3303 - accuracy: 0.6502 - mae: 0.3303 - pearson_correlation: 0.1998 - euclidean_distance: 0.5130
Epoch 50/150
57/57 [==============================] - 0s 863us/step - loss: 0.3277 - accuracy: 0.6484 - mae: 0.3277 - pearson_correlation: 0.2043 - euclidean_distance: 0.5092
Epoch 51/150
57/57 [==============================] - 0s 866us/step - loss: 0.3236 - accuracy: 0.6502 - mae: 0.3236 - pearson_correlation: 0.2006 - euclidean_distance: 0.5029
Epoch 52/150
57/57 [==============================] - 0s 863us/step - loss: 0.3199 - accuracy: 0.6603 - mae: 0.3199 - pearson_correlation: 0.2086 - euclidean_distance: 0.4981
Epoch 53/150
57/57 [==============================] - 0s 868us/step - loss: 0.3152 - accuracy: 0.6643 - mae: 0.3152 - pearson_correlation: 0.2078 - euclidean_distance: 0.4917
Epoch 54/150
57/57 [==============================] - 0s 858us/step - loss: 0.3095 - accuracy: 0.6674 - mae: 0.3095 - pearson_correlation: 0.2126 - euclidean_distance: 0.4828
Epoch 55/150
57/57 [==============================] - 0s 860us/step - loss: 0.3075 - accuracy: 0.6634 - mae: 0.3075 - pearson_correlation: 0.2225 - euclidean_distance: 0.4811
Epoch 56/150
57/57 [==============================] - 0s 861us/step - loss: 0.3017 - accuracy: 0.6652 - mae: 0.3017 - pearson_correlation: 0.2196 - euclidean_distance: 0.4719
Epoch 57/150
57/57 [==============================] - 0s 867us/step - loss: 0.2990 - accuracy: 0.6736 - mae: 0.2990 - pearson_correlation: 0.2240 - euclidean_distance: 0.4683
Epoch 58/150
57/57 [==============================] - 0s 865us/step - loss: 0.2952 - accuracy: 0.6767 - mae: 0.2952 - pearson_correlation: 0.2204 - euclidean_distance: 0.4636
Epoch 59/150
57/57 [==============================] - 0s 862us/step - loss: 0.2920 - accuracy: 0.6745 - mae: 0.2920 - pearson_correlation: 0.2192 - euclidean_distance: 0.4599
Epoch 60/150
57/57 [==============================] - 0s 863us/step - loss: 0.2877 - accuracy: 0.6727 - mae: 0.2877 - pearson_correlation: 0.2227 - euclidean_distance: 0.4534
Epoch 61/150
57/57 [==============================] - 0s 866us/step - loss: 0.2839 - accuracy: 0.6868 - mae: 0.2839 - pearson_correlation: 0.2320 - euclidean_distance: 0.4472
Epoch 62/150
57/57 [==============================] - 0s 864us/step - loss: 0.2804 - accuracy: 0.6868 - mae: 0.2804 - pearson_correlation: 0.2321 - euclidean_distance: 0.4428
Epoch 63/150
57/57 [==============================] - 0s 870us/step - loss: 0.2793 - accuracy: 0.6811 - mae: 0.2793 - pearson_correlation: 0.2331 - euclidean_distance: 0.4404
Epoch 64/150
57/57 [==============================] - 0s 863us/step - loss: 0.2747 - accuracy: 0.6877 - mae: 0.2747 - pearson_correlation: 0.2378 - euclidean_distance: 0.4342
Epoch 65/150
57/57 [==============================] - 0s 862us/step - loss: 0.2730 - accuracy: 0.6917 - mae: 0.2730 - pearson_correlation: 0.2359 - euclidean_distance: 0.4326
Epoch 66/150
57/57 [==============================] - 0s 867us/step - loss: 0.2684 - accuracy: 0.6974 - mae: 0.2684 - pearson_correlation: 0.2462 - euclidean_distance: 0.4251
Epoch 67/150
57/57 [==============================] - 0s 870us/step - loss: 0.2662 - accuracy: 0.6948 - mae: 0.2662 - pearson_correlation: 0.2483 - euclidean_distance: 0.4227
Epoch 68/150
57/57 [==============================] - 0s 866us/step - loss: 0.2629 - accuracy: 0.6921 - mae: 0.2629 - pearson_correlation: 0.2472 - euclidean_distance: 0.4178
Epoch 69/150
57/57 [==============================] - 0s 865us/step - loss: 0.2598 - accuracy: 0.6996 - mae: 0.2598 - pearson_correlation: 0.2454 - euclidean_distance: 0.4132
Epoch 70/150
57/57 [==============================] - 0s 869us/step - loss: 0.2574 - accuracy: 0.6983 - mae: 0.2574 - pearson_correlation: 0.2497 - euclidean_distance: 0.4100
Epoch 71/150
57/57 [==============================] - 0s 864us/step - loss: 0.2541 - accuracy: 0.7040 - mae: 0.2541 - pearson_correlation: 0.2569 - euclidean_distance: 0.4053
Epoch 72/150
57/57 [==============================] - 0s 865us/step - loss: 0.2513 - accuracy: 0.7036 - mae: 0.2513 - pearson_correlation: 0.2591 - euclidean_distance: 0.4016
Epoch 73/150
57/57 [==============================] - 0s 864us/step - loss: 0.2492 - accuracy: 0.7128 - mae: 0.2492 - pearson_correlation: 0.2622 - euclidean_distance: 0.3976
Epoch 74/150
57/57 [==============================] - 0s 866us/step - loss: 0.2481 - accuracy: 0.7120 - mae: 0.2481 - pearson_correlation: 0.2677 - euclidean_distance: 0.3951
Epoch 75/150
57/57 [==============================] - 0s 865us/step - loss: 0.2440 - accuracy: 0.7296 - mae: 0.2440 - pearson_correlation: 0.2759 - euclidean_distance: 0.3893
Epoch 76/150
57/57 [==============================] - 0s 867us/step - loss: 0.2395 - accuracy: 0.7146 - mae: 0.2395 - pearson_correlation: 0.2773 - euclidean_distance: 0.3840
Epoch 77/150
57/57 [==============================] - 0s 865us/step - loss: 0.2381 - accuracy: 0.7261 - mae: 0.2381 - pearson_correlation: 0.2799 - euclidean_distance: 0.3814
Epoch 78/150
57/57 [==============================] - 0s 863us/step - loss: 0.2365 - accuracy: 0.7270 - mae: 0.2365 - pearson_correlation: 0.2790 - euclidean_distance: 0.3795
Epoch 79/150
57/57 [==============================] - 0s 863us/step - loss: 0.2344 - accuracy: 0.7375 - mae: 0.2344 - pearson_correlation: 0.2882 - euclidean_distance: 0.3751
Epoch 80/150
57/57 [==============================] - 0s 867us/step - loss: 0.2332 - accuracy: 0.7283 - mae: 0.2332 - pearson_correlation: 0.2891 - euclidean_distance: 0.3746
Epoch 81/150
57/57 [==============================] - 0s 867us/step - loss: 0.2305 - accuracy: 0.7318 - mae: 0.2305 - pearson_correlation: 0.2889 - euclidean_distance: 0.3701
Epoch 82/150
57/57 [==============================] - 0s 867us/step - loss: 0.2300 - accuracy: 0.7331 - mae: 0.2300 - pearson_correlation: 0.2973 - euclidean_distance: 0.3687
Epoch 83/150
57/57 [==============================] - 0s 859us/step - loss: 0.2256 - accuracy: 0.7406 - mae: 0.2256 - pearson_correlation: 0.3072 - euclidean_distance: 0.3620
Epoch 84/150
57/57 [==============================] - 0s 864us/step - loss: 0.2238 - accuracy: 0.7424 - mae: 0.2238 - pearson_correlation: 0.3098 - euclidean_distance: 0.3597
Epoch 85/150
57/57 [==============================] - 0s 861us/step - loss: 0.2237 - accuracy: 0.7402 - mae: 0.2237 - pearson_correlation: 0.3130 - euclidean_distance: 0.3589
Epoch 86/150
57/57 [==============================] - 0s 866us/step - loss: 0.2198 - accuracy: 0.7494 - mae: 0.2198 - pearson_correlation: 0.3233 - euclidean_distance: 0.3528
Epoch 87/150
57/57 [==============================] - 0s 867us/step - loss: 0.2168 - accuracy: 0.7402 - mae: 0.2168 - pearson_correlation: 0.3241 - euclidean_distance: 0.3491
Epoch 88/150
57/57 [==============================] - 0s 864us/step - loss: 0.2193 - accuracy: 0.7442 - mae: 0.2193 - pearson_correlation: 0.3225 - euclidean_distance: 0.3529
Epoch 89/150
57/57 [==============================] - 0s 862us/step - loss: 0.2140 - accuracy: 0.7450 - mae: 0.2140 - pearson_correlation: 0.3263 - euclidean_distance: 0.3443
Epoch 90/150
57/57 [==============================] - 0s 865us/step - loss: 0.2126 - accuracy: 0.7543 - mae: 0.2126 - pearson_correlation: 0.3357 - euclidean_distance: 0.3416
Epoch 91/150
57/57 [==============================] - 0s 861us/step - loss: 0.2123 - accuracy: 0.7578 - mae: 0.2123 - pearson_correlation: 0.3430 - euclidean_distance: 0.3415
Epoch 92/150
57/57 [==============================] - 0s 864us/step - loss: 0.2100 - accuracy: 0.7614 - mae: 0.2100 - pearson_correlation: 0.3523 - euclidean_distance: 0.3377
Epoch 93/150
57/57 [==============================] - 0s 863us/step - loss: 0.2083 - accuracy: 0.7618 - mae: 0.2083 - pearson_correlation: 0.3491 - euclidean_distance: 0.3349
Epoch 94/150
57/57 [==============================] - 0s 857us/step - loss: 0.2058 - accuracy: 0.7547 - mae: 0.2058 - pearson_correlation: 0.3596 - euclidean_distance: 0.3316
Epoch 95/150
57/57 [==============================] - 0s 866us/step - loss: 0.2064 - accuracy: 0.7525 - mae: 0.2064 - pearson_correlation: 0.3585 - euclidean_distance: 0.3318
Epoch 96/150
57/57 [==============================] - 0s 860us/step - loss: 0.2027 - accuracy: 0.7596 - mae: 0.2027 - pearson_correlation: 0.3586 - euclidean_distance: 0.3263
Epoch 97/150
57/57 [==============================] - 0s 866us/step - loss: 0.2029 - accuracy: 0.7618 - mae: 0.2029 - pearson_correlation: 0.3647 - euclidean_distance: 0.3267
Epoch 98/150
57/57 [==============================] - 0s 864us/step - loss: 0.2008 - accuracy: 0.7675 - mae: 0.2008 - pearson_correlation: 0.3751 - euclidean_distance: 0.3226
Epoch 99/150
57/57 [==============================] - 0s 864us/step - loss: 0.1997 - accuracy: 0.7689 - mae: 0.1997 - pearson_correlation: 0.3738 - euclidean_distance: 0.3217
Epoch 100/150
57/57 [==============================] - 0s 859us/step - loss: 0.1969 - accuracy: 0.7706 - mae: 0.1969 - pearson_correlation: 0.3807 - euclidean_distance: 0.3176
Epoch 101/150
57/57 [==============================] - 0s 864us/step - loss: 0.1965 - accuracy: 0.7772 - mae: 0.1965 - pearson_correlation: 0.3877 - euclidean_distance: 0.3165
Epoch 102/150
57/57 [==============================] - 0s 866us/step - loss: 0.1931 - accuracy: 0.7693 - mae: 0.1931 - pearson_correlation: 0.3955 - euclidean_distance: 0.3110
Epoch 103/150
57/57 [==============================] - 0s 863us/step - loss: 0.1917 - accuracy: 0.7719 - mae: 0.1917 - pearson_correlation: 0.3984 - euclidean_distance: 0.3092
Epoch 104/150
57/57 [==============================] - 0s 865us/step - loss: 0.1928 - accuracy: 0.7689 - mae: 0.1928 - pearson_correlation: 0.3978 - euclidean_distance: 0.3104
Epoch 105/150
57/57 [==============================] - 0s 867us/step - loss: 0.1901 - accuracy: 0.7759 - mae: 0.1901 - pearson_correlation: 0.4036 - euclidean_distance: 0.3065
Epoch 106/150
57/57 [==============================] - 0s 867us/step - loss: 0.1884 - accuracy: 0.7759 - mae: 0.1884 - pearson_correlation: 0.4120 - euclidean_distance: 0.3035
Epoch 107/150
57/57 [==============================] - 0s 870us/step - loss: 0.1862 - accuracy: 0.7781 - mae: 0.1862 - pearson_correlation: 0.4113 - euclidean_distance: 0.3002
Epoch 108/150
57/57 [==============================] - 0s 865us/step - loss: 0.1838 - accuracy: 0.7790 - mae: 0.1838 - pearson_correlation: 0.4235 - euclidean_distance: 0.2968
Epoch 109/150
57/57 [==============================] - 0s 862us/step - loss: 0.1822 - accuracy: 0.7830 - mae: 0.1822 - pearson_correlation: 0.4293 - euclidean_distance: 0.2940
Epoch 110/150
57/57 [==============================] - 0s 865us/step - loss: 0.1816 - accuracy: 0.7878 - mae: 0.1816 - pearson_correlation: 0.4312 - euclidean_distance: 0.2929
Epoch 111/150
57/57 [==============================] - 0s 866us/step - loss: 0.1800 - accuracy: 0.7900 - mae: 0.1800 - pearson_correlation: 0.4383 - euclidean_distance: 0.2910
Epoch 112/150
57/57 [==============================] - 0s 862us/step - loss: 0.1800 - accuracy: 0.7905 - mae: 0.1800 - pearson_correlation: 0.4331 - euclidean_distance: 0.2906
Epoch 113/150
57/57 [==============================] - 0s 864us/step - loss: 0.1766 - accuracy: 0.7936 - mae: 0.1766 - pearson_correlation: 0.4513 - euclidean_distance: 0.2852
Epoch 114/150
57/57 [==============================] - 0s 866us/step - loss: 0.1778 - accuracy: 0.7905 - mae: 0.1778 - pearson_correlation: 0.4444 - euclidean_distance: 0.2872
Epoch 115/150
57/57 [==============================] - 0s 865us/step - loss: 0.1738 - accuracy: 0.7962 - mae: 0.1738 - pearson_correlation: 0.4528 - euclidean_distance: 0.2805
Epoch 116/150
57/57 [==============================] - 0s 863us/step - loss: 0.1760 - accuracy: 0.7984 - mae: 0.1760 - pearson_correlation: 0.4570 - euclidean_distance: 0.2843
Epoch 117/150
57/57 [==============================] - 0s 866us/step - loss: 0.1718 - accuracy: 0.8002 - mae: 0.1718 - pearson_correlation: 0.4662 - euclidean_distance: 0.2780
Epoch 118/150
57/57 [==============================] - 0s 862us/step - loss: 0.1722 - accuracy: 0.8121 - mae: 0.1722 - pearson_correlation: 0.4684 - euclidean_distance: 0.2785
Epoch 119/150
57/57 [==============================] - 0s 860us/step - loss: 0.1683 - accuracy: 0.8139 - mae: 0.1683 - pearson_correlation: 0.4688 - euclidean_distance: 0.2729
Epoch 120/150
57/57 [==============================] - 0s 909us/step - loss: 0.1692 - accuracy: 0.8028 - mae: 0.1692 - pearson_correlation: 0.4741 - euclidean_distance: 0.2741
Epoch 121/150
57/57 [==============================] - 0s 870us/step - loss: 0.1675 - accuracy: 0.8161 - mae: 0.1675 - pearson_correlation: 0.4788 - euclidean_distance: 0.2702
Epoch 122/150
57/57 [==============================] - 0s 867us/step - loss: 0.1650 - accuracy: 0.8200 - mae: 0.1650 - pearson_correlation: 0.4831 - euclidean_distance: 0.2672
Epoch 123/150
57/57 [==============================] - 0s 867us/step - loss: 0.1660 - accuracy: 0.8284 - mae: 0.1660 - pearson_correlation: 0.4865 - euclidean_distance: 0.2681
Epoch 124/150
57/57 [==============================] - 0s 863us/step - loss: 0.1639 - accuracy: 0.8280 - mae: 0.1639 - pearson_correlation: 0.4899 - euclidean_distance: 0.2653
Epoch 125/150
57/57 [==============================] - 0s 869us/step - loss: 0.1625 - accuracy: 0.8333 - mae: 0.1625 - pearson_correlation: 0.4930 - euclidean_distance: 0.2633
Epoch 126/150
57/57 [==============================] - 0s 866us/step - loss: 0.1606 - accuracy: 0.8377 - mae: 0.1606 - pearson_correlation: 0.4980 - euclidean_distance: 0.2605
Epoch 127/150
57/57 [==============================] - 0s 864us/step - loss: 0.1583 - accuracy: 0.8394 - mae: 0.1583 - pearson_correlation: 0.5056 - euclidean_distance: 0.2574
Epoch 128/150
57/57 [==============================] - 0s 865us/step - loss: 0.1578 - accuracy: 0.8478 - mae: 0.1578 - pearson_correlation: 0.5130 - euclidean_distance: 0.2558
Epoch 129/150
57/57 [==============================] - 0s 868us/step - loss: 0.1570 - accuracy: 0.8615 - mae: 0.1570 - pearson_correlation: 0.5129 - euclidean_distance: 0.2545
Epoch 130/150
57/57 [==============================] - 0s 863us/step - loss: 0.1566 - accuracy: 0.8562 - mae: 0.1566 - pearson_correlation: 0.5184 - euclidean_distance: 0.2547
Epoch 131/150
57/57 [==============================] - 0s 866us/step - loss: 0.1535 - accuracy: 0.8628 - mae: 0.1535 - pearson_correlation: 0.5249 - euclidean_distance: 0.2499
Epoch 132/150
57/57 [==============================] - 0s 865us/step - loss: 0.1544 - accuracy: 0.8730 - mae: 0.1544 - pearson_correlation: 0.5216 - euclidean_distance: 0.2506
Epoch 133/150
57/57 [==============================] - 0s 864us/step - loss: 0.1541 - accuracy: 0.8734 - mae: 0.1541 - pearson_correlation: 0.5280 - euclidean_distance: 0.2501
Epoch 134/150
57/57 [==============================] - 0s 856us/step - loss: 0.1515 - accuracy: 0.8774 - mae: 0.1515 - pearson_correlation: 0.5283 - euclidean_distance: 0.2460
Epoch 135/150
57/57 [==============================] - 0s 867us/step - loss: 0.1483 - accuracy: 0.8915 - mae: 0.1483 - pearson_correlation: 0.5400 - euclidean_distance: 0.2405
Epoch 136/150
57/57 [==============================] - 0s 864us/step - loss: 0.1493 - accuracy: 0.8866 - mae: 0.1493 - pearson_correlation: 0.5367 - euclidean_distance: 0.2428
Epoch 137/150
57/57 [==============================] - 0s 865us/step - loss: 0.1471 - accuracy: 0.8959 - mae: 0.1471 - pearson_correlation: 0.5454 - euclidean_distance: 0.2385
Epoch 138/150
57/57 [==============================] - 0s 872us/step - loss: 0.1463 - accuracy: 0.8985 - mae: 0.1463 - pearson_correlation: 0.5469 - euclidean_distance: 0.2379
Epoch 139/150
57/57 [==============================] - 0s 864us/step - loss: 0.1450 - accuracy: 0.8990 - mae: 0.1450 - pearson_correlation: 0.5485 - euclidean_distance: 0.2359
Epoch 140/150
57/57 [==============================] - 0s 864us/step - loss: 0.1433 - accuracy: 0.9021 - mae: 0.1433 - pearson_correlation: 0.5490 - euclidean_distance: 0.2334
Epoch 141/150
57/57 [==============================] - 0s 866us/step - loss: 0.1437 - accuracy: 0.9065 - mae: 0.1437 - pearson_correlation: 0.5617 - euclidean_distance: 0.2333
Epoch 142/150
57/57 [==============================] - 0s 873us/step - loss: 0.1447 - accuracy: 0.9087 - mae: 0.1447 - pearson_correlation: 0.5569 - euclidean_distance: 0.2351
Epoch 143/150
57/57 [==============================] - 0s 862us/step - loss: 0.1449 - accuracy: 0.9105 - mae: 0.1449 - pearson_correlation: 0.5611 - euclidean_distance: 0.2347
Epoch 144/150
57/57 [==============================] - 0s 862us/step - loss: 0.1401 - accuracy: 0.9166 - mae: 0.1401 - pearson_correlation: 0.5667 - euclidean_distance: 0.2276
Epoch 145/150
57/57 [==============================] - 0s 867us/step - loss: 0.1398 - accuracy: 0.9180 - mae: 0.1398 - pearson_correlation: 0.5745 - euclidean_distance: 0.2273
Epoch 146/150
57/57 [==============================] - 0s 865us/step - loss: 0.1418 - accuracy: 0.9188 - mae: 0.1418 - pearson_correlation: 0.5674 - euclidean_distance: 0.2296
Epoch 147/150
57/57 [==============================] - 0s 860us/step - loss: 0.1385 - accuracy: 0.9171 - mae: 0.1385 - pearson_correlation: 0.5737 - euclidean_distance: 0.2250
Epoch 148/150
57/57 [==============================] - 0s 863us/step - loss: 0.1366 - accuracy: 0.9224 - mae: 0.1366 - pearson_correlation: 0.5796 - euclidean_distance: 0.2218
Epoch 149/150
57/57 [==============================] - 0s 863us/step - loss: 0.1364 - accuracy: 0.9210 - mae: 0.1364 - pearson_correlation: 0.5835 - euclidean_distance: 0.2221
Epoch 150/150
57/57 [==============================] - 0s 863us/step - loss: 0.1351 - accuracy: 0.9277 - mae: 0.1351 - pearson_correlation: 0.5877 - euclidean_distance: 0.2200
29/29 [==============================] - 0s 510us/step
Epoch 1/150
57/57 [==============================] - 1s 947us/step - loss: 0.7807 - accuracy: 0.5068 - mae: 0.7807 - pearson_correlation: -0.0351 - euclidean_distance: 1.1497
Epoch 2/150
57/57 [==============================] - 0s 841us/step - loss: 0.7753 - accuracy: 0.5064 - mae: 0.7753 - pearson_correlation: -0.0353 - euclidean_distance: 1.1424
Epoch 3/150
57/57 [==============================] - 0s 877us/step - loss: 0.7707 - accuracy: 0.5042 - mae: 0.7707 - pearson_correlation: -0.0323 - euclidean_distance: 1.1353
Epoch 4/150
57/57 [==============================] - 0s 878us/step - loss: 0.7653 - accuracy: 0.5112 - mae: 0.7653 - pearson_correlation: -0.0297 - euclidean_distance: 1.1279
Epoch 5/150
57/57 [==============================] - 0s 876us/step - loss: 0.7598 - accuracy: 0.5143 - mae: 0.7598 - pearson_correlation: -0.0276 - euclidean_distance: 1.1198
Epoch 6/150
57/57 [==============================] - 0s 872us/step - loss: 0.7556 - accuracy: 0.5236 - mae: 0.7556 - pearson_correlation: -0.0173 - euclidean_distance: 1.1133
Epoch 7/150
57/57 [==============================] - 0s 867us/step - loss: 0.7508 - accuracy: 0.5315 - mae: 0.7508 - pearson_correlation: -0.0161 - euclidean_distance: 1.1064
Epoch 8/150
57/57 [==============================] - 0s 876us/step - loss: 0.7446 - accuracy: 0.5333 - mae: 0.7446 - pearson_correlation: -0.0135 - euclidean_distance: 1.0980
Epoch 9/150
57/57 [==============================] - 0s 867us/step - loss: 0.7397 - accuracy: 0.5474 - mae: 0.7397 - pearson_correlation: -0.0135 - euclidean_distance: 1.0907
Epoch 10/150
57/57 [==============================] - 0s 873us/step - loss: 0.7339 - accuracy: 0.5501 - mae: 0.7339 - pearson_correlation: -0.0126 - euclidean_distance: 1.0827
Epoch 11/150
57/57 [==============================] - 0s 867us/step - loss: 0.7298 - accuracy: 0.5487 - mae: 0.7298 - pearson_correlation: -0.0062 - euclidean_distance: 1.0766
Epoch 12/150
57/57 [==============================] - 0s 864us/step - loss: 0.7234 - accuracy: 0.5540 - mae: 0.7234 - pearson_correlation: 0.0031 - euclidean_distance: 1.0671
Epoch 13/150
57/57 [==============================] - 0s 871us/step - loss: 0.7187 - accuracy: 0.5682 - mae: 0.7187 - pearson_correlation: 0.0030 - euclidean_distance: 1.0605
Epoch 14/150
57/57 [==============================] - 0s 871us/step - loss: 0.7129 - accuracy: 0.5721 - mae: 0.7129 - pearson_correlation: 0.0075 - euclidean_distance: 1.0522
Epoch 15/150
57/57 [==============================] - 0s 857us/step - loss: 0.7074 - accuracy: 0.5712 - mae: 0.7074 - pearson_correlation: 0.0089 - euclidean_distance: 1.0445
Epoch 16/150
57/57 [==============================] - 0s 865us/step - loss: 0.7015 - accuracy: 0.5796 - mae: 0.7015 - pearson_correlation: 0.0157 - euclidean_distance: 1.0361
Epoch 17/150
57/57 [==============================] - 0s 864us/step - loss: 0.6966 - accuracy: 0.5818 - mae: 0.6966 - pearson_correlation: 0.0137 - euclidean_distance: 1.0292
Epoch 18/150
57/57 [==============================] - 0s 870us/step - loss: 0.6916 - accuracy: 0.5920 - mae: 0.6916 - pearson_correlation: 0.0263 - euclidean_distance: 1.0217
Epoch 19/150
57/57 [==============================] - 0s 866us/step - loss: 0.6859 - accuracy: 0.5880 - mae: 0.6859 - pearson_correlation: 0.0269 - euclidean_distance: 1.0135
Epoch 20/150
57/57 [==============================] - 0s 856us/step - loss: 0.6797 - accuracy: 0.6127 - mae: 0.6797 - pearson_correlation: 0.0347 - euclidean_distance: 1.0045
Epoch 21/150
57/57 [==============================] - 0s 855us/step - loss: 0.6756 - accuracy: 0.6118 - mae: 0.6756 - pearson_correlation: 0.0361 - euclidean_distance: 0.9988
Epoch 22/150
57/57 [==============================] - 0s 870us/step - loss: 0.6708 - accuracy: 0.6237 - mae: 0.6708 - pearson_correlation: 0.0471 - euclidean_distance: 0.9914
Epoch 23/150
57/57 [==============================] - 0s 864us/step - loss: 0.6649 - accuracy: 0.6224 - mae: 0.6649 - pearson_correlation: 0.0541 - euclidean_distance: 0.9825
Epoch 24/150
57/57 [==============================] - 0s 859us/step - loss: 0.6591 - accuracy: 0.6277 - mae: 0.6591 - pearson_correlation: 0.0525 - euclidean_distance: 0.9746
Epoch 25/150
57/57 [==============================] - 0s 872us/step - loss: 0.6548 - accuracy: 0.6259 - mae: 0.6548 - pearson_correlation: 0.0546 - euclidean_distance: 0.9687
Epoch 26/150
57/57 [==============================] - 0s 866us/step - loss: 0.6491 - accuracy: 0.6409 - mae: 0.6491 - pearson_correlation: 0.0660 - euclidean_distance: 0.9601
Epoch 27/150
57/57 [==============================] - 0s 866us/step - loss: 0.6451 - accuracy: 0.6321 - mae: 0.6451 - pearson_correlation: 0.0651 - euclidean_distance: 0.9546
Epoch 28/150
57/57 [==============================] - 0s 854us/step - loss: 0.6402 - accuracy: 0.6498 - mae: 0.6402 - pearson_correlation: 0.0741 - euclidean_distance: 0.9472
Epoch 29/150
57/57 [==============================] - 0s 855us/step - loss: 0.6358 - accuracy: 0.6453 - mae: 0.6358 - pearson_correlation: 0.0772 - euclidean_distance: 0.9413
Epoch 30/150
57/57 [==============================] - 0s 853us/step - loss: 0.6306 - accuracy: 0.6506 - mae: 0.6306 - pearson_correlation: 0.0862 - euclidean_distance: 0.9334
Epoch 31/150
57/57 [==============================] - 0s 862us/step - loss: 0.6265 - accuracy: 0.6643 - mae: 0.6265 - pearson_correlation: 0.0918 - euclidean_distance: 0.9273
Epoch 32/150
57/57 [==============================] - 0s 855us/step - loss: 0.6214 - accuracy: 0.6537 - mae: 0.6214 - pearson_correlation: 0.0848 - euclidean_distance: 0.9206
Epoch 33/150
57/57 [==============================] - 0s 849us/step - loss: 0.6172 - accuracy: 0.6520 - mae: 0.6172 - pearson_correlation: 0.0915 - euclidean_distance: 0.9145
Epoch 34/150
57/57 [==============================] - 0s 857us/step - loss: 0.6127 - accuracy: 0.6753 - mae: 0.6127 - pearson_correlation: 0.1038 - euclidean_distance: 0.9077
Epoch 35/150
57/57 [==============================] - 0s 865us/step - loss: 0.6088 - accuracy: 0.6661 - mae: 0.6088 - pearson_correlation: 0.1050 - euclidean_distance: 0.9021
Epoch 36/150
57/57 [==============================] - 0s 860us/step - loss: 0.6043 - accuracy: 0.6727 - mae: 0.6043 - pearson_correlation: 0.1067 - euclidean_distance: 0.8956
Epoch 37/150
57/57 [==============================] - 0s 861us/step - loss: 0.6006 - accuracy: 0.6749 - mae: 0.6006 - pearson_correlation: 0.1188 - euclidean_distance: 0.8902
Epoch 38/150
57/57 [==============================] - 0s 875us/step - loss: 0.5962 - accuracy: 0.6793 - mae: 0.5962 - pearson_correlation: 0.1222 - euclidean_distance: 0.8840
Epoch 39/150
57/57 [==============================] - 0s 867us/step - loss: 0.5919 - accuracy: 0.6767 - mae: 0.5919 - pearson_correlation: 0.1252 - euclidean_distance: 0.8775
Epoch 40/150
57/57 [==============================] - 0s 854us/step - loss: 0.5874 - accuracy: 0.6811 - mae: 0.5874 - pearson_correlation: 0.1324 - euclidean_distance: 0.8710
Epoch 41/150
57/57 [==============================] - 0s 869us/step - loss: 0.5843 - accuracy: 0.6908 - mae: 0.5843 - pearson_correlation: 0.1295 - euclidean_distance: 0.8668
Epoch 42/150
57/57 [==============================] - 0s 865us/step - loss: 0.5789 - accuracy: 0.6846 - mae: 0.5789 - pearson_correlation: 0.1407 - euclidean_distance: 0.8586
Epoch 43/150
57/57 [==============================] - 0s 868us/step - loss: 0.5746 - accuracy: 0.6921 - mae: 0.5746 - pearson_correlation: 0.1495 - euclidean_distance: 0.8523
Epoch 44/150
57/57 [==============================] - 0s 861us/step - loss: 0.5715 - accuracy: 0.6934 - mae: 0.5715 - pearson_correlation: 0.1512 - euclidean_distance: 0.8476
Epoch 45/150
57/57 [==============================] - 0s 912us/step - loss: 0.5669 - accuracy: 0.7009 - mae: 0.5669 - pearson_correlation: 0.1486 - euclidean_distance: 0.8417
Epoch 46/150
57/57 [==============================] - 0s 866us/step - loss: 0.5625 - accuracy: 0.6934 - mae: 0.5625 - pearson_correlation: 0.1651 - euclidean_distance: 0.8349
Epoch 47/150
57/57 [==============================] - 0s 862us/step - loss: 0.5593 - accuracy: 0.6948 - mae: 0.5593 - pearson_correlation: 0.1626 - euclidean_distance: 0.8308
Epoch 48/150
57/57 [==============================] - 0s 863us/step - loss: 0.5547 - accuracy: 0.7067 - mae: 0.5547 - pearson_correlation: 0.1732 - euclidean_distance: 0.8239
Epoch 49/150
57/57 [==============================] - 0s 868us/step - loss: 0.5508 - accuracy: 0.6939 - mae: 0.5508 - pearson_correlation: 0.1763 - euclidean_distance: 0.8183
Epoch 50/150
57/57 [==============================] - 0s 868us/step - loss: 0.5470 - accuracy: 0.7009 - mae: 0.5470 - pearson_correlation: 0.1748 - euclidean_distance: 0.8128
Epoch 51/150
57/57 [==============================] - 0s 866us/step - loss: 0.5433 - accuracy: 0.7053 - mae: 0.5433 - pearson_correlation: 0.1845 - euclidean_distance: 0.8073
Epoch 52/150
57/57 [==============================] - 0s 870us/step - loss: 0.5397 - accuracy: 0.7040 - mae: 0.5397 - pearson_correlation: 0.1890 - euclidean_distance: 0.8024
Epoch 53/150
57/57 [==============================] - 0s 866us/step - loss: 0.5364 - accuracy: 0.7168 - mae: 0.5364 - pearson_correlation: 0.1897 - euclidean_distance: 0.7974
Epoch 54/150
57/57 [==============================] - 0s 867us/step - loss: 0.5322 - accuracy: 0.7084 - mae: 0.5322 - pearson_correlation: 0.1990 - euclidean_distance: 0.7913
Epoch 55/150
57/57 [==============================] - 0s 868us/step - loss: 0.5286 - accuracy: 0.7296 - mae: 0.5286 - pearson_correlation: 0.2011 - euclidean_distance: 0.7860
Epoch 56/150
57/57 [==============================] - 0s 885us/step - loss: 0.5257 - accuracy: 0.7120 - mae: 0.5257 - pearson_correlation: 0.2025 - euclidean_distance: 0.7816
Epoch 57/150
57/57 [==============================] - 0s 985us/step - loss: 0.5219 - accuracy: 0.7190 - mae: 0.5219 - pearson_correlation: 0.2054 - euclidean_distance: 0.7765
Epoch 58/150
57/57 [==============================] - 0s 982us/step - loss: 0.5178 - accuracy: 0.7261 - mae: 0.5178 - pearson_correlation: 0.2152 - euclidean_distance: 0.7704
Epoch 59/150
57/57 [==============================] - 0s 971us/step - loss: 0.5139 - accuracy: 0.7159 - mae: 0.5139 - pearson_correlation: 0.2157 - euclidean_distance: 0.7653
Epoch 60/150
57/57 [==============================] - 0s 980us/step - loss: 0.5104 - accuracy: 0.7261 - mae: 0.5104 - pearson_correlation: 0.2219 - euclidean_distance: 0.7596
Epoch 61/150
57/57 [==============================] - 0s 1ms/step - loss: 0.5067 - accuracy: 0.7278 - mae: 0.5067 - pearson_correlation: 0.2289 - euclidean_distance: 0.7547
Epoch 62/150
57/57 [==============================] - 0s 1ms/step - loss: 0.5028 - accuracy: 0.7353 - mae: 0.5028 - pearson_correlation: 0.2298 - euclidean_distance: 0.7488
Epoch 63/150
57/57 [==============================] - 0s 994us/step - loss: 0.5011 - accuracy: 0.7393 - mae: 0.5011 - pearson_correlation: 0.2427 - euclidean_distance: 0.7457
Epoch 64/150
57/57 [==============================] - 0s 1ms/step - loss: 0.4965 - accuracy: 0.7415 - mae: 0.4965 - pearson_correlation: 0.2354 - euclidean_distance: 0.7398
Epoch 65/150
57/57 [==============================] - 0s 1ms/step - loss: 0.4929 - accuracy: 0.7494 - mae: 0.4929 - pearson_correlation: 0.2407 - euclidean_distance: 0.7342
Epoch 66/150
57/57 [==============================] - 0s 949us/step - loss: 0.4895 - accuracy: 0.7415 - mae: 0.4895 - pearson_correlation: 0.2408 - euclidean_distance: 0.7300
Epoch 67/150
57/57 [==============================] - 0s 871us/step - loss: 0.4861 - accuracy: 0.7468 - mae: 0.4861 - pearson_correlation: 0.2532 - euclidean_distance: 0.7239
Epoch 68/150
57/57 [==============================] - 0s 876us/step - loss: 0.4830 - accuracy: 0.7592 - mae: 0.4830 - pearson_correlation: 0.2609 - euclidean_distance: 0.7201
Epoch 69/150
57/57 [==============================] - 0s 867us/step - loss: 0.4793 - accuracy: 0.7490 - mae: 0.4793 - pearson_correlation: 0.2468 - euclidean_distance: 0.7150
Epoch 70/150
57/57 [==============================] - 0s 874us/step - loss: 0.4759 - accuracy: 0.7525 - mae: 0.4759 - pearson_correlation: 0.2602 - euclidean_distance: 0.7098
Epoch 71/150
57/57 [==============================] - 0s 874us/step - loss: 0.4722 - accuracy: 0.7653 - mae: 0.4722 - pearson_correlation: 0.2639 - euclidean_distance: 0.7045
Epoch 72/150
57/57 [==============================] - 0s 877us/step - loss: 0.4688 - accuracy: 0.7693 - mae: 0.4688 - pearson_correlation: 0.2777 - euclidean_distance: 0.6990
Epoch 73/150
57/57 [==============================] - 0s 871us/step - loss: 0.4661 - accuracy: 0.7667 - mae: 0.4661 - pearson_correlation: 0.2839 - euclidean_distance: 0.6952
Epoch 74/150
57/57 [==============================] - 0s 872us/step - loss: 0.4621 - accuracy: 0.7693 - mae: 0.4621 - pearson_correlation: 0.2819 - euclidean_distance: 0.6891
Epoch 75/150
57/57 [==============================] - 0s 870us/step - loss: 0.4595 - accuracy: 0.7667 - mae: 0.4595 - pearson_correlation: 0.2796 - euclidean_distance: 0.6862
Epoch 76/150
57/57 [==============================] - 0s 868us/step - loss: 0.4554 - accuracy: 0.7728 - mae: 0.4554 - pearson_correlation: 0.2780 - euclidean_distance: 0.6808
Epoch 77/150
57/57 [==============================] - 0s 863us/step - loss: 0.4517 - accuracy: 0.7715 - mae: 0.4517 - pearson_correlation: 0.2829 - euclidean_distance: 0.6747
Epoch 78/150
57/57 [==============================] - 0s 868us/step - loss: 0.4492 - accuracy: 0.7847 - mae: 0.4492 - pearson_correlation: 0.2895 - euclidean_distance: 0.6709
Epoch 79/150
57/57 [==============================] - 0s 852us/step - loss: 0.4458 - accuracy: 0.7812 - mae: 0.4458 - pearson_correlation: 0.2939 - euclidean_distance: 0.6662
Epoch 80/150
57/57 [==============================] - 0s 847us/step - loss: 0.4421 - accuracy: 0.7843 - mae: 0.4421 - pearson_correlation: 0.2906 - euclidean_distance: 0.6604
Epoch 81/150
57/57 [==============================] - 0s 871us/step - loss: 0.4392 - accuracy: 0.7865 - mae: 0.4392 - pearson_correlation: 0.2971 - euclidean_distance: 0.6564
Epoch 82/150
57/57 [==============================] - 0s 863us/step - loss: 0.4346 - accuracy: 0.7909 - mae: 0.4346 - pearson_correlation: 0.3045 - euclidean_distance: 0.6495
Epoch 83/150
57/57 [==============================] - 0s 865us/step - loss: 0.4321 - accuracy: 0.7909 - mae: 0.4321 - pearson_correlation: 0.3061 - euclidean_distance: 0.6461
Epoch 84/150
57/57 [==============================] - 0s 859us/step - loss: 0.4281 - accuracy: 0.7816 - mae: 0.4281 - pearson_correlation: 0.3032 - euclidean_distance: 0.6412
Epoch 85/150
57/57 [==============================] - 0s 859us/step - loss: 0.4252 - accuracy: 0.7989 - mae: 0.4252 - pearson_correlation: 0.3108 - euclidean_distance: 0.6360
Epoch 86/150
57/57 [==============================] - 0s 862us/step - loss: 0.4209 - accuracy: 0.7971 - mae: 0.4209 - pearson_correlation: 0.3161 - euclidean_distance: 0.6299
Epoch 87/150
57/57 [==============================] - 0s 848us/step - loss: 0.4176 - accuracy: 0.7958 - mae: 0.4176 - pearson_correlation: 0.3149 - euclidean_distance: 0.6254
Epoch 88/150
57/57 [==============================] - 0s 868us/step - loss: 0.4138 - accuracy: 0.7944 - mae: 0.4138 - pearson_correlation: 0.3136 - euclidean_distance: 0.6203
Epoch 89/150
57/57 [==============================] - 0s 853us/step - loss: 0.4107 - accuracy: 0.8033 - mae: 0.4107 - pearson_correlation: 0.3216 - euclidean_distance: 0.6153
Epoch 90/150
57/57 [==============================] - 0s 863us/step - loss: 0.4081 - accuracy: 0.8077 - mae: 0.4081 - pearson_correlation: 0.3313 - euclidean_distance: 0.6108
Epoch 91/150
57/57 [==============================] - 0s 867us/step - loss: 0.4027 - accuracy: 0.8130 - mae: 0.4027 - pearson_correlation: 0.3346 - euclidean_distance: 0.6037
Epoch 92/150
57/57 [==============================] - 0s 851us/step - loss: 0.3990 - accuracy: 0.8161 - mae: 0.3990 - pearson_correlation: 0.3406 - euclidean_distance: 0.5981
Epoch 93/150
57/57 [==============================] - 0s 863us/step - loss: 0.3958 - accuracy: 0.8139 - mae: 0.3958 - pearson_correlation: 0.3320 - euclidean_distance: 0.5938
Epoch 94/150
57/57 [==============================] - 0s 863us/step - loss: 0.3927 - accuracy: 0.8191 - mae: 0.3927 - pearson_correlation: 0.3379 - euclidean_distance: 0.5895
Epoch 95/150
57/57 [==============================] - 0s 859us/step - loss: 0.3902 - accuracy: 0.8183 - mae: 0.3902 - pearson_correlation: 0.3389 - euclidean_distance: 0.5853
Epoch 96/150
57/57 [==============================] - 0s 872us/step - loss: 0.3848 - accuracy: 0.8240 - mae: 0.3848 - pearson_correlation: 0.3504 - euclidean_distance: 0.5776
Epoch 97/150
57/57 [==============================] - 0s 856us/step - loss: 0.3816 - accuracy: 0.8222 - mae: 0.3816 - pearson_correlation: 0.3424 - euclidean_distance: 0.5734
Epoch 98/150
57/57 [==============================] - 0s 858us/step - loss: 0.3795 - accuracy: 0.8174 - mae: 0.3795 - pearson_correlation: 0.3479 - euclidean_distance: 0.5701
Epoch 99/150
57/57 [==============================] - 0s 860us/step - loss: 0.3748 - accuracy: 0.8244 - mae: 0.3748 - pearson_correlation: 0.3495 - euclidean_distance: 0.5640
Epoch 100/150
57/57 [==============================] - 0s 860us/step - loss: 0.3711 - accuracy: 0.8359 - mae: 0.3711 - pearson_correlation: 0.3576 - euclidean_distance: 0.5576
Epoch 101/150
57/57 [==============================] - 0s 862us/step - loss: 0.3671 - accuracy: 0.8319 - mae: 0.3671 - pearson_correlation: 0.3648 - euclidean_distance: 0.5516
Epoch 102/150
57/57 [==============================] - 0s 861us/step - loss: 0.3642 - accuracy: 0.8240 - mae: 0.3642 - pearson_correlation: 0.3570 - euclidean_distance: 0.5484
Epoch 103/150
57/57 [==============================] - 0s 853us/step - loss: 0.3597 - accuracy: 0.8324 - mae: 0.3597 - pearson_correlation: 0.3689 - euclidean_distance: 0.5411
Epoch 104/150
57/57 [==============================] - 0s 854us/step - loss: 0.3563 - accuracy: 0.8403 - mae: 0.3563 - pearson_correlation: 0.3704 - euclidean_distance: 0.5367
Epoch 105/150
57/57 [==============================] - 0s 851us/step - loss: 0.3537 - accuracy: 0.8390 - mae: 0.3537 - pearson_correlation: 0.3706 - euclidean_distance: 0.5328
Epoch 106/150
57/57 [==============================] - 0s 854us/step - loss: 0.3495 - accuracy: 0.8443 - mae: 0.3495 - pearson_correlation: 0.3779 - euclidean_distance: 0.5264
Epoch 107/150
57/57 [==============================] - 0s 855us/step - loss: 0.3464 - accuracy: 0.8430 - mae: 0.3464 - pearson_correlation: 0.3782 - euclidean_distance: 0.5229
Epoch 108/150
57/57 [==============================] - 0s 866us/step - loss: 0.3423 - accuracy: 0.8478 - mae: 0.3423 - pearson_correlation: 0.3834 - euclidean_distance: 0.5158
Epoch 109/150
57/57 [==============================] - 0s 856us/step - loss: 0.3395 - accuracy: 0.8584 - mae: 0.3395 - pearson_correlation: 0.3909 - euclidean_distance: 0.5121
Epoch 110/150
57/57 [==============================] - 0s 849us/step - loss: 0.3358 - accuracy: 0.8558 - mae: 0.3358 - pearson_correlation: 0.3946 - euclidean_distance: 0.5066
Epoch 111/150
57/57 [==============================] - 0s 849us/step - loss: 0.3323 - accuracy: 0.8483 - mae: 0.3323 - pearson_correlation: 0.3910 - euclidean_distance: 0.5021
Epoch 112/150
57/57 [==============================] - 0s 844us/step - loss: 0.3285 - accuracy: 0.8536 - mae: 0.3285 - pearson_correlation: 0.4054 - euclidean_distance: 0.4961
Epoch 113/150
57/57 [==============================] - 0s 860us/step - loss: 0.3252 - accuracy: 0.8597 - mae: 0.3252 - pearson_correlation: 0.3994 - euclidean_distance: 0.4922
Epoch 114/150
57/57 [==============================] - 0s 850us/step - loss: 0.3219 - accuracy: 0.8655 - mae: 0.3219 - pearson_correlation: 0.4027 - euclidean_distance: 0.4866
Epoch 115/150
57/57 [==============================] - 0s 858us/step - loss: 0.3190 - accuracy: 0.8655 - mae: 0.3190 - pearson_correlation: 0.4006 - euclidean_distance: 0.4834
Epoch 116/150
57/57 [==============================] - 0s 874us/step - loss: 0.3166 - accuracy: 0.8624 - mae: 0.3166 - pearson_correlation: 0.4038 - euclidean_distance: 0.4796
Epoch 117/150
57/57 [==============================] - 0s 847us/step - loss: 0.3129 - accuracy: 0.8624 - mae: 0.3129 - pearson_correlation: 0.4143 - euclidean_distance: 0.4740
Epoch 118/150
57/57 [==============================] - 0s 857us/step - loss: 0.3102 - accuracy: 0.8756 - mae: 0.3102 - pearson_correlation: 0.4144 - euclidean_distance: 0.4693
Epoch 119/150
57/57 [==============================] - 0s 849us/step - loss: 0.3061 - accuracy: 0.8668 - mae: 0.3061 - pearson_correlation: 0.4151 - euclidean_distance: 0.4643
Epoch 120/150
57/57 [==============================] - 0s 858us/step - loss: 0.3030 - accuracy: 0.8725 - mae: 0.3030 - pearson_correlation: 0.4208 - euclidean_distance: 0.4598
Epoch 121/150
57/57 [==============================] - 0s 852us/step - loss: 0.3002 - accuracy: 0.8769 - mae: 0.3002 - pearson_correlation: 0.4297 - euclidean_distance: 0.4554
Epoch 122/150
57/57 [==============================] - 0s 856us/step - loss: 0.2975 - accuracy: 0.8703 - mae: 0.2975 - pearson_correlation: 0.4258 - euclidean_distance: 0.4520
Epoch 123/150
57/57 [==============================] - 0s 858us/step - loss: 0.2936 - accuracy: 0.8800 - mae: 0.2936 - pearson_correlation: 0.4320 - euclidean_distance: 0.4459
Epoch 124/150
57/57 [==============================] - 0s 863us/step - loss: 0.2911 - accuracy: 0.8800 - mae: 0.2911 - pearson_correlation: 0.4358 - euclidean_distance: 0.4426
Epoch 125/150
57/57 [==============================] - 0s 864us/step - loss: 0.2877 - accuracy: 0.8835 - mae: 0.2877 - pearson_correlation: 0.4407 - euclidean_distance: 0.4376
Epoch 126/150
57/57 [==============================] - 0s 846us/step - loss: 0.2847 - accuracy: 0.8902 - mae: 0.2847 - pearson_correlation: 0.4357 - euclidean_distance: 0.4338
Epoch 127/150
57/57 [==============================] - 0s 856us/step - loss: 0.2821 - accuracy: 0.8884 - mae: 0.2821 - pearson_correlation: 0.4443 - euclidean_distance: 0.4294
Epoch 128/150
57/57 [==============================] - 0s 866us/step - loss: 0.2800 - accuracy: 0.8910 - mae: 0.2800 - pearson_correlation: 0.4492 - euclidean_distance: 0.4263
Epoch 129/150
57/57 [==============================] - 0s 853us/step - loss: 0.2758 - accuracy: 0.8858 - mae: 0.2758 - pearson_correlation: 0.4485 - euclidean_distance: 0.4207
Epoch 130/150
57/57 [==============================] - 0s 851us/step - loss: 0.2740 - accuracy: 0.8919 - mae: 0.2740 - pearson_correlation: 0.4555 - euclidean_distance: 0.4182
Epoch 131/150
57/57 [==============================] - 0s 866us/step - loss: 0.2709 - accuracy: 0.8937 - mae: 0.2709 - pearson_correlation: 0.4552 - euclidean_distance: 0.4141
Epoch 132/150
57/57 [==============================] - 0s 857us/step - loss: 0.2680 - accuracy: 0.8875 - mae: 0.2680 - pearson_correlation: 0.4572 - euclidean_distance: 0.4094
Epoch 133/150
57/57 [==============================] - 0s 856us/step - loss: 0.2662 - accuracy: 0.8950 - mae: 0.2662 - pearson_correlation: 0.4603 - euclidean_distance: 0.4072
Epoch 134/150
57/57 [==============================] - 0s 853us/step - loss: 0.2622 - accuracy: 0.8972 - mae: 0.2622 - pearson_correlation: 0.4633 - euclidean_distance: 0.4016
Epoch 135/150
57/57 [==============================] - 0s 860us/step - loss: 0.2601 - accuracy: 0.9021 - mae: 0.2601 - pearson_correlation: 0.4696 - euclidean_distance: 0.3985
Epoch 136/150
57/57 [==============================] - 0s 861us/step - loss: 0.2571 - accuracy: 0.8999 - mae: 0.2571 - pearson_correlation: 0.4727 - euclidean_distance: 0.3941
Epoch 137/150
57/57 [==============================] - 0s 859us/step - loss: 0.2558 - accuracy: 0.8955 - mae: 0.2558 - pearson_correlation: 0.4708 - euclidean_distance: 0.3920
Epoch 138/150
57/57 [==============================] - 0s 854us/step - loss: 0.2528 - accuracy: 0.9030 - mae: 0.2528 - pearson_correlation: 0.4756 - euclidean_distance: 0.3884
Epoch 139/150
57/57 [==============================] - 0s 864us/step - loss: 0.2503 - accuracy: 0.8963 - mae: 0.2503 - pearson_correlation: 0.4795 - euclidean_distance: 0.3852
Epoch 140/150
57/57 [==============================] - 0s 850us/step - loss: 0.2467 - accuracy: 0.9060 - mae: 0.2467 - pearson_correlation: 0.4807 - euclidean_distance: 0.3793
Epoch 141/150
57/57 [==============================] - 0s 855us/step - loss: 0.2448 - accuracy: 0.9060 - mae: 0.2448 - pearson_correlation: 0.4848 - euclidean_distance: 0.3770
Epoch 142/150
57/57 [==============================] - 0s 851us/step - loss: 0.2434 - accuracy: 0.9030 - mae: 0.2434 - pearson_correlation: 0.4820 - euclidean_distance: 0.3754
Epoch 143/150
57/57 [==============================] - 0s 859us/step - loss: 0.2406 - accuracy: 0.9021 - mae: 0.2406 - pearson_correlation: 0.4881 - euclidean_distance: 0.3709
Epoch 144/150
57/57 [==============================] - 0s 852us/step - loss: 0.2375 - accuracy: 0.9078 - mae: 0.2375 - pearson_correlation: 0.4905 - euclidean_distance: 0.3671
Epoch 145/150
57/57 [==============================] - 0s 845us/step - loss: 0.2353 - accuracy: 0.9127 - mae: 0.2353 - pearson_correlation: 0.4938 - euclidean_distance: 0.3636
Epoch 146/150
57/57 [==============================] - 0s 851us/step - loss: 0.2329 - accuracy: 0.9135 - mae: 0.2329 - pearson_correlation: 0.5026 - euclidean_distance: 0.3599
Epoch 147/150
57/57 [==============================] - 0s 854us/step - loss: 0.2312 - accuracy: 0.9109 - mae: 0.2312 - pearson_correlation: 0.5008 - euclidean_distance: 0.3570
Epoch 148/150
57/57 [==============================] - 0s 847us/step - loss: 0.2287 - accuracy: 0.9118 - mae: 0.2287 - pearson_correlation: 0.5067 - euclidean_distance: 0.3536
Epoch 149/150
57/57 [==============================] - 0s 856us/step - loss: 0.2267 - accuracy: 0.9135 - mae: 0.2267 - pearson_correlation: 0.5052 - euclidean_distance: 0.3511
Epoch 150/150
57/57 [==============================] - 0s 850us/step - loss: 0.2232 - accuracy: 0.9113 - mae: 0.2232 - pearson_correlation: 0.5074 - euclidean_distance: 0.3463
29/29 [==============================] - 0s 501us/step
Epoch 1/150
57/57 [==============================] - 1s 844us/step - loss: 0.6664 - accuracy: 0.5317 - mae: 0.6664 - pearson_correlation: -0.0011 - euclidean_distance: 0.9919
Epoch 2/150
57/57 [==============================] - 0s 848us/step - loss: 0.6590 - accuracy: 0.5463 - mae: 0.6590 - pearson_correlation: 8.1526e-04 - euclidean_distance: 0.9809
Epoch 3/150
57/57 [==============================] - 0s 868us/step - loss: 0.6530 - accuracy: 0.5353 - mae: 0.6530 - pearson_correlation: 0.0075 - euclidean_distance: 0.9727
Epoch 4/150
57/57 [==============================] - 0s 871us/step - loss: 0.6483 - accuracy: 0.5357 - mae: 0.6483 - pearson_correlation: 0.0064 - euclidean_distance: 0.9661
Epoch 5/150
57/57 [==============================] - 0s 871us/step - loss: 0.6448 - accuracy: 0.5454 - mae: 0.6448 - pearson_correlation: 0.0117 - euclidean_distance: 0.9609
Epoch 6/150
57/57 [==============================] - 0s 873us/step - loss: 0.6370 - accuracy: 0.5481 - mae: 0.6370 - pearson_correlation: 0.0208 - euclidean_distance: 0.9499
Epoch 7/150
57/57 [==============================] - 0s 873us/step - loss: 0.6311 - accuracy: 0.5507 - mae: 0.6311 - pearson_correlation: 0.0193 - euclidean_distance: 0.9416
Epoch 8/150
57/57 [==============================] - 0s 857us/step - loss: 0.6235 - accuracy: 0.5569 - mae: 0.6235 - pearson_correlation: 0.0199 - euclidean_distance: 0.9310
Epoch 9/150
57/57 [==============================] - 0s 872us/step - loss: 0.6193 - accuracy: 0.5511 - mae: 0.6193 - pearson_correlation: 0.0239 - euclidean_distance: 0.9250
Epoch 10/150
57/57 [==============================] - 0s 868us/step - loss: 0.6156 - accuracy: 0.5608 - mae: 0.6156 - pearson_correlation: 0.0332 - euclidean_distance: 0.9193
Epoch 11/150
57/57 [==============================] - 0s 872us/step - loss: 0.6074 - accuracy: 0.5498 - mae: 0.6074 - pearson_correlation: 0.0321 - euclidean_distance: 0.9082
Epoch 12/150
57/57 [==============================] - 0s 873us/step - loss: 0.6018 - accuracy: 0.5525 - mae: 0.6018 - pearson_correlation: 0.0398 - euclidean_distance: 0.9007
Epoch 13/150
57/57 [==============================] - 0s 873us/step - loss: 0.5965 - accuracy: 0.5661 - mae: 0.5965 - pearson_correlation: 0.0453 - euclidean_distance: 0.8924
Epoch 14/150
57/57 [==============================] - 0s 861us/step - loss: 0.5903 - accuracy: 0.5710 - mae: 0.5903 - pearson_correlation: 0.0451 - euclidean_distance: 0.8839
Epoch 15/150
57/57 [==============================] - 0s 866us/step - loss: 0.5840 - accuracy: 0.5551 - mae: 0.5840 - pearson_correlation: 0.0542 - euclidean_distance: 0.8756
Epoch 16/150
57/57 [==============================] - 0s 861us/step - loss: 0.5771 - accuracy: 0.5683 - mae: 0.5771 - pearson_correlation: 0.0614 - euclidean_distance: 0.8654
Epoch 17/150
57/57 [==============================] - 0s 855us/step - loss: 0.5716 - accuracy: 0.5794 - mae: 0.5716 - pearson_correlation: 0.0660 - euclidean_distance: 0.8575
Epoch 18/150
57/57 [==============================] - 0s 870us/step - loss: 0.5648 - accuracy: 0.5635 - mae: 0.5648 - pearson_correlation: 0.0686 - euclidean_distance: 0.8482
Epoch 19/150
57/57 [==============================] - 0s 869us/step - loss: 0.5596 - accuracy: 0.5745 - mae: 0.5596 - pearson_correlation: 0.0811 - euclidean_distance: 0.8403
Epoch 20/150
57/57 [==============================] - 0s 866us/step - loss: 0.5531 - accuracy: 0.5776 - mae: 0.5531 - pearson_correlation: 0.0796 - euclidean_distance: 0.8317
Epoch 21/150
57/57 [==============================] - 0s 866us/step - loss: 0.5456 - accuracy: 0.5833 - mae: 0.5456 - pearson_correlation: 0.0878 - euclidean_distance: 0.8205
Epoch 22/150
57/57 [==============================] - 0s 873us/step - loss: 0.5408 - accuracy: 0.5891 - mae: 0.5408 - pearson_correlation: 0.1034 - euclidean_distance: 0.8136
Epoch 23/150
57/57 [==============================] - 0s 911us/step - loss: 0.5340 - accuracy: 0.5930 - mae: 0.5340 - pearson_correlation: 0.1063 - euclidean_distance: 0.8041
Epoch 24/150
57/57 [==============================] - 0s 880us/step - loss: 0.5287 - accuracy: 0.5970 - mae: 0.5287 - pearson_correlation: 0.1144 - euclidean_distance: 0.7959
Epoch 25/150
57/57 [==============================] - 0s 868us/step - loss: 0.5207 - accuracy: 0.6001 - mae: 0.5207 - pearson_correlation: 0.1159 - euclidean_distance: 0.7852
Epoch 26/150
57/57 [==============================] - 0s 891us/step - loss: 0.5164 - accuracy: 0.5970 - mae: 0.5164 - pearson_correlation: 0.1234 - euclidean_distance: 0.7784
Epoch 27/150
57/57 [==============================] - 0s 849us/step - loss: 0.5084 - accuracy: 0.6076 - mae: 0.5084 - pearson_correlation: 0.1349 - euclidean_distance: 0.7672
Epoch 28/150
57/57 [==============================] - 0s 866us/step - loss: 0.5036 - accuracy: 0.6080 - mae: 0.5036 - pearson_correlation: 0.1510 - euclidean_distance: 0.7602
Epoch 29/150
57/57 [==============================] - 0s 871us/step - loss: 0.4959 - accuracy: 0.6133 - mae: 0.4959 - pearson_correlation: 0.1500 - euclidean_distance: 0.7493
Epoch 30/150
57/57 [==============================] - 0s 888us/step - loss: 0.4892 - accuracy: 0.6164 - mae: 0.4892 - pearson_correlation: 0.1568 - euclidean_distance: 0.7403
Epoch 31/150
57/57 [==============================] - 0s 861us/step - loss: 0.4830 - accuracy: 0.6221 - mae: 0.4830 - pearson_correlation: 0.1737 - euclidean_distance: 0.7307
Epoch 32/150
57/57 [==============================] - 0s 870us/step - loss: 0.4770 - accuracy: 0.6287 - mae: 0.4770 - pearson_correlation: 0.1784 - euclidean_distance: 0.7228
Epoch 33/150
57/57 [==============================] - 0s 868us/step - loss: 0.4708 - accuracy: 0.6283 - mae: 0.4708 - pearson_correlation: 0.1898 - euclidean_distance: 0.7133
Epoch 34/150
57/57 [==============================] - 0s 868us/step - loss: 0.4637 - accuracy: 0.6389 - mae: 0.4637 - pearson_correlation: 0.1966 - euclidean_distance: 0.7035
Epoch 35/150
57/57 [==============================] - 0s 855us/step - loss: 0.4569 - accuracy: 0.6345 - mae: 0.4569 - pearson_correlation: 0.2078 - euclidean_distance: 0.6935
Epoch 36/150
57/57 [==============================] - 0s 861us/step - loss: 0.4504 - accuracy: 0.6437 - mae: 0.4504 - pearson_correlation: 0.2153 - euclidean_distance: 0.6839
Epoch 37/150
57/57 [==============================] - 0s 852us/step - loss: 0.4446 - accuracy: 0.6464 - mae: 0.4446 - pearson_correlation: 0.2248 - euclidean_distance: 0.6761
Epoch 38/150
57/57 [==============================] - 0s 864us/step - loss: 0.4387 - accuracy: 0.6530 - mae: 0.4387 - pearson_correlation: 0.2412 - euclidean_distance: 0.6671
Epoch 39/150
57/57 [==============================] - 0s 861us/step - loss: 0.4311 - accuracy: 0.6552 - mae: 0.4311 - pearson_correlation: 0.2559 - euclidean_distance: 0.6562
Epoch 40/150
57/57 [==============================] - 0s 865us/step - loss: 0.4240 - accuracy: 0.6653 - mae: 0.4240 - pearson_correlation: 0.2683 - euclidean_distance: 0.6459
Epoch 41/150
57/57 [==============================] - 0s 867us/step - loss: 0.4182 - accuracy: 0.6693 - mae: 0.4182 - pearson_correlation: 0.2672 - euclidean_distance: 0.6373
Epoch 42/150
57/57 [==============================] - 0s 871us/step - loss: 0.4120 - accuracy: 0.6737 - mae: 0.4120 - pearson_correlation: 0.2863 - euclidean_distance: 0.6279
Epoch 43/150
57/57 [==============================] - 0s 871us/step - loss: 0.4054 - accuracy: 0.6861 - mae: 0.4054 - pearson_correlation: 0.2941 - euclidean_distance: 0.6189
Epoch 44/150
57/57 [==============================] - 0s 870us/step - loss: 0.3988 - accuracy: 0.6830 - mae: 0.3988 - pearson_correlation: 0.3064 - euclidean_distance: 0.6090
Epoch 45/150
57/57 [==============================] - 0s 854us/step - loss: 0.3936 - accuracy: 0.6953 - mae: 0.3936 - pearson_correlation: 0.3071 - euclidean_distance: 0.6017
Epoch 46/150
57/57 [==============================] - 0s 864us/step - loss: 0.3867 - accuracy: 0.6927 - mae: 0.3867 - pearson_correlation: 0.3322 - euclidean_distance: 0.5910
Epoch 47/150
57/57 [==============================] - 0s 865us/step - loss: 0.3812 - accuracy: 0.7037 - mae: 0.3812 - pearson_correlation: 0.3301 - euclidean_distance: 0.5839
Epoch 48/150
57/57 [==============================] - 0s 863us/step - loss: 0.3745 - accuracy: 0.7103 - mae: 0.3745 - pearson_correlation: 0.3395 - euclidean_distance: 0.5740
Epoch 49/150
57/57 [==============================] - 0s 865us/step - loss: 0.3676 - accuracy: 0.7059 - mae: 0.3676 - pearson_correlation: 0.3464 - euclidean_distance: 0.5642
Epoch 50/150
57/57 [==============================] - 0s 856us/step - loss: 0.3614 - accuracy: 0.7152 - mae: 0.3614 - pearson_correlation: 0.3624 - euclidean_distance: 0.5552
Epoch 51/150
57/57 [==============================] - 0s 850us/step - loss: 0.3547 - accuracy: 0.7116 - mae: 0.3547 - pearson_correlation: 0.3657 - euclidean_distance: 0.5460
Epoch 52/150
57/57 [==============================] - 0s 867us/step - loss: 0.3470 - accuracy: 0.7174 - mae: 0.3470 - pearson_correlation: 0.3742 - euclidean_distance: 0.5349
Epoch 53/150
57/57 [==============================] - 0s 865us/step - loss: 0.3419 - accuracy: 0.7310 - mae: 0.3419 - pearson_correlation: 0.3836 - euclidean_distance: 0.5263
Epoch 54/150
57/57 [==============================] - 0s 864us/step - loss: 0.3353 - accuracy: 0.7332 - mae: 0.3353 - pearson_correlation: 0.3940 - euclidean_distance: 0.5171
Epoch 55/150
57/57 [==============================] - 0s 857us/step - loss: 0.3272 - accuracy: 0.7337 - mae: 0.3272 - pearson_correlation: 0.3976 - euclidean_distance: 0.5066
Epoch 56/150
57/57 [==============================] - 0s 873us/step - loss: 0.3209 - accuracy: 0.7341 - mae: 0.3209 - pearson_correlation: 0.4148 - euclidean_distance: 0.4967
Epoch 57/150
57/57 [==============================] - 0s 858us/step - loss: 0.3146 - accuracy: 0.7363 - mae: 0.3146 - pearson_correlation: 0.4125 - euclidean_distance: 0.4887
Epoch 58/150
57/57 [==============================] - 0s 864us/step - loss: 0.3071 - accuracy: 0.7500 - mae: 0.3071 - pearson_correlation: 0.4214 - euclidean_distance: 0.4774
Epoch 59/150
57/57 [==============================] - 0s 861us/step - loss: 0.3007 - accuracy: 0.7513 - mae: 0.3007 - pearson_correlation: 0.4314 - euclidean_distance: 0.4684
Epoch 60/150
57/57 [==============================] - 0s 862us/step - loss: 0.2946 - accuracy: 0.7482 - mae: 0.2946 - pearson_correlation: 0.4314 - euclidean_distance: 0.4604
Epoch 61/150
57/57 [==============================] - 0s 863us/step - loss: 0.2864 - accuracy: 0.7606 - mae: 0.2864 - pearson_correlation: 0.4445 - euclidean_distance: 0.4482
Epoch 62/150
57/57 [==============================] - 0s 837us/step - loss: 0.2805 - accuracy: 0.7623 - mae: 0.2805 - pearson_correlation: 0.4512 - euclidean_distance: 0.4399
Epoch 63/150
57/57 [==============================] - 0s 837us/step - loss: 0.2750 - accuracy: 0.7712 - mae: 0.2750 - pearson_correlation: 0.4462 - euclidean_distance: 0.4318
Epoch 64/150
57/57 [==============================] - 0s 866us/step - loss: 0.2692 - accuracy: 0.7778 - mae: 0.2692 - pearson_correlation: 0.4525 - euclidean_distance: 0.4237
Epoch 65/150
57/57 [==============================] - 0s 880us/step - loss: 0.2622 - accuracy: 0.7791 - mae: 0.2622 - pearson_correlation: 0.4559 - euclidean_distance: 0.4126
Epoch 66/150
57/57 [==============================] - 0s 846us/step - loss: 0.2567 - accuracy: 0.7870 - mae: 0.2567 - pearson_correlation: 0.4634 - euclidean_distance: 0.4057
Epoch 67/150
57/57 [==============================] - 0s 837us/step - loss: 0.2522 - accuracy: 0.7831 - mae: 0.2522 - pearson_correlation: 0.4613 - euclidean_distance: 0.3997
Epoch 68/150
57/57 [==============================] - 0s 852us/step - loss: 0.2448 - accuracy: 0.7875 - mae: 0.2448 - pearson_correlation: 0.4705 - euclidean_distance: 0.3877
Epoch 69/150
57/57 [==============================] - 0s 847us/step - loss: 0.2411 - accuracy: 0.8042 - mae: 0.2411 - pearson_correlation: 0.4833 - euclidean_distance: 0.3813
Epoch 70/150
57/57 [==============================] - 0s 858us/step - loss: 0.2350 - accuracy: 0.7963 - mae: 0.2350 - pearson_correlation: 0.4799 - euclidean_distance: 0.3720
Epoch 71/150
57/57 [==============================] - 0s 862us/step - loss: 0.2284 - accuracy: 0.7985 - mae: 0.2284 - pearson_correlation: 0.4899 - euclidean_distance: 0.3634
Epoch 72/150
57/57 [==============================] - 0s 863us/step - loss: 0.2252 - accuracy: 0.8126 - mae: 0.2252 - pearson_correlation: 0.4938 - euclidean_distance: 0.3577
Epoch 73/150
57/57 [==============================] - 0s 867us/step - loss: 0.2216 - accuracy: 0.8108 - mae: 0.2216 - pearson_correlation: 0.4879 - euclidean_distance: 0.3526
Epoch 74/150
57/57 [==============================] - 0s 839us/step - loss: 0.2172 - accuracy: 0.8210 - mae: 0.2172 - pearson_correlation: 0.4967 - euclidean_distance: 0.3452
Epoch 75/150
57/57 [==============================] - 0s 855us/step - loss: 0.2116 - accuracy: 0.8188 - mae: 0.2116 - pearson_correlation: 0.5027 - euclidean_distance: 0.3372
Epoch 76/150
57/57 [==============================] - 0s 860us/step - loss: 0.2059 - accuracy: 0.8263 - mae: 0.2059 - pearson_correlation: 0.5059 - euclidean_distance: 0.3293
Epoch 77/150
57/57 [==============================] - 0s 849us/step - loss: 0.2018 - accuracy: 0.8391 - mae: 0.2018 - pearson_correlation: 0.5151 - euclidean_distance: 0.3217
Epoch 78/150
57/57 [==============================] - 0s 860us/step - loss: 0.1997 - accuracy: 0.8382 - mae: 0.1997 - pearson_correlation: 0.5159 - euclidean_distance: 0.3185
Epoch 79/150
57/57 [==============================] - 0s 867us/step - loss: 0.1946 - accuracy: 0.8430 - mae: 0.1946 - pearson_correlation: 0.5211 - euclidean_distance: 0.3116
Epoch 80/150
57/57 [==============================] - 0s 852us/step - loss: 0.1922 - accuracy: 0.8444 - mae: 0.1922 - pearson_correlation: 0.5290 - euclidean_distance: 0.3074
Epoch 81/150
57/57 [==============================] - 0s 865us/step - loss: 0.1892 - accuracy: 0.8580 - mae: 0.1892 - pearson_correlation: 0.5307 - euclidean_distance: 0.3023
Epoch 82/150
57/57 [==============================] - 0s 862us/step - loss: 0.1858 - accuracy: 0.8571 - mae: 0.1858 - pearson_correlation: 0.5352 - euclidean_distance: 0.2971
Epoch 83/150
57/57 [==============================] - 0s 856us/step - loss: 0.1819 - accuracy: 0.8567 - mae: 0.1819 - pearson_correlation: 0.5355 - euclidean_distance: 0.2922
Epoch 84/150
57/57 [==============================] - 0s 852us/step - loss: 0.1780 - accuracy: 0.8624 - mae: 0.1780 - pearson_correlation: 0.5380 - euclidean_distance: 0.2868
Epoch 85/150
57/57 [==============================] - 0s 863us/step - loss: 0.1746 - accuracy: 0.8765 - mae: 0.1746 - pearson_correlation: 0.5487 - euclidean_distance: 0.2812
Epoch 86/150
57/57 [==============================] - 0s 861us/step - loss: 0.1744 - accuracy: 0.8792 - mae: 0.1744 - pearson_correlation: 0.5492 - euclidean_distance: 0.2795
Epoch 87/150
57/57 [==============================] - 0s 852us/step - loss: 0.1735 - accuracy: 0.8770 - mae: 0.1735 - pearson_correlation: 0.5465 - euclidean_distance: 0.2782
Epoch 88/150
57/57 [==============================] - 0s 863us/step - loss: 0.1669 - accuracy: 0.8907 - mae: 0.1669 - pearson_correlation: 0.5527 - euclidean_distance: 0.2693
Epoch 89/150
57/57 [==============================] - 0s 865us/step - loss: 0.1659 - accuracy: 0.8854 - mae: 0.1659 - pearson_correlation: 0.5575 - euclidean_distance: 0.2663
Epoch 90/150
57/57 [==============================] - 0s 864us/step - loss: 0.1634 - accuracy: 0.8849 - mae: 0.1634 - pearson_correlation: 0.5604 - euclidean_distance: 0.2625
Epoch 91/150
57/57 [==============================] - 0s 848us/step - loss: 0.1604 - accuracy: 0.8946 - mae: 0.1604 - pearson_correlation: 0.5702 - euclidean_distance: 0.2583
Epoch 92/150
57/57 [==============================] - 0s 864us/step - loss: 0.1583 - accuracy: 0.9048 - mae: 0.1583 - pearson_correlation: 0.5695 - euclidean_distance: 0.2551
Epoch 93/150
57/57 [==============================] - 0s 857us/step - loss: 0.1565 - accuracy: 0.8990 - mae: 0.1565 - pearson_correlation: 0.5783 - euclidean_distance: 0.2526
Epoch 94/150
57/57 [==============================] - 0s 853us/step - loss: 0.1561 - accuracy: 0.9012 - mae: 0.1561 - pearson_correlation: 0.5696 - euclidean_distance: 0.2514
Epoch 95/150
57/57 [==============================] - 0s 858us/step - loss: 0.1565 - accuracy: 0.9026 - mae: 0.1565 - pearson_correlation: 0.5713 - euclidean_distance: 0.2513
Epoch 96/150
57/57 [==============================] - 0s 854us/step - loss: 0.1534 - accuracy: 0.8995 - mae: 0.1534 - pearson_correlation: 0.5725 - euclidean_distance: 0.2476
Epoch 97/150
57/57 [==============================] - 0s 861us/step - loss: 0.1520 - accuracy: 0.9061 - mae: 0.1520 - pearson_correlation: 0.5778 - euclidean_distance: 0.2442
Epoch 98/150
57/57 [==============================] - 0s 863us/step - loss: 0.1487 - accuracy: 0.9101 - mae: 0.1487 - pearson_correlation: 0.5836 - euclidean_distance: 0.2397
Epoch 99/150
57/57 [==============================] - 0s 850us/step - loss: 0.1481 - accuracy: 0.9140 - mae: 0.1481 - pearson_correlation: 0.5858 - euclidean_distance: 0.2383
Epoch 100/150
57/57 [==============================] - 0s 861us/step - loss: 0.1443 - accuracy: 0.9180 - mae: 0.1443 - pearson_correlation: 0.5931 - euclidean_distance: 0.2324
Epoch 101/150
57/57 [==============================] - 0s 860us/step - loss: 0.1449 - accuracy: 0.9255 - mae: 0.1449 - pearson_correlation: 0.5904 - euclidean_distance: 0.2342
Epoch 102/150
57/57 [==============================] - 0s 864us/step - loss: 0.1459 - accuracy: 0.9136 - mae: 0.1459 - pearson_correlation: 0.5797 - euclidean_distance: 0.2346
Epoch 103/150
57/57 [==============================] - 0s 869us/step - loss: 0.1407 - accuracy: 0.9228 - mae: 0.1407 - pearson_correlation: 0.6009 - euclidean_distance: 0.2270
Epoch 104/150
57/57 [==============================] - 0s 855us/step - loss: 0.1412 - accuracy: 0.9215 - mae: 0.1412 - pearson_correlation: 0.5951 - euclidean_distance: 0.2281
Epoch 105/150
57/57 [==============================] - 0s 862us/step - loss: 0.1398 - accuracy: 0.9237 - mae: 0.1398 - pearson_correlation: 0.6018 - euclidean_distance: 0.2253
Epoch 106/150
57/57 [==============================] - 0s 860us/step - loss: 0.1371 - accuracy: 0.9246 - mae: 0.1371 - pearson_correlation: 0.6023 - euclidean_distance: 0.2218
Epoch 107/150
57/57 [==============================] - 0s 850us/step - loss: 0.1388 - accuracy: 0.9224 - mae: 0.1388 - pearson_correlation: 0.5986 - euclidean_distance: 0.2239
Epoch 108/150
57/57 [==============================] - 0s 855us/step - loss: 0.1358 - accuracy: 0.9281 - mae: 0.1358 - pearson_correlation: 0.6035 - euclidean_distance: 0.2198
Epoch 109/150
57/57 [==============================] - 0s 863us/step - loss: 0.1366 - accuracy: 0.9286 - mae: 0.1366 - pearson_correlation: 0.6048 - euclidean_distance: 0.2207
Epoch 110/150
57/57 [==============================] - 0s 861us/step - loss: 0.1352 - accuracy: 0.9259 - mae: 0.1352 - pearson_correlation: 0.6015 - euclidean_distance: 0.2186
Epoch 111/150
57/57 [==============================] - 0s 851us/step - loss: 0.1325 - accuracy: 0.9299 - mae: 0.1325 - pearson_correlation: 0.6093 - euclidean_distance: 0.2141
Epoch 112/150
57/57 [==============================] - 0s 860us/step - loss: 0.1320 - accuracy: 0.9290 - mae: 0.1320 - pearson_correlation: 0.6057 - euclidean_distance: 0.2136
Epoch 113/150
57/57 [==============================] - 0s 861us/step - loss: 0.1318 - accuracy: 0.9321 - mae: 0.1318 - pearson_correlation: 0.6120 - euclidean_distance: 0.2128
Epoch 114/150
57/57 [==============================] - 0s 850us/step - loss: 0.1314 - accuracy: 0.9365 - mae: 0.1314 - pearson_correlation: 0.6154 - euclidean_distance: 0.2123
Epoch 115/150
57/57 [==============================] - 0s 856us/step - loss: 0.1300 - accuracy: 0.9295 - mae: 0.1300 - pearson_correlation: 0.6158 - euclidean_distance: 0.2101
Epoch 116/150
57/57 [==============================] - 0s 859us/step - loss: 0.1309 - accuracy: 0.9308 - mae: 0.1309 - pearson_correlation: 0.6149 - euclidean_distance: 0.2117
Epoch 117/150
57/57 [==============================] - 0s 865us/step - loss: 0.1286 - accuracy: 0.9334 - mae: 0.1286 - pearson_correlation: 0.6277 - euclidean_distance: 0.2072
Epoch 118/150
57/57 [==============================] - 0s 863us/step - loss: 0.1296 - accuracy: 0.9383 - mae: 0.1296 - pearson_correlation: 0.6199 - euclidean_distance: 0.2091
Epoch 119/150
57/57 [==============================] - 0s 851us/step - loss: 0.1263 - accuracy: 0.9356 - mae: 0.1263 - pearson_correlation: 0.6316 - euclidean_distance: 0.2044
Epoch 120/150
57/57 [==============================] - 0s 859us/step - loss: 0.1279 - accuracy: 0.9365 - mae: 0.1279 - pearson_correlation: 0.6286 - euclidean_distance: 0.2062
Epoch 121/150
57/57 [==============================] - 0s 853us/step - loss: 0.1277 - accuracy: 0.9352 - mae: 0.1277 - pearson_correlation: 0.6248 - euclidean_distance: 0.2062
Epoch 122/150
57/57 [==============================] - 0s 856us/step - loss: 0.1256 - accuracy: 0.9400 - mae: 0.1256 - pearson_correlation: 0.6292 - euclidean_distance: 0.2033
Epoch 123/150
57/57 [==============================] - 0s 853us/step - loss: 0.1279 - accuracy: 0.9356 - mae: 0.1279 - pearson_correlation: 0.6253 - euclidean_distance: 0.2069
Epoch 124/150
57/57 [==============================] - 0s 864us/step - loss: 0.1239 - accuracy: 0.9352 - mae: 0.1239 - pearson_correlation: 0.6323 - euclidean_distance: 0.2003
Epoch 125/150
57/57 [==============================] - 0s 866us/step - loss: 0.1243 - accuracy: 0.9387 - mae: 0.1243 - pearson_correlation: 0.6346 - euclidean_distance: 0.2009
Epoch 126/150
57/57 [==============================] - 0s 863us/step - loss: 0.1242 - accuracy: 0.9418 - mae: 0.1242 - pearson_correlation: 0.6330 - euclidean_distance: 0.2014
Epoch 127/150
57/57 [==============================] - 0s 865us/step - loss: 0.1209 - accuracy: 0.9409 - mae: 0.1209 - pearson_correlation: 0.6413 - euclidean_distance: 0.1958
Epoch 128/150
57/57 [==============================] - 0s 864us/step - loss: 0.1228 - accuracy: 0.9365 - mae: 0.1228 - pearson_correlation: 0.6358 - euclidean_distance: 0.1988
Epoch 129/150
57/57 [==============================] - 0s 861us/step - loss: 0.1200 - accuracy: 0.9400 - mae: 0.1200 - pearson_correlation: 0.6444 - euclidean_distance: 0.1947
Epoch 130/150
57/57 [==============================] - 0s 861us/step - loss: 0.1221 - accuracy: 0.9392 - mae: 0.1221 - pearson_correlation: 0.6363 - euclidean_distance: 0.1978
Epoch 131/150
57/57 [==============================] - 0s 856us/step - loss: 0.1182 - accuracy: 0.9431 - mae: 0.1182 - pearson_correlation: 0.6520 - euclidean_distance: 0.1915
Epoch 132/150
57/57 [==============================] - 0s 872us/step - loss: 0.1217 - accuracy: 0.9427 - mae: 0.1217 - pearson_correlation: 0.6445 - euclidean_distance: 0.1959
Epoch 133/150
57/57 [==============================] - 0s 864us/step - loss: 0.1205 - accuracy: 0.9436 - mae: 0.1205 - pearson_correlation: 0.6448 - euclidean_distance: 0.1946
Epoch 134/150
57/57 [==============================] - 0s 864us/step - loss: 0.1176 - accuracy: 0.9458 - mae: 0.1176 - pearson_correlation: 0.6563 - euclidean_distance: 0.1908
Epoch 135/150
57/57 [==============================] - 0s 863us/step - loss: 0.1177 - accuracy: 0.9453 - mae: 0.1177 - pearson_correlation: 0.6563 - euclidean_distance: 0.1903
Epoch 136/150
57/57 [==============================] - 0s 856us/step - loss: 0.1198 - accuracy: 0.9480 - mae: 0.1198 - pearson_correlation: 0.6413 - euclidean_distance: 0.1940
Epoch 137/150
57/57 [==============================] - 0s 854us/step - loss: 0.1185 - accuracy: 0.9427 - mae: 0.1185 - pearson_correlation: 0.6519 - euclidean_distance: 0.1915
Epoch 138/150
57/57 [==============================] - 0s 854us/step - loss: 0.1158 - accuracy: 0.9414 - mae: 0.1158 - pearson_correlation: 0.6623 - euclidean_distance: 0.1879
Epoch 139/150
57/57 [==============================] - 0s 863us/step - loss: 0.1178 - accuracy: 0.9484 - mae: 0.1178 - pearson_correlation: 0.6542 - euclidean_distance: 0.1908
Epoch 140/150
57/57 [==============================] - 0s 869us/step - loss: 0.1175 - accuracy: 0.9471 - mae: 0.1175 - pearson_correlation: 0.6544 - euclidean_distance: 0.1900
Epoch 141/150
57/57 [==============================] - 0s 863us/step - loss: 0.1165 - accuracy: 0.9436 - mae: 0.1165 - pearson_correlation: 0.6557 - euclidean_distance: 0.1882
Epoch 142/150
57/57 [==============================] - 0s 862us/step - loss: 0.1132 - accuracy: 0.9475 - mae: 0.1132 - pearson_correlation: 0.6676 - euclidean_distance: 0.1828
Epoch 143/150
57/57 [==============================] - 0s 865us/step - loss: 0.1136 - accuracy: 0.9453 - mae: 0.1136 - pearson_correlation: 0.6661 - euclidean_distance: 0.1840
Epoch 144/150
57/57 [==============================] - 0s 863us/step - loss: 0.1176 - accuracy: 0.9480 - mae: 0.1176 - pearson_correlation: 0.6591 - euclidean_distance: 0.1895
Epoch 145/150
57/57 [==============================] - 0s 863us/step - loss: 0.1124 - accuracy: 0.9453 - mae: 0.1124 - pearson_correlation: 0.6697 - euclidean_distance: 0.1816
Epoch 146/150
57/57 [==============================] - 0s 855us/step - loss: 0.1169 - accuracy: 0.9480 - mae: 0.1169 - pearson_correlation: 0.6643 - euclidean_distance: 0.1890
Epoch 147/150
57/57 [==============================] - 0s 863us/step - loss: 0.1116 - accuracy: 0.9511 - mae: 0.1116 - pearson_correlation: 0.6711 - euclidean_distance: 0.1810
Epoch 148/150
57/57 [==============================] - 0s 863us/step - loss: 0.1136 - accuracy: 0.9475 - mae: 0.1136 - pearson_correlation: 0.6690 - euclidean_distance: 0.1836
Epoch 149/150
57/57 [==============================] - 0s 849us/step - loss: 0.1128 - accuracy: 0.9489 - mae: 0.1128 - pearson_correlation: 0.6664 - euclidean_distance: 0.1825
Epoch 150/150
57/57 [==============================] - 0s 856us/step - loss: 0.1155 - accuracy: 0.9493 - mae: 0.1155 - pearson_correlation: 0.6622 - euclidean_distance: 0.1864
29/29 [==============================] - 0s 469us/step
Epoch 1/200
57/57 [==============================] - 1s 877us/step - loss: 0.6692 - accuracy: 0.9563 - mae: 0.6692 - pearson_correlation: 0.6889 - euclidean_distance: 0.9958
Epoch 2/200
57/57 [==============================] - 0s 841us/step - loss: 0.6628 - accuracy: 0.9563 - mae: 0.6628 - pearson_correlation: 0.6904 - euclidean_distance: 0.9866
Epoch 3/200
57/57 [==============================] - 0s 864us/step - loss: 0.6572 - accuracy: 0.9559 - mae: 0.6572 - pearson_correlation: 0.6905 - euclidean_distance: 0.9789
Epoch 4/200
57/57 [==============================] - 0s 870us/step - loss: 0.6532 - accuracy: 0.9554 - mae: 0.6532 - pearson_correlation: 0.6886 - euclidean_distance: 0.9734
Epoch 5/200
57/57 [==============================] - 0s 862us/step - loss: 0.6473 - accuracy: 0.9563 - mae: 0.6473 - pearson_correlation: 0.6954 - euclidean_distance: 0.9658
Epoch 6/200
57/57 [==============================] - 0s 858us/step - loss: 0.6436 - accuracy: 0.9563 - mae: 0.6436 - pearson_correlation: 0.6937 - euclidean_distance: 0.9604
Epoch 7/200
57/57 [==============================] - 0s 854us/step - loss: 0.6370 - accuracy: 0.9559 - mae: 0.6370 - pearson_correlation: 0.6921 - euclidean_distance: 0.9518
Epoch 8/200
57/57 [==============================] - 0s 860us/step - loss: 0.6315 - accuracy: 0.9559 - mae: 0.6315 - pearson_correlation: 0.6955 - euclidean_distance: 0.9441
Epoch 9/200
57/57 [==============================] - 0s 864us/step - loss: 0.6258 - accuracy: 0.9554 - mae: 0.6258 - pearson_correlation: 0.6937 - euclidean_distance: 0.9370
Epoch 10/200
57/57 [==============================] - 0s 863us/step - loss: 0.6196 - accuracy: 0.9563 - mae: 0.6196 - pearson_correlation: 0.6992 - euclidean_distance: 0.9270
Epoch 11/200
57/57 [==============================] - 0s 854us/step - loss: 0.6152 - accuracy: 0.9550 - mae: 0.6152 - pearson_correlation: 0.6967 - euclidean_distance: 0.9221
Epoch 12/200
57/57 [==============================] - 0s 856us/step - loss: 0.6098 - accuracy: 0.9554 - mae: 0.6098 - pearson_correlation: 0.6952 - euclidean_distance: 0.9145
Epoch 13/200
57/57 [==============================] - 0s 851us/step - loss: 0.6037 - accuracy: 0.9559 - mae: 0.6037 - pearson_correlation: 0.6963 - euclidean_distance: 0.9061
Epoch 14/200
57/57 [==============================] - 0s 863us/step - loss: 0.5976 - accuracy: 0.9563 - mae: 0.5976 - pearson_correlation: 0.6994 - euclidean_distance: 0.8974
Epoch 15/200
57/57 [==============================] - 0s 861us/step - loss: 0.5927 - accuracy: 0.9563 - mae: 0.5927 - pearson_correlation: 0.7003 - euclidean_distance: 0.8911
Epoch 16/200
57/57 [==============================] - 0s 849us/step - loss: 0.5868 - accuracy: 0.9563 - mae: 0.5868 - pearson_correlation: 0.7008 - euclidean_distance: 0.8829
Epoch 17/200
57/57 [==============================] - 0s 850us/step - loss: 0.5805 - accuracy: 0.9559 - mae: 0.5805 - pearson_correlation: 0.6987 - euclidean_distance: 0.8748
Epoch 18/200
57/57 [==============================] - 0s 848us/step - loss: 0.5756 - accuracy: 0.9563 - mae: 0.5756 - pearson_correlation: 0.7033 - euclidean_distance: 0.8674
Epoch 19/200
57/57 [==============================] - 0s 857us/step - loss: 0.5696 - accuracy: 0.9563 - mae: 0.5696 - pearson_correlation: 0.7025 - euclidean_distance: 0.8601
Epoch 20/200
57/57 [==============================] - 0s 848us/step - loss: 0.5640 - accuracy: 0.9563 - mae: 0.5640 - pearson_correlation: 0.7018 - euclidean_distance: 0.8525
Epoch 21/200
57/57 [==============================] - 0s 860us/step - loss: 0.5579 - accuracy: 0.9563 - mae: 0.5579 - pearson_correlation: 0.7057 - euclidean_distance: 0.8436
Epoch 22/200
57/57 [==============================] - 0s 863us/step - loss: 0.5526 - accuracy: 0.9559 - mae: 0.5526 - pearson_correlation: 0.7043 - euclidean_distance: 0.8372
Epoch 23/200
57/57 [==============================] - 0s 861us/step - loss: 0.5455 - accuracy: 0.9559 - mae: 0.5455 - pearson_correlation: 0.7043 - euclidean_distance: 0.8285
Epoch 24/200
57/57 [==============================] - 0s 854us/step - loss: 0.5409 - accuracy: 0.9559 - mae: 0.5409 - pearson_correlation: 0.7049 - euclidean_distance: 0.8210
Epoch 25/200
57/57 [==============================] - 0s 854us/step - loss: 0.5350 - accuracy: 0.9559 - mae: 0.5350 - pearson_correlation: 0.7050 - euclidean_distance: 0.8135
Epoch 26/200
57/57 [==============================] - 0s 854us/step - loss: 0.5283 - accuracy: 0.9563 - mae: 0.5283 - pearson_correlation: 0.7039 - euclidean_distance: 0.8040
Epoch 27/200
57/57 [==============================] - 0s 858us/step - loss: 0.5222 - accuracy: 0.9563 - mae: 0.5222 - pearson_correlation: 0.7057 - euclidean_distance: 0.7966
Epoch 28/200
57/57 [==============================] - 0s 848us/step - loss: 0.5168 - accuracy: 0.9563 - mae: 0.5168 - pearson_correlation: 0.7049 - euclidean_distance: 0.7887
Epoch 29/200
57/57 [==============================] - 0s 864us/step - loss: 0.5121 - accuracy: 0.9563 - mae: 0.5121 - pearson_correlation: 0.7075 - euclidean_distance: 0.7821
Epoch 30/200
57/57 [==============================] - 0s 859us/step - loss: 0.5063 - accuracy: 0.9563 - mae: 0.5063 - pearson_correlation: 0.7040 - euclidean_distance: 0.7754
Epoch 31/200
57/57 [==============================] - 0s 850us/step - loss: 0.5002 - accuracy: 0.9563 - mae: 0.5002 - pearson_correlation: 0.7052 - euclidean_distance: 0.7669
Epoch 32/200
57/57 [==============================] - 0s 852us/step - loss: 0.4946 - accuracy: 0.9563 - mae: 0.4946 - pearson_correlation: 0.7059 - euclidean_distance: 0.7586
Epoch 33/200
57/57 [==============================] - 0s 851us/step - loss: 0.4878 - accuracy: 0.9563 - mae: 0.4878 - pearson_correlation: 0.7097 - euclidean_distance: 0.7504
Epoch 34/200
57/57 [==============================] - 0s 854us/step - loss: 0.4841 - accuracy: 0.9563 - mae: 0.4841 - pearson_correlation: 0.7056 - euclidean_distance: 0.7449
Epoch 35/200
57/57 [==============================] - 0s 842us/step - loss: 0.4781 - accuracy: 0.9563 - mae: 0.4781 - pearson_correlation: 0.7046 - euclidean_distance: 0.7360
Epoch 36/200
57/57 [==============================] - 0s 860us/step - loss: 0.4722 - accuracy: 0.9563 - mae: 0.4722 - pearson_correlation: 0.7088 - euclidean_distance: 0.7283
Epoch 37/200
57/57 [==============================] - 0s 844us/step - loss: 0.4674 - accuracy: 0.9563 - mae: 0.4674 - pearson_correlation: 0.7098 - euclidean_distance: 0.7210
Epoch 38/200
57/57 [==============================] - 0s 850us/step - loss: 0.4621 - accuracy: 0.9559 - mae: 0.4621 - pearson_correlation: 0.7079 - euclidean_distance: 0.7142
Epoch 39/200
57/57 [==============================] - 0s 856us/step - loss: 0.4577 - accuracy: 0.9559 - mae: 0.4577 - pearson_correlation: 0.7112 - euclidean_distance: 0.7073
Epoch 40/200
57/57 [==============================] - 0s 845us/step - loss: 0.4510 - accuracy: 0.9563 - mae: 0.4510 - pearson_correlation: 0.7099 - euclidean_distance: 0.6978
Epoch 41/200
57/57 [==============================] - 0s 850us/step - loss: 0.4466 - accuracy: 0.9563 - mae: 0.4466 - pearson_correlation: 0.7112 - euclidean_distance: 0.6921
Epoch 42/200
57/57 [==============================] - 0s 854us/step - loss: 0.4404 - accuracy: 0.9559 - mae: 0.4404 - pearson_correlation: 0.7093 - euclidean_distance: 0.6823
Epoch 43/200
57/57 [==============================] - 0s 857us/step - loss: 0.4339 - accuracy: 0.9563 - mae: 0.4339 - pearson_correlation: 0.7151 - euclidean_distance: 0.6740
Epoch 44/200
57/57 [==============================] - 0s 959us/step - loss: 0.4308 - accuracy: 0.9559 - mae: 0.4308 - pearson_correlation: 0.7138 - euclidean_distance: 0.6676
Epoch 45/200
57/57 [==============================] - 0s 1ms/step - loss: 0.4233 - accuracy: 0.9554 - mae: 0.4233 - pearson_correlation: 0.7134 - euclidean_distance: 0.6577
Epoch 46/200
57/57 [==============================] - 0s 988us/step - loss: 0.4191 - accuracy: 0.9563 - mae: 0.4191 - pearson_correlation: 0.7092 - euclidean_distance: 0.6513
Epoch 47/200
57/57 [==============================] - 0s 973us/step - loss: 0.4139 - accuracy: 0.9559 - mae: 0.4139 - pearson_correlation: 0.7094 - euclidean_distance: 0.6430
Epoch 48/200
57/57 [==============================] - 0s 1ms/step - loss: 0.4077 - accuracy: 0.9563 - mae: 0.4077 - pearson_correlation: 0.7119 - euclidean_distance: 0.6345
Epoch 49/200
57/57 [==============================] - 0s 1ms/step - loss: 0.4022 - accuracy: 0.9563 - mae: 0.4022 - pearson_correlation: 0.7107 - euclidean_distance: 0.6262
Epoch 50/200
57/57 [==============================] - 0s 973us/step - loss: 0.3984 - accuracy: 0.9559 - mae: 0.3984 - pearson_correlation: 0.7087 - euclidean_distance: 0.6189
Epoch 51/200
57/57 [==============================] - 0s 1ms/step - loss: 0.3916 - accuracy: 0.9554 - mae: 0.3916 - pearson_correlation: 0.7114 - euclidean_distance: 0.6098
Epoch 52/200
57/57 [==============================] - 0s 1ms/step - loss: 0.3860 - accuracy: 0.9550 - mae: 0.3860 - pearson_correlation: 0.7046 - euclidean_distance: 0.6013
Epoch 53/200
57/57 [==============================] - 0s 969us/step - loss: 0.3804 - accuracy: 0.9559 - mae: 0.3804 - pearson_correlation: 0.7051 - euclidean_distance: 0.5924
Epoch 54/200
57/57 [==============================] - 0s 861us/step - loss: 0.3758 - accuracy: 0.9559 - mae: 0.3758 - pearson_correlation: 0.7063 - euclidean_distance: 0.5858
Epoch 55/200
57/57 [==============================] - 0s 862us/step - loss: 0.3705 - accuracy: 0.9550 - mae: 0.3705 - pearson_correlation: 0.7077 - euclidean_distance: 0.5780
Epoch 56/200
57/57 [==============================] - 0s 859us/step - loss: 0.3648 - accuracy: 0.9546 - mae: 0.3648 - pearson_correlation: 0.7075 - euclidean_distance: 0.5682
Epoch 57/200
57/57 [==============================] - 0s 895us/step - loss: 0.3593 - accuracy: 0.9559 - mae: 0.3593 - pearson_correlation: 0.7033 - euclidean_distance: 0.5599
Epoch 58/200
57/57 [==============================] - 0s 875us/step - loss: 0.3531 - accuracy: 0.9563 - mae: 0.3531 - pearson_correlation: 0.7041 - euclidean_distance: 0.5512
Epoch 59/200
57/57 [==============================] - 0s 863us/step - loss: 0.3480 - accuracy: 0.9550 - mae: 0.3480 - pearson_correlation: 0.7073 - euclidean_distance: 0.5426
Epoch 60/200
57/57 [==============================] - 0s 856us/step - loss: 0.3432 - accuracy: 0.9541 - mae: 0.3432 - pearson_correlation: 0.7018 - euclidean_distance: 0.5351
Epoch 61/200
57/57 [==============================] - 0s 852us/step - loss: 0.3363 - accuracy: 0.9559 - mae: 0.3363 - pearson_correlation: 0.7045 - euclidean_distance: 0.5251
Epoch 62/200
57/57 [==============================] - 0s 858us/step - loss: 0.3312 - accuracy: 0.9537 - mae: 0.3312 - pearson_correlation: 0.6998 - euclidean_distance: 0.5166
Epoch 63/200
57/57 [==============================] - 0s 846us/step - loss: 0.3256 - accuracy: 0.9559 - mae: 0.3256 - pearson_correlation: 0.7023 - euclidean_distance: 0.5075
Epoch 64/200
57/57 [==============================] - 0s 861us/step - loss: 0.3209 - accuracy: 0.9559 - mae: 0.3209 - pearson_correlation: 0.6979 - euclidean_distance: 0.5005
Epoch 65/200
57/57 [==============================] - 0s 865us/step - loss: 0.3154 - accuracy: 0.9550 - mae: 0.3154 - pearson_correlation: 0.6940 - euclidean_distance: 0.4919
Epoch 66/200
57/57 [==============================] - 0s 864us/step - loss: 0.3081 - accuracy: 0.9541 - mae: 0.3081 - pearson_correlation: 0.6966 - euclidean_distance: 0.4802
Epoch 67/200
57/57 [==============================] - 0s 866us/step - loss: 0.3029 - accuracy: 0.9537 - mae: 0.3029 - pearson_correlation: 0.6905 - euclidean_distance: 0.4726
Epoch 68/200
57/57 [==============================] - 0s 858us/step - loss: 0.2981 - accuracy: 0.9532 - mae: 0.2981 - pearson_correlation: 0.6897 - euclidean_distance: 0.4642
Epoch 69/200
57/57 [==============================] - 0s 843us/step - loss: 0.2918 - accuracy: 0.9537 - mae: 0.2918 - pearson_correlation: 0.6864 - euclidean_distance: 0.4559
Epoch 70/200
57/57 [==============================] - 0s 862us/step - loss: 0.2866 - accuracy: 0.9541 - mae: 0.2866 - pearson_correlation: 0.6910 - euclidean_distance: 0.4468
Epoch 71/200
57/57 [==============================] - 0s 831us/step - loss: 0.2818 - accuracy: 0.9537 - mae: 0.2818 - pearson_correlation: 0.6823 - euclidean_distance: 0.4395
Epoch 72/200
57/57 [==============================] - 0s 857us/step - loss: 0.2745 - accuracy: 0.9510 - mae: 0.2745 - pearson_correlation: 0.6838 - euclidean_distance: 0.4292
Epoch 73/200
57/57 [==============================] - 0s 858us/step - loss: 0.2706 - accuracy: 0.9519 - mae: 0.2706 - pearson_correlation: 0.6799 - euclidean_distance: 0.4218
Epoch 74/200
57/57 [==============================] - 0s 851us/step - loss: 0.2646 - accuracy: 0.9506 - mae: 0.2646 - pearson_correlation: 0.6753 - euclidean_distance: 0.4133
Epoch 75/200
57/57 [==============================] - 0s 849us/step - loss: 0.2593 - accuracy: 0.9510 - mae: 0.2593 - pearson_correlation: 0.6754 - euclidean_distance: 0.4048
Epoch 76/200
57/57 [==============================] - 0s 850us/step - loss: 0.2551 - accuracy: 0.9484 - mae: 0.2551 - pearson_correlation: 0.6690 - euclidean_distance: 0.3986
Epoch 77/200
57/57 [==============================] - 0s 851us/step - loss: 0.2501 - accuracy: 0.9484 - mae: 0.2501 - pearson_correlation: 0.6663 - euclidean_distance: 0.3900
Epoch 78/200
57/57 [==============================] - 0s 857us/step - loss: 0.2450 - accuracy: 0.9484 - mae: 0.2450 - pearson_correlation: 0.6657 - euclidean_distance: 0.3826
Epoch 79/200
57/57 [==============================] - 0s 853us/step - loss: 0.2393 - accuracy: 0.9488 - mae: 0.2393 - pearson_correlation: 0.6623 - euclidean_distance: 0.3739
Epoch 80/200
57/57 [==============================] - 0s 844us/step - loss: 0.2342 - accuracy: 0.9471 - mae: 0.2342 - pearson_correlation: 0.6583 - euclidean_distance: 0.3674
Epoch 81/200
57/57 [==============================] - 0s 850us/step - loss: 0.2299 - accuracy: 0.9444 - mae: 0.2299 - pearson_correlation: 0.6522 - euclidean_distance: 0.3604
Epoch 82/200
57/57 [==============================] - 0s 841us/step - loss: 0.2245 - accuracy: 0.9462 - mae: 0.2245 - pearson_correlation: 0.6518 - euclidean_distance: 0.3523
Epoch 83/200
57/57 [==============================] - 0s 851us/step - loss: 0.2216 - accuracy: 0.9427 - mae: 0.2216 - pearson_correlation: 0.6449 - euclidean_distance: 0.3476
Epoch 84/200
57/57 [==============================] - 0s 885us/step - loss: 0.2185 - accuracy: 0.9449 - mae: 0.2185 - pearson_correlation: 0.6395 - euclidean_distance: 0.3425
Epoch 85/200
57/57 [==============================] - 0s 861us/step - loss: 0.2136 - accuracy: 0.9462 - mae: 0.2136 - pearson_correlation: 0.6419 - euclidean_distance: 0.3352
Epoch 86/200
57/57 [==============================] - 0s 847us/step - loss: 0.2112 - accuracy: 0.9400 - mae: 0.2112 - pearson_correlation: 0.6376 - euclidean_distance: 0.3325
Epoch 87/200
57/57 [==============================] - 0s 861us/step - loss: 0.2076 - accuracy: 0.9396 - mae: 0.2076 - pearson_correlation: 0.6398 - euclidean_distance: 0.3268
Epoch 88/200
57/57 [==============================] - 0s 850us/step - loss: 0.2053 - accuracy: 0.9400 - mae: 0.2053 - pearson_correlation: 0.6341 - euclidean_distance: 0.3228
Epoch 89/200
57/57 [==============================] - 0s 847us/step - loss: 0.2041 - accuracy: 0.9369 - mae: 0.2041 - pearson_correlation: 0.6311 - euclidean_distance: 0.3207
Epoch 90/200
57/57 [==============================] - 0s 861us/step - loss: 0.1995 - accuracy: 0.9400 - mae: 0.1995 - pearson_correlation: 0.6297 - euclidean_distance: 0.3131
Epoch 91/200
57/57 [==============================] - 0s 860us/step - loss: 0.1969 - accuracy: 0.9378 - mae: 0.1969 - pearson_correlation: 0.6327 - euclidean_distance: 0.3104
Epoch 92/200
57/57 [==============================] - 0s 858us/step - loss: 0.1951 - accuracy: 0.9369 - mae: 0.1951 - pearson_correlation: 0.6283 - euclidean_distance: 0.3069
Epoch 93/200
57/57 [==============================] - 0s 860us/step - loss: 0.1951 - accuracy: 0.9422 - mae: 0.1951 - pearson_correlation: 0.6270 - euclidean_distance: 0.3069
Epoch 94/200
57/57 [==============================] - 0s 849us/step - loss: 0.1917 - accuracy: 0.9356 - mae: 0.1917 - pearson_correlation: 0.6266 - euclidean_distance: 0.3017
Epoch 95/200
57/57 [==============================] - 0s 858us/step - loss: 0.1894 - accuracy: 0.9418 - mae: 0.1894 - pearson_correlation: 0.6280 - euclidean_distance: 0.2981
Epoch 96/200
57/57 [==============================] - 0s 860us/step - loss: 0.1861 - accuracy: 0.9365 - mae: 0.1861 - pearson_correlation: 0.6314 - euclidean_distance: 0.2937
Epoch 97/200
57/57 [==============================] - 0s 846us/step - loss: 0.1869 - accuracy: 0.9413 - mae: 0.1869 - pearson_correlation: 0.6261 - euclidean_distance: 0.2943
Epoch 98/200
57/57 [==============================] - 0s 851us/step - loss: 0.1849 - accuracy: 0.9387 - mae: 0.1849 - pearson_correlation: 0.6256 - euclidean_distance: 0.2910
Epoch 99/200
57/57 [==============================] - 0s 857us/step - loss: 0.1829 - accuracy: 0.9374 - mae: 0.1829 - pearson_correlation: 0.6280 - euclidean_distance: 0.2893
Epoch 100/200
57/57 [==============================] - 0s 854us/step - loss: 0.1810 - accuracy: 0.9404 - mae: 0.1810 - pearson_correlation: 0.6316 - euclidean_distance: 0.2865
Epoch 101/200
57/57 [==============================] - 0s 849us/step - loss: 0.1808 - accuracy: 0.9374 - mae: 0.1808 - pearson_correlation: 0.6292 - euclidean_distance: 0.2856
Epoch 102/200
57/57 [==============================] - 0s 853us/step - loss: 0.1798 - accuracy: 0.9391 - mae: 0.1798 - pearson_correlation: 0.6261 - euclidean_distance: 0.2838
Epoch 103/200
57/57 [==============================] - 0s 835us/step - loss: 0.1772 - accuracy: 0.9347 - mae: 0.1772 - pearson_correlation: 0.6234 - euclidean_distance: 0.2803
Epoch 104/200
57/57 [==============================] - 0s 854us/step - loss: 0.1769 - accuracy: 0.9356 - mae: 0.1769 - pearson_correlation: 0.6304 - euclidean_distance: 0.2789
Epoch 105/200
57/57 [==============================] - 0s 853us/step - loss: 0.1755 - accuracy: 0.9418 - mae: 0.1755 - pearson_correlation: 0.6262 - euclidean_distance: 0.2771
Epoch 106/200
57/57 [==============================] - 0s 844us/step - loss: 0.1737 - accuracy: 0.9427 - mae: 0.1737 - pearson_correlation: 0.6261 - euclidean_distance: 0.2749
Epoch 107/200
57/57 [==============================] - 0s 851us/step - loss: 0.1720 - accuracy: 0.9365 - mae: 0.1720 - pearson_correlation: 0.6319 - euclidean_distance: 0.2722
Epoch 108/200
57/57 [==============================] - 0s 851us/step - loss: 0.1739 - accuracy: 0.9422 - mae: 0.1739 - pearson_correlation: 0.6267 - euclidean_distance: 0.2743
Epoch 109/200
57/57 [==============================] - 0s 842us/step - loss: 0.1707 - accuracy: 0.9369 - mae: 0.1707 - pearson_correlation: 0.6302 - euclidean_distance: 0.2699
Epoch 110/200
57/57 [==============================] - 0s 852us/step - loss: 0.1693 - accuracy: 0.9409 - mae: 0.1693 - pearson_correlation: 0.6309 - euclidean_distance: 0.2689
Epoch 111/200
57/57 [==============================] - 0s 856us/step - loss: 0.1680 - accuracy: 0.9435 - mae: 0.1680 - pearson_correlation: 0.6339 - euclidean_distance: 0.2662
Epoch 112/200
57/57 [==============================] - 0s 861us/step - loss: 0.1670 - accuracy: 0.9422 - mae: 0.1670 - pearson_correlation: 0.6313 - euclidean_distance: 0.2644
Epoch 113/200
57/57 [==============================] - 0s 853us/step - loss: 0.1659 - accuracy: 0.9404 - mae: 0.1659 - pearson_correlation: 0.6344 - euclidean_distance: 0.2634
Epoch 114/200
57/57 [==============================] - 0s 854us/step - loss: 0.1669 - accuracy: 0.9404 - mae: 0.1669 - pearson_correlation: 0.6302 - euclidean_distance: 0.2644
Epoch 115/200
57/57 [==============================] - 0s 857us/step - loss: 0.1643 - accuracy: 0.9418 - mae: 0.1643 - pearson_correlation: 0.6327 - euclidean_distance: 0.2609
Epoch 116/200
57/57 [==============================] - 0s 849us/step - loss: 0.1623 - accuracy: 0.9440 - mae: 0.1623 - pearson_correlation: 0.6400 - euclidean_distance: 0.2581
Epoch 117/200
57/57 [==============================] - 0s 852us/step - loss: 0.1622 - accuracy: 0.9440 - mae: 0.1622 - pearson_correlation: 0.6400 - euclidean_distance: 0.2576
Epoch 118/200
57/57 [==============================] - 0s 843us/step - loss: 0.1615 - accuracy: 0.9409 - mae: 0.1615 - pearson_correlation: 0.6391 - euclidean_distance: 0.2568
Epoch 119/200
57/57 [==============================] - 0s 857us/step - loss: 0.1606 - accuracy: 0.9418 - mae: 0.1606 - pearson_correlation: 0.6388 - euclidean_distance: 0.2549
Epoch 120/200
57/57 [==============================] - 0s 847us/step - loss: 0.1585 - accuracy: 0.9475 - mae: 0.1585 - pearson_correlation: 0.6413 - euclidean_distance: 0.2516
Epoch 121/200
57/57 [==============================] - 0s 849us/step - loss: 0.1587 - accuracy: 0.9444 - mae: 0.1587 - pearson_correlation: 0.6427 - euclidean_distance: 0.2521
Epoch 122/200
57/57 [==============================] - 0s 854us/step - loss: 0.1575 - accuracy: 0.9431 - mae: 0.1575 - pearson_correlation: 0.6425 - euclidean_distance: 0.2501
Epoch 123/200
57/57 [==============================] - 0s 847us/step - loss: 0.1562 - accuracy: 0.9444 - mae: 0.1562 - pearson_correlation: 0.6415 - euclidean_distance: 0.2485
Epoch 124/200
57/57 [==============================] - 0s 853us/step - loss: 0.1548 - accuracy: 0.9431 - mae: 0.1548 - pearson_correlation: 0.6458 - euclidean_distance: 0.2468
Epoch 125/200
57/57 [==============================] - 0s 858us/step - loss: 0.1559 - accuracy: 0.9435 - mae: 0.1559 - pearson_correlation: 0.6451 - euclidean_distance: 0.2476
Epoch 126/200
57/57 [==============================] - 0s 850us/step - loss: 0.1558 - accuracy: 0.9431 - mae: 0.1558 - pearson_correlation: 0.6473 - euclidean_distance: 0.2481
Epoch 127/200
57/57 [==============================] - 0s 866us/step - loss: 0.1543 - accuracy: 0.9404 - mae: 0.1543 - pearson_correlation: 0.6446 - euclidean_distance: 0.2458
Epoch 128/200
57/57 [==============================] - 0s 851us/step - loss: 0.1527 - accuracy: 0.9431 - mae: 0.1527 - pearson_correlation: 0.6515 - euclidean_distance: 0.2426
Epoch 129/200
57/57 [==============================] - 0s 851us/step - loss: 0.1516 - accuracy: 0.9431 - mae: 0.1516 - pearson_correlation: 0.6559 - euclidean_distance: 0.2414
Epoch 130/200
57/57 [==============================] - 0s 853us/step - loss: 0.1510 - accuracy: 0.9431 - mae: 0.1510 - pearson_correlation: 0.6596 - euclidean_distance: 0.2406
Epoch 131/200
57/57 [==============================] - 0s 856us/step - loss: 0.1506 - accuracy: 0.9462 - mae: 0.1506 - pearson_correlation: 0.6587 - euclidean_distance: 0.2395
Epoch 132/200
57/57 [==============================] - 0s 856us/step - loss: 0.1499 - accuracy: 0.9418 - mae: 0.1499 - pearson_correlation: 0.6563 - euclidean_distance: 0.2383
Epoch 133/200
57/57 [==============================] - 0s 852us/step - loss: 0.1498 - accuracy: 0.9466 - mae: 0.1498 - pearson_correlation: 0.6547 - euclidean_distance: 0.2393
Epoch 134/200
57/57 [==============================] - 0s 857us/step - loss: 0.1480 - accuracy: 0.9444 - mae: 0.1480 - pearson_correlation: 0.6596 - euclidean_distance: 0.2353
Epoch 135/200
57/57 [==============================] - 0s 846us/step - loss: 0.1470 - accuracy: 0.9418 - mae: 0.1470 - pearson_correlation: 0.6522 - euclidean_distance: 0.2355
Epoch 136/200
57/57 [==============================] - 0s 857us/step - loss: 0.1465 - accuracy: 0.9422 - mae: 0.1465 - pearson_correlation: 0.6601 - euclidean_distance: 0.2344
Epoch 137/200
57/57 [==============================] - 0s 842us/step - loss: 0.1462 - accuracy: 0.9422 - mae: 0.1462 - pearson_correlation: 0.6587 - euclidean_distance: 0.2338
Epoch 138/200
57/57 [==============================] - 0s 846us/step - loss: 0.1449 - accuracy: 0.9435 - mae: 0.1449 - pearson_correlation: 0.6605 - euclidean_distance: 0.2314
Epoch 139/200
57/57 [==============================] - 0s 859us/step - loss: 0.1435 - accuracy: 0.9453 - mae: 0.1435 - pearson_correlation: 0.6646 - euclidean_distance: 0.2295
Epoch 140/200
57/57 [==============================] - 0s 850us/step - loss: 0.1434 - accuracy: 0.9435 - mae: 0.1434 - pearson_correlation: 0.6604 - euclidean_distance: 0.2285
Epoch 141/200
57/57 [==============================] - 0s 843us/step - loss: 0.1433 - accuracy: 0.9471 - mae: 0.1433 - pearson_correlation: 0.6644 - euclidean_distance: 0.2293
Epoch 142/200
57/57 [==============================] - 0s 851us/step - loss: 0.1440 - accuracy: 0.9418 - mae: 0.1440 - pearson_correlation: 0.6602 - euclidean_distance: 0.2288
Epoch 143/200
57/57 [==============================] - 0s 846us/step - loss: 0.1423 - accuracy: 0.9457 - mae: 0.1423 - pearson_correlation: 0.6679 - euclidean_distance: 0.2276
Epoch 144/200
57/57 [==============================] - 0s 854us/step - loss: 0.1411 - accuracy: 0.9471 - mae: 0.1411 - pearson_correlation: 0.6678 - euclidean_distance: 0.2248
Epoch 145/200
57/57 [==============================] - 0s 855us/step - loss: 0.1394 - accuracy: 0.9440 - mae: 0.1394 - pearson_correlation: 0.6702 - euclidean_distance: 0.2229
Epoch 146/200
57/57 [==============================] - 0s 849us/step - loss: 0.1394 - accuracy: 0.9493 - mae: 0.1394 - pearson_correlation: 0.6730 - euclidean_distance: 0.2230
Epoch 147/200
57/57 [==============================] - 0s 858us/step - loss: 0.1394 - accuracy: 0.9497 - mae: 0.1394 - pearson_correlation: 0.6723 - euclidean_distance: 0.2236
Epoch 148/200
57/57 [==============================] - 0s 860us/step - loss: 0.1399 - accuracy: 0.9457 - mae: 0.1399 - pearson_correlation: 0.6709 - euclidean_distance: 0.2244
Epoch 149/200
57/57 [==============================] - 0s 855us/step - loss: 0.1389 - accuracy: 0.9440 - mae: 0.1389 - pearson_correlation: 0.6661 - euclidean_distance: 0.2228
Epoch 150/200
57/57 [==============================] - 0s 859us/step - loss: 0.1375 - accuracy: 0.9466 - mae: 0.1375 - pearson_correlation: 0.6764 - euclidean_distance: 0.2209
Epoch 151/200
57/57 [==============================] - 0s 848us/step - loss: 0.1370 - accuracy: 0.9457 - mae: 0.1370 - pearson_correlation: 0.6764 - euclidean_distance: 0.2194
Epoch 152/200
57/57 [==============================] - 0s 858us/step - loss: 0.1375 - accuracy: 0.9475 - mae: 0.1375 - pearson_correlation: 0.6747 - euclidean_distance: 0.2195
Epoch 153/200
57/57 [==============================] - 0s 851us/step - loss: 0.1355 - accuracy: 0.9457 - mae: 0.1355 - pearson_correlation: 0.6821 - euclidean_distance: 0.2173
Epoch 154/200
57/57 [==============================] - 0s 851us/step - loss: 0.1359 - accuracy: 0.9479 - mae: 0.1359 - pearson_correlation: 0.6750 - euclidean_distance: 0.2173
Epoch 155/200
57/57 [==============================] - 0s 844us/step - loss: 0.1329 - accuracy: 0.9457 - mae: 0.1329 - pearson_correlation: 0.6813 - euclidean_distance: 0.2136
Epoch 156/200
57/57 [==============================] - 0s 857us/step - loss: 0.1335 - accuracy: 0.9471 - mae: 0.1335 - pearson_correlation: 0.6815 - euclidean_distance: 0.2138
Epoch 157/200
57/57 [==============================] - 0s 856us/step - loss: 0.1343 - accuracy: 0.9466 - mae: 0.1343 - pearson_correlation: 0.6826 - euclidean_distance: 0.2152
Epoch 158/200
57/57 [==============================] - 0s 853us/step - loss: 0.1330 - accuracy: 0.9466 - mae: 0.1330 - pearson_correlation: 0.6812 - euclidean_distance: 0.2134
Epoch 159/200
57/57 [==============================] - 0s 845us/step - loss: 0.1303 - accuracy: 0.9479 - mae: 0.1303 - pearson_correlation: 0.6863 - euclidean_distance: 0.2092
Epoch 160/200
57/57 [==============================] - 0s 848us/step - loss: 0.1329 - accuracy: 0.9475 - mae: 0.1329 - pearson_correlation: 0.6843 - euclidean_distance: 0.2132
Epoch 161/200
57/57 [==============================] - 0s 841us/step - loss: 0.1323 - accuracy: 0.9466 - mae: 0.1323 - pearson_correlation: 0.6867 - euclidean_distance: 0.2121
Epoch 162/200
57/57 [==============================] - 0s 853us/step - loss: 0.1305 - accuracy: 0.9484 - mae: 0.1305 - pearson_correlation: 0.6872 - euclidean_distance: 0.2094
Epoch 163/200
57/57 [==============================] - 0s 854us/step - loss: 0.1315 - accuracy: 0.9488 - mae: 0.1315 - pearson_correlation: 0.6863 - euclidean_distance: 0.2103
Epoch 164/200
57/57 [==============================] - 0s 841us/step - loss: 0.1289 - accuracy: 0.9488 - mae: 0.1289 - pearson_correlation: 0.6901 - euclidean_distance: 0.2065
Epoch 165/200
57/57 [==============================] - 0s 856us/step - loss: 0.1304 - accuracy: 0.9475 - mae: 0.1304 - pearson_correlation: 0.6888 - euclidean_distance: 0.2095
Epoch 166/200
57/57 [==============================] - 0s 847us/step - loss: 0.1298 - accuracy: 0.9462 - mae: 0.1298 - pearson_correlation: 0.6830 - euclidean_distance: 0.2090
Epoch 167/200
57/57 [==============================] - 0s 857us/step - loss: 0.1274 - accuracy: 0.9488 - mae: 0.1274 - pearson_correlation: 0.6910 - euclidean_distance: 0.2042
Epoch 168/200
57/57 [==============================] - 0s 852us/step - loss: 0.1256 - accuracy: 0.9466 - mae: 0.1256 - pearson_correlation: 0.6962 - euclidean_distance: 0.2020
Epoch 169/200
57/57 [==============================] - 0s 853us/step - loss: 0.1265 - accuracy: 0.9484 - mae: 0.1265 - pearson_correlation: 0.6988 - euclidean_distance: 0.2034
Epoch 170/200
57/57 [==============================] - 0s 856us/step - loss: 0.1269 - accuracy: 0.9488 - mae: 0.1269 - pearson_correlation: 0.6963 - euclidean_distance: 0.2041
Epoch 171/200
57/57 [==============================] - 0s 860us/step - loss: 0.1257 - accuracy: 0.9488 - mae: 0.1257 - pearson_correlation: 0.6905 - euclidean_distance: 0.2026
Epoch 172/200
57/57 [==============================] - 0s 857us/step - loss: 0.1253 - accuracy: 0.9479 - mae: 0.1253 - pearson_correlation: 0.6962 - euclidean_distance: 0.2023
Epoch 173/200
57/57 [==============================] - 0s 843us/step - loss: 0.1243 - accuracy: 0.9475 - mae: 0.1243 - pearson_correlation: 0.6958 - euclidean_distance: 0.2001
Epoch 174/200
57/57 [==============================] - 0s 848us/step - loss: 0.1240 - accuracy: 0.9466 - mae: 0.1240 - pearson_correlation: 0.7006 - euclidean_distance: 0.2001
Epoch 175/200
57/57 [==============================] - 0s 839us/step - loss: 0.1230 - accuracy: 0.9484 - mae: 0.1230 - pearson_correlation: 0.6985 - euclidean_distance: 0.1984
Epoch 176/200
57/57 [==============================] - 0s 854us/step - loss: 0.1245 - accuracy: 0.9484 - mae: 0.1245 - pearson_correlation: 0.7001 - euclidean_distance: 0.2000
Epoch 177/200
57/57 [==============================] - 0s 853us/step - loss: 0.1223 - accuracy: 0.9515 - mae: 0.1223 - pearson_correlation: 0.7034 - euclidean_distance: 0.1970
Epoch 178/200
57/57 [==============================] - 0s 853us/step - loss: 0.1223 - accuracy: 0.9484 - mae: 0.1223 - pearson_correlation: 0.7020 - euclidean_distance: 0.1979
Epoch 179/200
57/57 [==============================] - 0s 856us/step - loss: 0.1224 - accuracy: 0.9497 - mae: 0.1224 - pearson_correlation: 0.7011 - euclidean_distance: 0.1970
Epoch 180/200
57/57 [==============================] - 0s 852us/step - loss: 0.1214 - accuracy: 0.9479 - mae: 0.1214 - pearson_correlation: 0.7042 - euclidean_distance: 0.1952
Epoch 181/200
57/57 [==============================] - 0s 864us/step - loss: 0.1199 - accuracy: 0.9497 - mae: 0.1199 - pearson_correlation: 0.7060 - euclidean_distance: 0.1929
Epoch 182/200
57/57 [==============================] - 0s 854us/step - loss: 0.1200 - accuracy: 0.9488 - mae: 0.1200 - pearson_correlation: 0.7032 - euclidean_distance: 0.1932
Epoch 183/200
57/57 [==============================] - 0s 849us/step - loss: 0.1201 - accuracy: 0.9497 - mae: 0.1201 - pearson_correlation: 0.7050 - euclidean_distance: 0.1940
Epoch 184/200
57/57 [==============================] - 0s 847us/step - loss: 0.1194 - accuracy: 0.9475 - mae: 0.1194 - pearson_correlation: 0.7037 - euclidean_distance: 0.1927
Epoch 185/200
57/57 [==============================] - 0s 857us/step - loss: 0.1180 - accuracy: 0.9502 - mae: 0.1180 - pearson_correlation: 0.7082 - euclidean_distance: 0.1907
Epoch 186/200
57/57 [==============================] - 0s 846us/step - loss: 0.1191 - accuracy: 0.9493 - mae: 0.1191 - pearson_correlation: 0.7072 - euclidean_distance: 0.1915
Epoch 187/200
57/57 [==============================] - 0s 854us/step - loss: 0.1188 - accuracy: 0.9488 - mae: 0.1188 - pearson_correlation: 0.7121 - euclidean_distance: 0.1912
Epoch 188/200
57/57 [==============================] - 0s 852us/step - loss: 0.1168 - accuracy: 0.9506 - mae: 0.1168 - pearson_correlation: 0.7142 - euclidean_distance: 0.1879
Epoch 189/200
57/57 [==============================] - 0s 849us/step - loss: 0.1193 - accuracy: 0.9502 - mae: 0.1193 - pearson_correlation: 0.7060 - euclidean_distance: 0.1926
Epoch 190/200
57/57 [==============================] - 0s 850us/step - loss: 0.1175 - accuracy: 0.9488 - mae: 0.1175 - pearson_correlation: 0.7119 - euclidean_distance: 0.1893
Epoch 191/200
57/57 [==============================] - 0s 847us/step - loss: 0.1188 - accuracy: 0.9510 - mae: 0.1188 - pearson_correlation: 0.7077 - euclidean_distance: 0.1909
Epoch 192/200
57/57 [==============================] - 0s 842us/step - loss: 0.1146 - accuracy: 0.9502 - mae: 0.1146 - pearson_correlation: 0.7169 - euclidean_distance: 0.1850
Epoch 193/200
57/57 [==============================] - 0s 859us/step - loss: 0.1152 - accuracy: 0.9493 - mae: 0.1152 - pearson_correlation: 0.7166 - euclidean_distance: 0.1861
Epoch 194/200
57/57 [==============================] - 0s 856us/step - loss: 0.1141 - accuracy: 0.9488 - mae: 0.1141 - pearson_correlation: 0.7165 - euclidean_distance: 0.1843
Epoch 195/200
57/57 [==============================] - 0s 847us/step - loss: 0.1158 - accuracy: 0.9497 - mae: 0.1158 - pearson_correlation: 0.7158 - euclidean_distance: 0.1865
Epoch 196/200
57/57 [==============================] - 0s 846us/step - loss: 0.1149 - accuracy: 0.9502 - mae: 0.1149 - pearson_correlation: 0.7180 - euclidean_distance: 0.1853
Epoch 197/200
57/57 [==============================] - 0s 845us/step - loss: 0.1140 - accuracy: 0.9493 - mae: 0.1140 - pearson_correlation: 0.7124 - euclidean_distance: 0.1843
Epoch 198/200
57/57 [==============================] - 0s 849us/step - loss: 0.1139 - accuracy: 0.9488 - mae: 0.1139 - pearson_correlation: 0.7190 - euclidean_distance: 0.1837
Epoch 199/200
57/57 [==============================] - 0s 854us/step - loss: 0.1140 - accuracy: 0.9510 - mae: 0.1140 - pearson_correlation: 0.7152 - euclidean_distance: 0.1839
Epoch 200/200
57/57 [==============================] - 0s 848us/step - loss: 0.1112 - accuracy: 0.9488 - mae: 0.1112 - pearson_correlation: 0.7252 - euclidean_distance: 0.1793
29/29 [==============================] - 0s 484us/step
Epoch 1/200
57/57 [==============================] - 1s 849us/step - loss: 0.4751 - accuracy: 0.0834 - mae: 0.4751 - pearson_correlation: -0.6381 - euclidean_distance: 0.7971
Epoch 2/200
57/57 [==============================] - 0s 837us/step - loss: 0.4718 - accuracy: 0.0851 - mae: 0.4718 - pearson_correlation: -0.6373 - euclidean_distance: 0.7922
Epoch 3/200
57/57 [==============================] - 0s 867us/step - loss: 0.4665 - accuracy: 0.0873 - mae: 0.4665 - pearson_correlation: -0.6379 - euclidean_distance: 0.7862
Epoch 4/200
57/57 [==============================] - 0s 873us/step - loss: 0.4644 - accuracy: 0.0834 - mae: 0.4644 - pearson_correlation: -0.6360 - euclidean_distance: 0.7829
Epoch 5/200
57/57 [==============================] - 0s 868us/step - loss: 0.4595 - accuracy: 0.0851 - mae: 0.4595 - pearson_correlation: -0.6396 - euclidean_distance: 0.7765
Epoch 6/200
57/57 [==============================] - 0s 862us/step - loss: 0.4545 - accuracy: 0.0856 - mae: 0.4545 - pearson_correlation: -0.6413 - euclidean_distance: 0.7705
Epoch 7/200
57/57 [==============================] - 0s 859us/step - loss: 0.4509 - accuracy: 0.0913 - mae: 0.4509 - pearson_correlation: -0.6375 - euclidean_distance: 0.7647
Epoch 8/200
57/57 [==============================] - 0s 861us/step - loss: 0.4471 - accuracy: 0.0860 - mae: 0.4471 - pearson_correlation: -0.6337 - euclidean_distance: 0.7587
Epoch 9/200
57/57 [==============================] - 0s 862us/step - loss: 0.4455 - accuracy: 0.0895 - mae: 0.4455 - pearson_correlation: -0.6327 - euclidean_distance: 0.7564
Epoch 10/200
57/57 [==============================] - 0s 866us/step - loss: 0.4399 - accuracy: 0.0944 - mae: 0.4399 - pearson_correlation: -0.6325 - euclidean_distance: 0.7474
Epoch 11/200
57/57 [==============================] - 0s 916us/step - loss: 0.4350 - accuracy: 0.0904 - mae: 0.4350 - pearson_correlation: -0.6321 - euclidean_distance: 0.7420
Epoch 12/200
57/57 [==============================] - 0s 866us/step - loss: 0.4326 - accuracy: 0.0922 - mae: 0.4326 - pearson_correlation: -0.6293 - euclidean_distance: 0.7369
Epoch 13/200
57/57 [==============================] - 0s 867us/step - loss: 0.4296 - accuracy: 0.0935 - mae: 0.4296 - pearson_correlation: -0.6326 - euclidean_distance: 0.7324
Epoch 14/200
57/57 [==============================] - 0s 859us/step - loss: 0.4249 - accuracy: 0.0970 - mae: 0.4249 - pearson_correlation: -0.6282 - euclidean_distance: 0.7259
Epoch 15/200
57/57 [==============================] - 0s 864us/step - loss: 0.4230 - accuracy: 0.0953 - mae: 0.4230 - pearson_correlation: -0.6194 - euclidean_distance: 0.7217
Epoch 16/200
57/57 [==============================] - 0s 863us/step - loss: 0.4178 - accuracy: 0.1032 - mae: 0.4178 - pearson_correlation: -0.6213 - euclidean_distance: 0.7151
Epoch 17/200
57/57 [==============================] - 0s 862us/step - loss: 0.4145 - accuracy: 0.1001 - mae: 0.4145 - pearson_correlation: -0.6196 - euclidean_distance: 0.7099
Epoch 18/200
57/57 [==============================] - 0s 862us/step - loss: 0.4105 - accuracy: 0.1067 - mae: 0.4105 - pearson_correlation: -0.6173 - euclidean_distance: 0.7038
Epoch 19/200
57/57 [==============================] - 0s 847us/step - loss: 0.4066 - accuracy: 0.1050 - mae: 0.4066 - pearson_correlation: -0.6088 - euclidean_distance: 0.6975
Epoch 20/200
57/57 [==============================] - 0s 851us/step - loss: 0.4042 - accuracy: 0.1059 - mae: 0.4042 - pearson_correlation: -0.6075 - euclidean_distance: 0.6929
Epoch 21/200
57/57 [==============================] - 0s 846us/step - loss: 0.4007 - accuracy: 0.1134 - mae: 0.4007 - pearson_correlation: -0.6035 - euclidean_distance: 0.6883
Epoch 22/200
57/57 [==============================] - 0s 848us/step - loss: 0.3975 - accuracy: 0.1151 - mae: 0.3975 - pearson_correlation: -0.5952 - euclidean_distance: 0.6831
Epoch 23/200
57/57 [==============================] - 0s 858us/step - loss: 0.3943 - accuracy: 0.1147 - mae: 0.3943 - pearson_correlation: -0.5853 - euclidean_distance: 0.6770
Epoch 24/200
57/57 [==============================] - 0s 853us/step - loss: 0.3914 - accuracy: 0.1125 - mae: 0.3914 - pearson_correlation: -0.5786 - euclidean_distance: 0.6712
Epoch 25/200
57/57 [==============================] - 0s 856us/step - loss: 0.3865 - accuracy: 0.1209 - mae: 0.3865 - pearson_correlation: -0.5861 - euclidean_distance: 0.6645
Epoch 26/200
57/57 [==============================] - 0s 846us/step - loss: 0.3831 - accuracy: 0.1288 - mae: 0.3831 - pearson_correlation: -0.5695 - euclidean_distance: 0.6592
Epoch 27/200
57/57 [==============================] - 0s 852us/step - loss: 0.3801 - accuracy: 0.1262 - mae: 0.3801 - pearson_correlation: -0.5668 - euclidean_distance: 0.6538
Epoch 28/200
57/57 [==============================] - 0s 861us/step - loss: 0.3776 - accuracy: 0.1297 - mae: 0.3776 - pearson_correlation: -0.5624 - euclidean_distance: 0.6491
Epoch 29/200
57/57 [==============================] - 0s 849us/step - loss: 0.3738 - accuracy: 0.1306 - mae: 0.3738 - pearson_correlation: -0.5534 - euclidean_distance: 0.6437
Epoch 30/200
57/57 [==============================] - 0s 858us/step - loss: 0.3707 - accuracy: 0.1367 - mae: 0.3707 - pearson_correlation: -0.5530 - euclidean_distance: 0.6378
Epoch 31/200
57/57 [==============================] - 0s 854us/step - loss: 0.3672 - accuracy: 0.1460 - mae: 0.3672 - pearson_correlation: -0.5381 - euclidean_distance: 0.6317
Epoch 32/200
57/57 [==============================] - 0s 860us/step - loss: 0.3637 - accuracy: 0.1438 - mae: 0.3637 - pearson_correlation: -0.5358 - euclidean_distance: 0.6270
Epoch 33/200
57/57 [==============================] - 0s 852us/step - loss: 0.3606 - accuracy: 0.1517 - mae: 0.3606 - pearson_correlation: -0.5230 - euclidean_distance: 0.6214
Epoch 34/200
57/57 [==============================] - 0s 857us/step - loss: 0.3600 - accuracy: 0.1601 - mae: 0.3600 - pearson_correlation: -0.5067 - euclidean_distance: 0.6170
Epoch 35/200
57/57 [==============================] - 0s 857us/step - loss: 0.3555 - accuracy: 0.1619 - mae: 0.3555 - pearson_correlation: -0.5084 - euclidean_distance: 0.6111
Epoch 36/200
57/57 [==============================] - 0s 846us/step - loss: 0.3500 - accuracy: 0.1645 - mae: 0.3500 - pearson_correlation: -0.5015 - euclidean_distance: 0.6031
Epoch 37/200
57/57 [==============================] - 0s 865us/step - loss: 0.3485 - accuracy: 0.1650 - mae: 0.3485 - pearson_correlation: -0.5002 - euclidean_distance: 0.5990
Epoch 38/200
57/57 [==============================] - 0s 866us/step - loss: 0.3442 - accuracy: 0.1703 - mae: 0.3442 - pearson_correlation: -0.4826 - euclidean_distance: 0.5925
Epoch 39/200
57/57 [==============================] - 0s 856us/step - loss: 0.3411 - accuracy: 0.1734 - mae: 0.3411 - pearson_correlation: -0.4702 - euclidean_distance: 0.5880
Epoch 40/200
57/57 [==============================] - 0s 859us/step - loss: 0.3408 - accuracy: 0.1800 - mae: 0.3408 - pearson_correlation: -0.4619 - euclidean_distance: 0.5847
Epoch 41/200
57/57 [==============================] - 0s 843us/step - loss: 0.3353 - accuracy: 0.1773 - mae: 0.3353 - pearson_correlation: -0.4595 - euclidean_distance: 0.5775
Epoch 42/200
57/57 [==============================] - 0s 858us/step - loss: 0.3341 - accuracy: 0.1835 - mae: 0.3341 - pearson_correlation: -0.4440 - euclidean_distance: 0.5738
Epoch 43/200
57/57 [==============================] - 0s 861us/step - loss: 0.3288 - accuracy: 0.1910 - mae: 0.3288 - pearson_correlation: -0.4375 - euclidean_distance: 0.5665
Epoch 44/200
57/57 [==============================] - 0s 888us/step - loss: 0.3278 - accuracy: 0.1963 - mae: 0.3278 - pearson_correlation: -0.4235 - euclidean_distance: 0.5613
Epoch 45/200
57/57 [==============================] - 0s 864us/step - loss: 0.3251 - accuracy: 0.1976 - mae: 0.3251 - pearson_correlation: -0.4172 - euclidean_distance: 0.5592
Epoch 46/200
57/57 [==============================] - 0s 858us/step - loss: 0.3237 - accuracy: 0.1985 - mae: 0.3237 - pearson_correlation: -0.4082 - euclidean_distance: 0.5540
Epoch 47/200
57/57 [==============================] - 0s 853us/step - loss: 0.3196 - accuracy: 0.2064 - mae: 0.3196 - pearson_correlation: -0.4011 - euclidean_distance: 0.5485
Epoch 48/200
57/57 [==============================] - 0s 862us/step - loss: 0.3166 - accuracy: 0.2064 - mae: 0.3166 - pearson_correlation: -0.3880 - euclidean_distance: 0.5432
Epoch 49/200
57/57 [==============================] - 0s 847us/step - loss: 0.3139 - accuracy: 0.2148 - mae: 0.3139 - pearson_correlation: -0.3852 - euclidean_distance: 0.5379
Epoch 50/200
57/57 [==============================] - 0s 858us/step - loss: 0.3128 - accuracy: 0.2232 - mae: 0.3128 - pearson_correlation: -0.3753 - euclidean_distance: 0.5366
Epoch 51/200
57/57 [==============================] - 0s 867us/step - loss: 0.3103 - accuracy: 0.2223 - mae: 0.3103 - pearson_correlation: -0.3665 - euclidean_distance: 0.5321
Epoch 52/200
57/57 [==============================] - 0s 857us/step - loss: 0.3070 - accuracy: 0.2228 - mae: 0.3070 - pearson_correlation: -0.3566 - euclidean_distance: 0.5268
Epoch 53/200
57/57 [==============================] - 0s 854us/step - loss: 0.3058 - accuracy: 0.2369 - mae: 0.3058 - pearson_correlation: -0.3475 - euclidean_distance: 0.5227
Epoch 54/200
57/57 [==============================] - 0s 856us/step - loss: 0.3041 - accuracy: 0.2329 - mae: 0.3041 - pearson_correlation: -0.3371 - euclidean_distance: 0.5195
Epoch 55/200
57/57 [==============================] - 0s 853us/step - loss: 0.3013 - accuracy: 0.2404 - mae: 0.3013 - pearson_correlation: -0.3280 - euclidean_distance: 0.5142
Epoch 56/200
57/57 [==============================] - 0s 852us/step - loss: 0.2987 - accuracy: 0.2386 - mae: 0.2987 - pearson_correlation: -0.3199 - euclidean_distance: 0.5105
Epoch 57/200
57/57 [==============================] - 0s 845us/step - loss: 0.2958 - accuracy: 0.2453 - mae: 0.2958 - pearson_correlation: -0.3078 - euclidean_distance: 0.5058
Epoch 58/200
57/57 [==============================] - 0s 849us/step - loss: 0.2938 - accuracy: 0.2536 - mae: 0.2938 - pearson_correlation: -0.2926 - euclidean_distance: 0.5017
Epoch 59/200
57/57 [==============================] - 0s 861us/step - loss: 0.2924 - accuracy: 0.2558 - mae: 0.2924 - pearson_correlation: -0.2880 - euclidean_distance: 0.4984
Epoch 60/200
57/57 [==============================] - 0s 855us/step - loss: 0.2916 - accuracy: 0.2567 - mae: 0.2916 - pearson_correlation: -0.2838 - euclidean_distance: 0.4965
Epoch 61/200
57/57 [==============================] - 0s 853us/step - loss: 0.2878 - accuracy: 0.2607 - mae: 0.2878 - pearson_correlation: -0.2741 - euclidean_distance: 0.4909
Epoch 62/200
57/57 [==============================] - 0s 855us/step - loss: 0.2849 - accuracy: 0.2607 - mae: 0.2849 - pearson_correlation: -0.2625 - euclidean_distance: 0.4869
Epoch 63/200
57/57 [==============================] - 0s 843us/step - loss: 0.2833 - accuracy: 0.2669 - mae: 0.2833 - pearson_correlation: -0.2548 - euclidean_distance: 0.4816
Epoch 64/200
57/57 [==============================] - 0s 859us/step - loss: 0.2824 - accuracy: 0.2722 - mae: 0.2824 - pearson_correlation: -0.2487 - euclidean_distance: 0.4798
Epoch 65/200
57/57 [==============================] - 0s 863us/step - loss: 0.2800 - accuracy: 0.2775 - mae: 0.2800 - pearson_correlation: -0.2401 - euclidean_distance: 0.4764
Epoch 66/200
57/57 [==============================] - 0s 847us/step - loss: 0.2768 - accuracy: 0.2810 - mae: 0.2768 - pearson_correlation: -0.2333 - euclidean_distance: 0.4712
Epoch 67/200
57/57 [==============================] - 0s 862us/step - loss: 0.2744 - accuracy: 0.2797 - mae: 0.2744 - pearson_correlation: -0.2232 - euclidean_distance: 0.4671
Epoch 68/200
57/57 [==============================] - 0s 844us/step - loss: 0.2725 - accuracy: 0.2880 - mae: 0.2725 - pearson_correlation: -0.2108 - euclidean_distance: 0.4642
Epoch 69/200
57/57 [==============================] - 0s 848us/step - loss: 0.2710 - accuracy: 0.2885 - mae: 0.2710 - pearson_correlation: -0.2108 - euclidean_distance: 0.4608
Epoch 70/200
57/57 [==============================] - 0s 846us/step - loss: 0.2704 - accuracy: 0.2991 - mae: 0.2704 - pearson_correlation: -0.1930 - euclidean_distance: 0.4590
Epoch 71/200
57/57 [==============================] - 0s 850us/step - loss: 0.2685 - accuracy: 0.2960 - mae: 0.2685 - pearson_correlation: -0.1866 - euclidean_distance: 0.4562
Epoch 72/200
57/57 [==============================] - 0s 848us/step - loss: 0.2666 - accuracy: 0.3066 - mae: 0.2666 - pearson_correlation: -0.1850 - euclidean_distance: 0.4515
Epoch 73/200
57/57 [==============================] - 0s 859us/step - loss: 0.2624 - accuracy: 0.3026 - mae: 0.2624 - pearson_correlation: -0.1820 - euclidean_distance: 0.4461
Epoch 74/200
57/57 [==============================] - 0s 847us/step - loss: 0.2637 - accuracy: 0.3083 - mae: 0.2637 - pearson_correlation: -0.1643 - euclidean_distance: 0.4470
Epoch 75/200
57/57 [==============================] - 0s 857us/step - loss: 0.2598 - accuracy: 0.3189 - mae: 0.2598 - pearson_correlation: -0.1591 - euclidean_distance: 0.4404
Epoch 76/200
57/57 [==============================] - 0s 853us/step - loss: 0.2578 - accuracy: 0.3163 - mae: 0.2578 - pearson_correlation: -0.1481 - euclidean_distance: 0.4387
Epoch 77/200
57/57 [==============================] - 0s 861us/step - loss: 0.2560 - accuracy: 0.3202 - mae: 0.2560 - pearson_correlation: -0.1379 - euclidean_distance: 0.4343
Epoch 78/200
57/57 [==============================] - 0s 854us/step - loss: 0.2553 - accuracy: 0.3202 - mae: 0.2553 - pearson_correlation: -0.1381 - euclidean_distance: 0.4329
Epoch 79/200
57/57 [==============================] - 0s 849us/step - loss: 0.2510 - accuracy: 0.3286 - mae: 0.2510 - pearson_correlation: -0.1252 - euclidean_distance: 0.4261
Epoch 80/200
57/57 [==============================] - 0s 845us/step - loss: 0.2510 - accuracy: 0.3326 - mae: 0.2510 - pearson_correlation: -0.1161 - euclidean_distance: 0.4255
Epoch 81/200
57/57 [==============================] - 0s 851us/step - loss: 0.2526 - accuracy: 0.3295 - mae: 0.2526 - pearson_correlation: -0.1078 - euclidean_distance: 0.4254
Epoch 82/200
57/57 [==============================] - 0s 847us/step - loss: 0.2483 - accuracy: 0.3282 - mae: 0.2483 - pearson_correlation: -0.1033 - euclidean_distance: 0.4197
Epoch 83/200
57/57 [==============================] - 0s 851us/step - loss: 0.2468 - accuracy: 0.3388 - mae: 0.2468 - pearson_correlation: -0.1020 - euclidean_distance: 0.4177
Epoch 84/200
57/57 [==============================] - 0s 852us/step - loss: 0.2441 - accuracy: 0.3463 - mae: 0.2441 - pearson_correlation: -0.0827 - euclidean_distance: 0.4141
Epoch 85/200
57/57 [==============================] - 0s 866us/step - loss: 0.2427 - accuracy: 0.3467 - mae: 0.2427 - pearson_correlation: -0.0786 - euclidean_distance: 0.4107
Epoch 86/200
57/57 [==============================] - 0s 849us/step - loss: 0.2413 - accuracy: 0.3511 - mae: 0.2413 - pearson_correlation: -0.0682 - euclidean_distance: 0.4079
Epoch 87/200
57/57 [==============================] - 0s 938us/step - loss: 0.2382 - accuracy: 0.3560 - mae: 0.2382 - pearson_correlation: -0.0618 - euclidean_distance: 0.4029
Epoch 88/200
57/57 [==============================] - 0s 872us/step - loss: 0.2370 - accuracy: 0.3635 - mae: 0.2370 - pearson_correlation: -0.0587 - euclidean_distance: 0.3997
Epoch 89/200
57/57 [==============================] - 0s 854us/step - loss: 0.2368 - accuracy: 0.3604 - mae: 0.2368 - pearson_correlation: -0.0516 - euclidean_distance: 0.4001
Epoch 90/200
57/57 [==============================] - 0s 860us/step - loss: 0.2335 - accuracy: 0.3679 - mae: 0.2335 - pearson_correlation: -0.0391 - euclidean_distance: 0.3951
Epoch 91/200
57/57 [==============================] - 0s 851us/step - loss: 0.2336 - accuracy: 0.3688 - mae: 0.2336 - pearson_correlation: -0.0402 - euclidean_distance: 0.3943
Epoch 92/200
57/57 [==============================] - 0s 858us/step - loss: 0.2308 - accuracy: 0.3666 - mae: 0.2308 - pearson_correlation: -0.0359 - euclidean_distance: 0.3904
Epoch 93/200
57/57 [==============================] - 0s 855us/step - loss: 0.2311 - accuracy: 0.3794 - mae: 0.2311 - pearson_correlation: -0.0270 - euclidean_distance: 0.3904
Epoch 94/200
57/57 [==============================] - 0s 857us/step - loss: 0.2279 - accuracy: 0.3816 - mae: 0.2279 - pearson_correlation: -0.0176 - euclidean_distance: 0.3843
Epoch 95/200
57/57 [==============================] - 0s 857us/step - loss: 0.2305 - accuracy: 0.3899 - mae: 0.2305 - pearson_correlation: 0.0014 - euclidean_distance: 0.3882
Epoch 96/200
57/57 [==============================] - 0s 848us/step - loss: 0.2254 - accuracy: 0.3846 - mae: 0.2254 - pearson_correlation: -0.0045 - euclidean_distance: 0.3804
Epoch 97/200
57/57 [==============================] - 0s 851us/step - loss: 0.2230 - accuracy: 0.3935 - mae: 0.2230 - pearson_correlation: 0.0063 - euclidean_distance: 0.3761
Epoch 98/200
57/57 [==============================] - 0s 853us/step - loss: 0.2259 - accuracy: 0.3961 - mae: 0.2259 - pearson_correlation: 0.0114 - euclidean_distance: 0.3801
Epoch 99/200
57/57 [==============================] - 0s 843us/step - loss: 0.2213 - accuracy: 0.4063 - mae: 0.2213 - pearson_correlation: 0.0190 - euclidean_distance: 0.3724
Epoch 100/200
57/57 [==============================] - 0s 855us/step - loss: 0.2197 - accuracy: 0.4041 - mae: 0.2197 - pearson_correlation: 0.0309 - euclidean_distance: 0.3707
Epoch 101/200
57/57 [==============================] - 0s 862us/step - loss: 0.2188 - accuracy: 0.4063 - mae: 0.2188 - pearson_correlation: 0.0328 - euclidean_distance: 0.3688
Epoch 102/200
57/57 [==============================] - 0s 861us/step - loss: 0.2193 - accuracy: 0.4204 - mae: 0.2193 - pearson_correlation: 0.0376 - euclidean_distance: 0.3688
Epoch 103/200
57/57 [==============================] - 0s 850us/step - loss: 0.2146 - accuracy: 0.4120 - mae: 0.2146 - pearson_correlation: 0.0548 - euclidean_distance: 0.3617
Epoch 104/200
57/57 [==============================] - 0s 851us/step - loss: 0.2147 - accuracy: 0.4195 - mae: 0.2147 - pearson_correlation: 0.0579 - euclidean_distance: 0.3615
Epoch 105/200
57/57 [==============================] - 0s 851us/step - loss: 0.2136 - accuracy: 0.4270 - mae: 0.2136 - pearson_correlation: 0.0668 - euclidean_distance: 0.3595
Epoch 106/200
57/57 [==============================] - 0s 853us/step - loss: 0.2123 - accuracy: 0.4301 - mae: 0.2123 - pearson_correlation: 0.0631 - euclidean_distance: 0.3577
Epoch 107/200
57/57 [==============================] - 0s 858us/step - loss: 0.2102 - accuracy: 0.4393 - mae: 0.2102 - pearson_correlation: 0.0765 - euclidean_distance: 0.3539
Epoch 108/200
57/57 [==============================] - 0s 840us/step - loss: 0.2080 - accuracy: 0.4438 - mae: 0.2080 - pearson_correlation: 0.0919 - euclidean_distance: 0.3497
Epoch 109/200
57/57 [==============================] - 0s 848us/step - loss: 0.2074 - accuracy: 0.4336 - mae: 0.2074 - pearson_correlation: 0.0829 - euclidean_distance: 0.3492
Epoch 110/200
57/57 [==============================] - 0s 850us/step - loss: 0.2080 - accuracy: 0.4429 - mae: 0.2080 - pearson_correlation: 0.0982 - euclidean_distance: 0.3494
Epoch 111/200
57/57 [==============================] - 0s 857us/step - loss: 0.2028 - accuracy: 0.4508 - mae: 0.2028 - pearson_correlation: 0.1058 - euclidean_distance: 0.3424
Epoch 112/200
57/57 [==============================] - 0s 848us/step - loss: 0.2044 - accuracy: 0.4579 - mae: 0.2044 - pearson_correlation: 0.1071 - euclidean_distance: 0.3428
Epoch 113/200
57/57 [==============================] - 0s 845us/step - loss: 0.2055 - accuracy: 0.4561 - mae: 0.2055 - pearson_correlation: 0.1185 - euclidean_distance: 0.3442
Epoch 114/200
57/57 [==============================] - 0s 864us/step - loss: 0.2018 - accuracy: 0.4596 - mae: 0.2018 - pearson_correlation: 0.1233 - euclidean_distance: 0.3386
Epoch 115/200
57/57 [==============================] - 0s 848us/step - loss: 0.2010 - accuracy: 0.4676 - mae: 0.2010 - pearson_correlation: 0.1306 - euclidean_distance: 0.3380
Epoch 116/200
57/57 [==============================] - 0s 846us/step - loss: 0.2005 - accuracy: 0.4636 - mae: 0.2005 - pearson_correlation: 0.1371 - euclidean_distance: 0.3359
Epoch 117/200
57/57 [==============================] - 0s 854us/step - loss: 0.1995 - accuracy: 0.4676 - mae: 0.1995 - pearson_correlation: 0.1408 - euclidean_distance: 0.3347
Epoch 118/200
57/57 [==============================] - 0s 853us/step - loss: 0.1989 - accuracy: 0.4755 - mae: 0.1989 - pearson_correlation: 0.1423 - euclidean_distance: 0.3338
Epoch 119/200
57/57 [==============================] - 0s 859us/step - loss: 0.1978 - accuracy: 0.4795 - mae: 0.1978 - pearson_correlation: 0.1534 - euclidean_distance: 0.3314
Epoch 120/200
57/57 [==============================] - 0s 859us/step - loss: 0.1950 - accuracy: 0.4839 - mae: 0.1950 - pearson_correlation: 0.1651 - euclidean_distance: 0.3278
Epoch 121/200
57/57 [==============================] - 0s 862us/step - loss: 0.1927 - accuracy: 0.4896 - mae: 0.1927 - pearson_correlation: 0.1655 - euclidean_distance: 0.3244
Epoch 122/200
57/57 [==============================] - 0s 855us/step - loss: 0.1934 - accuracy: 0.4945 - mae: 0.1934 - pearson_correlation: 0.1774 - euclidean_distance: 0.3247
Epoch 123/200
57/57 [==============================] - 0s 855us/step - loss: 0.1924 - accuracy: 0.4993 - mae: 0.1924 - pearson_correlation: 0.1857 - euclidean_distance: 0.3217
Epoch 124/200
57/57 [==============================] - 0s 846us/step - loss: 0.1887 - accuracy: 0.4985 - mae: 0.1887 - pearson_correlation: 0.1969 - euclidean_distance: 0.3165
Epoch 125/200
57/57 [==============================] - 0s 851us/step - loss: 0.1935 - accuracy: 0.5024 - mae: 0.1935 - pearson_correlation: 0.1885 - euclidean_distance: 0.3225
Epoch 126/200
57/57 [==============================] - 0s 856us/step - loss: 0.1893 - accuracy: 0.5108 - mae: 0.1893 - pearson_correlation: 0.1999 - euclidean_distance: 0.3178
Epoch 127/200
57/57 [==============================] - 0s 863us/step - loss: 0.1893 - accuracy: 0.5068 - mae: 0.1893 - pearson_correlation: 0.2048 - euclidean_distance: 0.3158
Epoch 128/200
57/57 [==============================] - 0s 856us/step - loss: 0.1865 - accuracy: 0.5139 - mae: 0.1865 - pearson_correlation: 0.2106 - euclidean_distance: 0.3123
Epoch 129/200
57/57 [==============================] - 0s 854us/step - loss: 0.1858 - accuracy: 0.5174 - mae: 0.1858 - pearson_correlation: 0.2161 - euclidean_distance: 0.3117
Epoch 130/200
57/57 [==============================] - 0s 854us/step - loss: 0.1850 - accuracy: 0.5254 - mae: 0.1850 - pearson_correlation: 0.2240 - euclidean_distance: 0.3094
Epoch 131/200
57/57 [==============================] - 0s 847us/step - loss: 0.1829 - accuracy: 0.5289 - mae: 0.1829 - pearson_correlation: 0.2369 - euclidean_distance: 0.3063
Epoch 132/200
57/57 [==============================] - 0s 1ms/step - loss: 0.1835 - accuracy: 0.5333 - mae: 0.1835 - pearson_correlation: 0.2337 - euclidean_distance: 0.3059
Epoch 133/200
57/57 [==============================] - 0s 919us/step - loss: 0.1807 - accuracy: 0.5390 - mae: 0.1807 - pearson_correlation: 0.2494 - euclidean_distance: 0.3022
Epoch 134/200
57/57 [==============================] - 0s 856us/step - loss: 0.1809 - accuracy: 0.5342 - mae: 0.1809 - pearson_correlation: 0.2520 - euclidean_distance: 0.3011
Epoch 135/200
57/57 [==============================] - 0s 860us/step - loss: 0.1814 - accuracy: 0.5479 - mae: 0.1814 - pearson_correlation: 0.2490 - euclidean_distance: 0.3027
Epoch 136/200
57/57 [==============================] - 0s 951us/step - loss: 0.1812 - accuracy: 0.5536 - mae: 0.1812 - pearson_correlation: 0.2619 - euclidean_distance: 0.3024
Epoch 137/200
57/57 [==============================] - 0s 815us/step - loss: 0.1808 - accuracy: 0.5540 - mae: 0.1808 - pearson_correlation: 0.2579 - euclidean_distance: 0.3014
Epoch 138/200
57/57 [==============================] - 0s 926us/step - loss: 0.1769 - accuracy: 0.5589 - mae: 0.1769 - pearson_correlation: 0.2683 - euclidean_distance: 0.2953
Epoch 139/200
57/57 [==============================] - 0s 823us/step - loss: 0.1775 - accuracy: 0.5712 - mae: 0.1775 - pearson_correlation: 0.2714 - euclidean_distance: 0.2955
Epoch 140/200
57/57 [==============================] - 0s 862us/step - loss: 0.1770 - accuracy: 0.5690 - mae: 0.1770 - pearson_correlation: 0.2775 - euclidean_distance: 0.2957
Epoch 141/200
57/57 [==============================] - 0s 853us/step - loss: 0.1746 - accuracy: 0.5708 - mae: 0.1746 - pearson_correlation: 0.2859 - euclidean_distance: 0.2914
Epoch 142/200
57/57 [==============================] - 0s 864us/step - loss: 0.1759 - accuracy: 0.5809 - mae: 0.1759 - pearson_correlation: 0.2864 - euclidean_distance: 0.2926
Epoch 143/200
57/57 [==============================] - 0s 851us/step - loss: 0.1747 - accuracy: 0.5805 - mae: 0.1747 - pearson_correlation: 0.3007 - euclidean_distance: 0.2906
Epoch 144/200
57/57 [==============================] - 0s 838us/step - loss: 0.1721 - accuracy: 0.5880 - mae: 0.1721 - pearson_correlation: 0.3065 - euclidean_distance: 0.2862
Epoch 145/200
57/57 [==============================] - 0s 895us/step - loss: 0.1712 - accuracy: 0.5968 - mae: 0.1712 - pearson_correlation: 0.3119 - euclidean_distance: 0.2861
Epoch 146/200
57/57 [==============================] - 0s 970us/step - loss: 0.1706 - accuracy: 0.6008 - mae: 0.1706 - pearson_correlation: 0.3107 - euclidean_distance: 0.2837
Epoch 147/200
57/57 [==============================] - 0s 964us/step - loss: 0.1716 - accuracy: 0.6123 - mae: 0.1716 - pearson_correlation: 0.3128 - euclidean_distance: 0.2851
Epoch 148/200
57/57 [==============================] - 0s 965us/step - loss: 0.1685 - accuracy: 0.6118 - mae: 0.1685 - pearson_correlation: 0.3167 - euclidean_distance: 0.2810
Epoch 149/200
57/57 [==============================] - 0s 963us/step - loss: 0.1701 - accuracy: 0.6145 - mae: 0.1701 - pearson_correlation: 0.3262 - euclidean_distance: 0.2823
Epoch 150/200
57/57 [==============================] - 0s 1ms/step - loss: 0.1685 - accuracy: 0.6268 - mae: 0.1685 - pearson_correlation: 0.3319 - euclidean_distance: 0.2797
Epoch 151/200
57/57 [==============================] - 0s 1ms/step - loss: 0.1680 - accuracy: 0.6277 - mae: 0.1680 - pearson_correlation: 0.3285 - euclidean_distance: 0.2794
Epoch 152/200
57/57 [==============================] - 0s 1ms/step - loss: 0.1675 - accuracy: 0.6326 - mae: 0.1675 - pearson_correlation: 0.3305 - euclidean_distance: 0.2786
Epoch 153/200
57/57 [==============================] - 0s 1ms/step - loss: 0.1633 - accuracy: 0.6383 - mae: 0.1633 - pearson_correlation: 0.3522 - euclidean_distance: 0.2714
Epoch 154/200
57/57 [==============================] - 0s 1ms/step - loss: 0.1655 - accuracy: 0.6374 - mae: 0.1655 - pearson_correlation: 0.3450 - euclidean_distance: 0.2761
Epoch 155/200
57/57 [==============================] - 0s 948us/step - loss: 0.1644 - accuracy: 0.6502 - mae: 0.1644 - pearson_correlation: 0.3604 - euclidean_distance: 0.2724
Epoch 156/200
57/57 [==============================] - 0s 870us/step - loss: 0.1632 - accuracy: 0.6533 - mae: 0.1632 - pearson_correlation: 0.3600 - euclidean_distance: 0.2713
Epoch 157/200
57/57 [==============================] - 0s 863us/step - loss: 0.1647 - accuracy: 0.6652 - mae: 0.1647 - pearson_correlation: 0.3589 - euclidean_distance: 0.2728
Epoch 158/200
57/57 [==============================] - 0s 839us/step - loss: 0.1628 - accuracy: 0.6709 - mae: 0.1628 - pearson_correlation: 0.3707 - euclidean_distance: 0.2701
Epoch 159/200
57/57 [==============================] - 0s 855us/step - loss: 0.1618 - accuracy: 0.6762 - mae: 0.1618 - pearson_correlation: 0.3708 - euclidean_distance: 0.2686
Epoch 160/200
57/57 [==============================] - 0s 866us/step - loss: 0.1590 - accuracy: 0.6842 - mae: 0.1590 - pearson_correlation: 0.3870 - euclidean_distance: 0.2637
Epoch 161/200
57/57 [==============================] - 0s 853us/step - loss: 0.1580 - accuracy: 0.6850 - mae: 0.1580 - pearson_correlation: 0.3797 - euclidean_distance: 0.2619
Epoch 162/200
57/57 [==============================] - 0s 859us/step - loss: 0.1589 - accuracy: 0.6948 - mae: 0.1589 - pearson_correlation: 0.3866 - euclidean_distance: 0.2635
Epoch 163/200
57/57 [==============================] - 0s 848us/step - loss: 0.1569 - accuracy: 0.7111 - mae: 0.1569 - pearson_correlation: 0.3961 - euclidean_distance: 0.2607
Epoch 164/200
57/57 [==============================] - 0s 853us/step - loss: 0.1566 - accuracy: 0.7234 - mae: 0.1566 - pearson_correlation: 0.4038 - euclidean_distance: 0.2595
Epoch 165/200
57/57 [==============================] - 0s 833us/step - loss: 0.1555 - accuracy: 0.7309 - mae: 0.1555 - pearson_correlation: 0.4017 - euclidean_distance: 0.2576
Epoch 166/200
57/57 [==============================] - 0s 847us/step - loss: 0.1571 - accuracy: 0.7384 - mae: 0.1571 - pearson_correlation: 0.4036 - euclidean_distance: 0.2599
Epoch 167/200
57/57 [==============================] - 0s 853us/step - loss: 0.1544 - accuracy: 0.7481 - mae: 0.1544 - pearson_correlation: 0.4100 - euclidean_distance: 0.2564
Epoch 168/200
57/57 [==============================] - 0s 851us/step - loss: 0.1558 - accuracy: 0.7494 - mae: 0.1558 - pearson_correlation: 0.4102 - euclidean_distance: 0.2570
Epoch 169/200
57/57 [==============================] - 0s 858us/step - loss: 0.1532 - accuracy: 0.7618 - mae: 0.1532 - pearson_correlation: 0.4252 - euclidean_distance: 0.2545
Epoch 170/200
57/57 [==============================] - 0s 853us/step - loss: 0.1540 - accuracy: 0.7706 - mae: 0.1540 - pearson_correlation: 0.4238 - euclidean_distance: 0.2546
Epoch 171/200
57/57 [==============================] - 0s 851us/step - loss: 0.1519 - accuracy: 0.7786 - mae: 0.1519 - pearson_correlation: 0.4341 - euclidean_distance: 0.2525
Epoch 172/200
57/57 [==============================] - 0s 859us/step - loss: 0.1505 - accuracy: 0.7839 - mae: 0.1505 - pearson_correlation: 0.4344 - euclidean_distance: 0.2497
Epoch 173/200
57/57 [==============================] - 0s 850us/step - loss: 0.1511 - accuracy: 0.7922 - mae: 0.1511 - pearson_correlation: 0.4359 - euclidean_distance: 0.2499
Epoch 174/200
57/57 [==============================] - 0s 855us/step - loss: 0.1489 - accuracy: 0.8072 - mae: 0.1489 - pearson_correlation: 0.4447 - euclidean_distance: 0.2469
Epoch 175/200
57/57 [==============================] - 0s 864us/step - loss: 0.1505 - accuracy: 0.7993 - mae: 0.1505 - pearson_correlation: 0.4411 - euclidean_distance: 0.2493
Epoch 176/200
57/57 [==============================] - 0s 854us/step - loss: 0.1487 - accuracy: 0.8205 - mae: 0.1487 - pearson_correlation: 0.4482 - euclidean_distance: 0.2462
Epoch 177/200
57/57 [==============================] - 0s 856us/step - loss: 0.1487 - accuracy: 0.8205 - mae: 0.1487 - pearson_correlation: 0.4465 - euclidean_distance: 0.2459
Epoch 178/200
57/57 [==============================] - 0s 861us/step - loss: 0.1459 - accuracy: 0.8262 - mae: 0.1459 - pearson_correlation: 0.4633 - euclidean_distance: 0.2405
Epoch 179/200
57/57 [==============================] - 0s 843us/step - loss: 0.1443 - accuracy: 0.8381 - mae: 0.1443 - pearson_correlation: 0.4709 - euclidean_distance: 0.2389
Epoch 180/200
57/57 [==============================] - 0s 851us/step - loss: 0.1469 - accuracy: 0.8421 - mae: 0.1469 - pearson_correlation: 0.4678 - euclidean_distance: 0.2424
Epoch 181/200
57/57 [==============================] - 0s 854us/step - loss: 0.1444 - accuracy: 0.8518 - mae: 0.1444 - pearson_correlation: 0.4725 - euclidean_distance: 0.2385
Epoch 182/200
57/57 [==============================] - 0s 853us/step - loss: 0.1436 - accuracy: 0.8531 - mae: 0.1436 - pearson_correlation: 0.4778 - euclidean_distance: 0.2372
Epoch 183/200
57/57 [==============================] - 0s 856us/step - loss: 0.1450 - accuracy: 0.8602 - mae: 0.1450 - pearson_correlation: 0.4754 - euclidean_distance: 0.2393
Epoch 184/200
57/57 [==============================] - 0s 862us/step - loss: 0.1435 - accuracy: 0.8655 - mae: 0.1435 - pearson_correlation: 0.4815 - euclidean_distance: 0.2376
Epoch 185/200
57/57 [==============================] - 0s 856us/step - loss: 0.1422 - accuracy: 0.8769 - mae: 0.1422 - pearson_correlation: 0.4857 - euclidean_distance: 0.2347
Epoch 186/200
57/57 [==============================] - 0s 852us/step - loss: 0.1435 - accuracy: 0.8769 - mae: 0.1435 - pearson_correlation: 0.4860 - euclidean_distance: 0.2369
Epoch 187/200
57/57 [==============================] - 0s 856us/step - loss: 0.1411 - accuracy: 0.8805 - mae: 0.1411 - pearson_correlation: 0.4953 - euclidean_distance: 0.2326
Epoch 188/200
57/57 [==============================] - 0s 850us/step - loss: 0.1402 - accuracy: 0.8840 - mae: 0.1402 - pearson_correlation: 0.4897 - euclidean_distance: 0.2322
Epoch 189/200
57/57 [==============================] - 0s 851us/step - loss: 0.1381 - accuracy: 0.8888 - mae: 0.1381 - pearson_correlation: 0.5088 - euclidean_distance: 0.2274
Epoch 190/200
57/57 [==============================] - 0s 847us/step - loss: 0.1385 - accuracy: 0.8919 - mae: 0.1385 - pearson_correlation: 0.5103 - euclidean_distance: 0.2284
Epoch 191/200
57/57 [==============================] - 0s 853us/step - loss: 0.1406 - accuracy: 0.8928 - mae: 0.1406 - pearson_correlation: 0.5010 - euclidean_distance: 0.2310
Epoch 192/200
57/57 [==============================] - 0s 863us/step - loss: 0.1369 - accuracy: 0.9003 - mae: 0.1369 - pearson_correlation: 0.5140 - euclidean_distance: 0.2256
Epoch 193/200
57/57 [==============================] - 0s 849us/step - loss: 0.1365 - accuracy: 0.9060 - mae: 0.1365 - pearson_correlation: 0.5218 - euclidean_distance: 0.2248
Epoch 194/200
57/57 [==============================] - 0s 858us/step - loss: 0.1360 - accuracy: 0.9087 - mae: 0.1360 - pearson_correlation: 0.5248 - euclidean_distance: 0.2241
Epoch 195/200
57/57 [==============================] - 0s 848us/step - loss: 0.1350 - accuracy: 0.9144 - mae: 0.1350 - pearson_correlation: 0.5302 - euclidean_distance: 0.2232
Epoch 196/200
57/57 [==============================] - 0s 856us/step - loss: 0.1385 - accuracy: 0.9153 - mae: 0.1385 - pearson_correlation: 0.5196 - euclidean_distance: 0.2276
Epoch 197/200
57/57 [==============================] - 0s 851us/step - loss: 0.1329 - accuracy: 0.9144 - mae: 0.1329 - pearson_correlation: 0.5369 - euclidean_distance: 0.2195
Epoch 198/200
57/57 [==============================] - 0s 845us/step - loss: 0.1331 - accuracy: 0.9219 - mae: 0.1331 - pearson_correlation: 0.5382 - euclidean_distance: 0.2193
Epoch 199/200
57/57 [==============================] - 0s 849us/step - loss: 0.1345 - accuracy: 0.9255 - mae: 0.1345 - pearson_correlation: 0.5317 - euclidean_distance: 0.2213
Epoch 200/200
57/57 [==============================] - 0s 854us/step - loss: 0.1330 - accuracy: 0.9272 - mae: 0.1330 - pearson_correlation: 0.5398 - euclidean_distance: 0.2186
29/29 [==============================] - 0s 488us/step
Epoch 1/200
57/57 [==============================] - 1s 870us/step - loss: 0.4170 - accuracy: 0.7200 - mae: 0.4170 - pearson_correlation: 0.3269 - euclidean_distance: 0.6423
Epoch 2/200
57/57 [==============================] - 0s 847us/step - loss: 0.4136 - accuracy: 0.7262 - mae: 0.4136 - pearson_correlation: 0.3331 - euclidean_distance: 0.6369
Epoch 3/200
57/57 [==============================] - 0s 847us/step - loss: 0.4101 - accuracy: 0.7257 - mae: 0.4101 - pearson_correlation: 0.3398 - euclidean_distance: 0.6325
Epoch 4/200
57/57 [==============================] - 0s 854us/step - loss: 0.4059 - accuracy: 0.7160 - mae: 0.4059 - pearson_correlation: 0.3350 - euclidean_distance: 0.6264
Epoch 5/200
57/57 [==============================] - 0s 862us/step - loss: 0.4010 - accuracy: 0.7266 - mae: 0.4010 - pearson_correlation: 0.3387 - euclidean_distance: 0.6186
Epoch 6/200
57/57 [==============================] - 0s 851us/step - loss: 0.3966 - accuracy: 0.7240 - mae: 0.3966 - pearson_correlation: 0.3347 - euclidean_distance: 0.6133
Epoch 7/200
57/57 [==============================] - 0s 846us/step - loss: 0.3948 - accuracy: 0.7297 - mae: 0.3948 - pearson_correlation: 0.3374 - euclidean_distance: 0.6102
Epoch 8/200
57/57 [==============================] - 0s 855us/step - loss: 0.3895 - accuracy: 0.7354 - mae: 0.3895 - pearson_correlation: 0.3420 - euclidean_distance: 0.6015
Epoch 9/200
57/57 [==============================] - 0s 843us/step - loss: 0.3837 - accuracy: 0.7266 - mae: 0.3837 - pearson_correlation: 0.3489 - euclidean_distance: 0.5942
Epoch 10/200
57/57 [==============================] - 0s 859us/step - loss: 0.3817 - accuracy: 0.7271 - mae: 0.3817 - pearson_correlation: 0.3421 - euclidean_distance: 0.5902
Epoch 11/200
57/57 [==============================] - 0s 844us/step - loss: 0.3762 - accuracy: 0.7354 - mae: 0.3762 - pearson_correlation: 0.3457 - euclidean_distance: 0.5823
Epoch 12/200
57/57 [==============================] - 0s 847us/step - loss: 0.3724 - accuracy: 0.7324 - mae: 0.3724 - pearson_correlation: 0.3501 - euclidean_distance: 0.5766
Epoch 13/200
57/57 [==============================] - 0s 845us/step - loss: 0.3683 - accuracy: 0.7403 - mae: 0.3683 - pearson_correlation: 0.3508 - euclidean_distance: 0.5698
Epoch 14/200
57/57 [==============================] - 0s 857us/step - loss: 0.3623 - accuracy: 0.7337 - mae: 0.3623 - pearson_correlation: 0.3530 - euclidean_distance: 0.5623
Epoch 15/200
57/57 [==============================] - 0s 854us/step - loss: 0.3585 - accuracy: 0.7451 - mae: 0.3585 - pearson_correlation: 0.3563 - euclidean_distance: 0.5561
Epoch 16/200
57/57 [==============================] - 0s 842us/step - loss: 0.3531 - accuracy: 0.7377 - mae: 0.3531 - pearson_correlation: 0.3540 - euclidean_distance: 0.5499
Epoch 17/200
57/57 [==============================] - 0s 844us/step - loss: 0.3484 - accuracy: 0.7350 - mae: 0.3484 - pearson_correlation: 0.3588 - euclidean_distance: 0.5423
Epoch 18/200
57/57 [==============================] - 0s 847us/step - loss: 0.3439 - accuracy: 0.7399 - mae: 0.3439 - pearson_correlation: 0.3581 - euclidean_distance: 0.5358
Epoch 19/200
57/57 [==============================] - 0s 849us/step - loss: 0.3392 - accuracy: 0.7421 - mae: 0.3392 - pearson_correlation: 0.3571 - euclidean_distance: 0.5286
Epoch 20/200
57/57 [==============================] - 0s 843us/step - loss: 0.3344 - accuracy: 0.7438 - mae: 0.3344 - pearson_correlation: 0.3584 - euclidean_distance: 0.5220
Epoch 21/200
57/57 [==============================] - 0s 845us/step - loss: 0.3276 - accuracy: 0.7438 - mae: 0.3276 - pearson_correlation: 0.3559 - euclidean_distance: 0.5116
Epoch 22/200
57/57 [==============================] - 0s 847us/step - loss: 0.3232 - accuracy: 0.7354 - mae: 0.3232 - pearson_correlation: 0.3617 - euclidean_distance: 0.5062
Epoch 23/200
57/57 [==============================] - 0s 851us/step - loss: 0.3198 - accuracy: 0.7469 - mae: 0.3198 - pearson_correlation: 0.3559 - euclidean_distance: 0.5013
Epoch 24/200
57/57 [==============================] - 0s 838us/step - loss: 0.3146 - accuracy: 0.7588 - mae: 0.3146 - pearson_correlation: 0.3635 - euclidean_distance: 0.4938
Epoch 25/200
57/57 [==============================] - 0s 841us/step - loss: 0.3112 - accuracy: 0.7540 - mae: 0.3112 - pearson_correlation: 0.3667 - euclidean_distance: 0.4889
Epoch 26/200
57/57 [==============================] - 0s 854us/step - loss: 0.3057 - accuracy: 0.7407 - mae: 0.3057 - pearson_correlation: 0.3573 - euclidean_distance: 0.4821
Epoch 27/200
57/57 [==============================] - 0s 853us/step - loss: 0.3016 - accuracy: 0.7438 - mae: 0.3016 - pearson_correlation: 0.3545 - euclidean_distance: 0.4761
Epoch 28/200
57/57 [==============================] - 0s 1ms/step - loss: 0.2953 - accuracy: 0.7474 - mae: 0.2953 - pearson_correlation: 0.3691 - euclidean_distance: 0.4668
Epoch 29/200
57/57 [==============================] - 0s 872us/step - loss: 0.2926 - accuracy: 0.7549 - mae: 0.2926 - pearson_correlation: 0.3717 - euclidean_distance: 0.4627
Epoch 30/200
57/57 [==============================] - 0s 866us/step - loss: 0.2874 - accuracy: 0.7474 - mae: 0.2874 - pearson_correlation: 0.3650 - euclidean_distance: 0.4560
Epoch 31/200
57/57 [==============================] - 0s 856us/step - loss: 0.2843 - accuracy: 0.7447 - mae: 0.2843 - pearson_correlation: 0.3651 - euclidean_distance: 0.4511
Epoch 32/200
57/57 [==============================] - 0s 848us/step - loss: 0.2792 - accuracy: 0.7557 - mae: 0.2792 - pearson_correlation: 0.3743 - euclidean_distance: 0.4436
Epoch 33/200
57/57 [==============================] - 0s 853us/step - loss: 0.2755 - accuracy: 0.7641 - mae: 0.2755 - pearson_correlation: 0.3719 - euclidean_distance: 0.4385
Epoch 34/200
57/57 [==============================] - 0s 849us/step - loss: 0.2753 - accuracy: 0.7606 - mae: 0.2753 - pearson_correlation: 0.3747 - euclidean_distance: 0.4371
Epoch 35/200
57/57 [==============================] - 0s 865us/step - loss: 0.2707 - accuracy: 0.7610 - mae: 0.2707 - pearson_correlation: 0.3810 - euclidean_distance: 0.4301
Epoch 36/200
57/57 [==============================] - 0s 859us/step - loss: 0.2654 - accuracy: 0.7575 - mae: 0.2654 - pearson_correlation: 0.3870 - euclidean_distance: 0.4228
Epoch 37/200
57/57 [==============================] - 0s 849us/step - loss: 0.2622 - accuracy: 0.7628 - mae: 0.2622 - pearson_correlation: 0.3923 - euclidean_distance: 0.4179
Epoch 38/200
57/57 [==============================] - 0s 839us/step - loss: 0.2603 - accuracy: 0.7840 - mae: 0.2603 - pearson_correlation: 0.3894 - euclidean_distance: 0.4141
Epoch 39/200
57/57 [==============================] - 0s 861us/step - loss: 0.2572 - accuracy: 0.7782 - mae: 0.2572 - pearson_correlation: 0.3945 - euclidean_distance: 0.4103
Epoch 40/200
57/57 [==============================] - 0s 846us/step - loss: 0.2535 - accuracy: 0.7756 - mae: 0.2535 - pearson_correlation: 0.3982 - euclidean_distance: 0.4049
Epoch 41/200
57/57 [==============================] - 0s 860us/step - loss: 0.2523 - accuracy: 0.7751 - mae: 0.2523 - pearson_correlation: 0.3964 - euclidean_distance: 0.4035
Epoch 42/200
57/57 [==============================] - 0s 847us/step - loss: 0.2493 - accuracy: 0.7831 - mae: 0.2493 - pearson_correlation: 0.4004 - euclidean_distance: 0.3980
Epoch 43/200
57/57 [==============================] - 0s 831us/step - loss: 0.2476 - accuracy: 0.8007 - mae: 0.2476 - pearson_correlation: 0.4054 - euclidean_distance: 0.3949
Epoch 44/200
57/57 [==============================] - 0s 841us/step - loss: 0.2458 - accuracy: 0.7862 - mae: 0.2458 - pearson_correlation: 0.4090 - euclidean_distance: 0.3910
Epoch 45/200
57/57 [==============================] - 0s 845us/step - loss: 0.2434 - accuracy: 0.7866 - mae: 0.2434 - pearson_correlation: 0.4085 - euclidean_distance: 0.3887
Epoch 46/200
57/57 [==============================] - 0s 847us/step - loss: 0.2381 - accuracy: 0.7928 - mae: 0.2381 - pearson_correlation: 0.4199 - euclidean_distance: 0.3816
Epoch 47/200
57/57 [==============================] - 0s 835us/step - loss: 0.2358 - accuracy: 0.8025 - mae: 0.2358 - pearson_correlation: 0.4164 - euclidean_distance: 0.3772
Epoch 48/200
57/57 [==============================] - 0s 851us/step - loss: 0.2331 - accuracy: 0.7985 - mae: 0.2331 - pearson_correlation: 0.4252 - euclidean_distance: 0.3730
Epoch 49/200
57/57 [==============================] - 0s 842us/step - loss: 0.2335 - accuracy: 0.7985 - mae: 0.2335 - pearson_correlation: 0.4286 - euclidean_distance: 0.3733
Epoch 50/200
57/57 [==============================] - 0s 838us/step - loss: 0.2296 - accuracy: 0.8126 - mae: 0.2296 - pearson_correlation: 0.4335 - euclidean_distance: 0.3676
Epoch 51/200
57/57 [==============================] - 0s 843us/step - loss: 0.2294 - accuracy: 0.8073 - mae: 0.2294 - pearson_correlation: 0.4313 - euclidean_distance: 0.3673
Epoch 52/200
57/57 [==============================] - 0s 852us/step - loss: 0.2273 - accuracy: 0.8082 - mae: 0.2273 - pearson_correlation: 0.4381 - euclidean_distance: 0.3637
Epoch 53/200
57/57 [==============================] - 0s 835us/step - loss: 0.2232 - accuracy: 0.8157 - mae: 0.2232 - pearson_correlation: 0.4465 - euclidean_distance: 0.3562
Epoch 54/200
57/57 [==============================] - 0s 838us/step - loss: 0.2231 - accuracy: 0.8047 - mae: 0.2231 - pearson_correlation: 0.4467 - euclidean_distance: 0.3569
Epoch 55/200
57/57 [==============================] - 0s 855us/step - loss: 0.2200 - accuracy: 0.8183 - mae: 0.2200 - pearson_correlation: 0.4499 - euclidean_distance: 0.3524
Epoch 56/200
57/57 [==============================] - 0s 839us/step - loss: 0.2187 - accuracy: 0.8170 - mae: 0.2187 - pearson_correlation: 0.4508 - euclidean_distance: 0.3500
Epoch 57/200
57/57 [==============================] - 0s 849us/step - loss: 0.2158 - accuracy: 0.8148 - mae: 0.2158 - pearson_correlation: 0.4604 - euclidean_distance: 0.3463
Epoch 58/200
57/57 [==============================] - 0s 856us/step - loss: 0.2162 - accuracy: 0.8232 - mae: 0.2162 - pearson_correlation: 0.4604 - euclidean_distance: 0.3458
Epoch 59/200
57/57 [==============================] - 0s 848us/step - loss: 0.2178 - accuracy: 0.8205 - mae: 0.2178 - pearson_correlation: 0.4559 - euclidean_distance: 0.3483
Epoch 60/200
57/57 [==============================] - 0s 850us/step - loss: 0.2107 - accuracy: 0.8197 - mae: 0.2107 - pearson_correlation: 0.4721 - euclidean_distance: 0.3379
Epoch 61/200
57/57 [==============================] - 0s 852us/step - loss: 0.2106 - accuracy: 0.8223 - mae: 0.2106 - pearson_correlation: 0.4671 - euclidean_distance: 0.3363
Epoch 62/200
57/57 [==============================] - 0s 854us/step - loss: 0.2096 - accuracy: 0.8197 - mae: 0.2096 - pearson_correlation: 0.4765 - euclidean_distance: 0.3351
Epoch 63/200
57/57 [==============================] - 0s 845us/step - loss: 0.2127 - accuracy: 0.8219 - mae: 0.2127 - pearson_correlation: 0.4653 - euclidean_distance: 0.3404
Epoch 64/200
57/57 [==============================] - 0s 840us/step - loss: 0.2074 - accuracy: 0.8329 - mae: 0.2074 - pearson_correlation: 0.4762 - euclidean_distance: 0.3320
Epoch 65/200
57/57 [==============================] - 0s 851us/step - loss: 0.2051 - accuracy: 0.8329 - mae: 0.2051 - pearson_correlation: 0.4781 - euclidean_distance: 0.3282
Epoch 66/200
57/57 [==============================] - 0s 845us/step - loss: 0.2044 - accuracy: 0.8263 - mae: 0.2044 - pearson_correlation: 0.4818 - euclidean_distance: 0.3263
Epoch 67/200
57/57 [==============================] - 0s 840us/step - loss: 0.2030 - accuracy: 0.8338 - mae: 0.2030 - pearson_correlation: 0.4822 - euclidean_distance: 0.3238
Epoch 68/200
57/57 [==============================] - 0s 860us/step - loss: 0.2031 - accuracy: 0.8333 - mae: 0.2031 - pearson_correlation: 0.4833 - euclidean_distance: 0.3244
Epoch 69/200
57/57 [==============================] - 0s 858us/step - loss: 0.1991 - accuracy: 0.8373 - mae: 0.1991 - pearson_correlation: 0.4927 - euclidean_distance: 0.3188
Epoch 70/200
57/57 [==============================] - 0s 856us/step - loss: 0.1996 - accuracy: 0.8311 - mae: 0.1996 - pearson_correlation: 0.4922 - euclidean_distance: 0.3190
Epoch 71/200
57/57 [==============================] - 0s 855us/step - loss: 0.1999 - accuracy: 0.8373 - mae: 0.1999 - pearson_correlation: 0.4919 - euclidean_distance: 0.3192
Epoch 72/200
57/57 [==============================] - 0s 848us/step - loss: 0.1961 - accuracy: 0.8351 - mae: 0.1961 - pearson_correlation: 0.5006 - euclidean_distance: 0.3127
Epoch 73/200
57/57 [==============================] - 0s 848us/step - loss: 0.1971 - accuracy: 0.8333 - mae: 0.1971 - pearson_correlation: 0.5004 - euclidean_distance: 0.3153
Epoch 74/200
57/57 [==============================] - 0s 852us/step - loss: 0.1954 - accuracy: 0.8347 - mae: 0.1954 - pearson_correlation: 0.5024 - euclidean_distance: 0.3127
Epoch 75/200
57/57 [==============================] - 0s 847us/step - loss: 0.1946 - accuracy: 0.8435 - mae: 0.1946 - pearson_correlation: 0.5040 - euclidean_distance: 0.3103
Epoch 76/200
57/57 [==============================] - 0s 860us/step - loss: 0.1920 - accuracy: 0.8382 - mae: 0.1920 - pearson_correlation: 0.5101 - euclidean_distance: 0.3061
Epoch 77/200
57/57 [==============================] - 0s 848us/step - loss: 0.1902 - accuracy: 0.8413 - mae: 0.1902 - pearson_correlation: 0.5174 - euclidean_distance: 0.3039
Epoch 78/200
57/57 [==============================] - 0s 859us/step - loss: 0.1882 - accuracy: 0.8408 - mae: 0.1882 - pearson_correlation: 0.5173 - euclidean_distance: 0.3008
Epoch 79/200
57/57 [==============================] - 0s 856us/step - loss: 0.1903 - accuracy: 0.8488 - mae: 0.1903 - pearson_correlation: 0.5181 - euclidean_distance: 0.3032
Epoch 80/200
57/57 [==============================] - 0s 854us/step - loss: 0.1878 - accuracy: 0.8430 - mae: 0.1878 - pearson_correlation: 0.5167 - euclidean_distance: 0.2993
Epoch 81/200
57/57 [==============================] - 0s 846us/step - loss: 0.1883 - accuracy: 0.8457 - mae: 0.1883 - pearson_correlation: 0.5229 - euclidean_distance: 0.3001
Epoch 82/200
57/57 [==============================] - 0s 856us/step - loss: 0.1868 - accuracy: 0.8439 - mae: 0.1868 - pearson_correlation: 0.5249 - euclidean_distance: 0.2975
Epoch 83/200
57/57 [==============================] - 0s 828us/step - loss: 0.1840 - accuracy: 0.8457 - mae: 0.1840 - pearson_correlation: 0.5345 - euclidean_distance: 0.2931
Epoch 84/200
57/57 [==============================] - 0s 830us/step - loss: 0.1844 - accuracy: 0.8545 - mae: 0.1844 - pearson_correlation: 0.5328 - euclidean_distance: 0.2946
Epoch 85/200
57/57 [==============================] - 0s 856us/step - loss: 0.1814 - accuracy: 0.8483 - mae: 0.1814 - pearson_correlation: 0.5335 - euclidean_distance: 0.2889
Epoch 86/200
57/57 [==============================] - 0s 846us/step - loss: 0.1831 - accuracy: 0.8536 - mae: 0.1831 - pearson_correlation: 0.5310 - euclidean_distance: 0.2917
Epoch 87/200
57/57 [==============================] - 0s 855us/step - loss: 0.1821 - accuracy: 0.8536 - mae: 0.1821 - pearson_correlation: 0.5371 - euclidean_distance: 0.2892
Epoch 88/200
57/57 [==============================] - 0s 840us/step - loss: 0.1807 - accuracy: 0.8501 - mae: 0.1807 - pearson_correlation: 0.5398 - euclidean_distance: 0.2874
Epoch 89/200
57/57 [==============================] - 0s 846us/step - loss: 0.1778 - accuracy: 0.8536 - mae: 0.1778 - pearson_correlation: 0.5414 - euclidean_distance: 0.2837
Epoch 90/200
57/57 [==============================] - 0s 842us/step - loss: 0.1773 - accuracy: 0.8598 - mae: 0.1773 - pearson_correlation: 0.5476 - euclidean_distance: 0.2824
Epoch 91/200
57/57 [==============================] - 0s 845us/step - loss: 0.1770 - accuracy: 0.8589 - mae: 0.1770 - pearson_correlation: 0.5486 - euclidean_distance: 0.2817
Epoch 92/200
57/57 [==============================] - 0s 847us/step - loss: 0.1750 - accuracy: 0.8510 - mae: 0.1750 - pearson_correlation: 0.5448 - euclidean_distance: 0.2787
Epoch 93/200
57/57 [==============================] - 0s 842us/step - loss: 0.1748 - accuracy: 0.8585 - mae: 0.1748 - pearson_correlation: 0.5453 - euclidean_distance: 0.2787
Epoch 94/200
57/57 [==============================] - 0s 845us/step - loss: 0.1756 - accuracy: 0.8602 - mae: 0.1756 - pearson_correlation: 0.5445 - euclidean_distance: 0.2806
Epoch 95/200
57/57 [==============================] - 0s 838us/step - loss: 0.1712 - accuracy: 0.8633 - mae: 0.1712 - pearson_correlation: 0.5616 - euclidean_distance: 0.2730
Epoch 96/200
57/57 [==============================] - 0s 840us/step - loss: 0.1716 - accuracy: 0.8633 - mae: 0.1716 - pearson_correlation: 0.5517 - euclidean_distance: 0.2735
Epoch 97/200
57/57 [==============================] - 0s 847us/step - loss: 0.1694 - accuracy: 0.8704 - mae: 0.1694 - pearson_correlation: 0.5647 - euclidean_distance: 0.2696
Epoch 98/200
57/57 [==============================] - 0s 843us/step - loss: 0.1698 - accuracy: 0.8739 - mae: 0.1698 - pearson_correlation: 0.5605 - euclidean_distance: 0.2699
Epoch 99/200
57/57 [==============================] - 0s 836us/step - loss: 0.1680 - accuracy: 0.8682 - mae: 0.1680 - pearson_correlation: 0.5688 - euclidean_distance: 0.2682
Epoch 100/200
57/57 [==============================] - 0s 857us/step - loss: 0.1667 - accuracy: 0.8726 - mae: 0.1667 - pearson_correlation: 0.5733 - euclidean_distance: 0.2650
Epoch 101/200
57/57 [==============================] - 0s 843us/step - loss: 0.1675 - accuracy: 0.8832 - mae: 0.1675 - pearson_correlation: 0.5699 - euclidean_distance: 0.2657
Epoch 102/200
57/57 [==============================] - 0s 839us/step - loss: 0.1644 - accuracy: 0.8695 - mae: 0.1644 - pearson_correlation: 0.5740 - euclidean_distance: 0.2619
Epoch 103/200
57/57 [==============================] - 0s 844us/step - loss: 0.1649 - accuracy: 0.8774 - mae: 0.1649 - pearson_correlation: 0.5772 - euclidean_distance: 0.2626
Epoch 104/200
57/57 [==============================] - 0s 849us/step - loss: 0.1650 - accuracy: 0.8708 - mae: 0.1650 - pearson_correlation: 0.5752 - euclidean_distance: 0.2632
Epoch 105/200
57/57 [==============================] - 0s 847us/step - loss: 0.1625 - accuracy: 0.8787 - mae: 0.1625 - pearson_correlation: 0.5811 - euclidean_distance: 0.2592
Epoch 106/200
57/57 [==============================] - 0s 841us/step - loss: 0.1626 - accuracy: 0.8810 - mae: 0.1626 - pearson_correlation: 0.5830 - euclidean_distance: 0.2591
Epoch 107/200
57/57 [==============================] - 0s 850us/step - loss: 0.1611 - accuracy: 0.8818 - mae: 0.1611 - pearson_correlation: 0.5852 - euclidean_distance: 0.2557
Epoch 108/200
57/57 [==============================] - 0s 837us/step - loss: 0.1619 - accuracy: 0.8849 - mae: 0.1619 - pearson_correlation: 0.5815 - euclidean_distance: 0.2583
Epoch 109/200
57/57 [==============================] - 0s 846us/step - loss: 0.1600 - accuracy: 0.8933 - mae: 0.1600 - pearson_correlation: 0.5904 - euclidean_distance: 0.2552
Epoch 110/200
57/57 [==============================] - 0s 846us/step - loss: 0.1600 - accuracy: 0.8907 - mae: 0.1600 - pearson_correlation: 0.5849 - euclidean_distance: 0.2550
Epoch 111/200
57/57 [==============================] - 0s 844us/step - loss: 0.1574 - accuracy: 0.8898 - mae: 0.1574 - pearson_correlation: 0.5897 - euclidean_distance: 0.2517
Epoch 112/200
57/57 [==============================] - 0s 844us/step - loss: 0.1597 - accuracy: 0.8845 - mae: 0.1597 - pearson_correlation: 0.5863 - euclidean_distance: 0.2547
Epoch 113/200
57/57 [==============================] - 0s 842us/step - loss: 0.1573 - accuracy: 0.8871 - mae: 0.1573 - pearson_correlation: 0.5950 - euclidean_distance: 0.2504
Epoch 114/200
57/57 [==============================] - 0s 835us/step - loss: 0.1549 - accuracy: 0.8929 - mae: 0.1549 - pearson_correlation: 0.6062 - euclidean_distance: 0.2465
Epoch 115/200
57/57 [==============================] - 0s 847us/step - loss: 0.1556 - accuracy: 0.8933 - mae: 0.1556 - pearson_correlation: 0.5945 - euclidean_distance: 0.2476
Epoch 116/200
57/57 [==============================] - 0s 860us/step - loss: 0.1529 - accuracy: 0.8951 - mae: 0.1529 - pearson_correlation: 0.6053 - euclidean_distance: 0.2431
Epoch 117/200
57/57 [==============================] - 0s 854us/step - loss: 0.1538 - accuracy: 0.8964 - mae: 0.1538 - pearson_correlation: 0.6018 - euclidean_distance: 0.2451
Epoch 118/200
57/57 [==============================] - 0s 842us/step - loss: 0.1519 - accuracy: 0.9039 - mae: 0.1519 - pearson_correlation: 0.6071 - euclidean_distance: 0.2422
Epoch 119/200
57/57 [==============================] - 0s 842us/step - loss: 0.1491 - accuracy: 0.9021 - mae: 0.1491 - pearson_correlation: 0.6162 - euclidean_distance: 0.2379
Epoch 120/200
57/57 [==============================] - 0s 864us/step - loss: 0.1490 - accuracy: 0.9008 - mae: 0.1490 - pearson_correlation: 0.6121 - euclidean_distance: 0.2372
Epoch 121/200
57/57 [==============================] - 0s 855us/step - loss: 0.1502 - accuracy: 0.8964 - mae: 0.1502 - pearson_correlation: 0.6068 - euclidean_distance: 0.2392
Epoch 122/200
57/57 [==============================] - 0s 843us/step - loss: 0.1485 - accuracy: 0.9056 - mae: 0.1485 - pearson_correlation: 0.6175 - euclidean_distance: 0.2358
Epoch 123/200
57/57 [==============================] - 0s 843us/step - loss: 0.1482 - accuracy: 0.9039 - mae: 0.1482 - pearson_correlation: 0.6090 - euclidean_distance: 0.2364
Epoch 124/200
57/57 [==============================] - 0s 847us/step - loss: 0.1473 - accuracy: 0.9065 - mae: 0.1473 - pearson_correlation: 0.6187 - euclidean_distance: 0.2341
Epoch 125/200
57/57 [==============================] - 0s 854us/step - loss: 0.1466 - accuracy: 0.9043 - mae: 0.1466 - pearson_correlation: 0.6191 - euclidean_distance: 0.2338
Epoch 126/200
57/57 [==============================] - 0s 853us/step - loss: 0.1506 - accuracy: 0.9065 - mae: 0.1506 - pearson_correlation: 0.6114 - euclidean_distance: 0.2393
Epoch 127/200
57/57 [==============================] - 0s 826us/step - loss: 0.1459 - accuracy: 0.9056 - mae: 0.1459 - pearson_correlation: 0.6247 - euclidean_distance: 0.2323
Epoch 128/200
57/57 [==============================] - 0s 842us/step - loss: 0.1453 - accuracy: 0.9105 - mae: 0.1453 - pearson_correlation: 0.6223 - euclidean_distance: 0.2314
Epoch 129/200
57/57 [==============================] - 0s 837us/step - loss: 0.1445 - accuracy: 0.9127 - mae: 0.1445 - pearson_correlation: 0.6218 - euclidean_distance: 0.2303
Epoch 130/200
57/57 [==============================] - 0s 846us/step - loss: 0.1428 - accuracy: 0.9198 - mae: 0.1428 - pearson_correlation: 0.6272 - euclidean_distance: 0.2271
Epoch 131/200
57/57 [==============================] - 0s 844us/step - loss: 0.1424 - accuracy: 0.9171 - mae: 0.1424 - pearson_correlation: 0.6268 - euclidean_distance: 0.2270
Epoch 132/200
57/57 [==============================] - 0s 858us/step - loss: 0.1410 - accuracy: 0.9171 - mae: 0.1410 - pearson_correlation: 0.6322 - euclidean_distance: 0.2250
Epoch 133/200
57/57 [==============================] - 0s 849us/step - loss: 0.1399 - accuracy: 0.9145 - mae: 0.1399 - pearson_correlation: 0.6358 - euclidean_distance: 0.2239
Epoch 134/200
57/57 [==============================] - 0s 861us/step - loss: 0.1387 - accuracy: 0.9140 - mae: 0.1387 - pearson_correlation: 0.6282 - euclidean_distance: 0.2210
Epoch 135/200
57/57 [==============================] - 0s 853us/step - loss: 0.1388 - accuracy: 0.9189 - mae: 0.1388 - pearson_correlation: 0.6373 - euclidean_distance: 0.2203
Epoch 136/200
57/57 [==============================] - 0s 849us/step - loss: 0.1399 - accuracy: 0.9105 - mae: 0.1399 - pearson_correlation: 0.6327 - euclidean_distance: 0.2225
Epoch 137/200
57/57 [==============================] - 0s 839us/step - loss: 0.1401 - accuracy: 0.9153 - mae: 0.1401 - pearson_correlation: 0.6288 - euclidean_distance: 0.2231
Epoch 138/200
57/57 [==============================] - 0s 839us/step - loss: 0.1368 - accuracy: 0.9180 - mae: 0.1368 - pearson_correlation: 0.6413 - euclidean_distance: 0.2183
Epoch 139/200
57/57 [==============================] - 0s 846us/step - loss: 0.1362 - accuracy: 0.9184 - mae: 0.1362 - pearson_correlation: 0.6434 - euclidean_distance: 0.2168
Epoch 140/200
57/57 [==============================] - 0s 850us/step - loss: 0.1361 - accuracy: 0.9211 - mae: 0.1361 - pearson_correlation: 0.6423 - euclidean_distance: 0.2165
Epoch 141/200
57/57 [==============================] - 0s 846us/step - loss: 0.1347 - accuracy: 0.9149 - mae: 0.1347 - pearson_correlation: 0.6491 - euclidean_distance: 0.2146
Epoch 142/200
57/57 [==============================] - 0s 845us/step - loss: 0.1360 - accuracy: 0.9180 - mae: 0.1360 - pearson_correlation: 0.6393 - euclidean_distance: 0.2171
Epoch 143/200
57/57 [==============================] - 0s 843us/step - loss: 0.1327 - accuracy: 0.9202 - mae: 0.1327 - pearson_correlation: 0.6505 - euclidean_distance: 0.2117
Epoch 144/200
57/57 [==============================] - 0s 846us/step - loss: 0.1340 - accuracy: 0.9184 - mae: 0.1340 - pearson_correlation: 0.6443 - euclidean_distance: 0.2137
Epoch 145/200
57/57 [==============================] - 0s 837us/step - loss: 0.1325 - accuracy: 0.9224 - mae: 0.1325 - pearson_correlation: 0.6487 - euclidean_distance: 0.2117
Epoch 146/200
57/57 [==============================] - 0s 844us/step - loss: 0.1323 - accuracy: 0.9250 - mae: 0.1323 - pearson_correlation: 0.6511 - euclidean_distance: 0.2110
Epoch 147/200
57/57 [==============================] - 0s 847us/step - loss: 0.1354 - accuracy: 0.9153 - mae: 0.1354 - pearson_correlation: 0.6460 - euclidean_distance: 0.2159
Epoch 148/200
57/57 [==============================] - 0s 837us/step - loss: 0.1343 - accuracy: 0.9277 - mae: 0.1343 - pearson_correlation: 0.6480 - euclidean_distance: 0.2139
Epoch 149/200
57/57 [==============================] - 0s 838us/step - loss: 0.1321 - accuracy: 0.9167 - mae: 0.1321 - pearson_correlation: 0.6527 - euclidean_distance: 0.2115
Epoch 150/200
57/57 [==============================] - 0s 847us/step - loss: 0.1278 - accuracy: 0.9255 - mae: 0.1278 - pearson_correlation: 0.6576 - euclidean_distance: 0.2045
Epoch 151/200
57/57 [==============================] - 0s 850us/step - loss: 0.1333 - accuracy: 0.9237 - mae: 0.1333 - pearson_correlation: 0.6524 - euclidean_distance: 0.2122
Epoch 152/200
57/57 [==============================] - 0s 843us/step - loss: 0.1299 - accuracy: 0.9193 - mae: 0.1299 - pearson_correlation: 0.6549 - euclidean_distance: 0.2082
Epoch 153/200
57/57 [==============================] - 0s 842us/step - loss: 0.1301 - accuracy: 0.9215 - mae: 0.1301 - pearson_correlation: 0.6526 - euclidean_distance: 0.2074
Epoch 154/200
57/57 [==============================] - 0s 841us/step - loss: 0.1308 - accuracy: 0.9184 - mae: 0.1308 - pearson_correlation: 0.6517 - euclidean_distance: 0.2098
Epoch 155/200
57/57 [==============================] - 0s 846us/step - loss: 0.1291 - accuracy: 0.9259 - mae: 0.1291 - pearson_correlation: 0.6595 - euclidean_distance: 0.2065
Epoch 156/200
57/57 [==============================] - 0s 851us/step - loss: 0.1274 - accuracy: 0.9255 - mae: 0.1274 - pearson_correlation: 0.6625 - euclidean_distance: 0.2035
Epoch 157/200
57/57 [==============================] - 0s 846us/step - loss: 0.1275 - accuracy: 0.9242 - mae: 0.1275 - pearson_correlation: 0.6649 - euclidean_distance: 0.2036
Epoch 158/200
57/57 [==============================] - 0s 844us/step - loss: 0.1257 - accuracy: 0.9228 - mae: 0.1257 - pearson_correlation: 0.6607 - euclidean_distance: 0.2012
Epoch 159/200
57/57 [==============================] - 0s 838us/step - loss: 0.1258 - accuracy: 0.9246 - mae: 0.1258 - pearson_correlation: 0.6648 - euclidean_distance: 0.2022
Epoch 160/200
57/57 [==============================] - 0s 847us/step - loss: 0.1254 - accuracy: 0.9268 - mae: 0.1254 - pearson_correlation: 0.6667 - euclidean_distance: 0.2006
Epoch 161/200
57/57 [==============================] - 0s 849us/step - loss: 0.1239 - accuracy: 0.9250 - mae: 0.1239 - pearson_correlation: 0.6748 - euclidean_distance: 0.1985
Epoch 162/200
57/57 [==============================] - 0s 847us/step - loss: 0.1266 - accuracy: 0.9202 - mae: 0.1266 - pearson_correlation: 0.6645 - euclidean_distance: 0.2028
Epoch 163/200
57/57 [==============================] - 0s 851us/step - loss: 0.1223 - accuracy: 0.9206 - mae: 0.1223 - pearson_correlation: 0.6695 - euclidean_distance: 0.1961
Epoch 164/200
57/57 [==============================] - 0s 835us/step - loss: 0.1239 - accuracy: 0.9286 - mae: 0.1239 - pearson_correlation: 0.6672 - euclidean_distance: 0.1991
Epoch 165/200
57/57 [==============================] - 0s 848us/step - loss: 0.1264 - accuracy: 0.9228 - mae: 0.1264 - pearson_correlation: 0.6658 - euclidean_distance: 0.2018
Epoch 166/200
57/57 [==============================] - 0s 847us/step - loss: 0.1233 - accuracy: 0.9242 - mae: 0.1233 - pearson_correlation: 0.6699 - euclidean_distance: 0.1970
Epoch 167/200
57/57 [==============================] - 0s 845us/step - loss: 0.1222 - accuracy: 0.9242 - mae: 0.1222 - pearson_correlation: 0.6684 - euclidean_distance: 0.1958
Epoch 168/200
57/57 [==============================] - 0s 841us/step - loss: 0.1229 - accuracy: 0.9268 - mae: 0.1229 - pearson_correlation: 0.6723 - euclidean_distance: 0.1975
Epoch 169/200
57/57 [==============================] - 0s 846us/step - loss: 0.1231 - accuracy: 0.9264 - mae: 0.1231 - pearson_correlation: 0.6686 - euclidean_distance: 0.1968
Epoch 170/200
57/57 [==============================] - 0s 847us/step - loss: 0.1223 - accuracy: 0.9277 - mae: 0.1223 - pearson_correlation: 0.6676 - euclidean_distance: 0.1965
Epoch 171/200
57/57 [==============================] - 0s 846us/step - loss: 0.1218 - accuracy: 0.9303 - mae: 0.1218 - pearson_correlation: 0.6737 - euclidean_distance: 0.1954
Epoch 172/200
57/57 [==============================] - 0s 844us/step - loss: 0.1206 - accuracy: 0.9281 - mae: 0.1206 - pearson_correlation: 0.6790 - euclidean_distance: 0.1931
Epoch 173/200
57/57 [==============================] - 0s 846us/step - loss: 0.1212 - accuracy: 0.9281 - mae: 0.1212 - pearson_correlation: 0.6709 - euclidean_distance: 0.1941
Epoch 174/200
57/57 [==============================] - 0s 840us/step - loss: 0.1206 - accuracy: 0.9281 - mae: 0.1206 - pearson_correlation: 0.6713 - euclidean_distance: 0.1942
Epoch 175/200
57/57 [==============================] - 0s 859us/step - loss: 0.1206 - accuracy: 0.9242 - mae: 0.1206 - pearson_correlation: 0.6780 - euclidean_distance: 0.1941
Epoch 176/200
57/57 [==============================] - 0s 857us/step - loss: 0.1194 - accuracy: 0.9308 - mae: 0.1194 - pearson_correlation: 0.6767 - euclidean_distance: 0.1919
Epoch 177/200
57/57 [==============================] - 0s 839us/step - loss: 0.1187 - accuracy: 0.9299 - mae: 0.1187 - pearson_correlation: 0.6790 - euclidean_distance: 0.1905
Epoch 178/200
57/57 [==============================] - 0s 842us/step - loss: 0.1201 - accuracy: 0.9290 - mae: 0.1201 - pearson_correlation: 0.6759 - euclidean_distance: 0.1931
Epoch 179/200
57/57 [==============================] - 0s 849us/step - loss: 0.1194 - accuracy: 0.9264 - mae: 0.1194 - pearson_correlation: 0.6769 - euclidean_distance: 0.1922
Epoch 180/200
57/57 [==============================] - 0s 856us/step - loss: 0.1205 - accuracy: 0.9299 - mae: 0.1205 - pearson_correlation: 0.6728 - euclidean_distance: 0.1940
Epoch 181/200
57/57 [==============================] - 0s 859us/step - loss: 0.1196 - accuracy: 0.9272 - mae: 0.1196 - pearson_correlation: 0.6774 - euclidean_distance: 0.1927
Epoch 182/200
57/57 [==============================] - 0s 845us/step - loss: 0.1165 - accuracy: 0.9242 - mae: 0.1165 - pearson_correlation: 0.6825 - euclidean_distance: 0.1873
Epoch 183/200
57/57 [==============================] - 0s 846us/step - loss: 0.1195 - accuracy: 0.9220 - mae: 0.1195 - pearson_correlation: 0.6683 - euclidean_distance: 0.1923
Epoch 184/200
57/57 [==============================] - 0s 842us/step - loss: 0.1182 - accuracy: 0.9259 - mae: 0.1182 - pearson_correlation: 0.6738 - euclidean_distance: 0.1909
Epoch 185/200
57/57 [==============================] - 0s 842us/step - loss: 0.1165 - accuracy: 0.9352 - mae: 0.1165 - pearson_correlation: 0.6762 - euclidean_distance: 0.1883
Epoch 186/200
57/57 [==============================] - 0s 860us/step - loss: 0.1135 - accuracy: 0.9299 - mae: 0.1135 - pearson_correlation: 0.6879 - euclidean_distance: 0.1833
Epoch 187/200
57/57 [==============================] - 0s 854us/step - loss: 0.1153 - accuracy: 0.9325 - mae: 0.1153 - pearson_correlation: 0.6845 - euclidean_distance: 0.1862
Epoch 188/200
57/57 [==============================] - 0s 859us/step - loss: 0.1164 - accuracy: 0.9317 - mae: 0.1164 - pearson_correlation: 0.6872 - euclidean_distance: 0.1870
Epoch 189/200
57/57 [==============================] - 0s 841us/step - loss: 0.1147 - accuracy: 0.9325 - mae: 0.1147 - pearson_correlation: 0.6875 - euclidean_distance: 0.1853
Epoch 190/200
57/57 [==============================] - 0s 856us/step - loss: 0.1151 - accuracy: 0.9308 - mae: 0.1151 - pearson_correlation: 0.6827 - euclidean_distance: 0.1862
Epoch 191/200
57/57 [==============================] - 0s 846us/step - loss: 0.1130 - accuracy: 0.9321 - mae: 0.1130 - pearson_correlation: 0.6885 - euclidean_distance: 0.1820
Epoch 192/200
57/57 [==============================] - 0s 848us/step - loss: 0.1143 - accuracy: 0.9321 - mae: 0.1143 - pearson_correlation: 0.6864 - euclidean_distance: 0.1847
Epoch 193/200
57/57 [==============================] - 0s 853us/step - loss: 0.1128 - accuracy: 0.9343 - mae: 0.1128 - pearson_correlation: 0.6862 - euclidean_distance: 0.1829
Epoch 194/200
57/57 [==============================] - 0s 854us/step - loss: 0.1128 - accuracy: 0.9299 - mae: 0.1128 - pearson_correlation: 0.6865 - euclidean_distance: 0.1821
Epoch 195/200
57/57 [==============================] - 0s 853us/step - loss: 0.1144 - accuracy: 0.9312 - mae: 0.1144 - pearson_correlation: 0.6841 - euclidean_distance: 0.1843
Epoch 196/200
57/57 [==============================] - 0s 854us/step - loss: 0.1125 - accuracy: 0.9365 - mae: 0.1125 - pearson_correlation: 0.6914 - euclidean_distance: 0.1818
Epoch 197/200
57/57 [==============================] - 0s 859us/step - loss: 0.1128 - accuracy: 0.9347 - mae: 0.1128 - pearson_correlation: 0.6957 - euclidean_distance: 0.1826
Epoch 198/200
57/57 [==============================] - 0s 853us/step - loss: 0.1116 - accuracy: 0.9339 - mae: 0.1116 - pearson_correlation: 0.6957 - euclidean_distance: 0.1800
Epoch 199/200
57/57 [==============================] - 0s 839us/step - loss: 0.1120 - accuracy: 0.9369 - mae: 0.1120 - pearson_correlation: 0.6935 - euclidean_distance: 0.1805
Epoch 200/200
57/57 [==============================] - 0s 850us/step - loss: 0.1105 - accuracy: 0.9365 - mae: 0.1105 - pearson_correlation: 0.6972 - euclidean_distance: 0.1781
29/29 [==============================] - 0s 516us/step
Epoch 1/250
57/57 [==============================] - 1s 955us/step - loss: 0.5003 - accuracy: 0.7362 - mae: 0.5003 - pearson_correlation: 0.3281 - euclidean_distance: 0.7418
Epoch 2/250
57/57 [==============================] - 0s 832us/step - loss: 0.4951 - accuracy: 0.7455 - mae: 0.4951 - pearson_correlation: 0.3187 - euclidean_distance: 0.7353
Epoch 3/250
57/57 [==============================] - 0s 866us/step - loss: 0.4906 - accuracy: 0.7415 - mae: 0.4906 - pearson_correlation: 0.3214 - euclidean_distance: 0.7289
Epoch 4/250
57/57 [==============================] - 0s 866us/step - loss: 0.4868 - accuracy: 0.7375 - mae: 0.4868 - pearson_correlation: 0.3200 - euclidean_distance: 0.7240
Epoch 5/250
57/57 [==============================] - 0s 850us/step - loss: 0.4810 - accuracy: 0.7336 - mae: 0.4810 - pearson_correlation: 0.3160 - euclidean_distance: 0.7164
Epoch 6/250
57/57 [==============================] - 0s 867us/step - loss: 0.4762 - accuracy: 0.7490 - mae: 0.4762 - pearson_correlation: 0.3174 - euclidean_distance: 0.7102
Epoch 7/250
57/57 [==============================] - 0s 860us/step - loss: 0.4713 - accuracy: 0.7419 - mae: 0.4713 - pearson_correlation: 0.3187 - euclidean_distance: 0.7034
Epoch 8/250
57/57 [==============================] - 0s 862us/step - loss: 0.4648 - accuracy: 0.7340 - mae: 0.4648 - pearson_correlation: 0.3082 - euclidean_distance: 0.6952
Epoch 9/250
57/57 [==============================] - 0s 858us/step - loss: 0.4596 - accuracy: 0.7375 - mae: 0.4596 - pearson_correlation: 0.3053 - euclidean_distance: 0.6885
Epoch 10/250
57/57 [==============================] - 0s 858us/step - loss: 0.4543 - accuracy: 0.7437 - mae: 0.4543 - pearson_correlation: 0.3126 - euclidean_distance: 0.6810
Epoch 11/250
57/57 [==============================] - 0s 864us/step - loss: 0.4486 - accuracy: 0.7327 - mae: 0.4486 - pearson_correlation: 0.3071 - euclidean_distance: 0.6739
Epoch 12/250
57/57 [==============================] - 0s 864us/step - loss: 0.4424 - accuracy: 0.7349 - mae: 0.4424 - pearson_correlation: 0.2998 - euclidean_distance: 0.6658
Epoch 13/250
57/57 [==============================] - 0s 851us/step - loss: 0.4388 - accuracy: 0.7464 - mae: 0.4388 - pearson_correlation: 0.3032 - euclidean_distance: 0.6610
Epoch 14/250
57/57 [==============================] - 0s 853us/step - loss: 0.4322 - accuracy: 0.7397 - mae: 0.4322 - pearson_correlation: 0.2989 - euclidean_distance: 0.6521
Epoch 15/250
57/57 [==============================] - 0s 880us/step - loss: 0.4266 - accuracy: 0.7486 - mae: 0.4266 - pearson_correlation: 0.2951 - euclidean_distance: 0.6446
Epoch 16/250
57/57 [==============================] - 0s 868us/step - loss: 0.4199 - accuracy: 0.7424 - mae: 0.4199 - pearson_correlation: 0.3006 - euclidean_distance: 0.6357
Epoch 17/250
57/57 [==============================] - 0s 862us/step - loss: 0.4140 - accuracy: 0.7349 - mae: 0.4140 - pearson_correlation: 0.2940 - euclidean_distance: 0.6286
Epoch 18/250
57/57 [==============================] - 0s 869us/step - loss: 0.4083 - accuracy: 0.7349 - mae: 0.4083 - pearson_correlation: 0.2971 - euclidean_distance: 0.6205
Epoch 19/250
57/57 [==============================] - 0s 842us/step - loss: 0.4034 - accuracy: 0.7406 - mae: 0.4034 - pearson_correlation: 0.2983 - euclidean_distance: 0.6137
Epoch 20/250
57/57 [==============================] - 0s 858us/step - loss: 0.3973 - accuracy: 0.7340 - mae: 0.3973 - pearson_correlation: 0.2922 - euclidean_distance: 0.6057
Epoch 21/250
57/57 [==============================] - 0s 860us/step - loss: 0.3916 - accuracy: 0.7393 - mae: 0.3916 - pearson_correlation: 0.2888 - euclidean_distance: 0.5984
Epoch 22/250
57/57 [==============================] - 0s 863us/step - loss: 0.3859 - accuracy: 0.7415 - mae: 0.3859 - pearson_correlation: 0.2846 - euclidean_distance: 0.5907
Epoch 23/250
57/57 [==============================] - 0s 870us/step - loss: 0.3801 - accuracy: 0.7389 - mae: 0.3801 - pearson_correlation: 0.2863 - euclidean_distance: 0.5829
Epoch 24/250
57/57 [==============================] - 0s 853us/step - loss: 0.3762 - accuracy: 0.7419 - mae: 0.3762 - pearson_correlation: 0.2872 - euclidean_distance: 0.5778
Epoch 25/250
57/57 [==============================] - 0s 862us/step - loss: 0.3688 - accuracy: 0.7362 - mae: 0.3688 - pearson_correlation: 0.2908 - euclidean_distance: 0.5669
Epoch 26/250
57/57 [==============================] - 0s 854us/step - loss: 0.3643 - accuracy: 0.7419 - mae: 0.3643 - pearson_correlation: 0.2911 - euclidean_distance: 0.5612
Epoch 27/250
57/57 [==============================] - 0s 867us/step - loss: 0.3588 - accuracy: 0.7375 - mae: 0.3588 - pearson_correlation: 0.2823 - euclidean_distance: 0.5537
Epoch 28/250
57/57 [==============================] - 0s 861us/step - loss: 0.3536 - accuracy: 0.7371 - mae: 0.3536 - pearson_correlation: 0.2887 - euclidean_distance: 0.5461
Epoch 29/250
57/57 [==============================] - 0s 867us/step - loss: 0.3505 - accuracy: 0.7358 - mae: 0.3505 - pearson_correlation: 0.2839 - euclidean_distance: 0.5414
Epoch 30/250
57/57 [==============================] - 0s 856us/step - loss: 0.3434 - accuracy: 0.7371 - mae: 0.3434 - pearson_correlation: 0.2902 - euclidean_distance: 0.5314
Epoch 31/250
57/57 [==============================] - 0s 861us/step - loss: 0.3408 - accuracy: 0.7358 - mae: 0.3408 - pearson_correlation: 0.2893 - euclidean_distance: 0.5283
Epoch 32/250
57/57 [==============================] - 0s 862us/step - loss: 0.3335 - accuracy: 0.7358 - mae: 0.3335 - pearson_correlation: 0.2905 - euclidean_distance: 0.5184
Epoch 33/250
57/57 [==============================] - 0s 858us/step - loss: 0.3303 - accuracy: 0.7397 - mae: 0.3303 - pearson_correlation: 0.2938 - euclidean_distance: 0.5133
Epoch 34/250
57/57 [==============================] - 0s 860us/step - loss: 0.3258 - accuracy: 0.7397 - mae: 0.3258 - pearson_correlation: 0.2890 - euclidean_distance: 0.5066
Epoch 35/250
57/57 [==============================] - 0s 922us/step - loss: 0.3201 - accuracy: 0.7411 - mae: 0.3201 - pearson_correlation: 0.2932 - euclidean_distance: 0.4992
Epoch 36/250
57/57 [==============================] - 0s 994us/step - loss: 0.3151 - accuracy: 0.7446 - mae: 0.3151 - pearson_correlation: 0.2958 - euclidean_distance: 0.4917
Epoch 37/250
57/57 [==============================] - 0s 967us/step - loss: 0.3127 - accuracy: 0.7402 - mae: 0.3127 - pearson_correlation: 0.2976 - euclidean_distance: 0.4883
Epoch 38/250
57/57 [==============================] - 0s 959us/step - loss: 0.3085 - accuracy: 0.7375 - mae: 0.3085 - pearson_correlation: 0.2957 - euclidean_distance: 0.4827
Epoch 39/250
57/57 [==============================] - 0s 976us/step - loss: 0.3031 - accuracy: 0.7367 - mae: 0.3031 - pearson_correlation: 0.2985 - euclidean_distance: 0.4745
Epoch 40/250
57/57 [==============================] - 0s 1ms/step - loss: 0.2988 - accuracy: 0.7437 - mae: 0.2988 - pearson_correlation: 0.3056 - euclidean_distance: 0.4681
Epoch 41/250
57/57 [==============================] - 0s 995us/step - loss: 0.2941 - accuracy: 0.7424 - mae: 0.2941 - pearson_correlation: 0.3031 - euclidean_distance: 0.4623
Epoch 42/250
57/57 [==============================] - 0s 969us/step - loss: 0.2916 - accuracy: 0.7358 - mae: 0.2916 - pearson_correlation: 0.3023 - euclidean_distance: 0.4580
Epoch 43/250
57/57 [==============================] - 0s 1ms/step - loss: 0.2872 - accuracy: 0.7389 - mae: 0.2872 - pearson_correlation: 0.3054 - euclidean_distance: 0.4520
Epoch 44/250
57/57 [==============================] - 0s 1ms/step - loss: 0.2840 - accuracy: 0.7450 - mae: 0.2840 - pearson_correlation: 0.3126 - euclidean_distance: 0.4460
Epoch 45/250
57/57 [==============================] - 0s 879us/step - loss: 0.2799 - accuracy: 0.7450 - mae: 0.2799 - pearson_correlation: 0.3061 - euclidean_distance: 0.4411
Epoch 46/250
57/57 [==============================] - 0s 858us/step - loss: 0.2746 - accuracy: 0.7380 - mae: 0.2746 - pearson_correlation: 0.3169 - euclidean_distance: 0.4337
Epoch 47/250
57/57 [==============================] - 0s 854us/step - loss: 0.2714 - accuracy: 0.7481 - mae: 0.2714 - pearson_correlation: 0.3157 - euclidean_distance: 0.4294
Epoch 48/250
57/57 [==============================] - 0s 867us/step - loss: 0.2683 - accuracy: 0.7450 - mae: 0.2683 - pearson_correlation: 0.3158 - euclidean_distance: 0.4247
Epoch 49/250
57/57 [==============================] - 0s 855us/step - loss: 0.2654 - accuracy: 0.7499 - mae: 0.2654 - pearson_correlation: 0.3227 - euclidean_distance: 0.4202
Epoch 50/250
57/57 [==============================] - 0s 869us/step - loss: 0.2627 - accuracy: 0.7419 - mae: 0.2627 - pearson_correlation: 0.3214 - euclidean_distance: 0.4162
Epoch 51/250
57/57 [==============================] - 0s 855us/step - loss: 0.2580 - accuracy: 0.7468 - mae: 0.2580 - pearson_correlation: 0.3291 - euclidean_distance: 0.4097
Epoch 52/250
57/57 [==============================] - 0s 865us/step - loss: 0.2540 - accuracy: 0.7468 - mae: 0.2540 - pearson_correlation: 0.3303 - euclidean_distance: 0.4036
Epoch 53/250
57/57 [==============================] - 0s 859us/step - loss: 0.2507 - accuracy: 0.7428 - mae: 0.2507 - pearson_correlation: 0.3344 - euclidean_distance: 0.3979
Epoch 54/250
57/57 [==============================] - 0s 857us/step - loss: 0.2472 - accuracy: 0.7499 - mae: 0.2472 - pearson_correlation: 0.3332 - euclidean_distance: 0.3935
Epoch 55/250
57/57 [==============================] - 0s 860us/step - loss: 0.2452 - accuracy: 0.7525 - mae: 0.2452 - pearson_correlation: 0.3376 - euclidean_distance: 0.3898
Epoch 56/250
57/57 [==============================] - 0s 857us/step - loss: 0.2416 - accuracy: 0.7503 - mae: 0.2416 - pearson_correlation: 0.3389 - euclidean_distance: 0.3853
Epoch 57/250
57/57 [==============================] - 0s 842us/step - loss: 0.2388 - accuracy: 0.7552 - mae: 0.2388 - pearson_correlation: 0.3387 - euclidean_distance: 0.3812
Epoch 58/250
57/57 [==============================] - 0s 859us/step - loss: 0.2368 - accuracy: 0.7494 - mae: 0.2368 - pearson_correlation: 0.3443 - euclidean_distance: 0.3776
Epoch 59/250
57/57 [==============================] - 0s 868us/step - loss: 0.2322 - accuracy: 0.7552 - mae: 0.2322 - pearson_correlation: 0.3424 - euclidean_distance: 0.3714
Epoch 60/250
57/57 [==============================] - 0s 866us/step - loss: 0.2295 - accuracy: 0.7596 - mae: 0.2295 - pearson_correlation: 0.3483 - euclidean_distance: 0.3676
Epoch 61/250
57/57 [==============================] - 0s 853us/step - loss: 0.2257 - accuracy: 0.7552 - mae: 0.2257 - pearson_correlation: 0.3565 - euclidean_distance: 0.3615
Epoch 62/250
57/57 [==============================] - 0s 854us/step - loss: 0.2226 - accuracy: 0.7583 - mae: 0.2226 - pearson_correlation: 0.3541 - euclidean_distance: 0.3571
Epoch 63/250
57/57 [==============================] - 0s 849us/step - loss: 0.2224 - accuracy: 0.7556 - mae: 0.2224 - pearson_correlation: 0.3551 - euclidean_distance: 0.3570
Epoch 64/250
57/57 [==============================] - 0s 855us/step - loss: 0.2196 - accuracy: 0.7547 - mae: 0.2196 - pearson_correlation: 0.3532 - euclidean_distance: 0.3523
Epoch 65/250
57/57 [==============================] - 0s 850us/step - loss: 0.2177 - accuracy: 0.7565 - mae: 0.2177 - pearson_correlation: 0.3572 - euclidean_distance: 0.3507
Epoch 66/250
57/57 [==============================] - 0s 856us/step - loss: 0.2118 - accuracy: 0.7552 - mae: 0.2118 - pearson_correlation: 0.3627 - euclidean_distance: 0.3415
Epoch 67/250
57/57 [==============================] - 0s 856us/step - loss: 0.2093 - accuracy: 0.7578 - mae: 0.2093 - pearson_correlation: 0.3617 - euclidean_distance: 0.3379
Epoch 68/250
57/57 [==============================] - 0s 856us/step - loss: 0.2063 - accuracy: 0.7578 - mae: 0.2063 - pearson_correlation: 0.3655 - euclidean_distance: 0.3330
Epoch 69/250
57/57 [==============================] - 0s 853us/step - loss: 0.2058 - accuracy: 0.7592 - mae: 0.2058 - pearson_correlation: 0.3603 - euclidean_distance: 0.3325
Epoch 70/250
57/57 [==============================] - 0s 855us/step - loss: 0.2022 - accuracy: 0.7627 - mae: 0.2022 - pearson_correlation: 0.3690 - euclidean_distance: 0.3271
Epoch 71/250
57/57 [==============================] - 0s 855us/step - loss: 0.2010 - accuracy: 0.7578 - mae: 0.2010 - pearson_correlation: 0.3654 - euclidean_distance: 0.3256
Epoch 72/250
57/57 [==============================] - 0s 857us/step - loss: 0.1984 - accuracy: 0.7596 - mae: 0.1984 - pearson_correlation: 0.3690 - euclidean_distance: 0.3219
Epoch 73/250
57/57 [==============================] - 0s 853us/step - loss: 0.1952 - accuracy: 0.7583 - mae: 0.1952 - pearson_correlation: 0.3749 - euclidean_distance: 0.3170
Epoch 74/250
57/57 [==============================] - 0s 847us/step - loss: 0.1946 - accuracy: 0.7609 - mae: 0.1946 - pearson_correlation: 0.3678 - euclidean_distance: 0.3166
Epoch 75/250
57/57 [==============================] - 0s 858us/step - loss: 0.1930 - accuracy: 0.7605 - mae: 0.1930 - pearson_correlation: 0.3743 - euclidean_distance: 0.3141
Epoch 76/250
57/57 [==============================] - 0s 857us/step - loss: 0.1887 - accuracy: 0.7640 - mae: 0.1887 - pearson_correlation: 0.3803 - euclidean_distance: 0.3076
Epoch 77/250
57/57 [==============================] - 0s 855us/step - loss: 0.1881 - accuracy: 0.7605 - mae: 0.1881 - pearson_correlation: 0.3771 - euclidean_distance: 0.3063
Epoch 78/250
57/57 [==============================] - 0s 848us/step - loss: 0.1871 - accuracy: 0.7667 - mae: 0.1871 - pearson_correlation: 0.3831 - euclidean_distance: 0.3054
Epoch 79/250
57/57 [==============================] - 0s 845us/step - loss: 0.1868 - accuracy: 0.7689 - mae: 0.1868 - pearson_correlation: 0.3821 - euclidean_distance: 0.3042
Epoch 80/250
57/57 [==============================] - 0s 844us/step - loss: 0.1847 - accuracy: 0.7706 - mae: 0.1847 - pearson_correlation: 0.3813 - euclidean_distance: 0.3015
Epoch 81/250
57/57 [==============================] - 0s 852us/step - loss: 0.1847 - accuracy: 0.7667 - mae: 0.1847 - pearson_correlation: 0.3820 - euclidean_distance: 0.3009
Epoch 82/250
57/57 [==============================] - 0s 849us/step - loss: 0.1808 - accuracy: 0.7724 - mae: 0.1808 - pearson_correlation: 0.3907 - euclidean_distance: 0.2960
Epoch 83/250
57/57 [==============================] - 0s 857us/step - loss: 0.1799 - accuracy: 0.7667 - mae: 0.1799 - pearson_correlation: 0.3928 - euclidean_distance: 0.2947
Epoch 84/250
57/57 [==============================] - 0s 847us/step - loss: 0.1789 - accuracy: 0.7671 - mae: 0.1789 - pearson_correlation: 0.3954 - euclidean_distance: 0.2918
Epoch 85/250
57/57 [==============================] - 0s 862us/step - loss: 0.1799 - accuracy: 0.7631 - mae: 0.1799 - pearson_correlation: 0.3877 - euclidean_distance: 0.2954
Epoch 86/250
57/57 [==============================] - 0s 858us/step - loss: 0.1781 - accuracy: 0.7724 - mae: 0.1781 - pearson_correlation: 0.3914 - euclidean_distance: 0.2918
Epoch 87/250
57/57 [==============================] - 0s 852us/step - loss: 0.1752 - accuracy: 0.7662 - mae: 0.1752 - pearson_correlation: 0.3944 - euclidean_distance: 0.2876
Epoch 88/250
57/57 [==============================] - 0s 854us/step - loss: 0.1761 - accuracy: 0.7697 - mae: 0.1761 - pearson_correlation: 0.3963 - euclidean_distance: 0.2894
Epoch 89/250
57/57 [==============================] - 0s 860us/step - loss: 0.1744 - accuracy: 0.7728 - mae: 0.1744 - pearson_correlation: 0.3968 - euclidean_distance: 0.2864
Epoch 90/250
57/57 [==============================] - 0s 862us/step - loss: 0.1731 - accuracy: 0.7724 - mae: 0.1731 - pearson_correlation: 0.3986 - euclidean_distance: 0.2846
Epoch 91/250
57/57 [==============================] - 0s 848us/step - loss: 0.1730 - accuracy: 0.7750 - mae: 0.1730 - pearson_correlation: 0.4049 - euclidean_distance: 0.2839
Epoch 92/250
57/57 [==============================] - 0s 855us/step - loss: 0.1709 - accuracy: 0.7737 - mae: 0.1709 - pearson_correlation: 0.4010 - euclidean_distance: 0.2815
Epoch 93/250
57/57 [==============================] - 0s 843us/step - loss: 0.1722 - accuracy: 0.7750 - mae: 0.1722 - pearson_correlation: 0.4080 - euclidean_distance: 0.2827
Epoch 94/250
57/57 [==============================] - 0s 860us/step - loss: 0.1706 - accuracy: 0.7786 - mae: 0.1706 - pearson_correlation: 0.4018 - euclidean_distance: 0.2806
Epoch 95/250
57/57 [==============================] - 0s 854us/step - loss: 0.1703 - accuracy: 0.7750 - mae: 0.1703 - pearson_correlation: 0.4077 - euclidean_distance: 0.2794
Epoch 96/250
57/57 [==============================] - 0s 854us/step - loss: 0.1692 - accuracy: 0.7772 - mae: 0.1692 - pearson_correlation: 0.4122 - euclidean_distance: 0.2783
Epoch 97/250
57/57 [==============================] - 0s 848us/step - loss: 0.1682 - accuracy: 0.7755 - mae: 0.1682 - pearson_correlation: 0.4151 - euclidean_distance: 0.2762
Epoch 98/250
57/57 [==============================] - 0s 853us/step - loss: 0.1665 - accuracy: 0.7816 - mae: 0.1665 - pearson_correlation: 0.4176 - euclidean_distance: 0.2740
Epoch 99/250
57/57 [==============================] - 0s 837us/step - loss: 0.1643 - accuracy: 0.7781 - mae: 0.1643 - pearson_correlation: 0.4213 - euclidean_distance: 0.2713
Epoch 100/250
57/57 [==============================] - 0s 860us/step - loss: 0.1655 - accuracy: 0.7786 - mae: 0.1655 - pearson_correlation: 0.4171 - euclidean_distance: 0.2722
Epoch 101/250
57/57 [==============================] - 0s 861us/step - loss: 0.1657 - accuracy: 0.7777 - mae: 0.1657 - pearson_correlation: 0.4176 - euclidean_distance: 0.2729
Epoch 102/250
57/57 [==============================] - 0s 858us/step - loss: 0.1618 - accuracy: 0.7830 - mae: 0.1618 - pearson_correlation: 0.4238 - euclidean_distance: 0.2669
Epoch 103/250
57/57 [==============================] - 0s 854us/step - loss: 0.1638 - accuracy: 0.7790 - mae: 0.1638 - pearson_correlation: 0.4251 - euclidean_distance: 0.2695
Epoch 104/250
57/57 [==============================] - 0s 847us/step - loss: 0.1619 - accuracy: 0.7847 - mae: 0.1619 - pearson_correlation: 0.4261 - euclidean_distance: 0.2672
Epoch 105/250
57/57 [==============================] - 0s 869us/step - loss: 0.1603 - accuracy: 0.7808 - mae: 0.1603 - pearson_correlation: 0.4332 - euclidean_distance: 0.2650
Epoch 106/250
57/57 [==============================] - 0s 850us/step - loss: 0.1609 - accuracy: 0.7865 - mae: 0.1609 - pearson_correlation: 0.4304 - euclidean_distance: 0.2656
Epoch 107/250
57/57 [==============================] - 0s 842us/step - loss: 0.1622 - accuracy: 0.7869 - mae: 0.1622 - pearson_correlation: 0.4311 - euclidean_distance: 0.2673
Epoch 108/250
57/57 [==============================] - 0s 854us/step - loss: 0.1601 - accuracy: 0.7869 - mae: 0.1601 - pearson_correlation: 0.4288 - euclidean_distance: 0.2649
Epoch 109/250
57/57 [==============================] - 0s 849us/step - loss: 0.1591 - accuracy: 0.7843 - mae: 0.1591 - pearson_correlation: 0.4363 - euclidean_distance: 0.2630
Epoch 110/250
57/57 [==============================] - 0s 857us/step - loss: 0.1570 - accuracy: 0.7883 - mae: 0.1570 - pearson_correlation: 0.4470 - euclidean_distance: 0.2595
Epoch 111/250
57/57 [==============================] - 0s 861us/step - loss: 0.1550 - accuracy: 0.7869 - mae: 0.1550 - pearson_correlation: 0.4484 - euclidean_distance: 0.2566
Epoch 112/250
57/57 [==============================] - 0s 864us/step - loss: 0.1570 - accuracy: 0.7887 - mae: 0.1570 - pearson_correlation: 0.4441 - euclidean_distance: 0.2593
Epoch 113/250
57/57 [==============================] - 0s 864us/step - loss: 0.1547 - accuracy: 0.7865 - mae: 0.1547 - pearson_correlation: 0.4496 - euclidean_distance: 0.2563
Epoch 114/250
57/57 [==============================] - 0s 850us/step - loss: 0.1560 - accuracy: 0.7878 - mae: 0.1560 - pearson_correlation: 0.4494 - euclidean_distance: 0.2576
Epoch 115/250
57/57 [==============================] - 0s 852us/step - loss: 0.1530 - accuracy: 0.7878 - mae: 0.1530 - pearson_correlation: 0.4482 - euclidean_distance: 0.2533
Epoch 116/250
57/57 [==============================] - 0s 849us/step - loss: 0.1532 - accuracy: 0.7874 - mae: 0.1532 - pearson_correlation: 0.4536 - euclidean_distance: 0.2536
Epoch 117/250
57/57 [==============================] - 0s 851us/step - loss: 0.1563 - accuracy: 0.7966 - mae: 0.1563 - pearson_correlation: 0.4515 - euclidean_distance: 0.2575
Epoch 118/250
57/57 [==============================] - 0s 847us/step - loss: 0.1509 - accuracy: 0.7887 - mae: 0.1509 - pearson_correlation: 0.4607 - euclidean_distance: 0.2504
Epoch 119/250
57/57 [==============================] - 0s 847us/step - loss: 0.1515 - accuracy: 0.7918 - mae: 0.1515 - pearson_correlation: 0.4569 - euclidean_distance: 0.2510
Epoch 120/250
57/57 [==============================] - 0s 854us/step - loss: 0.1504 - accuracy: 0.7953 - mae: 0.1504 - pearson_correlation: 0.4614 - euclidean_distance: 0.2503
Epoch 121/250
57/57 [==============================] - 0s 856us/step - loss: 0.1505 - accuracy: 0.7927 - mae: 0.1505 - pearson_correlation: 0.4617 - euclidean_distance: 0.2504
Epoch 122/250
57/57 [==============================] - 0s 862us/step - loss: 0.1497 - accuracy: 0.7918 - mae: 0.1497 - pearson_correlation: 0.4666 - euclidean_distance: 0.2483
Epoch 123/250
57/57 [==============================] - 0s 857us/step - loss: 0.1477 - accuracy: 0.7949 - mae: 0.1477 - pearson_correlation: 0.4726 - euclidean_distance: 0.2451
Epoch 124/250
57/57 [==============================] - 0s 859us/step - loss: 0.1504 - accuracy: 0.7944 - mae: 0.1504 - pearson_correlation: 0.4688 - euclidean_distance: 0.2492
Epoch 125/250
57/57 [==============================] - 0s 851us/step - loss: 0.1478 - accuracy: 0.7975 - mae: 0.1478 - pearson_correlation: 0.4705 - euclidean_distance: 0.2451
Epoch 126/250
57/57 [==============================] - 0s 849us/step - loss: 0.1491 - accuracy: 0.7949 - mae: 0.1491 - pearson_correlation: 0.4701 - euclidean_distance: 0.2468
Epoch 127/250
57/57 [==============================] - 0s 857us/step - loss: 0.1459 - accuracy: 0.7966 - mae: 0.1459 - pearson_correlation: 0.4742 - euclidean_distance: 0.2422
Epoch 128/250
57/57 [==============================] - 0s 856us/step - loss: 0.1467 - accuracy: 0.7922 - mae: 0.1467 - pearson_correlation: 0.4742 - euclidean_distance: 0.2441
Epoch 129/250
57/57 [==============================] - 0s 854us/step - loss: 0.1461 - accuracy: 0.7984 - mae: 0.1461 - pearson_correlation: 0.4806 - euclidean_distance: 0.2429
Epoch 130/250
57/57 [==============================] - 0s 859us/step - loss: 0.1447 - accuracy: 0.7966 - mae: 0.1447 - pearson_correlation: 0.4786 - euclidean_distance: 0.2403
Epoch 131/250
57/57 [==============================] - 0s 856us/step - loss: 0.1428 - accuracy: 0.7997 - mae: 0.1428 - pearson_correlation: 0.4852 - euclidean_distance: 0.2376
Epoch 132/250
57/57 [==============================] - 0s 849us/step - loss: 0.1449 - accuracy: 0.8006 - mae: 0.1449 - pearson_correlation: 0.4828 - euclidean_distance: 0.2405
Epoch 133/250
57/57 [==============================] - 0s 841us/step - loss: 0.1431 - accuracy: 0.7971 - mae: 0.1431 - pearson_correlation: 0.4902 - euclidean_distance: 0.2374
Epoch 134/250
57/57 [==============================] - 0s 859us/step - loss: 0.1428 - accuracy: 0.7975 - mae: 0.1428 - pearson_correlation: 0.4906 - euclidean_distance: 0.2379
Epoch 135/250
57/57 [==============================] - 0s 848us/step - loss: 0.1443 - accuracy: 0.7984 - mae: 0.1443 - pearson_correlation: 0.4875 - euclidean_distance: 0.2401
Epoch 136/250
57/57 [==============================] - 0s 864us/step - loss: 0.1406 - accuracy: 0.8006 - mae: 0.1406 - pearson_correlation: 0.4966 - euclidean_distance: 0.2337
Epoch 137/250
57/57 [==============================] - 0s 858us/step - loss: 0.1394 - accuracy: 0.8041 - mae: 0.1394 - pearson_correlation: 0.4925 - euclidean_distance: 0.2323
Epoch 138/250
57/57 [==============================] - 0s 852us/step - loss: 0.1367 - accuracy: 0.8019 - mae: 0.1367 - pearson_correlation: 0.5004 - euclidean_distance: 0.2284
Epoch 139/250
57/57 [==============================] - 0s 859us/step - loss: 0.1390 - accuracy: 0.8024 - mae: 0.1390 - pearson_correlation: 0.5044 - euclidean_distance: 0.2311
Epoch 140/250
57/57 [==============================] - 0s 854us/step - loss: 0.1376 - accuracy: 0.8019 - mae: 0.1376 - pearson_correlation: 0.5046 - euclidean_distance: 0.2296
Epoch 141/250
57/57 [==============================] - 0s 856us/step - loss: 0.1397 - accuracy: 0.8019 - mae: 0.1397 - pearson_correlation: 0.5020 - euclidean_distance: 0.2319
Epoch 142/250
57/57 [==============================] - 0s 853us/step - loss: 0.1386 - accuracy: 0.8019 - mae: 0.1386 - pearson_correlation: 0.5039 - euclidean_distance: 0.2310
Epoch 143/250
57/57 [==============================] - 0s 849us/step - loss: 0.1386 - accuracy: 0.8055 - mae: 0.1386 - pearson_correlation: 0.5073 - euclidean_distance: 0.2302
Epoch 144/250
57/57 [==============================] - 0s 855us/step - loss: 0.1391 - accuracy: 0.8064 - mae: 0.1391 - pearson_correlation: 0.5052 - euclidean_distance: 0.2314
Epoch 145/250
57/57 [==============================] - 0s 858us/step - loss: 0.1392 - accuracy: 0.8041 - mae: 0.1392 - pearson_correlation: 0.5056 - euclidean_distance: 0.2316
Epoch 146/250
57/57 [==============================] - 0s 858us/step - loss: 0.1359 - accuracy: 0.8019 - mae: 0.1359 - pearson_correlation: 0.5107 - euclidean_distance: 0.2265
Epoch 147/250
57/57 [==============================] - 0s 859us/step - loss: 0.1375 - accuracy: 0.8041 - mae: 0.1375 - pearson_correlation: 0.5100 - euclidean_distance: 0.2284
Epoch 148/250
57/57 [==============================] - 0s 852us/step - loss: 0.1365 - accuracy: 0.8055 - mae: 0.1365 - pearson_correlation: 0.5167 - euclidean_distance: 0.2265
Epoch 149/250
57/57 [==============================] - 0s 860us/step - loss: 0.1368 - accuracy: 0.8072 - mae: 0.1368 - pearson_correlation: 0.5160 - euclidean_distance: 0.2272
Epoch 150/250
57/57 [==============================] - 0s 852us/step - loss: 0.1365 - accuracy: 0.8081 - mae: 0.1365 - pearson_correlation: 0.5198 - euclidean_distance: 0.2269
Epoch 151/250
57/57 [==============================] - 0s 859us/step - loss: 0.1348 - accuracy: 0.8094 - mae: 0.1348 - pearson_correlation: 0.5238 - euclidean_distance: 0.2240
Epoch 152/250
57/57 [==============================] - 0s 850us/step - loss: 0.1309 - accuracy: 0.8094 - mae: 0.1309 - pearson_correlation: 0.5249 - euclidean_distance: 0.2189
Epoch 153/250
57/57 [==============================] - 0s 864us/step - loss: 0.1325 - accuracy: 0.8072 - mae: 0.1325 - pearson_correlation: 0.5200 - euclidean_distance: 0.2213
Epoch 154/250
57/57 [==============================] - 0s 853us/step - loss: 0.1331 - accuracy: 0.8134 - mae: 0.1331 - pearson_correlation: 0.5272 - euclidean_distance: 0.2210
Epoch 155/250
57/57 [==============================] - 0s 850us/step - loss: 0.1304 - accuracy: 0.8059 - mae: 0.1304 - pearson_correlation: 0.5255 - euclidean_distance: 0.2185
Epoch 156/250
57/57 [==============================] - 0s 840us/step - loss: 0.1332 - accuracy: 0.8077 - mae: 0.1332 - pearson_correlation: 0.5240 - euclidean_distance: 0.2214
Epoch 157/250
57/57 [==============================] - 0s 835us/step - loss: 0.1339 - accuracy: 0.8099 - mae: 0.1339 - pearson_correlation: 0.5314 - euclidean_distance: 0.2223
Epoch 158/250
57/57 [==============================] - 0s 863us/step - loss: 0.1333 - accuracy: 0.8116 - mae: 0.1333 - pearson_correlation: 0.5310 - euclidean_distance: 0.2218
Epoch 159/250
57/57 [==============================] - 0s 845us/step - loss: 0.1292 - accuracy: 0.8156 - mae: 0.1292 - pearson_correlation: 0.5389 - euclidean_distance: 0.2156
Epoch 160/250
57/57 [==============================] - 0s 847us/step - loss: 0.1295 - accuracy: 0.8156 - mae: 0.1295 - pearson_correlation: 0.5373 - euclidean_distance: 0.2165
Epoch 161/250
57/57 [==============================] - 0s 853us/step - loss: 0.1303 - accuracy: 0.8143 - mae: 0.1303 - pearson_correlation: 0.5354 - euclidean_distance: 0.2177
Epoch 162/250
57/57 [==============================] - 0s 858us/step - loss: 0.1304 - accuracy: 0.8134 - mae: 0.1304 - pearson_correlation: 0.5390 - euclidean_distance: 0.2169
Epoch 163/250
57/57 [==============================] - 0s 852us/step - loss: 0.1255 - accuracy: 0.8116 - mae: 0.1255 - pearson_correlation: 0.5491 - euclidean_distance: 0.2093
Epoch 164/250
57/57 [==============================] - 0s 851us/step - loss: 0.1281 - accuracy: 0.8213 - mae: 0.1281 - pearson_correlation: 0.5420 - euclidean_distance: 0.2130
Epoch 165/250
57/57 [==============================] - 0s 840us/step - loss: 0.1259 - accuracy: 0.8174 - mae: 0.1259 - pearson_correlation: 0.5483 - euclidean_distance: 0.2102
Epoch 166/250
57/57 [==============================] - 0s 857us/step - loss: 0.1251 - accuracy: 0.8161 - mae: 0.1251 - pearson_correlation: 0.5481 - euclidean_distance: 0.2094
Epoch 167/250
57/57 [==============================] - 0s 845us/step - loss: 0.1260 - accuracy: 0.8152 - mae: 0.1260 - pearson_correlation: 0.5468 - euclidean_distance: 0.2104
Epoch 168/250
57/57 [==============================] - 0s 854us/step - loss: 0.1249 - accuracy: 0.8143 - mae: 0.1249 - pearson_correlation: 0.5567 - euclidean_distance: 0.2081
Epoch 169/250
57/57 [==============================] - 0s 838us/step - loss: 0.1257 - accuracy: 0.8187 - mae: 0.1257 - pearson_correlation: 0.5552 - euclidean_distance: 0.2093
Epoch 170/250
57/57 [==============================] - 0s 853us/step - loss: 0.1252 - accuracy: 0.8161 - mae: 0.1252 - pearson_correlation: 0.5553 - euclidean_distance: 0.2092
Epoch 171/250
57/57 [==============================] - 0s 839us/step - loss: 0.1265 - accuracy: 0.8152 - mae: 0.1265 - pearson_correlation: 0.5536 - euclidean_distance: 0.2106
Epoch 172/250
57/57 [==============================] - 0s 838us/step - loss: 0.1244 - accuracy: 0.8209 - mae: 0.1244 - pearson_correlation: 0.5612 - euclidean_distance: 0.2073
Epoch 173/250
57/57 [==============================] - 0s 854us/step - loss: 0.1241 - accuracy: 0.8222 - mae: 0.1241 - pearson_correlation: 0.5664 - euclidean_distance: 0.2067
Epoch 174/250
57/57 [==============================] - 0s 842us/step - loss: 0.1225 - accuracy: 0.8200 - mae: 0.1225 - pearson_correlation: 0.5675 - euclidean_distance: 0.2043
Epoch 175/250
57/57 [==============================] - 0s 849us/step - loss: 0.1222 - accuracy: 0.8227 - mae: 0.1222 - pearson_correlation: 0.5690 - euclidean_distance: 0.2034
Epoch 176/250
57/57 [==============================] - 0s 856us/step - loss: 0.1237 - accuracy: 0.8191 - mae: 0.1237 - pearson_correlation: 0.5629 - euclidean_distance: 0.2061
Epoch 177/250
57/57 [==============================] - 0s 855us/step - loss: 0.1240 - accuracy: 0.8213 - mae: 0.1240 - pearson_correlation: 0.5657 - euclidean_distance: 0.2066
Epoch 178/250
57/57 [==============================] - 0s 841us/step - loss: 0.1230 - accuracy: 0.8258 - mae: 0.1230 - pearson_correlation: 0.5627 - euclidean_distance: 0.2052
Epoch 179/250
57/57 [==============================] - 0s 859us/step - loss: 0.1238 - accuracy: 0.8262 - mae: 0.1238 - pearson_correlation: 0.5659 - euclidean_distance: 0.2069
Epoch 180/250
57/57 [==============================] - 0s 855us/step - loss: 0.1207 - accuracy: 0.8293 - mae: 0.1207 - pearson_correlation: 0.5743 - euclidean_distance: 0.2012
Epoch 181/250
57/57 [==============================] - 0s 866us/step - loss: 0.1201 - accuracy: 0.8271 - mae: 0.1201 - pearson_correlation: 0.5805 - euclidean_distance: 0.2006
Epoch 182/250
57/57 [==============================] - 0s 846us/step - loss: 0.1200 - accuracy: 0.8302 - mae: 0.1200 - pearson_correlation: 0.5706 - euclidean_distance: 0.2008
Epoch 183/250
57/57 [==============================] - 0s 858us/step - loss: 0.1221 - accuracy: 0.8293 - mae: 0.1221 - pearson_correlation: 0.5775 - euclidean_distance: 0.2030
Epoch 184/250
57/57 [==============================] - 0s 858us/step - loss: 0.1196 - accuracy: 0.8297 - mae: 0.1196 - pearson_correlation: 0.5838 - euclidean_distance: 0.1999
Epoch 185/250
57/57 [==============================] - 0s 850us/step - loss: 0.1181 - accuracy: 0.8319 - mae: 0.1181 - pearson_correlation: 0.5771 - euclidean_distance: 0.1978
Epoch 186/250
57/57 [==============================] - 0s 857us/step - loss: 0.1189 - accuracy: 0.8284 - mae: 0.1189 - pearson_correlation: 0.5785 - euclidean_distance: 0.1990
Epoch 187/250
57/57 [==============================] - 0s 851us/step - loss: 0.1155 - accuracy: 0.8341 - mae: 0.1155 - pearson_correlation: 0.5891 - euclidean_distance: 0.1931
Epoch 188/250
57/57 [==============================] - 0s 858us/step - loss: 0.1191 - accuracy: 0.8315 - mae: 0.1191 - pearson_correlation: 0.5860 - euclidean_distance: 0.1988
Epoch 189/250
57/57 [==============================] - 0s 855us/step - loss: 0.1177 - accuracy: 0.8333 - mae: 0.1177 - pearson_correlation: 0.5891 - euclidean_distance: 0.1968
Epoch 190/250
57/57 [==============================] - 0s 849us/step - loss: 0.1169 - accuracy: 0.8328 - mae: 0.1169 - pearson_correlation: 0.5882 - euclidean_distance: 0.1960
Epoch 191/250
57/57 [==============================] - 0s 855us/step - loss: 0.1172 - accuracy: 0.8363 - mae: 0.1172 - pearson_correlation: 0.5943 - euclidean_distance: 0.1957
Epoch 192/250
57/57 [==============================] - 0s 857us/step - loss: 0.1166 - accuracy: 0.8372 - mae: 0.1166 - pearson_correlation: 0.5940 - euclidean_distance: 0.1949
Epoch 193/250
57/57 [==============================] - 0s 856us/step - loss: 0.1175 - accuracy: 0.8359 - mae: 0.1175 - pearson_correlation: 0.5895 - euclidean_distance: 0.1962
Epoch 194/250
57/57 [==============================] - 0s 853us/step - loss: 0.1190 - accuracy: 0.8408 - mae: 0.1190 - pearson_correlation: 0.5966 - euclidean_distance: 0.1977
Epoch 195/250
57/57 [==============================] - 0s 860us/step - loss: 0.1146 - accuracy: 0.8425 - mae: 0.1146 - pearson_correlation: 0.6013 - euclidean_distance: 0.1918
Epoch 196/250
57/57 [==============================] - 0s 851us/step - loss: 0.1130 - accuracy: 0.8438 - mae: 0.1130 - pearson_correlation: 0.6034 - euclidean_distance: 0.1892
Epoch 197/250
57/57 [==============================] - 0s 855us/step - loss: 0.1145 - accuracy: 0.8403 - mae: 0.1145 - pearson_correlation: 0.6056 - euclidean_distance: 0.1908
Epoch 198/250
57/57 [==============================] - 0s 856us/step - loss: 0.1136 - accuracy: 0.8412 - mae: 0.1136 - pearson_correlation: 0.6045 - euclidean_distance: 0.1893
Epoch 199/250
57/57 [==============================] - 0s 837us/step - loss: 0.1135 - accuracy: 0.8456 - mae: 0.1135 - pearson_correlation: 0.6069 - euclidean_distance: 0.1895
Epoch 200/250
57/57 [==============================] - 0s 862us/step - loss: 0.1131 - accuracy: 0.8478 - mae: 0.1131 - pearson_correlation: 0.6082 - euclidean_distance: 0.1889
Epoch 201/250
57/57 [==============================] - 0s 847us/step - loss: 0.1129 - accuracy: 0.8500 - mae: 0.1129 - pearson_correlation: 0.6151 - euclidean_distance: 0.1880
Epoch 202/250
57/57 [==============================] - 0s 842us/step - loss: 0.1124 - accuracy: 0.8496 - mae: 0.1124 - pearson_correlation: 0.6152 - euclidean_distance: 0.1875
Epoch 203/250
57/57 [==============================] - 0s 845us/step - loss: 0.1133 - accuracy: 0.8474 - mae: 0.1133 - pearson_correlation: 0.6136 - euclidean_distance: 0.1891
Epoch 204/250
57/57 [==============================] - 0s 856us/step - loss: 0.1126 - accuracy: 0.8509 - mae: 0.1126 - pearson_correlation: 0.6155 - euclidean_distance: 0.1878
Epoch 205/250
57/57 [==============================] - 0s 857us/step - loss: 0.1100 - accuracy: 0.8469 - mae: 0.1100 - pearson_correlation: 0.6194 - euclidean_distance: 0.1838
Epoch 206/250
57/57 [==============================] - 0s 858us/step - loss: 0.1132 - accuracy: 0.8580 - mae: 0.1132 - pearson_correlation: 0.6172 - euclidean_distance: 0.1882
Epoch 207/250
57/57 [==============================] - 0s 854us/step - loss: 0.1127 - accuracy: 0.8571 - mae: 0.1127 - pearson_correlation: 0.6216 - euclidean_distance: 0.1870
Epoch 208/250
57/57 [==============================] - 0s 852us/step - loss: 0.1117 - accuracy: 0.8540 - mae: 0.1117 - pearson_correlation: 0.6259 - euclidean_distance: 0.1863
Epoch 209/250
57/57 [==============================] - 0s 853us/step - loss: 0.1125 - accuracy: 0.8558 - mae: 0.1125 - pearson_correlation: 0.6239 - euclidean_distance: 0.1874
Epoch 210/250
57/57 [==============================] - 0s 866us/step - loss: 0.1115 - accuracy: 0.8580 - mae: 0.1115 - pearson_correlation: 0.6270 - euclidean_distance: 0.1853
Epoch 211/250
57/57 [==============================] - 0s 854us/step - loss: 0.1086 - accuracy: 0.8544 - mae: 0.1086 - pearson_correlation: 0.6243 - euclidean_distance: 0.1812
Epoch 212/250
57/57 [==============================] - 0s 853us/step - loss: 0.1115 - accuracy: 0.8544 - mae: 0.1115 - pearson_correlation: 0.6251 - euclidean_distance: 0.1856
Epoch 213/250
57/57 [==============================] - 0s 879us/step - loss: 0.1083 - accuracy: 0.8558 - mae: 0.1083 - pearson_correlation: 0.6344 - euclidean_distance: 0.1804
Epoch 214/250
57/57 [==============================] - 0s 854us/step - loss: 0.1072 - accuracy: 0.8588 - mae: 0.1072 - pearson_correlation: 0.6391 - euclidean_distance: 0.1786
Epoch 215/250
57/57 [==============================] - 0s 869us/step - loss: 0.1079 - accuracy: 0.8637 - mae: 0.1079 - pearson_correlation: 0.6361 - euclidean_distance: 0.1796
Epoch 216/250
57/57 [==============================] - 0s 854us/step - loss: 0.1072 - accuracy: 0.8637 - mae: 0.1072 - pearson_correlation: 0.6383 - euclidean_distance: 0.1785
Epoch 217/250
57/57 [==============================] - 0s 846us/step - loss: 0.1053 - accuracy: 0.8610 - mae: 0.1053 - pearson_correlation: 0.6430 - euclidean_distance: 0.1759
Epoch 218/250
57/57 [==============================] - 0s 858us/step - loss: 0.1053 - accuracy: 0.8610 - mae: 0.1053 - pearson_correlation: 0.6434 - euclidean_distance: 0.1760
Epoch 219/250
57/57 [==============================] - 0s 854us/step - loss: 0.1086 - accuracy: 0.8628 - mae: 0.1086 - pearson_correlation: 0.6377 - euclidean_distance: 0.1804
Epoch 220/250
57/57 [==============================] - 0s 877us/step - loss: 0.1058 - accuracy: 0.8637 - mae: 0.1058 - pearson_correlation: 0.6430 - euclidean_distance: 0.1767
Epoch 221/250
57/57 [==============================] - 0s 848us/step - loss: 0.1072 - accuracy: 0.8633 - mae: 0.1072 - pearson_correlation: 0.6382 - euclidean_distance: 0.1781
Epoch 222/250
57/57 [==============================] - 0s 841us/step - loss: 0.1058 - accuracy: 0.8672 - mae: 0.1058 - pearson_correlation: 0.6473 - euclidean_distance: 0.1760
Epoch 223/250
57/57 [==============================] - 0s 845us/step - loss: 0.1074 - accuracy: 0.8668 - mae: 0.1074 - pearson_correlation: 0.6443 - euclidean_distance: 0.1784
Epoch 224/250
57/57 [==============================] - 0s 844us/step - loss: 0.1057 - accuracy: 0.8725 - mae: 0.1057 - pearson_correlation: 0.6478 - euclidean_distance: 0.1758
Epoch 225/250
57/57 [==============================] - 0s 851us/step - loss: 0.1035 - accuracy: 0.8738 - mae: 0.1035 - pearson_correlation: 0.6534 - euclidean_distance: 0.1721
Epoch 226/250
57/57 [==============================] - 0s 858us/step - loss: 0.1028 - accuracy: 0.8738 - mae: 0.1028 - pearson_correlation: 0.6544 - euclidean_distance: 0.1714
Epoch 227/250
57/57 [==============================] - 0s 859us/step - loss: 0.1050 - accuracy: 0.8730 - mae: 0.1050 - pearson_correlation: 0.6533 - euclidean_distance: 0.1746
Epoch 228/250
57/57 [==============================] - 0s 852us/step - loss: 0.1039 - accuracy: 0.8747 - mae: 0.1039 - pearson_correlation: 0.6580 - euclidean_distance: 0.1729
Epoch 229/250
57/57 [==============================] - 0s 846us/step - loss: 0.1032 - accuracy: 0.8778 - mae: 0.1032 - pearson_correlation: 0.6593 - euclidean_distance: 0.1719
Epoch 230/250
57/57 [==============================] - 0s 855us/step - loss: 0.1048 - accuracy: 0.8787 - mae: 0.1048 - pearson_correlation: 0.6574 - euclidean_distance: 0.1736
Epoch 231/250
57/57 [==============================] - 0s 845us/step - loss: 0.1047 - accuracy: 0.8778 - mae: 0.1047 - pearson_correlation: 0.6584 - euclidean_distance: 0.1736
Epoch 232/250
57/57 [==============================] - 0s 856us/step - loss: 0.1006 - accuracy: 0.8809 - mae: 0.1006 - pearson_correlation: 0.6618 - euclidean_distance: 0.1680
Epoch 233/250
57/57 [==============================] - 0s 826us/step - loss: 0.0997 - accuracy: 0.8813 - mae: 0.0997 - pearson_correlation: 0.6706 - euclidean_distance: 0.1664
Epoch 234/250
57/57 [==============================] - 0s 859us/step - loss: 0.1009 - accuracy: 0.8884 - mae: 0.1009 - pearson_correlation: 0.6709 - euclidean_distance: 0.1679
Epoch 235/250
57/57 [==============================] - 0s 855us/step - loss: 0.1011 - accuracy: 0.8853 - mae: 0.1011 - pearson_correlation: 0.6692 - euclidean_distance: 0.1684
Epoch 236/250
57/57 [==============================] - 0s 853us/step - loss: 0.1031 - accuracy: 0.8893 - mae: 0.1031 - pearson_correlation: 0.6722 - euclidean_distance: 0.1704
Epoch 237/250
57/57 [==============================] - 0s 848us/step - loss: 0.0991 - accuracy: 0.8897 - mae: 0.0991 - pearson_correlation: 0.6719 - euclidean_distance: 0.1652
Epoch 238/250
57/57 [==============================] - 0s 857us/step - loss: 0.1033 - accuracy: 0.8875 - mae: 0.1033 - pearson_correlation: 0.6705 - euclidean_distance: 0.1710
Epoch 239/250
57/57 [==============================] - 0s 847us/step - loss: 0.0994 - accuracy: 0.8977 - mae: 0.0994 - pearson_correlation: 0.6812 - euclidean_distance: 0.1647
Epoch 240/250
57/57 [==============================] - 0s 858us/step - loss: 0.1021 - accuracy: 0.8884 - mae: 0.1021 - pearson_correlation: 0.6692 - euclidean_distance: 0.1689
Epoch 241/250
57/57 [==============================] - 0s 839us/step - loss: 0.0994 - accuracy: 0.8941 - mae: 0.0994 - pearson_correlation: 0.6763 - euclidean_distance: 0.1649
Epoch 242/250
57/57 [==============================] - 0s 855us/step - loss: 0.0970 - accuracy: 0.8981 - mae: 0.0970 - pearson_correlation: 0.6864 - euclidean_distance: 0.1618
Epoch 243/250
57/57 [==============================] - 0s 852us/step - loss: 0.0991 - accuracy: 0.9007 - mae: 0.0991 - pearson_correlation: 0.6833 - euclidean_distance: 0.1645
Epoch 244/250
57/57 [==============================] - 0s 862us/step - loss: 0.0962 - accuracy: 0.9047 - mae: 0.0962 - pearson_correlation: 0.6914 - euclidean_distance: 0.1592
Epoch 245/250
57/57 [==============================] - 0s 854us/step - loss: 0.0981 - accuracy: 0.9038 - mae: 0.0981 - pearson_correlation: 0.6889 - euclidean_distance: 0.1623
Epoch 246/250
57/57 [==============================] - 0s 860us/step - loss: 0.0969 - accuracy: 0.9060 - mae: 0.0969 - pearson_correlation: 0.6909 - euclidean_distance: 0.1605
Epoch 247/250
57/57 [==============================] - 0s 852us/step - loss: 0.0966 - accuracy: 0.9078 - mae: 0.0966 - pearson_correlation: 0.6898 - euclidean_distance: 0.1603
Epoch 248/250
57/57 [==============================] - 0s 851us/step - loss: 0.0964 - accuracy: 0.9074 - mae: 0.0964 - pearson_correlation: 0.6916 - euclidean_distance: 0.1602
Epoch 249/250
57/57 [==============================] - 0s 850us/step - loss: 0.0944 - accuracy: 0.9096 - mae: 0.0944 - pearson_correlation: 0.6994 - euclidean_distance: 0.1570
Epoch 250/250
57/57 [==============================] - 0s 844us/step - loss: 0.0987 - accuracy: 0.9065 - mae: 0.0987 - pearson_correlation: 0.6838 - euclidean_distance: 0.1634
29/29 [==============================] - 0s 479us/step
Epoch 1/250
57/57 [==============================] - 1s 945us/step - loss: 0.9820 - accuracy: 0.0454 - mae: 0.9820 - pearson_correlation: -0.4852 - euclidean_distance: 1.4975
Epoch 2/250
57/57 [==============================] - 0s 853us/step - loss: 0.9757 - accuracy: 0.0450 - mae: 0.9757 - pearson_correlation: -0.4801 - euclidean_distance: 1.4882
Epoch 3/250
57/57 [==============================] - 0s 882us/step - loss: 0.9674 - accuracy: 0.0450 - mae: 0.9674 - pearson_correlation: -0.4855 - euclidean_distance: 1.4757
Epoch 4/250
57/57 [==============================] - 0s 866us/step - loss: 0.9608 - accuracy: 0.0459 - mae: 0.9608 - pearson_correlation: -0.4864 - euclidean_distance: 1.4660
Epoch 5/250
57/57 [==============================] - 0s 874us/step - loss: 0.9554 - accuracy: 0.0450 - mae: 0.9554 - pearson_correlation: -0.4884 - euclidean_distance: 1.4575
Epoch 6/250
57/57 [==============================] - 0s 872us/step - loss: 0.9469 - accuracy: 0.0450 - mae: 0.9469 - pearson_correlation: -0.4864 - euclidean_distance: 1.4450
Epoch 7/250
57/57 [==============================] - 0s 870us/step - loss: 0.9414 - accuracy: 0.0454 - mae: 0.9414 - pearson_correlation: -0.4873 - euclidean_distance: 1.4369
Epoch 8/250
57/57 [==============================] - 0s 869us/step - loss: 0.9334 - accuracy: 0.0459 - mae: 0.9334 - pearson_correlation: -0.4855 - euclidean_distance: 1.4249
Epoch 9/250
57/57 [==============================] - 0s 867us/step - loss: 0.9255 - accuracy: 0.0454 - mae: 0.9255 - pearson_correlation: -0.4888 - euclidean_distance: 1.4129
Epoch 10/250
57/57 [==============================] - 0s 860us/step - loss: 0.9189 - accuracy: 0.0459 - mae: 0.9189 - pearson_correlation: -0.4839 - euclidean_distance: 1.4020
Epoch 11/250
57/57 [==============================] - 0s 866us/step - loss: 0.9115 - accuracy: 0.0468 - mae: 0.9115 - pearson_correlation: -0.4897 - euclidean_distance: 1.3921
Epoch 12/250
57/57 [==============================] - 0s 867us/step - loss: 0.9025 - accuracy: 0.0459 - mae: 0.9025 - pearson_correlation: -0.4865 - euclidean_distance: 1.3785
Epoch 13/250
57/57 [==============================] - 0s 869us/step - loss: 0.8967 - accuracy: 0.0463 - mae: 0.8967 - pearson_correlation: -0.4895 - euclidean_distance: 1.3702
Epoch 14/250
57/57 [==============================] - 0s 854us/step - loss: 0.8909 - accuracy: 0.0459 - mae: 0.8909 - pearson_correlation: -0.4943 - euclidean_distance: 1.3613
Epoch 15/250
57/57 [==============================] - 0s 869us/step - loss: 0.8823 - accuracy: 0.0450 - mae: 0.8823 - pearson_correlation: -0.4869 - euclidean_distance: 1.3487
Epoch 16/250
57/57 [==============================] - 0s 868us/step - loss: 0.8762 - accuracy: 0.0468 - mae: 0.8762 - pearson_correlation: -0.4901 - euclidean_distance: 1.3398
Epoch 17/250
57/57 [==============================] - 0s 870us/step - loss: 0.8694 - accuracy: 0.0454 - mae: 0.8694 - pearson_correlation: -0.4967 - euclidean_distance: 1.3296
Epoch 18/250
57/57 [==============================] - 0s 855us/step - loss: 0.8619 - accuracy: 0.0463 - mae: 0.8619 - pearson_correlation: -0.4953 - euclidean_distance: 1.3187
Epoch 19/250
57/57 [==============================] - 0s 862us/step - loss: 0.8556 - accuracy: 0.0459 - mae: 0.8556 - pearson_correlation: -0.4957 - euclidean_distance: 1.3094
Epoch 20/250
57/57 [==============================] - 0s 886us/step - loss: 0.8479 - accuracy: 0.0459 - mae: 0.8479 - pearson_correlation: -0.4984 - euclidean_distance: 1.2982
Epoch 21/250
57/57 [==============================] - 0s 943us/step - loss: 0.8425 - accuracy: 0.0459 - mae: 0.8425 - pearson_correlation: -0.4987 - euclidean_distance: 1.2902
Epoch 22/250
57/57 [==============================] - 0s 880us/step - loss: 0.8358 - accuracy: 0.0481 - mae: 0.8358 - pearson_correlation: -0.4991 - euclidean_distance: 1.2807
Epoch 23/250
57/57 [==============================] - 0s 876us/step - loss: 0.8288 - accuracy: 0.0450 - mae: 0.8288 - pearson_correlation: -0.5050 - euclidean_distance: 1.2708
Epoch 24/250
57/57 [==============================] - 0s 868us/step - loss: 0.8234 - accuracy: 0.0463 - mae: 0.8234 - pearson_correlation: -0.5035 - euclidean_distance: 1.2626
Epoch 25/250
57/57 [==============================] - 0s 866us/step - loss: 0.8166 - accuracy: 0.0476 - mae: 0.8166 - pearson_correlation: -0.5089 - euclidean_distance: 1.2529
Epoch 26/250
57/57 [==============================] - 0s 866us/step - loss: 0.8103 - accuracy: 0.0472 - mae: 0.8103 - pearson_correlation: -0.5077 - euclidean_distance: 1.2441
Epoch 27/250
57/57 [==============================] - 0s 867us/step - loss: 0.8029 - accuracy: 0.0472 - mae: 0.8029 - pearson_correlation: -0.5102 - euclidean_distance: 1.2334
Epoch 28/250
57/57 [==============================] - 0s 863us/step - loss: 0.7959 - accuracy: 0.0485 - mae: 0.7959 - pearson_correlation: -0.5089 - euclidean_distance: 1.2232
Epoch 29/250
57/57 [==============================] - 0s 866us/step - loss: 0.7911 - accuracy: 0.0490 - mae: 0.7911 - pearson_correlation: -0.5111 - euclidean_distance: 1.2165
Epoch 30/250
57/57 [==============================] - 0s 857us/step - loss: 0.7847 - accuracy: 0.0481 - mae: 0.7847 - pearson_correlation: -0.5152 - euclidean_distance: 1.2075
Epoch 31/250
57/57 [==============================] - 0s 866us/step - loss: 0.7781 - accuracy: 0.0490 - mae: 0.7781 - pearson_correlation: -0.5186 - euclidean_distance: 1.1986
Epoch 32/250
57/57 [==============================] - 0s 863us/step - loss: 0.7723 - accuracy: 0.0498 - mae: 0.7723 - pearson_correlation: -0.5213 - euclidean_distance: 1.1905
Epoch 33/250
57/57 [==============================] - 0s 867us/step - loss: 0.7671 - accuracy: 0.0472 - mae: 0.7671 - pearson_correlation: -0.5209 - euclidean_distance: 1.1828
Epoch 34/250
57/57 [==============================] - 0s 861us/step - loss: 0.7604 - accuracy: 0.0512 - mae: 0.7604 - pearson_correlation: -0.5254 - euclidean_distance: 1.1735
Epoch 35/250
57/57 [==============================] - 0s 861us/step - loss: 0.7550 - accuracy: 0.0494 - mae: 0.7550 - pearson_correlation: -0.5269 - euclidean_distance: 1.1664
Epoch 36/250
57/57 [==============================] - 0s 869us/step - loss: 0.7490 - accuracy: 0.0507 - mae: 0.7490 - pearson_correlation: -0.5290 - euclidean_distance: 1.1584
Epoch 37/250
57/57 [==============================] - 0s 857us/step - loss: 0.7443 - accuracy: 0.0494 - mae: 0.7443 - pearson_correlation: -0.5316 - euclidean_distance: 1.1521
Epoch 38/250
57/57 [==============================] - 0s 867us/step - loss: 0.7372 - accuracy: 0.0516 - mae: 0.7372 - pearson_correlation: -0.5386 - euclidean_distance: 1.1421
Epoch 39/250
57/57 [==============================] - 0s 852us/step - loss: 0.7324 - accuracy: 0.0512 - mae: 0.7324 - pearson_correlation: -0.5402 - euclidean_distance: 1.1354
Epoch 40/250
57/57 [==============================] - 0s 862us/step - loss: 0.7271 - accuracy: 0.0512 - mae: 0.7271 - pearson_correlation: -0.5388 - euclidean_distance: 1.1285
Epoch 41/250
57/57 [==============================] - 0s 865us/step - loss: 0.7216 - accuracy: 0.0516 - mae: 0.7216 - pearson_correlation: -0.5412 - euclidean_distance: 1.1207
Epoch 42/250
57/57 [==============================] - 0s 870us/step - loss: 0.7169 - accuracy: 0.0521 - mae: 0.7169 - pearson_correlation: -0.5440 - euclidean_distance: 1.1153
Epoch 43/250
57/57 [==============================] - 0s 862us/step - loss: 0.7098 - accuracy: 0.0547 - mae: 0.7098 - pearson_correlation: -0.5519 - euclidean_distance: 1.1058
Epoch 44/250
57/57 [==============================] - 0s 863us/step - loss: 0.7063 - accuracy: 0.0512 - mae: 0.7063 - pearson_correlation: -0.5538 - euclidean_distance: 1.1011
Epoch 45/250
57/57 [==============================] - 0s 857us/step - loss: 0.6991 - accuracy: 0.0512 - mae: 0.6991 - pearson_correlation: -0.5521 - euclidean_distance: 1.0917
Epoch 46/250
57/57 [==============================] - 0s 858us/step - loss: 0.6949 - accuracy: 0.0529 - mae: 0.6949 - pearson_correlation: -0.5548 - euclidean_distance: 1.0861
Epoch 47/250
57/57 [==============================] - 0s 870us/step - loss: 0.6897 - accuracy: 0.0543 - mae: 0.6897 - pearson_correlation: -0.5600 - euclidean_distance: 1.0795
Epoch 48/250
57/57 [==============================] - 0s 865us/step - loss: 0.6854 - accuracy: 0.0556 - mae: 0.6854 - pearson_correlation: -0.5542 - euclidean_distance: 1.0742
Epoch 49/250
57/57 [==============================] - 0s 864us/step - loss: 0.6792 - accuracy: 0.0604 - mae: 0.6792 - pearson_correlation: -0.5649 - euclidean_distance: 1.0660
Epoch 50/250
57/57 [==============================] - 0s 863us/step - loss: 0.6746 - accuracy: 0.0573 - mae: 0.6746 - pearson_correlation: -0.5700 - euclidean_distance: 1.0604
Epoch 51/250
57/57 [==============================] - 0s 866us/step - loss: 0.6707 - accuracy: 0.0556 - mae: 0.6707 - pearson_correlation: -0.5680 - euclidean_distance: 1.0555
Epoch 52/250
57/57 [==============================] - 0s 859us/step - loss: 0.6656 - accuracy: 0.0569 - mae: 0.6656 - pearson_correlation: -0.5777 - euclidean_distance: 1.0490
Epoch 53/250
57/57 [==============================] - 0s 865us/step - loss: 0.6599 - accuracy: 0.0604 - mae: 0.6599 - pearson_correlation: -0.5784 - euclidean_distance: 1.0422
Epoch 54/250
57/57 [==============================] - 0s 859us/step - loss: 0.6558 - accuracy: 0.0578 - mae: 0.6558 - pearson_correlation: -0.5820 - euclidean_distance: 1.0379
Epoch 55/250
57/57 [==============================] - 0s 860us/step - loss: 0.6506 - accuracy: 0.0626 - mae: 0.6506 - pearson_correlation: -0.5806 - euclidean_distance: 1.0303
Epoch 56/250
57/57 [==============================] - 0s 863us/step - loss: 0.6456 - accuracy: 0.0644 - mae: 0.6456 - pearson_correlation: -0.5794 - euclidean_distance: 1.0248
Epoch 57/250
57/57 [==============================] - 0s 857us/step - loss: 0.6417 - accuracy: 0.0653 - mae: 0.6417 - pearson_correlation: -0.5811 - euclidean_distance: 1.0192
Epoch 58/250
57/57 [==============================] - 0s 845us/step - loss: 0.6374 - accuracy: 0.0626 - mae: 0.6374 - pearson_correlation: -0.5851 - euclidean_distance: 1.0150
Epoch 59/250
57/57 [==============================] - 0s 854us/step - loss: 0.6326 - accuracy: 0.0648 - mae: 0.6326 - pearson_correlation: -0.5893 - euclidean_distance: 1.0090
Epoch 60/250
57/57 [==============================] - 0s 866us/step - loss: 0.6275 - accuracy: 0.0662 - mae: 0.6275 - pearson_correlation: -0.5943 - euclidean_distance: 1.0028
Epoch 61/250
57/57 [==============================] - 0s 856us/step - loss: 0.6240 - accuracy: 0.0644 - mae: 0.6240 - pearson_correlation: -0.5937 - euclidean_distance: 0.9989
Epoch 62/250
57/57 [==============================] - 0s 872us/step - loss: 0.6185 - accuracy: 0.0684 - mae: 0.6185 - pearson_correlation: -0.5962 - euclidean_distance: 0.9917
Epoch 63/250
57/57 [==============================] - 0s 867us/step - loss: 0.6154 - accuracy: 0.0675 - mae: 0.6154 - pearson_correlation: -0.6004 - euclidean_distance: 0.9892
Epoch 64/250
57/57 [==============================] - 0s 854us/step - loss: 0.6098 - accuracy: 0.0723 - mae: 0.6098 - pearson_correlation: -0.6006 - euclidean_distance: 0.9826
Epoch 65/250
57/57 [==============================] - 0s 863us/step - loss: 0.6057 - accuracy: 0.0719 - mae: 0.6057 - pearson_correlation: -0.5989 - euclidean_distance: 0.9765
Epoch 66/250
57/57 [==============================] - 0s 866us/step - loss: 0.6028 - accuracy: 0.0688 - mae: 0.6028 - pearson_correlation: -0.6007 - euclidean_distance: 0.9736
Epoch 67/250
57/57 [==============================] - 0s 866us/step - loss: 0.5973 - accuracy: 0.0732 - mae: 0.5973 - pearson_correlation: -0.6003 - euclidean_distance: 0.9679
Epoch 68/250
57/57 [==============================] - 0s 872us/step - loss: 0.5940 - accuracy: 0.0772 - mae: 0.5940 - pearson_correlation: -0.6005 - euclidean_distance: 0.9636
Epoch 69/250
57/57 [==============================] - 0s 860us/step - loss: 0.5891 - accuracy: 0.0732 - mae: 0.5891 - pearson_correlation: -0.6015 - euclidean_distance: 0.9577
Epoch 70/250
57/57 [==============================] - 0s 864us/step - loss: 0.5844 - accuracy: 0.0732 - mae: 0.5844 - pearson_correlation: -0.6095 - euclidean_distance: 0.9527
Epoch 71/250
57/57 [==============================] - 0s 852us/step - loss: 0.5814 - accuracy: 0.0807 - mae: 0.5814 - pearson_correlation: -0.6059 - euclidean_distance: 0.9491
Epoch 72/250
57/57 [==============================] - 0s 866us/step - loss: 0.5778 - accuracy: 0.0745 - mae: 0.5778 - pearson_correlation: -0.6094 - euclidean_distance: 0.9448
Epoch 73/250
57/57 [==============================] - 0s 851us/step - loss: 0.5725 - accuracy: 0.0820 - mae: 0.5725 - pearson_correlation: -0.6087 - euclidean_distance: 0.9385
Epoch 74/250
57/57 [==============================] - 0s 858us/step - loss: 0.5686 - accuracy: 0.0785 - mae: 0.5686 - pearson_correlation: -0.6098 - euclidean_distance: 0.9339
Epoch 75/250
57/57 [==============================] - 0s 865us/step - loss: 0.5657 - accuracy: 0.0820 - mae: 0.5657 - pearson_correlation: -0.6061 - euclidean_distance: 0.9310
Epoch 76/250
57/57 [==============================] - 0s 864us/step - loss: 0.5615 - accuracy: 0.0794 - mae: 0.5615 - pearson_correlation: -0.6080 - euclidean_distance: 0.9255
Epoch 77/250
57/57 [==============================] - 0s 859us/step - loss: 0.5577 - accuracy: 0.0860 - mae: 0.5577 - pearson_correlation: -0.6101 - euclidean_distance: 0.9209
Epoch 78/250
57/57 [==============================] - 0s 865us/step - loss: 0.5535 - accuracy: 0.0816 - mae: 0.5535 - pearson_correlation: -0.6074 - euclidean_distance: 0.9160
Epoch 79/250
57/57 [==============================] - 0s 853us/step - loss: 0.5493 - accuracy: 0.0843 - mae: 0.5493 - pearson_correlation: -0.6094 - euclidean_distance: 0.9106
Epoch 80/250
57/57 [==============================] - 0s 865us/step - loss: 0.5464 - accuracy: 0.0781 - mae: 0.5464 - pearson_correlation: -0.6160 - euclidean_distance: 0.9082
Epoch 81/250
57/57 [==============================] - 0s 863us/step - loss: 0.5416 - accuracy: 0.0873 - mae: 0.5416 - pearson_correlation: -0.6091 - euclidean_distance: 0.9016
Epoch 82/250
57/57 [==============================] - 0s 868us/step - loss: 0.5387 - accuracy: 0.0803 - mae: 0.5387 - pearson_correlation: -0.6107 - euclidean_distance: 0.8982
Epoch 83/250
57/57 [==============================] - 0s 861us/step - loss: 0.5345 - accuracy: 0.0869 - mae: 0.5345 - pearson_correlation: -0.6149 - euclidean_distance: 0.8933
Epoch 84/250
57/57 [==============================] - 0s 852us/step - loss: 0.5309 - accuracy: 0.0873 - mae: 0.5309 - pearson_correlation: -0.6104 - euclidean_distance: 0.8885
Epoch 85/250
57/57 [==============================] - 0s 860us/step - loss: 0.5269 - accuracy: 0.0918 - mae: 0.5269 - pearson_correlation: -0.6054 - euclidean_distance: 0.8824
Epoch 86/250
57/57 [==============================] - 0s 934us/step - loss: 0.5234 - accuracy: 0.0878 - mae: 0.5234 - pearson_correlation: -0.6097 - euclidean_distance: 0.8787
Epoch 87/250
57/57 [==============================] - 0s 1ms/step - loss: 0.5197 - accuracy: 0.0882 - mae: 0.5197 - pearson_correlation: -0.6048 - euclidean_distance: 0.8729
Epoch 88/250
57/57 [==============================] - 0s 958us/step - loss: 0.5166 - accuracy: 0.0931 - mae: 0.5166 - pearson_correlation: -0.6072 - euclidean_distance: 0.8686
Epoch 89/250
57/57 [==============================] - 0s 961us/step - loss: 0.5128 - accuracy: 0.0922 - mae: 0.5128 - pearson_correlation: -0.6045 - euclidean_distance: 0.8633
Epoch 90/250
57/57 [==============================] - 0s 973us/step - loss: 0.5092 - accuracy: 0.0918 - mae: 0.5092 - pearson_correlation: -0.6091 - euclidean_distance: 0.8597
Epoch 91/250
57/57 [==============================] - 0s 1ms/step - loss: 0.5054 - accuracy: 0.0926 - mae: 0.5054 - pearson_correlation: -0.6100 - euclidean_distance: 0.8547
Epoch 92/250
57/57 [==============================] - 0s 970us/step - loss: 0.5020 - accuracy: 0.0966 - mae: 0.5020 - pearson_correlation: -0.5992 - euclidean_distance: 0.8491
Epoch 93/250
57/57 [==============================] - 0s 973us/step - loss: 0.4970 - accuracy: 0.0913 - mae: 0.4970 - pearson_correlation: -0.5989 - euclidean_distance: 0.8433
Epoch 94/250
57/57 [==============================] - 0s 1ms/step - loss: 0.4947 - accuracy: 0.0962 - mae: 0.4947 - pearson_correlation: -0.5985 - euclidean_distance: 0.8398
Epoch 95/250
57/57 [==============================] - 0s 1ms/step - loss: 0.4910 - accuracy: 0.0962 - mae: 0.4910 - pearson_correlation: -0.5992 - euclidean_distance: 0.8346
Epoch 96/250
57/57 [==============================] - 0s 875us/step - loss: 0.4882 - accuracy: 0.0993 - mae: 0.4882 - pearson_correlation: -0.5931 - euclidean_distance: 0.8293
Epoch 97/250
57/57 [==============================] - 0s 865us/step - loss: 0.4843 - accuracy: 0.1010 - mae: 0.4843 - pearson_correlation: -0.5946 - euclidean_distance: 0.8241
Epoch 98/250
57/57 [==============================] - 0s 860us/step - loss: 0.4792 - accuracy: 0.0984 - mae: 0.4792 - pearson_correlation: -0.5924 - euclidean_distance: 0.8174
Epoch 99/250
57/57 [==============================] - 0s 852us/step - loss: 0.4771 - accuracy: 0.1037 - mae: 0.4771 - pearson_correlation: -0.5887 - euclidean_distance: 0.8129
Epoch 100/250
57/57 [==============================] - 0s 857us/step - loss: 0.4731 - accuracy: 0.1041 - mae: 0.4731 - pearson_correlation: -0.5842 - euclidean_distance: 0.8071
Epoch 101/250
57/57 [==============================] - 0s 875us/step - loss: 0.4693 - accuracy: 0.1019 - mae: 0.4693 - pearson_correlation: -0.5818 - euclidean_distance: 0.8016
Epoch 102/250
57/57 [==============================] - 0s 853us/step - loss: 0.4668 - accuracy: 0.1054 - mae: 0.4668 - pearson_correlation: -0.5789 - euclidean_distance: 0.7976
Epoch 103/250
57/57 [==============================] - 0s 853us/step - loss: 0.4631 - accuracy: 0.1085 - mae: 0.4631 - pearson_correlation: -0.5770 - euclidean_distance: 0.7925
Epoch 104/250
57/57 [==============================] - 0s 864us/step - loss: 0.4598 - accuracy: 0.1023 - mae: 0.4598 - pearson_correlation: -0.5746 - euclidean_distance: 0.7871
Epoch 105/250
57/57 [==============================] - 0s 858us/step - loss: 0.4546 - accuracy: 0.1072 - mae: 0.4546 - pearson_correlation: -0.5725 - euclidean_distance: 0.7800
Epoch 106/250
57/57 [==============================] - 0s 864us/step - loss: 0.4520 - accuracy: 0.1191 - mae: 0.4520 - pearson_correlation: -0.5673 - euclidean_distance: 0.7748
Epoch 107/250
57/57 [==============================] - 0s 862us/step - loss: 0.4473 - accuracy: 0.1222 - mae: 0.4473 - pearson_correlation: -0.5587 - euclidean_distance: 0.7679
Epoch 108/250
57/57 [==============================] - 0s 856us/step - loss: 0.4433 - accuracy: 0.1187 - mae: 0.4433 - pearson_correlation: -0.5548 - euclidean_distance: 0.7621
Epoch 109/250
57/57 [==============================] - 0s 866us/step - loss: 0.4401 - accuracy: 0.1195 - mae: 0.4401 - pearson_correlation: -0.5556 - euclidean_distance: 0.7583
Epoch 110/250
57/57 [==============================] - 0s 858us/step - loss: 0.4352 - accuracy: 0.1266 - mae: 0.4352 - pearson_correlation: -0.5459 - euclidean_distance: 0.7509
Epoch 111/250
57/57 [==============================] - 0s 868us/step - loss: 0.4325 - accuracy: 0.1244 - mae: 0.4325 - pearson_correlation: -0.5417 - euclidean_distance: 0.7453
Epoch 112/250
57/57 [==============================] - 0s 863us/step - loss: 0.4279 - accuracy: 0.1297 - mae: 0.4279 - pearson_correlation: -0.5421 - euclidean_distance: 0.7397
Epoch 113/250
57/57 [==============================] - 0s 873us/step - loss: 0.4247 - accuracy: 0.1394 - mae: 0.4247 - pearson_correlation: -0.5293 - euclidean_distance: 0.7332
Epoch 114/250
57/57 [==============================] - 0s 867us/step - loss: 0.4213 - accuracy: 0.1407 - mae: 0.4213 - pearson_correlation: -0.5234 - euclidean_distance: 0.7273
Epoch 115/250
57/57 [==============================] - 0s 870us/step - loss: 0.4169 - accuracy: 0.1425 - mae: 0.4169 - pearson_correlation: -0.5227 - euclidean_distance: 0.7217
Epoch 116/250
57/57 [==============================] - 0s 866us/step - loss: 0.4133 - accuracy: 0.1420 - mae: 0.4133 - pearson_correlation: -0.5175 - euclidean_distance: 0.7160
Epoch 117/250
57/57 [==============================] - 0s 859us/step - loss: 0.4097 - accuracy: 0.1513 - mae: 0.4097 - pearson_correlation: -0.5045 - euclidean_distance: 0.7085
Epoch 118/250
57/57 [==============================] - 0s 856us/step - loss: 0.4055 - accuracy: 0.1570 - mae: 0.4055 - pearson_correlation: -0.4982 - euclidean_distance: 0.7023
Epoch 119/250
57/57 [==============================] - 0s 863us/step - loss: 0.3995 - accuracy: 0.1676 - mae: 0.3995 - pearson_correlation: -0.4951 - euclidean_distance: 0.6949
Epoch 120/250
57/57 [==============================] - 0s 868us/step - loss: 0.3964 - accuracy: 0.1672 - mae: 0.3964 - pearson_correlation: -0.4916 - euclidean_distance: 0.6889
Epoch 121/250
57/57 [==============================] - 0s 864us/step - loss: 0.3933 - accuracy: 0.1742 - mae: 0.3933 - pearson_correlation: -0.4793 - euclidean_distance: 0.6835
Epoch 122/250
57/57 [==============================] - 0s 861us/step - loss: 0.3892 - accuracy: 0.1879 - mae: 0.3892 - pearson_correlation: -0.4632 - euclidean_distance: 0.6761
Epoch 123/250
57/57 [==============================] - 0s 866us/step - loss: 0.3846 - accuracy: 0.1923 - mae: 0.3846 - pearson_correlation: -0.4571 - euclidean_distance: 0.6682
Epoch 124/250
57/57 [==============================] - 0s 861us/step - loss: 0.3813 - accuracy: 0.2020 - mae: 0.3813 - pearson_correlation: -0.4442 - euclidean_distance: 0.6619
Epoch 125/250
57/57 [==============================] - 0s 866us/step - loss: 0.3758 - accuracy: 0.2082 - mae: 0.3758 - pearson_correlation: -0.4353 - euclidean_distance: 0.6541
Epoch 126/250
57/57 [==============================] - 0s 859us/step - loss: 0.3732 - accuracy: 0.2003 - mae: 0.3732 - pearson_correlation: -0.4304 - euclidean_distance: 0.6492
Epoch 127/250
57/57 [==============================] - 0s 857us/step - loss: 0.3685 - accuracy: 0.2188 - mae: 0.3685 - pearson_correlation: -0.4160 - euclidean_distance: 0.6414
Epoch 128/250
57/57 [==============================] - 0s 857us/step - loss: 0.3643 - accuracy: 0.2258 - mae: 0.3643 - pearson_correlation: -0.4057 - euclidean_distance: 0.6344
Epoch 129/250
57/57 [==============================] - 0s 857us/step - loss: 0.3602 - accuracy: 0.2382 - mae: 0.3602 - pearson_correlation: -0.3905 - euclidean_distance: 0.6265
Epoch 130/250
57/57 [==============================] - 0s 862us/step - loss: 0.3555 - accuracy: 0.2382 - mae: 0.3555 - pearson_correlation: -0.3779 - euclidean_distance: 0.6195
Epoch 131/250
57/57 [==============================] - 0s 854us/step - loss: 0.3521 - accuracy: 0.2448 - mae: 0.3521 - pearson_correlation: -0.3662 - euclidean_distance: 0.6126
Epoch 132/250
57/57 [==============================] - 0s 859us/step - loss: 0.3468 - accuracy: 0.2607 - mae: 0.3468 - pearson_correlation: -0.3530 - euclidean_distance: 0.6040
Epoch 133/250
57/57 [==============================] - 0s 853us/step - loss: 0.3424 - accuracy: 0.2647 - mae: 0.3424 - pearson_correlation: -0.3413 - euclidean_distance: 0.5966
Epoch 134/250
57/57 [==============================] - 0s 850us/step - loss: 0.3384 - accuracy: 0.2673 - mae: 0.3384 - pearson_correlation: -0.3229 - euclidean_distance: 0.5893
Epoch 135/250
57/57 [==============================] - 0s 855us/step - loss: 0.3342 - accuracy: 0.2841 - mae: 0.3342 - pearson_correlation: -0.3132 - euclidean_distance: 0.5817
Epoch 136/250
57/57 [==============================] - 0s 854us/step - loss: 0.3307 - accuracy: 0.2964 - mae: 0.3307 - pearson_correlation: -0.2965 - euclidean_distance: 0.5755
Epoch 137/250
57/57 [==============================] - 0s 852us/step - loss: 0.3268 - accuracy: 0.3039 - mae: 0.3268 - pearson_correlation: -0.2816 - euclidean_distance: 0.5686
Epoch 138/250
57/57 [==============================] - 0s 864us/step - loss: 0.3222 - accuracy: 0.3194 - mae: 0.3222 - pearson_correlation: -0.2615 - euclidean_distance: 0.5603
Epoch 139/250
57/57 [==============================] - 0s 865us/step - loss: 0.3158 - accuracy: 0.3348 - mae: 0.3158 - pearson_correlation: -0.2495 - euclidean_distance: 0.5507
Epoch 140/250
57/57 [==============================] - 0s 861us/step - loss: 0.3121 - accuracy: 0.3476 - mae: 0.3121 - pearson_correlation: -0.2331 - euclidean_distance: 0.5436
Epoch 141/250
57/57 [==============================] - 0s 869us/step - loss: 0.3089 - accuracy: 0.3622 - mae: 0.3089 - pearson_correlation: -0.2141 - euclidean_distance: 0.5369
Epoch 142/250
57/57 [==============================] - 0s 863us/step - loss: 0.3038 - accuracy: 0.3816 - mae: 0.3038 - pearson_correlation: -0.1961 - euclidean_distance: 0.5290
Epoch 143/250
57/57 [==============================] - 0s 861us/step - loss: 0.3004 - accuracy: 0.4019 - mae: 0.3004 - pearson_correlation: -0.1800 - euclidean_distance: 0.5214
Epoch 144/250
57/57 [==============================] - 0s 864us/step - loss: 0.2953 - accuracy: 0.4204 - mae: 0.2953 - pearson_correlation: -0.1587 - euclidean_distance: 0.5129
Epoch 145/250
57/57 [==============================] - 0s 865us/step - loss: 0.2917 - accuracy: 0.4310 - mae: 0.2917 - pearson_correlation: -0.1530 - euclidean_distance: 0.5075
Epoch 146/250
57/57 [==============================] - 0s 882us/step - loss: 0.2881 - accuracy: 0.4345 - mae: 0.2881 - pearson_correlation: -0.1310 - euclidean_distance: 0.5002
Epoch 147/250
57/57 [==============================] - 0s 876us/step - loss: 0.2845 - accuracy: 0.4583 - mae: 0.2845 - pearson_correlation: -0.1138 - euclidean_distance: 0.4934
Epoch 148/250
57/57 [==============================] - 0s 865us/step - loss: 0.2790 - accuracy: 0.4826 - mae: 0.2790 - pearson_correlation: -0.0985 - euclidean_distance: 0.4843
Epoch 149/250
57/57 [==============================] - 0s 858us/step - loss: 0.2763 - accuracy: 0.4746 - mae: 0.2763 - pearson_correlation: -0.0850 - euclidean_distance: 0.4785
Epoch 150/250
57/57 [==============================] - 0s 864us/step - loss: 0.2725 - accuracy: 0.4932 - mae: 0.2725 - pearson_correlation: -0.0707 - euclidean_distance: 0.4719
Epoch 151/250
57/57 [==============================] - 0s 868us/step - loss: 0.2697 - accuracy: 0.5024 - mae: 0.2697 - pearson_correlation: -0.0582 - euclidean_distance: 0.4674
Epoch 152/250
57/57 [==============================] - 0s 854us/step - loss: 0.2647 - accuracy: 0.5210 - mae: 0.2647 - pearson_correlation: -0.0300 - euclidean_distance: 0.4581
Epoch 153/250
57/57 [==============================] - 0s 868us/step - loss: 0.2627 - accuracy: 0.5307 - mae: 0.2627 - pearson_correlation: -0.0187 - euclidean_distance: 0.4536
Epoch 154/250
57/57 [==============================] - 0s 852us/step - loss: 0.2587 - accuracy: 0.5426 - mae: 0.2587 - pearson_correlation: -0.0086 - euclidean_distance: 0.4467
Epoch 155/250
57/57 [==============================] - 0s 857us/step - loss: 0.2570 - accuracy: 0.5532 - mae: 0.2570 - pearson_correlation: 0.0079 - euclidean_distance: 0.4428
Epoch 156/250
57/57 [==============================] - 0s 850us/step - loss: 0.2521 - accuracy: 0.5690 - mae: 0.2521 - pearson_correlation: 0.0325 - euclidean_distance: 0.4335
Epoch 157/250
57/57 [==============================] - 0s 857us/step - loss: 0.2490 - accuracy: 0.5726 - mae: 0.2490 - pearson_correlation: 0.0345 - euclidean_distance: 0.4293
Epoch 158/250
57/57 [==============================] - 0s 857us/step - loss: 0.2459 - accuracy: 0.5809 - mae: 0.2459 - pearson_correlation: 0.0499 - euclidean_distance: 0.4231
Epoch 159/250
57/57 [==============================] - 0s 851us/step - loss: 0.2420 - accuracy: 0.5867 - mae: 0.2420 - pearson_correlation: 0.0693 - euclidean_distance: 0.4162
Epoch 160/250
57/57 [==============================] - 0s 857us/step - loss: 0.2400 - accuracy: 0.5999 - mae: 0.2400 - pearson_correlation: 0.0814 - euclidean_distance: 0.4125
Epoch 161/250
57/57 [==============================] - 0s 865us/step - loss: 0.2373 - accuracy: 0.5946 - mae: 0.2373 - pearson_correlation: 0.0887 - euclidean_distance: 0.4078
Epoch 162/250
57/57 [==============================] - 0s 853us/step - loss: 0.2348 - accuracy: 0.6070 - mae: 0.2348 - pearson_correlation: 0.1068 - euclidean_distance: 0.4021
Epoch 163/250
57/57 [==============================] - 0s 863us/step - loss: 0.2320 - accuracy: 0.6158 - mae: 0.2320 - pearson_correlation: 0.1188 - euclidean_distance: 0.3969
Epoch 164/250
57/57 [==============================] - 0s 863us/step - loss: 0.2295 - accuracy: 0.6176 - mae: 0.2295 - pearson_correlation: 0.1310 - euclidean_distance: 0.3933
Epoch 165/250
57/57 [==============================] - 0s 861us/step - loss: 0.2262 - accuracy: 0.6268 - mae: 0.2262 - pearson_correlation: 0.1447 - euclidean_distance: 0.3873
Epoch 166/250
57/57 [==============================] - 0s 865us/step - loss: 0.2247 - accuracy: 0.6286 - mae: 0.2247 - pearson_correlation: 0.1544 - euclidean_distance: 0.3839
Epoch 167/250
57/57 [==============================] - 0s 856us/step - loss: 0.2219 - accuracy: 0.6277 - mae: 0.2219 - pearson_correlation: 0.1708 - euclidean_distance: 0.3792
Epoch 168/250
57/57 [==============================] - 0s 853us/step - loss: 0.2207 - accuracy: 0.6396 - mae: 0.2207 - pearson_correlation: 0.1789 - euclidean_distance: 0.3762
Epoch 169/250
57/57 [==============================] - 0s 870us/step - loss: 0.2152 - accuracy: 0.6409 - mae: 0.2152 - pearson_correlation: 0.1967 - euclidean_distance: 0.3672
Epoch 170/250
57/57 [==============================] - 0s 856us/step - loss: 0.2147 - accuracy: 0.6392 - mae: 0.2147 - pearson_correlation: 0.2019 - euclidean_distance: 0.3655
Epoch 171/250
57/57 [==============================] - 0s 844us/step - loss: 0.2108 - accuracy: 0.6453 - mae: 0.2108 - pearson_correlation: 0.2131 - euclidean_distance: 0.3585
Epoch 172/250
57/57 [==============================] - 0s 853us/step - loss: 0.2083 - accuracy: 0.6453 - mae: 0.2083 - pearson_correlation: 0.2251 - euclidean_distance: 0.3553
Epoch 173/250
57/57 [==============================] - 0s 859us/step - loss: 0.2059 - accuracy: 0.6581 - mae: 0.2059 - pearson_correlation: 0.2360 - euclidean_distance: 0.3498
Epoch 174/250
57/57 [==============================] - 0s 855us/step - loss: 0.2039 - accuracy: 0.6630 - mae: 0.2039 - pearson_correlation: 0.2433 - euclidean_distance: 0.3462
Epoch 175/250
57/57 [==============================] - 0s 867us/step - loss: 0.2010 - accuracy: 0.6670 - mae: 0.2010 - pearson_correlation: 0.2565 - euclidean_distance: 0.3412
Epoch 176/250
57/57 [==============================] - 0s 855us/step - loss: 0.1997 - accuracy: 0.6780 - mae: 0.1997 - pearson_correlation: 0.2663 - euclidean_distance: 0.3389
Epoch 177/250
57/57 [==============================] - 0s 866us/step - loss: 0.1969 - accuracy: 0.6740 - mae: 0.1969 - pearson_correlation: 0.2716 - euclidean_distance: 0.3336
Epoch 178/250
57/57 [==============================] - 0s 855us/step - loss: 0.1959 - accuracy: 0.6745 - mae: 0.1959 - pearson_correlation: 0.2847 - euclidean_distance: 0.3313
Epoch 179/250
57/57 [==============================] - 0s 859us/step - loss: 0.1942 - accuracy: 0.6784 - mae: 0.1942 - pearson_correlation: 0.2973 - euclidean_distance: 0.3273
Epoch 180/250
57/57 [==============================] - 0s 854us/step - loss: 0.1908 - accuracy: 0.6846 - mae: 0.1908 - pearson_correlation: 0.3082 - euclidean_distance: 0.3226
Epoch 181/250
57/57 [==============================] - 0s 867us/step - loss: 0.1890 - accuracy: 0.6978 - mae: 0.1890 - pearson_correlation: 0.3142 - euclidean_distance: 0.3191
Epoch 182/250
57/57 [==============================] - 0s 857us/step - loss: 0.1866 - accuracy: 0.6974 - mae: 0.1866 - pearson_correlation: 0.3225 - euclidean_distance: 0.3149
Epoch 183/250
57/57 [==============================] - 0s 850us/step - loss: 0.1840 - accuracy: 0.7115 - mae: 0.1840 - pearson_correlation: 0.3346 - euclidean_distance: 0.3101
Epoch 184/250
57/57 [==============================] - 0s 860us/step - loss: 0.1826 - accuracy: 0.7075 - mae: 0.1826 - pearson_correlation: 0.3318 - euclidean_distance: 0.3084
Epoch 185/250
57/57 [==============================] - 0s 861us/step - loss: 0.1824 - accuracy: 0.7089 - mae: 0.1824 - pearson_correlation: 0.3462 - euclidean_distance: 0.3071
Epoch 186/250
57/57 [==============================] - 0s 861us/step - loss: 0.1787 - accuracy: 0.7195 - mae: 0.1787 - pearson_correlation: 0.3532 - euclidean_distance: 0.3010
Epoch 187/250
57/57 [==============================] - 0s 844us/step - loss: 0.1785 - accuracy: 0.7199 - mae: 0.1785 - pearson_correlation: 0.3641 - euclidean_distance: 0.3000
Epoch 188/250
57/57 [==============================] - 0s 859us/step - loss: 0.1753 - accuracy: 0.7340 - mae: 0.1753 - pearson_correlation: 0.3765 - euclidean_distance: 0.2945
Epoch 189/250
57/57 [==============================] - 0s 859us/step - loss: 0.1747 - accuracy: 0.7375 - mae: 0.1747 - pearson_correlation: 0.3792 - euclidean_distance: 0.2938
Epoch 190/250
57/57 [==============================] - 0s 858us/step - loss: 0.1745 - accuracy: 0.7367 - mae: 0.1745 - pearson_correlation: 0.3816 - euclidean_distance: 0.2936
Epoch 191/250
57/57 [==============================] - 0s 854us/step - loss: 0.1706 - accuracy: 0.7494 - mae: 0.1706 - pearson_correlation: 0.3905 - euclidean_distance: 0.2877
Epoch 192/250
57/57 [==============================] - 0s 861us/step - loss: 0.1687 - accuracy: 0.7508 - mae: 0.1687 - pearson_correlation: 0.4042 - euclidean_distance: 0.2826
Epoch 193/250
57/57 [==============================] - 0s 859us/step - loss: 0.1675 - accuracy: 0.7583 - mae: 0.1675 - pearson_correlation: 0.4073 - euclidean_distance: 0.2810
Epoch 194/250
57/57 [==============================] - 0s 853us/step - loss: 0.1661 - accuracy: 0.7583 - mae: 0.1661 - pearson_correlation: 0.4147 - euclidean_distance: 0.2785
Epoch 195/250
57/57 [==============================] - 0s 865us/step - loss: 0.1642 - accuracy: 0.7644 - mae: 0.1642 - pearson_correlation: 0.4249 - euclidean_distance: 0.2750
Epoch 196/250
57/57 [==============================] - 0s 858us/step - loss: 0.1625 - accuracy: 0.7742 - mae: 0.1625 - pearson_correlation: 0.4334 - euclidean_distance: 0.2721
Epoch 197/250
57/57 [==============================] - 0s 850us/step - loss: 0.1607 - accuracy: 0.7693 - mae: 0.1607 - pearson_correlation: 0.4364 - euclidean_distance: 0.2698
Epoch 198/250
57/57 [==============================] - 0s 857us/step - loss: 0.1599 - accuracy: 0.7737 - mae: 0.1599 - pearson_correlation: 0.4418 - euclidean_distance: 0.2677
Epoch 199/250
57/57 [==============================] - 0s 860us/step - loss: 0.1582 - accuracy: 0.7803 - mae: 0.1582 - pearson_correlation: 0.4467 - euclidean_distance: 0.2652
Epoch 200/250
57/57 [==============================] - 0s 856us/step - loss: 0.1570 - accuracy: 0.7896 - mae: 0.1570 - pearson_correlation: 0.4533 - euclidean_distance: 0.2631
Epoch 201/250
57/57 [==============================] - 0s 868us/step - loss: 0.1584 - accuracy: 0.7887 - mae: 0.1584 - pearson_correlation: 0.4515 - euclidean_distance: 0.2644
Epoch 202/250
57/57 [==============================] - 0s 853us/step - loss: 0.1545 - accuracy: 0.7971 - mae: 0.1545 - pearson_correlation: 0.4623 - euclidean_distance: 0.2589
Epoch 203/250
57/57 [==============================] - 0s 856us/step - loss: 0.1538 - accuracy: 0.8037 - mae: 0.1538 - pearson_correlation: 0.4701 - euclidean_distance: 0.2571
Epoch 204/250
57/57 [==============================] - 0s 858us/step - loss: 0.1520 - accuracy: 0.8094 - mae: 0.1520 - pearson_correlation: 0.4760 - euclidean_distance: 0.2538
Epoch 205/250
57/57 [==============================] - 0s 863us/step - loss: 0.1518 - accuracy: 0.8086 - mae: 0.1518 - pearson_correlation: 0.4834 - euclidean_distance: 0.2535
Epoch 206/250
57/57 [==============================] - 0s 859us/step - loss: 0.1505 - accuracy: 0.8147 - mae: 0.1505 - pearson_correlation: 0.4883 - euclidean_distance: 0.2512
Epoch 207/250
57/57 [==============================] - 0s 862us/step - loss: 0.1480 - accuracy: 0.8262 - mae: 0.1480 - pearson_correlation: 0.4991 - euclidean_distance: 0.2470
Epoch 208/250
57/57 [==============================] - 0s 851us/step - loss: 0.1463 - accuracy: 0.8253 - mae: 0.1463 - pearson_correlation: 0.5009 - euclidean_distance: 0.2448
Epoch 209/250
57/57 [==============================] - 0s 859us/step - loss: 0.1471 - accuracy: 0.8271 - mae: 0.1471 - pearson_correlation: 0.5049 - euclidean_distance: 0.2447
Epoch 210/250
57/57 [==============================] - 0s 867us/step - loss: 0.1437 - accuracy: 0.8341 - mae: 0.1437 - pearson_correlation: 0.5129 - euclidean_distance: 0.2398
Epoch 211/250
57/57 [==============================] - 0s 861us/step - loss: 0.1442 - accuracy: 0.8438 - mae: 0.1442 - pearson_correlation: 0.5204 - euclidean_distance: 0.2398
Epoch 212/250
57/57 [==============================] - 0s 868us/step - loss: 0.1416 - accuracy: 0.8434 - mae: 0.1416 - pearson_correlation: 0.5224 - euclidean_distance: 0.2354
Epoch 213/250
57/57 [==============================] - 0s 853us/step - loss: 0.1412 - accuracy: 0.8500 - mae: 0.1412 - pearson_correlation: 0.5252 - euclidean_distance: 0.2352
Epoch 214/250
57/57 [==============================] - 0s 856us/step - loss: 0.1394 - accuracy: 0.8496 - mae: 0.1394 - pearson_correlation: 0.5290 - euclidean_distance: 0.2326
Epoch 215/250
57/57 [==============================] - 0s 858us/step - loss: 0.1387 - accuracy: 0.8584 - mae: 0.1387 - pearson_correlation: 0.5341 - euclidean_distance: 0.2312
Epoch 216/250
57/57 [==============================] - 0s 858us/step - loss: 0.1381 - accuracy: 0.8655 - mae: 0.1381 - pearson_correlation: 0.5402 - euclidean_distance: 0.2306
Epoch 217/250
57/57 [==============================] - 0s 853us/step - loss: 0.1355 - accuracy: 0.8721 - mae: 0.1355 - pearson_correlation: 0.5433 - euclidean_distance: 0.2258
Epoch 218/250
57/57 [==============================] - 0s 855us/step - loss: 0.1358 - accuracy: 0.8606 - mae: 0.1358 - pearson_correlation: 0.5533 - euclidean_distance: 0.2260
Epoch 219/250
57/57 [==============================] - 0s 865us/step - loss: 0.1350 - accuracy: 0.8712 - mae: 0.1350 - pearson_correlation: 0.5523 - euclidean_distance: 0.2247
Epoch 220/250
57/57 [==============================] - 0s 848us/step - loss: 0.1344 - accuracy: 0.8725 - mae: 0.1344 - pearson_correlation: 0.5598 - euclidean_distance: 0.2237
Epoch 221/250
57/57 [==============================] - 0s 867us/step - loss: 0.1329 - accuracy: 0.8743 - mae: 0.1329 - pearson_correlation: 0.5620 - euclidean_distance: 0.2211
Epoch 222/250
57/57 [==============================] - 0s 854us/step - loss: 0.1324 - accuracy: 0.8866 - mae: 0.1324 - pearson_correlation: 0.5662 - euclidean_distance: 0.2203
Epoch 223/250
57/57 [==============================] - 0s 862us/step - loss: 0.1300 - accuracy: 0.8871 - mae: 0.1300 - pearson_correlation: 0.5751 - euclidean_distance: 0.2161
Epoch 224/250
57/57 [==============================] - 0s 853us/step - loss: 0.1283 - accuracy: 0.8875 - mae: 0.1283 - pearson_correlation: 0.5807 - euclidean_distance: 0.2133
Epoch 225/250
57/57 [==============================] - 0s 856us/step - loss: 0.1288 - accuracy: 0.8919 - mae: 0.1288 - pearson_correlation: 0.5801 - euclidean_distance: 0.2142
Epoch 226/250
57/57 [==============================] - 0s 859us/step - loss: 0.1269 - accuracy: 0.8937 - mae: 0.1269 - pearson_correlation: 0.5896 - euclidean_distance: 0.2108
Epoch 227/250
57/57 [==============================] - 0s 864us/step - loss: 0.1269 - accuracy: 0.8915 - mae: 0.1269 - pearson_correlation: 0.5814 - euclidean_distance: 0.2110
Epoch 228/250
57/57 [==============================] - 0s 867us/step - loss: 0.1283 - accuracy: 0.9007 - mae: 0.1283 - pearson_correlation: 0.5870 - euclidean_distance: 0.2121
Epoch 229/250
57/57 [==============================] - 0s 867us/step - loss: 0.1254 - accuracy: 0.9021 - mae: 0.1254 - pearson_correlation: 0.5879 - euclidean_distance: 0.2084
Epoch 230/250
57/57 [==============================] - 0s 860us/step - loss: 0.1242 - accuracy: 0.8999 - mae: 0.1242 - pearson_correlation: 0.5977 - euclidean_distance: 0.2065
Epoch 231/250
57/57 [==============================] - 0s 862us/step - loss: 0.1236 - accuracy: 0.9096 - mae: 0.1236 - pearson_correlation: 0.6037 - euclidean_distance: 0.2050
Epoch 232/250
57/57 [==============================] - 0s 858us/step - loss: 0.1248 - accuracy: 0.9100 - mae: 0.1248 - pearson_correlation: 0.5980 - euclidean_distance: 0.2064
Epoch 233/250
57/57 [==============================] - 0s 856us/step - loss: 0.1229 - accuracy: 0.9091 - mae: 0.1229 - pearson_correlation: 0.6052 - euclidean_distance: 0.2034
Epoch 234/250
57/57 [==============================] - 0s 864us/step - loss: 0.1210 - accuracy: 0.9149 - mae: 0.1210 - pearson_correlation: 0.6103 - euclidean_distance: 0.2007
Epoch 235/250
57/57 [==============================] - 0s 855us/step - loss: 0.1217 - accuracy: 0.9109 - mae: 0.1217 - pearson_correlation: 0.6060 - euclidean_distance: 0.2020
Epoch 236/250
57/57 [==============================] - 0s 861us/step - loss: 0.1216 - accuracy: 0.9193 - mae: 0.1216 - pearson_correlation: 0.6162 - euclidean_distance: 0.2007
Epoch 237/250
57/57 [==============================] - 0s 854us/step - loss: 0.1191 - accuracy: 0.9188 - mae: 0.1191 - pearson_correlation: 0.6143 - euclidean_distance: 0.1973
Epoch 238/250
57/57 [==============================] - 0s 858us/step - loss: 0.1191 - accuracy: 0.9215 - mae: 0.1191 - pearson_correlation: 0.6228 - euclidean_distance: 0.1967
Epoch 239/250
57/57 [==============================] - 0s 853us/step - loss: 0.1186 - accuracy: 0.9166 - mae: 0.1186 - pearson_correlation: 0.6224 - euclidean_distance: 0.1961
Epoch 240/250
57/57 [==============================] - 0s 852us/step - loss: 0.1178 - accuracy: 0.9206 - mae: 0.1178 - pearson_correlation: 0.6228 - euclidean_distance: 0.1950
Epoch 241/250
57/57 [==============================] - 0s 864us/step - loss: 0.1181 - accuracy: 0.9184 - mae: 0.1181 - pearson_correlation: 0.6297 - euclidean_distance: 0.1949
Epoch 242/250
57/57 [==============================] - 0s 863us/step - loss: 0.1169 - accuracy: 0.9255 - mae: 0.1169 - pearson_correlation: 0.6301 - euclidean_distance: 0.1933
Epoch 243/250
57/57 [==============================] - 0s 851us/step - loss: 0.1153 - accuracy: 0.9232 - mae: 0.1153 - pearson_correlation: 0.6332 - euclidean_distance: 0.1913
Epoch 244/250
57/57 [==============================] - 0s 863us/step - loss: 0.1153 - accuracy: 0.9224 - mae: 0.1153 - pearson_correlation: 0.6379 - euclidean_distance: 0.1904
Epoch 245/250
57/57 [==============================] - 0s 859us/step - loss: 0.1126 - accuracy: 0.9285 - mae: 0.1126 - pearson_correlation: 0.6478 - euclidean_distance: 0.1870
Epoch 246/250
57/57 [==============================] - 0s 861us/step - loss: 0.1127 - accuracy: 0.9272 - mae: 0.1127 - pearson_correlation: 0.6428 - euclidean_distance: 0.1865
Epoch 247/250
57/57 [==============================] - 0s 853us/step - loss: 0.1149 - accuracy: 0.9255 - mae: 0.1149 - pearson_correlation: 0.6412 - euclidean_distance: 0.1900
Epoch 248/250
57/57 [==============================] - 0s 863us/step - loss: 0.1123 - accuracy: 0.9299 - mae: 0.1123 - pearson_correlation: 0.6489 - euclidean_distance: 0.1857
Epoch 249/250
57/57 [==============================] - 0s 854us/step - loss: 0.1122 - accuracy: 0.9285 - mae: 0.1122 - pearson_correlation: 0.6499 - euclidean_distance: 0.1848
Epoch 250/250
57/57 [==============================] - 0s 860us/step - loss: 0.1112 - accuracy: 0.9290 - mae: 0.1112 - pearson_correlation: 0.6510 - euclidean_distance: 0.1834
29/29 [==============================] - 0s 528us/step
Epoch 1/250
57/57 [==============================] - 1s 990us/step - loss: 0.6236 - accuracy: 0.9550 - mae: 0.6236 - pearson_correlation: 0.6941 - euclidean_distance: 0.9459
Epoch 2/250
57/57 [==============================] - 0s 823us/step - loss: 0.6185 - accuracy: 0.9541 - mae: 0.6185 - pearson_correlation: 0.6965 - euclidean_distance: 0.9401
Epoch 3/250
57/57 [==============================] - 0s 861us/step - loss: 0.6114 - accuracy: 0.9537 - mae: 0.6114 - pearson_correlation: 0.6993 - euclidean_distance: 0.9327
Epoch 4/250
57/57 [==============================] - 0s 860us/step - loss: 0.6057 - accuracy: 0.9555 - mae: 0.6057 - pearson_correlation: 0.7012 - euclidean_distance: 0.9254
Epoch 5/250
57/57 [==============================] - 0s 856us/step - loss: 0.6019 - accuracy: 0.9555 - mae: 0.6019 - pearson_correlation: 0.7031 - euclidean_distance: 0.9194
Epoch 6/250
57/57 [==============================] - 0s 866us/step - loss: 0.5974 - accuracy: 0.9546 - mae: 0.5974 - pearson_correlation: 0.7047 - euclidean_distance: 0.9141
Epoch 7/250
57/57 [==============================] - 0s 847us/step - loss: 0.5914 - accuracy: 0.9546 - mae: 0.5914 - pearson_correlation: 0.7057 - euclidean_distance: 0.9063
Epoch 8/250
57/57 [==============================] - 0s 864us/step - loss: 0.5851 - accuracy: 0.9533 - mae: 0.5851 - pearson_correlation: 0.7099 - euclidean_distance: 0.9004
Epoch 9/250
57/57 [==============================] - 0s 854us/step - loss: 0.5788 - accuracy: 0.9559 - mae: 0.5788 - pearson_correlation: 0.7141 - euclidean_distance: 0.8919
Epoch 10/250
57/57 [==============================] - 0s 851us/step - loss: 0.5749 - accuracy: 0.9555 - mae: 0.5749 - pearson_correlation: 0.7149 - euclidean_distance: 0.8868
Epoch 11/250
57/57 [==============================] - 0s 847us/step - loss: 0.5692 - accuracy: 0.9559 - mae: 0.5692 - pearson_correlation: 0.7182 - euclidean_distance: 0.8793
Epoch 12/250
57/57 [==============================] - 0s 860us/step - loss: 0.5629 - accuracy: 0.9550 - mae: 0.5629 - pearson_correlation: 0.7200 - euclidean_distance: 0.8725
Epoch 13/250
57/57 [==============================] - 0s 841us/step - loss: 0.5599 - accuracy: 0.9555 - mae: 0.5599 - pearson_correlation: 0.7210 - euclidean_distance: 0.8681
Epoch 14/250
57/57 [==============================] - 0s 848us/step - loss: 0.5529 - accuracy: 0.9541 - mae: 0.5529 - pearson_correlation: 0.7258 - euclidean_distance: 0.8600
Epoch 15/250
57/57 [==============================] - 0s 862us/step - loss: 0.5496 - accuracy: 0.9550 - mae: 0.5496 - pearson_correlation: 0.7250 - euclidean_distance: 0.8567
Epoch 16/250
57/57 [==============================] - 0s 851us/step - loss: 0.5429 - accuracy: 0.9550 - mae: 0.5429 - pearson_correlation: 0.7273 - euclidean_distance: 0.8489
Epoch 17/250
57/57 [==============================] - 0s 852us/step - loss: 0.5395 - accuracy: 0.9555 - mae: 0.5395 - pearson_correlation: 0.7286 - euclidean_distance: 0.8428
Epoch 18/250
57/57 [==============================] - 0s 856us/step - loss: 0.5338 - accuracy: 0.9546 - mae: 0.5338 - pearson_correlation: 0.7343 - euclidean_distance: 0.8364
Epoch 19/250
57/57 [==============================] - 0s 854us/step - loss: 0.5303 - accuracy: 0.9550 - mae: 0.5303 - pearson_correlation: 0.7327 - euclidean_distance: 0.8314
Epoch 20/250
57/57 [==============================] - 0s 853us/step - loss: 0.5259 - accuracy: 0.9546 - mae: 0.5259 - pearson_correlation: 0.7358 - euclidean_distance: 0.8262
Epoch 21/250
57/57 [==============================] - 0s 859us/step - loss: 0.5223 - accuracy: 0.9559 - mae: 0.5223 - pearson_correlation: 0.7410 - euclidean_distance: 0.8206
Epoch 22/250
57/57 [==============================] - 0s 843us/step - loss: 0.5175 - accuracy: 0.9550 - mae: 0.5175 - pearson_correlation: 0.7380 - euclidean_distance: 0.8137
Epoch 23/250
57/57 [==============================] - 0s 842us/step - loss: 0.5135 - accuracy: 0.9555 - mae: 0.5135 - pearson_correlation: 0.7400 - euclidean_distance: 0.8082
Epoch 24/250
57/57 [==============================] - 0s 858us/step - loss: 0.5085 - accuracy: 0.9550 - mae: 0.5085 - pearson_correlation: 0.7415 - euclidean_distance: 0.8032
Epoch 25/250
57/57 [==============================] - 0s 864us/step - loss: 0.5061 - accuracy: 0.9555 - mae: 0.5061 - pearson_correlation: 0.7449 - euclidean_distance: 0.7991
Epoch 26/250
57/57 [==============================] - 0s 873us/step - loss: 0.5025 - accuracy: 0.9546 - mae: 0.5025 - pearson_correlation: 0.7444 - euclidean_distance: 0.7937
Epoch 27/250
57/57 [==============================] - 0s 911us/step - loss: 0.4980 - accuracy: 0.9559 - mae: 0.4980 - pearson_correlation: 0.7512 - euclidean_distance: 0.7869
Epoch 28/250
57/57 [==============================] - 0s 992us/step - loss: 0.4957 - accuracy: 0.9550 - mae: 0.4957 - pearson_correlation: 0.7465 - euclidean_distance: 0.7829
Epoch 29/250
57/57 [==============================] - 0s 855us/step - loss: 0.4898 - accuracy: 0.9559 - mae: 0.4898 - pearson_correlation: 0.7509 - euclidean_distance: 0.7762
Epoch 30/250
57/57 [==============================] - 0s 892us/step - loss: 0.4865 - accuracy: 0.9559 - mae: 0.4865 - pearson_correlation: 0.7502 - euclidean_distance: 0.7722
Epoch 31/250
57/57 [==============================] - 0s 860us/step - loss: 0.4844 - accuracy: 0.9559 - mae: 0.4844 - pearson_correlation: 0.7500 - euclidean_distance: 0.7675
Epoch 32/250
57/57 [==============================] - 0s 848us/step - loss: 0.4808 - accuracy: 0.9559 - mae: 0.4808 - pearson_correlation: 0.7515 - euclidean_distance: 0.7624
Epoch 33/250
57/57 [==============================] - 0s 862us/step - loss: 0.4789 - accuracy: 0.9559 - mae: 0.4789 - pearson_correlation: 0.7518 - euclidean_distance: 0.7592
Epoch 34/250
57/57 [==============================] - 0s 856us/step - loss: 0.4751 - accuracy: 0.9555 - mae: 0.4751 - pearson_correlation: 0.7516 - euclidean_distance: 0.7532
Epoch 35/250
57/57 [==============================] - 0s 869us/step - loss: 0.4704 - accuracy: 0.9550 - mae: 0.4704 - pearson_correlation: 0.7532 - euclidean_distance: 0.7476
Epoch 36/250
57/57 [==============================] - 0s 867us/step - loss: 0.4674 - accuracy: 0.9550 - mae: 0.4674 - pearson_correlation: 0.7545 - euclidean_distance: 0.7428
Epoch 37/250
57/57 [==============================] - 0s 858us/step - loss: 0.4626 - accuracy: 0.9550 - mae: 0.4626 - pearson_correlation: 0.7586 - euclidean_distance: 0.7366
Epoch 38/250
57/57 [==============================] - 0s 848us/step - loss: 0.4606 - accuracy: 0.9559 - mae: 0.4606 - pearson_correlation: 0.7551 - euclidean_distance: 0.7335
Epoch 39/250
57/57 [==============================] - 0s 867us/step - loss: 0.4565 - accuracy: 0.9559 - mae: 0.4565 - pearson_correlation: 0.7574 - euclidean_distance: 0.7292
Epoch 40/250
57/57 [==============================] - 0s 856us/step - loss: 0.4529 - accuracy: 0.9559 - mae: 0.4529 - pearson_correlation: 0.7567 - euclidean_distance: 0.7223
Epoch 41/250
57/57 [==============================] - 0s 848us/step - loss: 0.4510 - accuracy: 0.9559 - mae: 0.4510 - pearson_correlation: 0.7602 - euclidean_distance: 0.7192
Epoch 42/250
57/57 [==============================] - 0s 853us/step - loss: 0.4475 - accuracy: 0.9559 - mae: 0.4475 - pearson_correlation: 0.7586 - euclidean_distance: 0.7144
Epoch 43/250
57/57 [==============================] - 0s 855us/step - loss: 0.4436 - accuracy: 0.9559 - mae: 0.4436 - pearson_correlation: 0.7604 - euclidean_distance: 0.7084
Epoch 44/250
57/57 [==============================] - 0s 867us/step - loss: 0.4424 - accuracy: 0.9559 - mae: 0.4424 - pearson_correlation: 0.7608 - euclidean_distance: 0.7065
Epoch 45/250
57/57 [==============================] - 0s 862us/step - loss: 0.4361 - accuracy: 0.9559 - mae: 0.4361 - pearson_correlation: 0.7650 - euclidean_distance: 0.6987
Epoch 46/250
57/57 [==============================] - 0s 854us/step - loss: 0.4355 - accuracy: 0.9555 - mae: 0.4355 - pearson_correlation: 0.7616 - euclidean_distance: 0.6962
Epoch 47/250
57/57 [==============================] - 0s 861us/step - loss: 0.4300 - accuracy: 0.9555 - mae: 0.4300 - pearson_correlation: 0.7644 - euclidean_distance: 0.6888
Epoch 48/250
57/57 [==============================] - 0s 859us/step - loss: 0.4288 - accuracy: 0.9559 - mae: 0.4288 - pearson_correlation: 0.7624 - euclidean_distance: 0.6864
Epoch 49/250
57/57 [==============================] - 0s 864us/step - loss: 0.4245 - accuracy: 0.9559 - mae: 0.4245 - pearson_correlation: 0.7686 - euclidean_distance: 0.6809
Epoch 50/250
57/57 [==============================] - 0s 854us/step - loss: 0.4229 - accuracy: 0.9559 - mae: 0.4229 - pearson_correlation: 0.7635 - euclidean_distance: 0.6776
Epoch 51/250
57/57 [==============================] - 0s 841us/step - loss: 0.4174 - accuracy: 0.9559 - mae: 0.4174 - pearson_correlation: 0.7660 - euclidean_distance: 0.6710
Epoch 52/250
57/57 [==============================] - 0s 860us/step - loss: 0.4163 - accuracy: 0.9559 - mae: 0.4163 - pearson_correlation: 0.7660 - euclidean_distance: 0.6669
Epoch 53/250
57/57 [==============================] - 0s 858us/step - loss: 0.4109 - accuracy: 0.9559 - mae: 0.4109 - pearson_correlation: 0.7669 - euclidean_distance: 0.6617
Epoch 54/250
57/57 [==============================] - 0s 853us/step - loss: 0.4111 - accuracy: 0.9559 - mae: 0.4111 - pearson_correlation: 0.7629 - euclidean_distance: 0.6596
Epoch 55/250
57/57 [==============================] - 0s 860us/step - loss: 0.4061 - accuracy: 0.9559 - mae: 0.4061 - pearson_correlation: 0.7687 - euclidean_distance: 0.6527
Epoch 56/250
57/57 [==============================] - 0s 857us/step - loss: 0.4017 - accuracy: 0.9559 - mae: 0.4017 - pearson_correlation: 0.7677 - euclidean_distance: 0.6464
Epoch 57/250
57/57 [==============================] - 0s 865us/step - loss: 0.3988 - accuracy: 0.9559 - mae: 0.3988 - pearson_correlation: 0.7694 - euclidean_distance: 0.6426
Epoch 58/250
57/57 [==============================] - 0s 849us/step - loss: 0.3957 - accuracy: 0.9559 - mae: 0.3957 - pearson_correlation: 0.7724 - euclidean_distance: 0.6381
Epoch 59/250
57/57 [==============================] - 0s 847us/step - loss: 0.3921 - accuracy: 0.9559 - mae: 0.3921 - pearson_correlation: 0.7694 - euclidean_distance: 0.6330
Epoch 60/250
57/57 [==============================] - 0s 859us/step - loss: 0.3928 - accuracy: 0.9559 - mae: 0.3928 - pearson_correlation: 0.7680 - euclidean_distance: 0.6320
Epoch 61/250
57/57 [==============================] - 0s 863us/step - loss: 0.3876 - accuracy: 0.9559 - mae: 0.3876 - pearson_correlation: 0.7719 - euclidean_distance: 0.6255
Epoch 62/250
57/57 [==============================] - 0s 937us/step - loss: 0.3833 - accuracy: 0.9559 - mae: 0.3833 - pearson_correlation: 0.7731 - euclidean_distance: 0.6201
Epoch 63/250
57/57 [==============================] - 0s 856us/step - loss: 0.3816 - accuracy: 0.9559 - mae: 0.3816 - pearson_correlation: 0.7701 - euclidean_distance: 0.6158
Epoch 64/250
57/57 [==============================] - 0s 852us/step - loss: 0.3781 - accuracy: 0.9559 - mae: 0.3781 - pearson_correlation: 0.7717 - euclidean_distance: 0.6109
Epoch 65/250
57/57 [==============================] - 0s 841us/step - loss: 0.3751 - accuracy: 0.9555 - mae: 0.3751 - pearson_correlation: 0.7720 - euclidean_distance: 0.6066
Epoch 66/250
57/57 [==============================] - 0s 846us/step - loss: 0.3732 - accuracy: 0.9559 - mae: 0.3732 - pearson_correlation: 0.7721 - euclidean_distance: 0.6042
Epoch 67/250
57/57 [==============================] - 0s 854us/step - loss: 0.3685 - accuracy: 0.9559 - mae: 0.3685 - pearson_correlation: 0.7732 - euclidean_distance: 0.5986
Epoch 68/250
57/57 [==============================] - 0s 887us/step - loss: 0.3652 - accuracy: 0.9559 - mae: 0.3652 - pearson_correlation: 0.7738 - euclidean_distance: 0.5932
Epoch 69/250
57/57 [==============================] - 0s 853us/step - loss: 0.3623 - accuracy: 0.9559 - mae: 0.3623 - pearson_correlation: 0.7755 - euclidean_distance: 0.5883
Epoch 70/250
57/57 [==============================] - 0s 849us/step - loss: 0.3609 - accuracy: 0.9559 - mae: 0.3609 - pearson_correlation: 0.7723 - euclidean_distance: 0.5856
Epoch 71/250
57/57 [==============================] - 0s 855us/step - loss: 0.3586 - accuracy: 0.9559 - mae: 0.3586 - pearson_correlation: 0.7729 - euclidean_distance: 0.5823
Epoch 72/250
57/57 [==============================] - 0s 859us/step - loss: 0.3542 - accuracy: 0.9559 - mae: 0.3542 - pearson_correlation: 0.7761 - euclidean_distance: 0.5763
Epoch 73/250
57/57 [==============================] - 0s 847us/step - loss: 0.3524 - accuracy: 0.9559 - mae: 0.3524 - pearson_correlation: 0.7731 - euclidean_distance: 0.5728
Epoch 74/250
57/57 [==============================] - 0s 856us/step - loss: 0.3497 - accuracy: 0.9559 - mae: 0.3497 - pearson_correlation: 0.7731 - euclidean_distance: 0.5679
Epoch 75/250
57/57 [==============================] - 0s 850us/step - loss: 0.3461 - accuracy: 0.9559 - mae: 0.3461 - pearson_correlation: 0.7722 - euclidean_distance: 0.5634
Epoch 76/250
57/57 [==============================] - 0s 856us/step - loss: 0.3450 - accuracy: 0.9559 - mae: 0.3450 - pearson_correlation: 0.7772 - euclidean_distance: 0.5602
Epoch 77/250
57/57 [==============================] - 0s 856us/step - loss: 0.3404 - accuracy: 0.9559 - mae: 0.3404 - pearson_correlation: 0.7739 - euclidean_distance: 0.5551
Epoch 78/250
57/57 [==============================] - 0s 864us/step - loss: 0.3412 - accuracy: 0.9559 - mae: 0.3412 - pearson_correlation: 0.7745 - euclidean_distance: 0.5546
Epoch 79/250
57/57 [==============================] - 0s 854us/step - loss: 0.3348 - accuracy: 0.9559 - mae: 0.3348 - pearson_correlation: 0.7761 - euclidean_distance: 0.5466
Epoch 80/250
57/57 [==============================] - 0s 860us/step - loss: 0.3327 - accuracy: 0.9559 - mae: 0.3327 - pearson_correlation: 0.7758 - euclidean_distance: 0.5428
Epoch 81/250
57/57 [==============================] - 0s 865us/step - loss: 0.3288 - accuracy: 0.9559 - mae: 0.3288 - pearson_correlation: 0.7769 - euclidean_distance: 0.5384
Epoch 82/250
57/57 [==============================] - 0s 864us/step - loss: 0.3277 - accuracy: 0.9559 - mae: 0.3277 - pearson_correlation: 0.7770 - euclidean_distance: 0.5359
Epoch 83/250
57/57 [==============================] - 0s 870us/step - loss: 0.3260 - accuracy: 0.9559 - mae: 0.3260 - pearson_correlation: 0.7789 - euclidean_distance: 0.5319
Epoch 84/250
57/57 [==============================] - 0s 856us/step - loss: 0.3218 - accuracy: 0.9559 - mae: 0.3218 - pearson_correlation: 0.7785 - euclidean_distance: 0.5260
Epoch 85/250
57/57 [==============================] - 0s 835us/step - loss: 0.3192 - accuracy: 0.9559 - mae: 0.3192 - pearson_correlation: 0.7785 - euclidean_distance: 0.5227
Epoch 86/250
57/57 [==============================] - 0s 846us/step - loss: 0.3188 - accuracy: 0.9559 - mae: 0.3188 - pearson_correlation: 0.7739 - euclidean_distance: 0.5209
Epoch 87/250
57/57 [==============================] - 0s 862us/step - loss: 0.3152 - accuracy: 0.9559 - mae: 0.3152 - pearson_correlation: 0.7775 - euclidean_distance: 0.5157
Epoch 88/250
57/57 [==============================] - 0s 857us/step - loss: 0.3123 - accuracy: 0.9559 - mae: 0.3123 - pearson_correlation: 0.7781 - euclidean_distance: 0.5116
Epoch 89/250
57/57 [==============================] - 0s 854us/step - loss: 0.3107 - accuracy: 0.9555 - mae: 0.3107 - pearson_correlation: 0.7760 - euclidean_distance: 0.5081
Epoch 90/250
57/57 [==============================] - 0s 846us/step - loss: 0.3101 - accuracy: 0.9559 - mae: 0.3101 - pearson_correlation: 0.7738 - euclidean_distance: 0.5064
Epoch 91/250
57/57 [==============================] - 0s 838us/step - loss: 0.3066 - accuracy: 0.9559 - mae: 0.3066 - pearson_correlation: 0.7775 - euclidean_distance: 0.5011
Epoch 92/250
57/57 [==============================] - 0s 854us/step - loss: 0.3061 - accuracy: 0.9559 - mae: 0.3061 - pearson_correlation: 0.7742 - euclidean_distance: 0.4994
Epoch 93/250
57/57 [==============================] - 0s 861us/step - loss: 0.3027 - accuracy: 0.9559 - mae: 0.3027 - pearson_correlation: 0.7780 - euclidean_distance: 0.4940
Epoch 94/250
57/57 [==============================] - 0s 847us/step - loss: 0.2994 - accuracy: 0.9559 - mae: 0.2994 - pearson_correlation: 0.7763 - euclidean_distance: 0.4896
Epoch 95/250
57/57 [==============================] - 0s 858us/step - loss: 0.2975 - accuracy: 0.9559 - mae: 0.2975 - pearson_correlation: 0.7764 - euclidean_distance: 0.4867
Epoch 96/250
57/57 [==============================] - 0s 855us/step - loss: 0.2954 - accuracy: 0.9559 - mae: 0.2954 - pearson_correlation: 0.7771 - euclidean_distance: 0.4831
Epoch 97/250
57/57 [==============================] - 0s 850us/step - loss: 0.2923 - accuracy: 0.9559 - mae: 0.2923 - pearson_correlation: 0.7746 - euclidean_distance: 0.4791
Epoch 98/250
57/57 [==============================] - 0s 850us/step - loss: 0.2913 - accuracy: 0.9559 - mae: 0.2913 - pearson_correlation: 0.7761 - euclidean_distance: 0.4765
Epoch 99/250
57/57 [==============================] - 0s 871us/step - loss: 0.2879 - accuracy: 0.9559 - mae: 0.2879 - pearson_correlation: 0.7748 - euclidean_distance: 0.4727
Epoch 100/250
57/57 [==============================] - 0s 876us/step - loss: 0.2882 - accuracy: 0.9559 - mae: 0.2882 - pearson_correlation: 0.7727 - euclidean_distance: 0.4701
Epoch 101/250
57/57 [==============================] - 0s 862us/step - loss: 0.2841 - accuracy: 0.9559 - mae: 0.2841 - pearson_correlation: 0.7746 - euclidean_distance: 0.4651
Epoch 102/250
57/57 [==============================] - 0s 858us/step - loss: 0.2808 - accuracy: 0.9559 - mae: 0.2808 - pearson_correlation: 0.7741 - euclidean_distance: 0.4610
Epoch 103/250
57/57 [==============================] - 0s 848us/step - loss: 0.2809 - accuracy: 0.9559 - mae: 0.2809 - pearson_correlation: 0.7729 - euclidean_distance: 0.4596
Epoch 104/250
57/57 [==============================] - 0s 866us/step - loss: 0.2777 - accuracy: 0.9559 - mae: 0.2777 - pearson_correlation: 0.7766 - euclidean_distance: 0.4555
Epoch 105/250
57/57 [==============================] - 0s 843us/step - loss: 0.2776 - accuracy: 0.9555 - mae: 0.2776 - pearson_correlation: 0.7705 - euclidean_distance: 0.4535
Epoch 106/250
57/57 [==============================] - 0s 858us/step - loss: 0.2722 - accuracy: 0.9559 - mae: 0.2722 - pearson_correlation: 0.7740 - euclidean_distance: 0.4473
Epoch 107/250
57/57 [==============================] - 0s 857us/step - loss: 0.2703 - accuracy: 0.9559 - mae: 0.2703 - pearson_correlation: 0.7761 - euclidean_distance: 0.4447
Epoch 108/250
57/57 [==============================] - 0s 850us/step - loss: 0.2684 - accuracy: 0.9559 - mae: 0.2684 - pearson_correlation: 0.7762 - euclidean_distance: 0.4411
Epoch 109/250
57/57 [==============================] - 0s 850us/step - loss: 0.2669 - accuracy: 0.9559 - mae: 0.2669 - pearson_correlation: 0.7703 - euclidean_distance: 0.4377
Epoch 110/250
57/57 [==============================] - 0s 853us/step - loss: 0.2657 - accuracy: 0.9559 - mae: 0.2657 - pearson_correlation: 0.7701 - euclidean_distance: 0.4349
Epoch 111/250
57/57 [==============================] - 0s 854us/step - loss: 0.2624 - accuracy: 0.9559 - mae: 0.2624 - pearson_correlation: 0.7717 - euclidean_distance: 0.4312
Epoch 112/250
57/57 [==============================] - 0s 853us/step - loss: 0.2616 - accuracy: 0.9559 - mae: 0.2616 - pearson_correlation: 0.7691 - euclidean_distance: 0.4281
Epoch 113/250
57/57 [==============================] - 0s 851us/step - loss: 0.2592 - accuracy: 0.9559 - mae: 0.2592 - pearson_correlation: 0.7710 - euclidean_distance: 0.4253
Epoch 114/250
57/57 [==============================] - 0s 841us/step - loss: 0.2574 - accuracy: 0.9559 - mae: 0.2574 - pearson_correlation: 0.7710 - euclidean_distance: 0.4213
Epoch 115/250
57/57 [==============================] - 0s 853us/step - loss: 0.2571 - accuracy: 0.9559 - mae: 0.2571 - pearson_correlation: 0.7708 - euclidean_distance: 0.4199
Epoch 116/250
57/57 [==============================] - 0s 845us/step - loss: 0.2529 - accuracy: 0.9559 - mae: 0.2529 - pearson_correlation: 0.7714 - euclidean_distance: 0.4147
Epoch 117/250
57/57 [==============================] - 0s 866us/step - loss: 0.2511 - accuracy: 0.9559 - mae: 0.2511 - pearson_correlation: 0.7746 - euclidean_distance: 0.4120
Epoch 118/250
57/57 [==============================] - 0s 844us/step - loss: 0.2487 - accuracy: 0.9559 - mae: 0.2487 - pearson_correlation: 0.7697 - euclidean_distance: 0.4086
Epoch 119/250
57/57 [==============================] - 0s 853us/step - loss: 0.2463 - accuracy: 0.9555 - mae: 0.2463 - pearson_correlation: 0.7712 - euclidean_distance: 0.4047
Epoch 120/250
57/57 [==============================] - 0s 850us/step - loss: 0.2457 - accuracy: 0.9555 - mae: 0.2457 - pearson_correlation: 0.7689 - euclidean_distance: 0.4029
Epoch 121/250
57/57 [==============================] - 0s 854us/step - loss: 0.2439 - accuracy: 0.9559 - mae: 0.2439 - pearson_correlation: 0.7677 - euclidean_distance: 0.3998
Epoch 122/250
57/57 [==============================] - 0s 861us/step - loss: 0.2414 - accuracy: 0.9559 - mae: 0.2414 - pearson_correlation: 0.7706 - euclidean_distance: 0.3958
Epoch 123/250
57/57 [==============================] - 0s 855us/step - loss: 0.2392 - accuracy: 0.9555 - mae: 0.2392 - pearson_correlation: 0.7674 - euclidean_distance: 0.3923
Epoch 124/250
57/57 [==============================] - 0s 854us/step - loss: 0.2373 - accuracy: 0.9559 - mae: 0.2373 - pearson_correlation: 0.7659 - euclidean_distance: 0.3893
Epoch 125/250
57/57 [==============================] - 0s 857us/step - loss: 0.2360 - accuracy: 0.9555 - mae: 0.2360 - pearson_correlation: 0.7646 - euclidean_distance: 0.3872
Epoch 126/250
57/57 [==============================] - 0s 854us/step - loss: 0.2346 - accuracy: 0.9559 - mae: 0.2346 - pearson_correlation: 0.7669 - euclidean_distance: 0.3847
Epoch 127/250
57/57 [==============================] - 0s 864us/step - loss: 0.2329 - accuracy: 0.9559 - mae: 0.2329 - pearson_correlation: 0.7638 - euclidean_distance: 0.3804
Epoch 128/250
57/57 [==============================] - 0s 857us/step - loss: 0.2297 - accuracy: 0.9559 - mae: 0.2297 - pearson_correlation: 0.7684 - euclidean_distance: 0.3771
Epoch 129/250
57/57 [==============================] - 0s 857us/step - loss: 0.2305 - accuracy: 0.9559 - mae: 0.2305 - pearson_correlation: 0.7620 - euclidean_distance: 0.3765
Epoch 130/250
57/57 [==============================] - 0s 859us/step - loss: 0.2264 - accuracy: 0.9555 - mae: 0.2264 - pearson_correlation: 0.7661 - euclidean_distance: 0.3716
Epoch 131/250
57/57 [==============================] - 0s 859us/step - loss: 0.2273 - accuracy: 0.9559 - mae: 0.2273 - pearson_correlation: 0.7623 - euclidean_distance: 0.3709
Epoch 132/250
57/57 [==============================] - 0s 849us/step - loss: 0.2236 - accuracy: 0.9555 - mae: 0.2236 - pearson_correlation: 0.7617 - euclidean_distance: 0.3665
Epoch 133/250
57/57 [==============================] - 0s 859us/step - loss: 0.2228 - accuracy: 0.9559 - mae: 0.2228 - pearson_correlation: 0.7639 - euclidean_distance: 0.3642
Epoch 134/250
57/57 [==============================] - 0s 862us/step - loss: 0.2205 - accuracy: 0.9559 - mae: 0.2205 - pearson_correlation: 0.7609 - euclidean_distance: 0.3614
Epoch 135/250
57/57 [==============================] - 0s 859us/step - loss: 0.2204 - accuracy: 0.9555 - mae: 0.2204 - pearson_correlation: 0.7632 - euclidean_distance: 0.3598
Epoch 136/250
57/57 [==============================] - 0s 881us/step - loss: 0.2162 - accuracy: 0.9541 - mae: 0.2162 - pearson_correlation: 0.7601 - euclidean_distance: 0.3545
Epoch 137/250
57/57 [==============================] - 0s 991us/step - loss: 0.2176 - accuracy: 0.9559 - mae: 0.2176 - pearson_correlation: 0.7572 - euclidean_distance: 0.3554
Epoch 138/250
57/57 [==============================] - 0s 951us/step - loss: 0.2163 - accuracy: 0.9559 - mae: 0.2163 - pearson_correlation: 0.7574 - euclidean_distance: 0.3532
Epoch 139/250
57/57 [==============================] - 0s 932us/step - loss: 0.2134 - accuracy: 0.9559 - mae: 0.2134 - pearson_correlation: 0.7589 - euclidean_distance: 0.3489
Epoch 140/250
57/57 [==============================] - 0s 951us/step - loss: 0.2109 - accuracy: 0.9550 - mae: 0.2109 - pearson_correlation: 0.7605 - euclidean_distance: 0.3449
Epoch 141/250
57/57 [==============================] - 0s 977us/step - loss: 0.2093 - accuracy: 0.9559 - mae: 0.2093 - pearson_correlation: 0.7617 - euclidean_distance: 0.3424
Epoch 142/250
57/57 [==============================] - 0s 1ms/step - loss: 0.2084 - accuracy: 0.9550 - mae: 0.2084 - pearson_correlation: 0.7541 - euclidean_distance: 0.3413
Epoch 143/250
57/57 [==============================] - 0s 966us/step - loss: 0.2067 - accuracy: 0.9555 - mae: 0.2067 - pearson_correlation: 0.7591 - euclidean_distance: 0.3393
Epoch 144/250
57/57 [==============================] - 0s 1ms/step - loss: 0.2057 - accuracy: 0.9559 - mae: 0.2057 - pearson_correlation: 0.7560 - euclidean_distance: 0.3368
Epoch 145/250
57/57 [==============================] - 0s 1ms/step - loss: 0.2040 - accuracy: 0.9550 - mae: 0.2040 - pearson_correlation: 0.7558 - euclidean_distance: 0.3338
Epoch 146/250
57/57 [==============================] - 0s 971us/step - loss: 0.2043 - accuracy: 0.9559 - mae: 0.2043 - pearson_correlation: 0.7557 - euclidean_distance: 0.3336
Epoch 147/250
57/57 [==============================] - 0s 867us/step - loss: 0.2005 - accuracy: 0.9550 - mae: 0.2005 - pearson_correlation: 0.7551 - euclidean_distance: 0.3285
Epoch 148/250
57/57 [==============================] - 0s 856us/step - loss: 0.2000 - accuracy: 0.9555 - mae: 0.2000 - pearson_correlation: 0.7549 - euclidean_distance: 0.3275
Epoch 149/250
57/57 [==============================] - 0s 865us/step - loss: 0.2003 - accuracy: 0.9555 - mae: 0.2003 - pearson_correlation: 0.7537 - euclidean_distance: 0.3270
Epoch 150/250
57/57 [==============================] - 0s 864us/step - loss: 0.1972 - accuracy: 0.9550 - mae: 0.1972 - pearson_correlation: 0.7516 - euclidean_distance: 0.3229
Epoch 151/250
57/57 [==============================] - 0s 860us/step - loss: 0.1964 - accuracy: 0.9555 - mae: 0.1964 - pearson_correlation: 0.7492 - euclidean_distance: 0.3212
Epoch 152/250
57/57 [==============================] - 0s 859us/step - loss: 0.1952 - accuracy: 0.9550 - mae: 0.1952 - pearson_correlation: 0.7523 - euclidean_distance: 0.3186
Epoch 153/250
57/57 [==============================] - 0s 856us/step - loss: 0.1943 - accuracy: 0.9555 - mae: 0.1943 - pearson_correlation: 0.7470 - euclidean_distance: 0.3174
Epoch 154/250
57/57 [==============================] - 0s 864us/step - loss: 0.1940 - accuracy: 0.9555 - mae: 0.1940 - pearson_correlation: 0.7508 - euclidean_distance: 0.3166
Epoch 155/250
57/57 [==============================] - 0s 856us/step - loss: 0.1907 - accuracy: 0.9559 - mae: 0.1907 - pearson_correlation: 0.7506 - euclidean_distance: 0.3128
Epoch 156/250
57/57 [==============================] - 0s 850us/step - loss: 0.1889 - accuracy: 0.9559 - mae: 0.1889 - pearson_correlation: 0.7485 - euclidean_distance: 0.3100
Epoch 157/250
57/57 [==============================] - 0s 865us/step - loss: 0.1885 - accuracy: 0.9555 - mae: 0.1885 - pearson_correlation: 0.7499 - euclidean_distance: 0.3078
Epoch 158/250
57/57 [==============================] - 0s 847us/step - loss: 0.1873 - accuracy: 0.9550 - mae: 0.1873 - pearson_correlation: 0.7461 - euclidean_distance: 0.3068
Epoch 159/250
57/57 [==============================] - 0s 858us/step - loss: 0.1870 - accuracy: 0.9550 - mae: 0.1870 - pearson_correlation: 0.7481 - euclidean_distance: 0.3052
Epoch 160/250
57/57 [==============================] - 0s 847us/step - loss: 0.1859 - accuracy: 0.9550 - mae: 0.1859 - pearson_correlation: 0.7461 - euclidean_distance: 0.3044
Epoch 161/250
57/57 [==============================] - 0s 855us/step - loss: 0.1841 - accuracy: 0.9555 - mae: 0.1841 - pearson_correlation: 0.7489 - euclidean_distance: 0.3003
Epoch 162/250
57/57 [==============================] - 0s 864us/step - loss: 0.1831 - accuracy: 0.9555 - mae: 0.1831 - pearson_correlation: 0.7464 - euclidean_distance: 0.2989
Epoch 163/250
57/57 [==============================] - 0s 859us/step - loss: 0.1816 - accuracy: 0.9550 - mae: 0.1816 - pearson_correlation: 0.7482 - euclidean_distance: 0.2968
Epoch 164/250
57/57 [==============================] - 0s 847us/step - loss: 0.1791 - accuracy: 0.9546 - mae: 0.1791 - pearson_correlation: 0.7445 - euclidean_distance: 0.2936
Epoch 165/250
57/57 [==============================] - 0s 858us/step - loss: 0.1775 - accuracy: 0.9546 - mae: 0.1775 - pearson_correlation: 0.7433 - euclidean_distance: 0.2914
Epoch 166/250
57/57 [==============================] - 0s 853us/step - loss: 0.1784 - accuracy: 0.9555 - mae: 0.1784 - pearson_correlation: 0.7421 - euclidean_distance: 0.2911
Epoch 167/250
57/57 [==============================] - 0s 859us/step - loss: 0.1787 - accuracy: 0.9550 - mae: 0.1787 - pearson_correlation: 0.7436 - euclidean_distance: 0.2907
Epoch 168/250
57/57 [==============================] - 0s 860us/step - loss: 0.1774 - accuracy: 0.9528 - mae: 0.1774 - pearson_correlation: 0.7405 - euclidean_distance: 0.2891
Epoch 169/250
57/57 [==============================] - 0s 848us/step - loss: 0.1741 - accuracy: 0.9541 - mae: 0.1741 - pearson_correlation: 0.7447 - euclidean_distance: 0.2855
Epoch 170/250
57/57 [==============================] - 0s 862us/step - loss: 0.1734 - accuracy: 0.9519 - mae: 0.1734 - pearson_correlation: 0.7378 - euclidean_distance: 0.2831
Epoch 171/250
57/57 [==============================] - 0s 861us/step - loss: 0.1739 - accuracy: 0.9541 - mae: 0.1739 - pearson_correlation: 0.7418 - euclidean_distance: 0.2836
Epoch 172/250
57/57 [==============================] - 0s 845us/step - loss: 0.1688 - accuracy: 0.9533 - mae: 0.1688 - pearson_correlation: 0.7436 - euclidean_distance: 0.2771
Epoch 173/250
57/57 [==============================] - 0s 863us/step - loss: 0.1718 - accuracy: 0.9555 - mae: 0.1718 - pearson_correlation: 0.7424 - euclidean_distance: 0.2801
Epoch 174/250
57/57 [==============================] - 0s 857us/step - loss: 0.1725 - accuracy: 0.9550 - mae: 0.1725 - pearson_correlation: 0.7357 - euclidean_distance: 0.2813
Epoch 175/250
57/57 [==============================] - 0s 861us/step - loss: 0.1691 - accuracy: 0.9550 - mae: 0.1691 - pearson_correlation: 0.7410 - euclidean_distance: 0.2748
Epoch 176/250
57/57 [==============================] - 0s 859us/step - loss: 0.1698 - accuracy: 0.9537 - mae: 0.1698 - pearson_correlation: 0.7369 - euclidean_distance: 0.2766
Epoch 177/250
57/57 [==============================] - 0s 845us/step - loss: 0.1694 - accuracy: 0.9537 - mae: 0.1694 - pearson_correlation: 0.7387 - euclidean_distance: 0.2752
Epoch 178/250
57/57 [==============================] - 0s 854us/step - loss: 0.1671 - accuracy: 0.9541 - mae: 0.1671 - pearson_correlation: 0.7372 - euclidean_distance: 0.2717
Epoch 179/250
57/57 [==============================] - 0s 862us/step - loss: 0.1657 - accuracy: 0.9511 - mae: 0.1657 - pearson_correlation: 0.7367 - euclidean_distance: 0.2706
Epoch 180/250
57/57 [==============================] - 0s 848us/step - loss: 0.1668 - accuracy: 0.9541 - mae: 0.1668 - pearson_correlation: 0.7358 - euclidean_distance: 0.2713
Epoch 181/250
57/57 [==============================] - 0s 853us/step - loss: 0.1646 - accuracy: 0.9533 - mae: 0.1646 - pearson_correlation: 0.7367 - euclidean_distance: 0.2684
Epoch 182/250
57/57 [==============================] - 0s 845us/step - loss: 0.1647 - accuracy: 0.9541 - mae: 0.1647 - pearson_correlation: 0.7351 - euclidean_distance: 0.2680
Epoch 183/250
57/57 [==============================] - 0s 845us/step - loss: 0.1629 - accuracy: 0.9541 - mae: 0.1629 - pearson_correlation: 0.7348 - euclidean_distance: 0.2653
Epoch 184/250
57/57 [==============================] - 0s 863us/step - loss: 0.1609 - accuracy: 0.9546 - mae: 0.1609 - pearson_correlation: 0.7362 - euclidean_distance: 0.2626
Epoch 185/250
57/57 [==============================] - 0s 860us/step - loss: 0.1611 - accuracy: 0.9541 - mae: 0.1611 - pearson_correlation: 0.7343 - euclidean_distance: 0.2632
Epoch 186/250
57/57 [==============================] - 0s 848us/step - loss: 0.1579 - accuracy: 0.9546 - mae: 0.1579 - pearson_correlation: 0.7367 - euclidean_distance: 0.2591
Epoch 187/250
57/57 [==============================] - 0s 859us/step - loss: 0.1587 - accuracy: 0.9533 - mae: 0.1587 - pearson_correlation: 0.7352 - euclidean_distance: 0.2588
Epoch 188/250
57/57 [==============================] - 0s 848us/step - loss: 0.1588 - accuracy: 0.9528 - mae: 0.1588 - pearson_correlation: 0.7305 - euclidean_distance: 0.2586
Epoch 189/250
57/57 [==============================] - 0s 851us/step - loss: 0.1578 - accuracy: 0.9546 - mae: 0.1578 - pearson_correlation: 0.7338 - euclidean_distance: 0.2572
Epoch 190/250
57/57 [==============================] - 0s 860us/step - loss: 0.1579 - accuracy: 0.9546 - mae: 0.1579 - pearson_correlation: 0.7292 - euclidean_distance: 0.2577
Epoch 191/250
57/57 [==============================] - 0s 854us/step - loss: 0.1580 - accuracy: 0.9546 - mae: 0.1580 - pearson_correlation: 0.7305 - euclidean_distance: 0.2572
Epoch 192/250
57/57 [==============================] - 0s 858us/step - loss: 0.1545 - accuracy: 0.9541 - mae: 0.1545 - pearson_correlation: 0.7304 - euclidean_distance: 0.2518
Epoch 193/250
57/57 [==============================] - 0s 858us/step - loss: 0.1533 - accuracy: 0.9537 - mae: 0.1533 - pearson_correlation: 0.7319 - euclidean_distance: 0.2494
Epoch 194/250
57/57 [==============================] - 0s 853us/step - loss: 0.1523 - accuracy: 0.9537 - mae: 0.1523 - pearson_correlation: 0.7339 - euclidean_distance: 0.2490
Epoch 195/250
57/57 [==============================] - 0s 860us/step - loss: 0.1534 - accuracy: 0.9528 - mae: 0.1534 - pearson_correlation: 0.7352 - euclidean_distance: 0.2487
Epoch 196/250
57/57 [==============================] - 0s 865us/step - loss: 0.1524 - accuracy: 0.9537 - mae: 0.1524 - pearson_correlation: 0.7334 - euclidean_distance: 0.2490
Epoch 197/250
57/57 [==============================] - 0s 856us/step - loss: 0.1518 - accuracy: 0.9537 - mae: 0.1518 - pearson_correlation: 0.7349 - euclidean_distance: 0.2473
Epoch 198/250
57/57 [==============================] - 0s 856us/step - loss: 0.1498 - accuracy: 0.9537 - mae: 0.1498 - pearson_correlation: 0.7336 - euclidean_distance: 0.2447
Epoch 199/250
57/57 [==============================] - 0s 861us/step - loss: 0.1514 - accuracy: 0.9537 - mae: 0.1514 - pearson_correlation: 0.7270 - euclidean_distance: 0.2467
Epoch 200/250
57/57 [==============================] - 0s 843us/step - loss: 0.1495 - accuracy: 0.9541 - mae: 0.1495 - pearson_correlation: 0.7306 - euclidean_distance: 0.2444
Epoch 201/250
57/57 [==============================] - 0s 858us/step - loss: 0.1501 - accuracy: 0.9519 - mae: 0.1501 - pearson_correlation: 0.7293 - euclidean_distance: 0.2437
Epoch 202/250
57/57 [==============================] - 0s 862us/step - loss: 0.1475 - accuracy: 0.9537 - mae: 0.1475 - pearson_correlation: 0.7322 - euclidean_distance: 0.2402
Epoch 203/250
57/57 [==============================] - 0s 858us/step - loss: 0.1466 - accuracy: 0.9537 - mae: 0.1466 - pearson_correlation: 0.7302 - euclidean_distance: 0.2388
Epoch 204/250
57/57 [==============================] - 0s 855us/step - loss: 0.1466 - accuracy: 0.9528 - mae: 0.1466 - pearson_correlation: 0.7294 - euclidean_distance: 0.2393
Epoch 205/250
57/57 [==============================] - 0s 861us/step - loss: 0.1459 - accuracy: 0.9506 - mae: 0.1459 - pearson_correlation: 0.7310 - euclidean_distance: 0.2380
Epoch 206/250
57/57 [==============================] - 0s 864us/step - loss: 0.1472 - accuracy: 0.9524 - mae: 0.1472 - pearson_correlation: 0.7296 - euclidean_distance: 0.2387
Epoch 207/250
57/57 [==============================] - 0s 858us/step - loss: 0.1444 - accuracy: 0.9519 - mae: 0.1444 - pearson_correlation: 0.7292 - euclidean_distance: 0.2357
Epoch 208/250
57/57 [==============================] - 0s 860us/step - loss: 0.1441 - accuracy: 0.9550 - mae: 0.1441 - pearson_correlation: 0.7277 - euclidean_distance: 0.2350
Epoch 209/250
57/57 [==============================] - 0s 843us/step - loss: 0.1429 - accuracy: 0.9524 - mae: 0.1429 - pearson_correlation: 0.7265 - euclidean_distance: 0.2336
Epoch 210/250
57/57 [==============================] - 0s 856us/step - loss: 0.1439 - accuracy: 0.9524 - mae: 0.1439 - pearson_correlation: 0.7319 - euclidean_distance: 0.2340
Epoch 211/250
57/57 [==============================] - 0s 860us/step - loss: 0.1445 - accuracy: 0.9502 - mae: 0.1445 - pearson_correlation: 0.7297 - euclidean_distance: 0.2345
Epoch 212/250
57/57 [==============================] - 0s 858us/step - loss: 0.1426 - accuracy: 0.9537 - mae: 0.1426 - pearson_correlation: 0.7312 - euclidean_distance: 0.2317
Epoch 213/250
57/57 [==============================] - 0s 853us/step - loss: 0.1416 - accuracy: 0.9533 - mae: 0.1416 - pearson_correlation: 0.7288 - euclidean_distance: 0.2307
Epoch 214/250
57/57 [==============================] - 0s 858us/step - loss: 0.1431 - accuracy: 0.9537 - mae: 0.1431 - pearson_correlation: 0.7272 - euclidean_distance: 0.2322
Epoch 215/250
57/57 [==============================] - 0s 864us/step - loss: 0.1414 - accuracy: 0.9550 - mae: 0.1414 - pearson_correlation: 0.7282 - euclidean_distance: 0.2299
Epoch 216/250
57/57 [==============================] - 0s 848us/step - loss: 0.1427 - accuracy: 0.9537 - mae: 0.1427 - pearson_correlation: 0.7292 - euclidean_distance: 0.2305
Epoch 217/250
57/57 [==============================] - 0s 862us/step - loss: 0.1383 - accuracy: 0.9519 - mae: 0.1383 - pearson_correlation: 0.7311 - euclidean_distance: 0.2259
Epoch 218/250
57/57 [==============================] - 0s 849us/step - loss: 0.1389 - accuracy: 0.9524 - mae: 0.1389 - pearson_correlation: 0.7293 - euclidean_distance: 0.2255
Epoch 219/250
57/57 [==============================] - 0s 852us/step - loss: 0.1390 - accuracy: 0.9533 - mae: 0.1390 - pearson_correlation: 0.7285 - euclidean_distance: 0.2257
Epoch 220/250
57/57 [==============================] - 0s 860us/step - loss: 0.1380 - accuracy: 0.9524 - mae: 0.1380 - pearson_correlation: 0.7309 - euclidean_distance: 0.2246
Epoch 221/250
57/57 [==============================] - 0s 858us/step - loss: 0.1385 - accuracy: 0.9519 - mae: 0.1385 - pearson_correlation: 0.7278 - euclidean_distance: 0.2247
Epoch 222/250
57/57 [==============================] - 0s 840us/step - loss: 0.1355 - accuracy: 0.9537 - mae: 0.1355 - pearson_correlation: 0.7284 - euclidean_distance: 0.2207
Epoch 223/250
57/57 [==============================] - 0s 857us/step - loss: 0.1362 - accuracy: 0.9541 - mae: 0.1362 - pearson_correlation: 0.7314 - euclidean_distance: 0.2209
Epoch 224/250
57/57 [==============================] - 0s 856us/step - loss: 0.1367 - accuracy: 0.9519 - mae: 0.1367 - pearson_correlation: 0.7284 - euclidean_distance: 0.2219
Epoch 225/250
57/57 [==============================] - 0s 861us/step - loss: 0.1358 - accuracy: 0.9533 - mae: 0.1358 - pearson_correlation: 0.7286 - euclidean_distance: 0.2205
Epoch 226/250
57/57 [==============================] - 0s 860us/step - loss: 0.1360 - accuracy: 0.9550 - mae: 0.1360 - pearson_correlation: 0.7244 - euclidean_distance: 0.2208
Epoch 227/250
57/57 [==============================] - 0s 853us/step - loss: 0.1338 - accuracy: 0.9528 - mae: 0.1338 - pearson_correlation: 0.7307 - euclidean_distance: 0.2175
Epoch 228/250
57/57 [==============================] - 0s 856us/step - loss: 0.1355 - accuracy: 0.9524 - mae: 0.1355 - pearson_correlation: 0.7330 - euclidean_distance: 0.2190
Epoch 229/250
57/57 [==============================] - 0s 856us/step - loss: 0.1335 - accuracy: 0.9506 - mae: 0.1335 - pearson_correlation: 0.7338 - euclidean_distance: 0.2170
Epoch 230/250
57/57 [==============================] - 0s 853us/step - loss: 0.1333 - accuracy: 0.9528 - mae: 0.1333 - pearson_correlation: 0.7303 - euclidean_distance: 0.2162
Epoch 231/250
57/57 [==============================] - 0s 857us/step - loss: 0.1331 - accuracy: 0.9519 - mae: 0.1331 - pearson_correlation: 0.7273 - euclidean_distance: 0.2156
Epoch 232/250
57/57 [==============================] - 0s 850us/step - loss: 0.1325 - accuracy: 0.9537 - mae: 0.1325 - pearson_correlation: 0.7297 - euclidean_distance: 0.2147
Epoch 233/250
57/57 [==============================] - 0s 864us/step - loss: 0.1296 - accuracy: 0.9537 - mae: 0.1296 - pearson_correlation: 0.7326 - euclidean_distance: 0.2109
Epoch 234/250
57/57 [==============================] - 0s 864us/step - loss: 0.1321 - accuracy: 0.9537 - mae: 0.1321 - pearson_correlation: 0.7283 - euclidean_distance: 0.2142
Epoch 235/250
57/57 [==============================] - 0s 867us/step - loss: 0.1297 - accuracy: 0.9524 - mae: 0.1297 - pearson_correlation: 0.7342 - euclidean_distance: 0.2103
Epoch 236/250
57/57 [==============================] - 0s 855us/step - loss: 0.1294 - accuracy: 0.9541 - mae: 0.1294 - pearson_correlation: 0.7312 - euclidean_distance: 0.2100
Epoch 237/250
57/57 [==============================] - 0s 852us/step - loss: 0.1289 - accuracy: 0.9555 - mae: 0.1289 - pearson_correlation: 0.7334 - euclidean_distance: 0.2094
Epoch 238/250
57/57 [==============================] - 0s 858us/step - loss: 0.1287 - accuracy: 0.9550 - mae: 0.1287 - pearson_correlation: 0.7299 - euclidean_distance: 0.2086
Epoch 239/250
57/57 [==============================] - 0s 859us/step - loss: 0.1288 - accuracy: 0.9524 - mae: 0.1288 - pearson_correlation: 0.7319 - euclidean_distance: 0.2081
Epoch 240/250
57/57 [==============================] - 0s 858us/step - loss: 0.1296 - accuracy: 0.9537 - mae: 0.1296 - pearson_correlation: 0.7301 - euclidean_distance: 0.2097
Epoch 241/250
57/57 [==============================] - 0s 846us/step - loss: 0.1294 - accuracy: 0.9537 - mae: 0.1294 - pearson_correlation: 0.7316 - euclidean_distance: 0.2088
Epoch 242/250
57/57 [==============================] - 0s 867us/step - loss: 0.1286 - accuracy: 0.9537 - mae: 0.1286 - pearson_correlation: 0.7293 - euclidean_distance: 0.2082
Epoch 243/250
57/57 [==============================] - 0s 853us/step - loss: 0.1293 - accuracy: 0.9524 - mae: 0.1293 - pearson_correlation: 0.7295 - euclidean_distance: 0.2090
Epoch 244/250
57/57 [==============================] - 0s 863us/step - loss: 0.1292 - accuracy: 0.9528 - mae: 0.1292 - pearson_correlation: 0.7273 - euclidean_distance: 0.2083
Epoch 245/250
57/57 [==============================] - 0s 847us/step - loss: 0.1262 - accuracy: 0.9528 - mae: 0.1262 - pearson_correlation: 0.7342 - euclidean_distance: 0.2046
Epoch 246/250
57/57 [==============================] - 0s 853us/step - loss: 0.1261 - accuracy: 0.9528 - mae: 0.1261 - pearson_correlation: 0.7291 - euclidean_distance: 0.2044
Epoch 247/250
57/57 [==============================] - 0s 856us/step - loss: 0.1256 - accuracy: 0.9537 - mae: 0.1256 - pearson_correlation: 0.7316 - euclidean_distance: 0.2037
Epoch 248/250
57/57 [==============================] - 0s 854us/step - loss: 0.1241 - accuracy: 0.9550 - mae: 0.1241 - pearson_correlation: 0.7332 - euclidean_distance: 0.2006
Epoch 249/250
57/57 [==============================] - 0s 863us/step - loss: 0.1254 - accuracy: 0.9528 - mae: 0.1254 - pearson_correlation: 0.7303 - euclidean_distance: 0.2025
Epoch 250/250
57/57 [==============================] - 0s 844us/step - loss: 0.1262 - accuracy: 0.9546 - mae: 0.1262 - pearson_correlation: 0.7351 - euclidean_distance: 0.2025
29/29 [==============================] - 0s 493us/step
Epoch 1/300
57/57 [==============================] - 1s 871us/step - loss: 0.5291 - accuracy: 0.5439 - mae: 0.5291 - pearson_correlation: 0.1601 - euclidean_distance: 0.8156
Epoch 2/300
57/57 [==============================] - 0s 836us/step - loss: 0.5206 - accuracy: 0.5457 - mae: 0.5206 - pearson_correlation: 0.1662 - euclidean_distance: 0.8032
Epoch 3/300
57/57 [==============================] - 0s 888us/step - loss: 0.5103 - accuracy: 0.5576 - mae: 0.5103 - pearson_correlation: 0.1745 - euclidean_distance: 0.7877
Epoch 4/300
57/57 [==============================] - 0s 868us/step - loss: 0.5014 - accuracy: 0.5682 - mae: 0.5014 - pearson_correlation: 0.1719 - euclidean_distance: 0.7761
Epoch 5/300
57/57 [==============================] - 0s 857us/step - loss: 0.4919 - accuracy: 0.5620 - mae: 0.4919 - pearson_correlation: 0.1750 - euclidean_distance: 0.7625
Epoch 6/300
57/57 [==============================] - 0s 857us/step - loss: 0.4858 - accuracy: 0.5770 - mae: 0.4858 - pearson_correlation: 0.1820 - euclidean_distance: 0.7538
Epoch 7/300
57/57 [==============================] - 0s 869us/step - loss: 0.4777 - accuracy: 0.5752 - mae: 0.4777 - pearson_correlation: 0.1830 - euclidean_distance: 0.7426
Epoch 8/300
57/57 [==============================] - 0s 865us/step - loss: 0.4645 - accuracy: 0.5920 - mae: 0.4645 - pearson_correlation: 0.2056 - euclidean_distance: 0.7232
Epoch 9/300
57/57 [==============================] - 0s 860us/step - loss: 0.4579 - accuracy: 0.5893 - mae: 0.4579 - pearson_correlation: 0.2026 - euclidean_distance: 0.7140
Epoch 10/300
57/57 [==============================] - 0s 865us/step - loss: 0.4483 - accuracy: 0.5955 - mae: 0.4483 - pearson_correlation: 0.2111 - euclidean_distance: 0.7000
Epoch 11/300
57/57 [==============================] - 0s 855us/step - loss: 0.4420 - accuracy: 0.5990 - mae: 0.4420 - pearson_correlation: 0.2105 - euclidean_distance: 0.6907
Epoch 12/300
57/57 [==============================] - 0s 865us/step - loss: 0.4318 - accuracy: 0.6039 - mae: 0.4318 - pearson_correlation: 0.2187 - euclidean_distance: 0.6771
Epoch 13/300
57/57 [==============================] - 0s 862us/step - loss: 0.4234 - accuracy: 0.6105 - mae: 0.4234 - pearson_correlation: 0.2272 - euclidean_distance: 0.6645
Epoch 14/300
57/57 [==============================] - 0s 868us/step - loss: 0.4130 - accuracy: 0.6215 - mae: 0.4130 - pearson_correlation: 0.2341 - euclidean_distance: 0.6501
Epoch 15/300
57/57 [==============================] - 0s 889us/step - loss: 0.4083 - accuracy: 0.6330 - mae: 0.4083 - pearson_correlation: 0.2425 - euclidean_distance: 0.6414
Epoch 16/300
57/57 [==============================] - 0s 867us/step - loss: 0.4004 - accuracy: 0.6348 - mae: 0.4004 - pearson_correlation: 0.2408 - euclidean_distance: 0.6317
Epoch 17/300
57/57 [==============================] - 0s 874us/step - loss: 0.3899 - accuracy: 0.6431 - mae: 0.3899 - pearson_correlation: 0.2547 - euclidean_distance: 0.6150
Epoch 18/300
57/57 [==============================] - 0s 866us/step - loss: 0.3811 - accuracy: 0.6476 - mae: 0.3811 - pearson_correlation: 0.2591 - euclidean_distance: 0.6016
Epoch 19/300
57/57 [==============================] - 0s 870us/step - loss: 0.3756 - accuracy: 0.6608 - mae: 0.3756 - pearson_correlation: 0.2720 - euclidean_distance: 0.5936
Epoch 20/300
57/57 [==============================] - 0s 859us/step - loss: 0.3657 - accuracy: 0.6731 - mae: 0.3657 - pearson_correlation: 0.2783 - euclidean_distance: 0.5789
Epoch 21/300
57/57 [==============================] - 0s 850us/step - loss: 0.3598 - accuracy: 0.6674 - mae: 0.3598 - pearson_correlation: 0.2852 - euclidean_distance: 0.5698
Epoch 22/300
57/57 [==============================] - 0s 850us/step - loss: 0.3523 - accuracy: 0.6771 - mae: 0.3523 - pearson_correlation: 0.2956 - euclidean_distance: 0.5585
Epoch 23/300
57/57 [==============================] - 0s 867us/step - loss: 0.3451 - accuracy: 0.6767 - mae: 0.3451 - pearson_correlation: 0.2996 - euclidean_distance: 0.5487
Epoch 24/300
57/57 [==============================] - 0s 861us/step - loss: 0.3381 - accuracy: 0.6956 - mae: 0.3381 - pearson_correlation: 0.3101 - euclidean_distance: 0.5373
Epoch 25/300
57/57 [==============================] - 0s 856us/step - loss: 0.3297 - accuracy: 0.6974 - mae: 0.3297 - pearson_correlation: 0.3167 - euclidean_distance: 0.5250
Epoch 26/300
57/57 [==============================] - 0s 868us/step - loss: 0.3250 - accuracy: 0.7058 - mae: 0.3250 - pearson_correlation: 0.3254 - euclidean_distance: 0.5173
Epoch 27/300
57/57 [==============================] - 0s 862us/step - loss: 0.3216 - accuracy: 0.7080 - mae: 0.3216 - pearson_correlation: 0.3279 - euclidean_distance: 0.5122
Epoch 28/300
57/57 [==============================] - 0s 858us/step - loss: 0.3159 - accuracy: 0.7146 - mae: 0.3159 - pearson_correlation: 0.3327 - euclidean_distance: 0.5033
Epoch 29/300
57/57 [==============================] - 0s 851us/step - loss: 0.3081 - accuracy: 0.7146 - mae: 0.3081 - pearson_correlation: 0.3377 - euclidean_distance: 0.4915
Epoch 30/300
57/57 [==============================] - 0s 851us/step - loss: 0.3063 - accuracy: 0.7265 - mae: 0.3063 - pearson_correlation: 0.3466 - euclidean_distance: 0.4888
Epoch 31/300
57/57 [==============================] - 0s 857us/step - loss: 0.2971 - accuracy: 0.7225 - mae: 0.2971 - pearson_correlation: 0.3554 - euclidean_distance: 0.4755
Epoch 32/300
57/57 [==============================] - 0s 866us/step - loss: 0.2939 - accuracy: 0.7380 - mae: 0.2939 - pearson_correlation: 0.3572 - euclidean_distance: 0.4690
Epoch 33/300
57/57 [==============================] - 0s 860us/step - loss: 0.2906 - accuracy: 0.7415 - mae: 0.2906 - pearson_correlation: 0.3579 - euclidean_distance: 0.4633
Epoch 34/300
57/57 [==============================] - 0s 868us/step - loss: 0.2843 - accuracy: 0.7494 - mae: 0.2843 - pearson_correlation: 0.3670 - euclidean_distance: 0.4537
Epoch 35/300
57/57 [==============================] - 0s 864us/step - loss: 0.2760 - accuracy: 0.7569 - mae: 0.2760 - pearson_correlation: 0.3749 - euclidean_distance: 0.4423
Epoch 36/300
57/57 [==============================] - 0s 859us/step - loss: 0.2734 - accuracy: 0.7490 - mae: 0.2734 - pearson_correlation: 0.3747 - euclidean_distance: 0.4372
Epoch 37/300
57/57 [==============================] - 0s 867us/step - loss: 0.2700 - accuracy: 0.7578 - mae: 0.2700 - pearson_correlation: 0.3802 - euclidean_distance: 0.4310
Epoch 38/300
57/57 [==============================] - 0s 862us/step - loss: 0.2659 - accuracy: 0.7605 - mae: 0.2659 - pearson_correlation: 0.3848 - euclidean_distance: 0.4248
Epoch 39/300
57/57 [==============================] - 0s 871us/step - loss: 0.2629 - accuracy: 0.7724 - mae: 0.2629 - pearson_correlation: 0.3827 - euclidean_distance: 0.4201
Epoch 40/300
57/57 [==============================] - 0s 867us/step - loss: 0.2585 - accuracy: 0.7825 - mae: 0.2585 - pearson_correlation: 0.3858 - euclidean_distance: 0.4146
Epoch 41/300
57/57 [==============================] - 0s 853us/step - loss: 0.2531 - accuracy: 0.7816 - mae: 0.2531 - pearson_correlation: 0.3968 - euclidean_distance: 0.4059
Epoch 42/300
57/57 [==============================] - 0s 861us/step - loss: 0.2507 - accuracy: 0.7764 - mae: 0.2507 - pearson_correlation: 0.3929 - euclidean_distance: 0.4021
Epoch 43/300
57/57 [==============================] - 0s 860us/step - loss: 0.2489 - accuracy: 0.7869 - mae: 0.2489 - pearson_correlation: 0.4042 - euclidean_distance: 0.3979
Epoch 44/300
57/57 [==============================] - 0s 862us/step - loss: 0.2450 - accuracy: 0.7940 - mae: 0.2450 - pearson_correlation: 0.4039 - euclidean_distance: 0.3911
Epoch 45/300
57/57 [==============================] - 0s 855us/step - loss: 0.2387 - accuracy: 0.7914 - mae: 0.2387 - pearson_correlation: 0.4049 - euclidean_distance: 0.3814
Epoch 46/300
57/57 [==============================] - 0s 874us/step - loss: 0.2382 - accuracy: 0.7975 - mae: 0.2382 - pearson_correlation: 0.4028 - euclidean_distance: 0.3818
Epoch 47/300
57/57 [==============================] - 0s 859us/step - loss: 0.2314 - accuracy: 0.8068 - mae: 0.2314 - pearson_correlation: 0.4142 - euclidean_distance: 0.3712
Epoch 48/300
57/57 [==============================] - 0s 853us/step - loss: 0.2315 - accuracy: 0.8041 - mae: 0.2315 - pearson_correlation: 0.4173 - euclidean_distance: 0.3710
Epoch 49/300
57/57 [==============================] - 0s 847us/step - loss: 0.2284 - accuracy: 0.8139 - mae: 0.2284 - pearson_correlation: 0.4135 - euclidean_distance: 0.3659
Epoch 50/300
57/57 [==============================] - 0s 864us/step - loss: 0.2241 - accuracy: 0.8134 - mae: 0.2241 - pearson_correlation: 0.4188 - euclidean_distance: 0.3586
Epoch 51/300
57/57 [==============================] - 0s 858us/step - loss: 0.2255 - accuracy: 0.8094 - mae: 0.2255 - pearson_correlation: 0.4190 - euclidean_distance: 0.3627
Epoch 52/300
57/57 [==============================] - 0s 866us/step - loss: 0.2181 - accuracy: 0.8346 - mae: 0.2181 - pearson_correlation: 0.4299 - euclidean_distance: 0.3503
Epoch 53/300
57/57 [==============================] - 0s 865us/step - loss: 0.2202 - accuracy: 0.8174 - mae: 0.2202 - pearson_correlation: 0.4237 - euclidean_distance: 0.3529
Epoch 54/300
57/57 [==============================] - 0s 867us/step - loss: 0.2133 - accuracy: 0.8258 - mae: 0.2133 - pearson_correlation: 0.4339 - euclidean_distance: 0.3425
Epoch 55/300
57/57 [==============================] - 0s 856us/step - loss: 0.2114 - accuracy: 0.8205 - mae: 0.2114 - pearson_correlation: 0.4369 - euclidean_distance: 0.3404
Epoch 56/300
57/57 [==============================] - 0s 869us/step - loss: 0.2102 - accuracy: 0.8302 - mae: 0.2102 - pearson_correlation: 0.4412 - euclidean_distance: 0.3384
Epoch 57/300
57/57 [==============================] - 0s 865us/step - loss: 0.2076 - accuracy: 0.8302 - mae: 0.2076 - pearson_correlation: 0.4369 - euclidean_distance: 0.3350
Epoch 58/300
57/57 [==============================] - 0s 855us/step - loss: 0.2070 - accuracy: 0.8403 - mae: 0.2070 - pearson_correlation: 0.4390 - euclidean_distance: 0.3335
Epoch 59/300
57/57 [==============================] - 0s 861us/step - loss: 0.2063 - accuracy: 0.8328 - mae: 0.2063 - pearson_correlation: 0.4491 - euclidean_distance: 0.3324
Epoch 60/300
57/57 [==============================] - 0s 843us/step - loss: 0.2034 - accuracy: 0.8390 - mae: 0.2034 - pearson_correlation: 0.4455 - euclidean_distance: 0.3276
Epoch 61/300
57/57 [==============================] - 0s 862us/step - loss: 0.2009 - accuracy: 0.8372 - mae: 0.2009 - pearson_correlation: 0.4465 - euclidean_distance: 0.3238
Epoch 62/300
57/57 [==============================] - 0s 857us/step - loss: 0.1969 - accuracy: 0.8421 - mae: 0.1969 - pearson_correlation: 0.4560 - euclidean_distance: 0.3185
Epoch 63/300
57/57 [==============================] - 0s 865us/step - loss: 0.1958 - accuracy: 0.8408 - mae: 0.1958 - pearson_correlation: 0.4519 - euclidean_distance: 0.3161
Epoch 64/300
57/57 [==============================] - 0s 844us/step - loss: 0.1946 - accuracy: 0.8474 - mae: 0.1946 - pearson_correlation: 0.4559 - euclidean_distance: 0.3137
Epoch 65/300
57/57 [==============================] - 0s 862us/step - loss: 0.1948 - accuracy: 0.8469 - mae: 0.1948 - pearson_correlation: 0.4534 - euclidean_distance: 0.3151
Epoch 66/300
57/57 [==============================] - 0s 865us/step - loss: 0.1951 - accuracy: 0.8430 - mae: 0.1951 - pearson_correlation: 0.4571 - euclidean_distance: 0.3162
Epoch 67/300
57/57 [==============================] - 0s 856us/step - loss: 0.1904 - accuracy: 0.8531 - mae: 0.1904 - pearson_correlation: 0.4656 - euclidean_distance: 0.3081
Epoch 68/300
57/57 [==============================] - 0s 858us/step - loss: 0.1894 - accuracy: 0.8522 - mae: 0.1894 - pearson_correlation: 0.4709 - euclidean_distance: 0.3071
Epoch 69/300
57/57 [==============================] - 0s 864us/step - loss: 0.1877 - accuracy: 0.8513 - mae: 0.1877 - pearson_correlation: 0.4706 - euclidean_distance: 0.3043
Epoch 70/300
57/57 [==============================] - 0s 863us/step - loss: 0.1859 - accuracy: 0.8500 - mae: 0.1859 - pearson_correlation: 0.4773 - euclidean_distance: 0.3003
Epoch 71/300
57/57 [==============================] - 0s 858us/step - loss: 0.1849 - accuracy: 0.8540 - mae: 0.1849 - pearson_correlation: 0.4705 - euclidean_distance: 0.2997
Epoch 72/300
57/57 [==============================] - 0s 867us/step - loss: 0.1838 - accuracy: 0.8549 - mae: 0.1838 - pearson_correlation: 0.4792 - euclidean_distance: 0.2974
Epoch 73/300
57/57 [==============================] - 0s 851us/step - loss: 0.1825 - accuracy: 0.8544 - mae: 0.1825 - pearson_correlation: 0.4819 - euclidean_distance: 0.2952
Epoch 74/300
57/57 [==============================] - 0s 851us/step - loss: 0.1810 - accuracy: 0.8549 - mae: 0.1810 - pearson_correlation: 0.4824 - euclidean_distance: 0.2932
Epoch 75/300
57/57 [==============================] - 0s 858us/step - loss: 0.1796 - accuracy: 0.8575 - mae: 0.1796 - pearson_correlation: 0.4816 - euclidean_distance: 0.2915
Epoch 76/300
57/57 [==============================] - 0s 862us/step - loss: 0.1788 - accuracy: 0.8624 - mae: 0.1788 - pearson_correlation: 0.4907 - euclidean_distance: 0.2889
Epoch 77/300
57/57 [==============================] - 0s 864us/step - loss: 0.1793 - accuracy: 0.8646 - mae: 0.1793 - pearson_correlation: 0.4869 - euclidean_distance: 0.2901
Epoch 78/300
57/57 [==============================] - 0s 852us/step - loss: 0.1776 - accuracy: 0.8610 - mae: 0.1776 - pearson_correlation: 0.4840 - euclidean_distance: 0.2877
Epoch 79/300
57/57 [==============================] - 0s 862us/step - loss: 0.1765 - accuracy: 0.8646 - mae: 0.1765 - pearson_correlation: 0.4962 - euclidean_distance: 0.2852
Epoch 80/300
57/57 [==============================] - 0s 869us/step - loss: 0.1793 - accuracy: 0.8619 - mae: 0.1793 - pearson_correlation: 0.4838 - euclidean_distance: 0.2900
Epoch 81/300
57/57 [==============================] - 0s 868us/step - loss: 0.1726 - accuracy: 0.8694 - mae: 0.1726 - pearson_correlation: 0.5008 - euclidean_distance: 0.2799
Epoch 82/300
57/57 [==============================] - 0s 843us/step - loss: 0.1759 - accuracy: 0.8619 - mae: 0.1759 - pearson_correlation: 0.4919 - euclidean_distance: 0.2848
Epoch 83/300
57/57 [==============================] - 0s 868us/step - loss: 0.1755 - accuracy: 0.8690 - mae: 0.1755 - pearson_correlation: 0.5026 - euclidean_distance: 0.2836
Epoch 84/300
57/57 [==============================] - 0s 852us/step - loss: 0.1676 - accuracy: 0.8659 - mae: 0.1676 - pearson_correlation: 0.5095 - euclidean_distance: 0.2726
Epoch 85/300
57/57 [==============================] - 0s 859us/step - loss: 0.1708 - accuracy: 0.8699 - mae: 0.1708 - pearson_correlation: 0.5056 - euclidean_distance: 0.2772
Epoch 86/300
57/57 [==============================] - 0s 863us/step - loss: 0.1721 - accuracy: 0.8672 - mae: 0.1721 - pearson_correlation: 0.5083 - euclidean_distance: 0.2779
Epoch 87/300
57/57 [==============================] - 0s 853us/step - loss: 0.1688 - accuracy: 0.8730 - mae: 0.1688 - pearson_correlation: 0.5122 - euclidean_distance: 0.2733
Epoch 88/300
57/57 [==============================] - 0s 850us/step - loss: 0.1664 - accuracy: 0.8743 - mae: 0.1664 - pearson_correlation: 0.5130 - euclidean_distance: 0.2694
Epoch 89/300
57/57 [==============================] - 0s 852us/step - loss: 0.1659 - accuracy: 0.8699 - mae: 0.1659 - pearson_correlation: 0.5141 - euclidean_distance: 0.2696
Epoch 90/300
57/57 [==============================] - 0s 855us/step - loss: 0.1682 - accuracy: 0.8738 - mae: 0.1682 - pearson_correlation: 0.5181 - euclidean_distance: 0.2724
Epoch 91/300
57/57 [==============================] - 0s 866us/step - loss: 0.1647 - accuracy: 0.8672 - mae: 0.1647 - pearson_correlation: 0.5177 - euclidean_distance: 0.2677
Epoch 92/300
57/57 [==============================] - 0s 868us/step - loss: 0.1628 - accuracy: 0.8716 - mae: 0.1628 - pearson_correlation: 0.5198 - euclidean_distance: 0.2647
Epoch 93/300
57/57 [==============================] - 0s 853us/step - loss: 0.1656 - accuracy: 0.8712 - mae: 0.1656 - pearson_correlation: 0.5214 - euclidean_distance: 0.2678
Epoch 94/300
57/57 [==============================] - 0s 858us/step - loss: 0.1655 - accuracy: 0.8787 - mae: 0.1655 - pearson_correlation: 0.5177 - euclidean_distance: 0.2674
Epoch 95/300
57/57 [==============================] - 0s 866us/step - loss: 0.1636 - accuracy: 0.8738 - mae: 0.1636 - pearson_correlation: 0.5255 - euclidean_distance: 0.2647
Epoch 96/300
57/57 [==============================] - 0s 856us/step - loss: 0.1646 - accuracy: 0.8774 - mae: 0.1646 - pearson_correlation: 0.5222 - euclidean_distance: 0.2661
Epoch 97/300
57/57 [==============================] - 0s 853us/step - loss: 0.1629 - accuracy: 0.8813 - mae: 0.1629 - pearson_correlation: 0.5229 - euclidean_distance: 0.2645
Epoch 98/300
57/57 [==============================] - 0s 868us/step - loss: 0.1600 - accuracy: 0.8844 - mae: 0.1600 - pearson_correlation: 0.5276 - euclidean_distance: 0.2590
Epoch 99/300
57/57 [==============================] - 0s 853us/step - loss: 0.1614 - accuracy: 0.8844 - mae: 0.1614 - pearson_correlation: 0.5316 - euclidean_distance: 0.2607
Epoch 100/300
57/57 [==============================] - 0s 852us/step - loss: 0.1587 - accuracy: 0.8840 - mae: 0.1587 - pearson_correlation: 0.5313 - euclidean_distance: 0.2573
Epoch 101/300
57/57 [==============================] - 0s 846us/step - loss: 0.1583 - accuracy: 0.8822 - mae: 0.1583 - pearson_correlation: 0.5361 - euclidean_distance: 0.2554
Epoch 102/300
57/57 [==============================] - 0s 861us/step - loss: 0.1596 - accuracy: 0.8778 - mae: 0.1596 - pearson_correlation: 0.5268 - euclidean_distance: 0.2586
Epoch 103/300
57/57 [==============================] - 0s 861us/step - loss: 0.1591 - accuracy: 0.8809 - mae: 0.1591 - pearson_correlation: 0.5343 - euclidean_distance: 0.2577
Epoch 104/300
57/57 [==============================] - 0s 868us/step - loss: 0.1602 - accuracy: 0.8831 - mae: 0.1602 - pearson_correlation: 0.5331 - euclidean_distance: 0.2596
Epoch 105/300
57/57 [==============================] - 0s 861us/step - loss: 0.1571 - accuracy: 0.8818 - mae: 0.1571 - pearson_correlation: 0.5353 - euclidean_distance: 0.2556
Epoch 106/300
57/57 [==============================] - 0s 853us/step - loss: 0.1558 - accuracy: 0.8858 - mae: 0.1558 - pearson_correlation: 0.5373 - euclidean_distance: 0.2521
Epoch 107/300
57/57 [==============================] - 0s 863us/step - loss: 0.1558 - accuracy: 0.8924 - mae: 0.1558 - pearson_correlation: 0.5403 - euclidean_distance: 0.2525
Epoch 108/300
57/57 [==============================] - 0s 866us/step - loss: 0.1514 - accuracy: 0.8844 - mae: 0.1514 - pearson_correlation: 0.5475 - euclidean_distance: 0.2449
Epoch 109/300
57/57 [==============================] - 0s 860us/step - loss: 0.1554 - accuracy: 0.8880 - mae: 0.1554 - pearson_correlation: 0.5340 - euclidean_distance: 0.2520
Epoch 110/300
57/57 [==============================] - 0s 864us/step - loss: 0.1536 - accuracy: 0.8919 - mae: 0.1536 - pearson_correlation: 0.5438 - euclidean_distance: 0.2497
Epoch 111/300
57/57 [==============================] - 0s 859us/step - loss: 0.1547 - accuracy: 0.8902 - mae: 0.1547 - pearson_correlation: 0.5390 - euclidean_distance: 0.2511
Epoch 112/300
57/57 [==============================] - 0s 864us/step - loss: 0.1536 - accuracy: 0.8858 - mae: 0.1536 - pearson_correlation: 0.5443 - euclidean_distance: 0.2485
Epoch 113/300
57/57 [==============================] - 0s 858us/step - loss: 0.1503 - accuracy: 0.8880 - mae: 0.1503 - pearson_correlation: 0.5514 - euclidean_distance: 0.2439
Epoch 114/300
57/57 [==============================] - 0s 864us/step - loss: 0.1527 - accuracy: 0.8902 - mae: 0.1527 - pearson_correlation: 0.5475 - euclidean_distance: 0.2475
Epoch 115/300
57/57 [==============================] - 0s 867us/step - loss: 0.1523 - accuracy: 0.8880 - mae: 0.1523 - pearson_correlation: 0.5496 - euclidean_distance: 0.2464
Epoch 116/300
57/57 [==============================] - 0s 866us/step - loss: 0.1540 - accuracy: 0.8915 - mae: 0.1540 - pearson_correlation: 0.5485 - euclidean_distance: 0.2490
Epoch 117/300
57/57 [==============================] - 0s 869us/step - loss: 0.1507 - accuracy: 0.8928 - mae: 0.1507 - pearson_correlation: 0.5523 - euclidean_distance: 0.2438
Epoch 118/300
57/57 [==============================] - 0s 863us/step - loss: 0.1506 - accuracy: 0.8906 - mae: 0.1506 - pearson_correlation: 0.5606 - euclidean_distance: 0.2431
Epoch 119/300
57/57 [==============================] - 0s 862us/step - loss: 0.1498 - accuracy: 0.8928 - mae: 0.1498 - pearson_correlation: 0.5546 - euclidean_distance: 0.2431
Epoch 120/300
57/57 [==============================] - 0s 855us/step - loss: 0.1537 - accuracy: 0.8853 - mae: 0.1537 - pearson_correlation: 0.5525 - euclidean_distance: 0.2480
Epoch 121/300
57/57 [==============================] - 0s 844us/step - loss: 0.1469 - accuracy: 0.8924 - mae: 0.1469 - pearson_correlation: 0.5607 - euclidean_distance: 0.2383
Epoch 122/300
57/57 [==============================] - 0s 855us/step - loss: 0.1474 - accuracy: 0.8919 - mae: 0.1474 - pearson_correlation: 0.5616 - euclidean_distance: 0.2389
Epoch 123/300
57/57 [==============================] - 0s 850us/step - loss: 0.1479 - accuracy: 0.8919 - mae: 0.1479 - pearson_correlation: 0.5615 - euclidean_distance: 0.2397
Epoch 124/300
57/57 [==============================] - 0s 857us/step - loss: 0.1488 - accuracy: 0.8963 - mae: 0.1488 - pearson_correlation: 0.5609 - euclidean_distance: 0.2412
Epoch 125/300
57/57 [==============================] - 0s 851us/step - loss: 0.1467 - accuracy: 0.8968 - mae: 0.1467 - pearson_correlation: 0.5609 - euclidean_distance: 0.2371
Epoch 126/300
57/57 [==============================] - 0s 852us/step - loss: 0.1456 - accuracy: 0.8933 - mae: 0.1456 - pearson_correlation: 0.5613 - euclidean_distance: 0.2358
Epoch 127/300
57/57 [==============================] - 0s 860us/step - loss: 0.1488 - accuracy: 0.8941 - mae: 0.1488 - pearson_correlation: 0.5563 - euclidean_distance: 0.2408
Epoch 128/300
57/57 [==============================] - 0s 842us/step - loss: 0.1457 - accuracy: 0.9003 - mae: 0.1457 - pearson_correlation: 0.5725 - euclidean_distance: 0.2356
Epoch 129/300
57/57 [==============================] - 0s 855us/step - loss: 0.1449 - accuracy: 0.8946 - mae: 0.1449 - pearson_correlation: 0.5698 - euclidean_distance: 0.2354
Epoch 130/300
57/57 [==============================] - 0s 863us/step - loss: 0.1476 - accuracy: 0.8897 - mae: 0.1476 - pearson_correlation: 0.5634 - euclidean_distance: 0.2386
Epoch 131/300
57/57 [==============================] - 0s 859us/step - loss: 0.1420 - accuracy: 0.8950 - mae: 0.1420 - pearson_correlation: 0.5691 - euclidean_distance: 0.2315
Epoch 132/300
57/57 [==============================] - 0s 859us/step - loss: 0.1437 - accuracy: 0.8937 - mae: 0.1437 - pearson_correlation: 0.5728 - euclidean_distance: 0.2321
Epoch 133/300
57/57 [==============================] - 0s 868us/step - loss: 0.1466 - accuracy: 0.8977 - mae: 0.1466 - pearson_correlation: 0.5628 - euclidean_distance: 0.2384
Epoch 134/300
57/57 [==============================] - 0s 864us/step - loss: 0.1410 - accuracy: 0.9016 - mae: 0.1410 - pearson_correlation: 0.5767 - euclidean_distance: 0.2282
Epoch 135/300
57/57 [==============================] - 0s 864us/step - loss: 0.1408 - accuracy: 0.8994 - mae: 0.1408 - pearson_correlation: 0.5832 - euclidean_distance: 0.2276
Epoch 136/300
57/57 [==============================] - 0s 862us/step - loss: 0.1405 - accuracy: 0.8994 - mae: 0.1405 - pearson_correlation: 0.5804 - euclidean_distance: 0.2274
Epoch 137/300
57/57 [==============================] - 0s 865us/step - loss: 0.1442 - accuracy: 0.9043 - mae: 0.1442 - pearson_correlation: 0.5735 - euclidean_distance: 0.2336
Epoch 138/300
57/57 [==============================] - 0s 860us/step - loss: 0.1427 - accuracy: 0.9016 - mae: 0.1427 - pearson_correlation: 0.5799 - euclidean_distance: 0.2310
Epoch 139/300
57/57 [==============================] - 0s 859us/step - loss: 0.1392 - accuracy: 0.9003 - mae: 0.1392 - pearson_correlation: 0.5821 - euclidean_distance: 0.2262
Epoch 140/300
57/57 [==============================] - 0s 864us/step - loss: 0.1410 - accuracy: 0.9025 - mae: 0.1410 - pearson_correlation: 0.5807 - euclidean_distance: 0.2290
Epoch 141/300
57/57 [==============================] - 0s 865us/step - loss: 0.1388 - accuracy: 0.9038 - mae: 0.1388 - pearson_correlation: 0.5854 - euclidean_distance: 0.2249
Epoch 142/300
57/57 [==============================] - 0s 852us/step - loss: 0.1385 - accuracy: 0.9047 - mae: 0.1385 - pearson_correlation: 0.5846 - euclidean_distance: 0.2239
Epoch 143/300
57/57 [==============================] - 0s 858us/step - loss: 0.1377 - accuracy: 0.9065 - mae: 0.1377 - pearson_correlation: 0.5817 - euclidean_distance: 0.2229
Epoch 144/300
57/57 [==============================] - 0s 866us/step - loss: 0.1363 - accuracy: 0.9065 - mae: 0.1363 - pearson_correlation: 0.5878 - euclidean_distance: 0.2210
Epoch 145/300
57/57 [==============================] - 0s 862us/step - loss: 0.1390 - accuracy: 0.8994 - mae: 0.1390 - pearson_correlation: 0.5809 - euclidean_distance: 0.2254
Epoch 146/300
57/57 [==============================] - 0s 865us/step - loss: 0.1403 - accuracy: 0.9030 - mae: 0.1403 - pearson_correlation: 0.5850 - euclidean_distance: 0.2273
Epoch 147/300
57/57 [==============================] - 0s 847us/step - loss: 0.1374 - accuracy: 0.9034 - mae: 0.1374 - pearson_correlation: 0.5827 - euclidean_distance: 0.2230
Epoch 148/300
57/57 [==============================] - 0s 861us/step - loss: 0.1361 - accuracy: 0.9060 - mae: 0.1361 - pearson_correlation: 0.5931 - euclidean_distance: 0.2198
Epoch 149/300
57/57 [==============================] - 0s 862us/step - loss: 0.1377 - accuracy: 0.9047 - mae: 0.1377 - pearson_correlation: 0.5873 - euclidean_distance: 0.2237
Epoch 150/300
57/57 [==============================] - 0s 859us/step - loss: 0.1378 - accuracy: 0.9052 - mae: 0.1378 - pearson_correlation: 0.5893 - euclidean_distance: 0.2234
Epoch 151/300
57/57 [==============================] - 0s 867us/step - loss: 0.1335 - accuracy: 0.9047 - mae: 0.1335 - pearson_correlation: 0.5998 - euclidean_distance: 0.2166
Epoch 152/300
57/57 [==============================] - 0s 855us/step - loss: 0.1357 - accuracy: 0.9025 - mae: 0.1357 - pearson_correlation: 0.5871 - euclidean_distance: 0.2205
Epoch 153/300
57/57 [==============================] - 0s 862us/step - loss: 0.1374 - accuracy: 0.9052 - mae: 0.1374 - pearson_correlation: 0.5933 - euclidean_distance: 0.2232
Epoch 154/300
57/57 [==============================] - 0s 865us/step - loss: 0.1356 - accuracy: 0.9078 - mae: 0.1356 - pearson_correlation: 0.5962 - euclidean_distance: 0.2201
Epoch 155/300
57/57 [==============================] - 0s 850us/step - loss: 0.1350 - accuracy: 0.9069 - mae: 0.1350 - pearson_correlation: 0.5935 - euclidean_distance: 0.2190
Epoch 156/300
57/57 [==============================] - 0s 861us/step - loss: 0.1334 - accuracy: 0.9038 - mae: 0.1334 - pearson_correlation: 0.5975 - euclidean_distance: 0.2161
Epoch 157/300
57/57 [==============================] - 0s 865us/step - loss: 0.1346 - accuracy: 0.9078 - mae: 0.1346 - pearson_correlation: 0.6012 - euclidean_distance: 0.2184
Epoch 158/300
57/57 [==============================] - 0s 863us/step - loss: 0.1351 - accuracy: 0.9127 - mae: 0.1351 - pearson_correlation: 0.5986 - euclidean_distance: 0.2185
Epoch 159/300
57/57 [==============================] - 0s 858us/step - loss: 0.1316 - accuracy: 0.9144 - mae: 0.1316 - pearson_correlation: 0.6034 - euclidean_distance: 0.2136
Epoch 160/300
57/57 [==============================] - 0s 849us/step - loss: 0.1321 - accuracy: 0.9082 - mae: 0.1321 - pearson_correlation: 0.5988 - euclidean_distance: 0.2148
Epoch 161/300
57/57 [==============================] - 0s 859us/step - loss: 0.1334 - accuracy: 0.9074 - mae: 0.1334 - pearson_correlation: 0.6007 - euclidean_distance: 0.2156
Epoch 162/300
57/57 [==============================] - 0s 850us/step - loss: 0.1304 - accuracy: 0.9105 - mae: 0.1304 - pearson_correlation: 0.6053 - euclidean_distance: 0.2111
Epoch 163/300
57/57 [==============================] - 0s 858us/step - loss: 0.1352 - accuracy: 0.9087 - mae: 0.1352 - pearson_correlation: 0.5983 - euclidean_distance: 0.2186
Epoch 164/300
57/57 [==============================] - 0s 865us/step - loss: 0.1326 - accuracy: 0.9105 - mae: 0.1326 - pearson_correlation: 0.6033 - euclidean_distance: 0.2143
Epoch 165/300
57/57 [==============================] - 0s 865us/step - loss: 0.1314 - accuracy: 0.9078 - mae: 0.1314 - pearson_correlation: 0.6031 - euclidean_distance: 0.2134
Epoch 166/300
57/57 [==============================] - 0s 860us/step - loss: 0.1327 - accuracy: 0.9047 - mae: 0.1327 - pearson_correlation: 0.6078 - euclidean_distance: 0.2154
Epoch 167/300
57/57 [==============================] - 0s 863us/step - loss: 0.1303 - accuracy: 0.9113 - mae: 0.1303 - pearson_correlation: 0.6109 - euclidean_distance: 0.2112
Epoch 168/300
57/57 [==============================] - 0s 858us/step - loss: 0.1338 - accuracy: 0.9127 - mae: 0.1338 - pearson_correlation: 0.6023 - euclidean_distance: 0.2158
Epoch 169/300
57/57 [==============================] - 0s 855us/step - loss: 0.1326 - accuracy: 0.9082 - mae: 0.1326 - pearson_correlation: 0.6057 - euclidean_distance: 0.2141
Epoch 170/300
57/57 [==============================] - 0s 864us/step - loss: 0.1315 - accuracy: 0.9127 - mae: 0.1315 - pearson_correlation: 0.6146 - euclidean_distance: 0.2126
Epoch 171/300
57/57 [==============================] - 0s 862us/step - loss: 0.1293 - accuracy: 0.9140 - mae: 0.1293 - pearson_correlation: 0.6163 - euclidean_distance: 0.2093
Epoch 172/300
57/57 [==============================] - 0s 854us/step - loss: 0.1265 - accuracy: 0.9131 - mae: 0.1265 - pearson_correlation: 0.6162 - euclidean_distance: 0.2053
Epoch 173/300
57/57 [==============================] - 0s 854us/step - loss: 0.1313 - accuracy: 0.9144 - mae: 0.1313 - pearson_correlation: 0.6098 - euclidean_distance: 0.2124
Epoch 174/300
57/57 [==============================] - 0s 864us/step - loss: 0.1251 - accuracy: 0.9113 - mae: 0.1251 - pearson_correlation: 0.6260 - euclidean_distance: 0.2039
Epoch 175/300
57/57 [==============================] - 0s 865us/step - loss: 0.1279 - accuracy: 0.9096 - mae: 0.1279 - pearson_correlation: 0.6210 - euclidean_distance: 0.2075
Epoch 176/300
57/57 [==============================] - 0s 859us/step - loss: 0.1274 - accuracy: 0.9082 - mae: 0.1274 - pearson_correlation: 0.6115 - euclidean_distance: 0.2068
Epoch 177/300
57/57 [==============================] - 0s 862us/step - loss: 0.1274 - accuracy: 0.9127 - mae: 0.1274 - pearson_correlation: 0.6165 - euclidean_distance: 0.2065
Epoch 178/300
57/57 [==============================] - 0s 849us/step - loss: 0.1273 - accuracy: 0.9127 - mae: 0.1273 - pearson_correlation: 0.6106 - euclidean_distance: 0.2069
Epoch 179/300
57/57 [==============================] - 0s 860us/step - loss: 0.1252 - accuracy: 0.9153 - mae: 0.1252 - pearson_correlation: 0.6203 - euclidean_distance: 0.2039
Epoch 180/300
57/57 [==============================] - 0s 853us/step - loss: 0.1271 - accuracy: 0.9153 - mae: 0.1271 - pearson_correlation: 0.6222 - euclidean_distance: 0.2062
Epoch 181/300
57/57 [==============================] - 0s 853us/step - loss: 0.1252 - accuracy: 0.9140 - mae: 0.1252 - pearson_correlation: 0.6229 - euclidean_distance: 0.2029
Epoch 182/300
57/57 [==============================] - 0s 847us/step - loss: 0.1259 - accuracy: 0.9122 - mae: 0.1259 - pearson_correlation: 0.6212 - euclidean_distance: 0.2032
Epoch 183/300
57/57 [==============================] - 0s 854us/step - loss: 0.1253 - accuracy: 0.9184 - mae: 0.1253 - pearson_correlation: 0.6243 - euclidean_distance: 0.2037
Epoch 184/300
57/57 [==============================] - 0s 851us/step - loss: 0.1257 - accuracy: 0.9131 - mae: 0.1257 - pearson_correlation: 0.6210 - euclidean_distance: 0.2045
Epoch 185/300
57/57 [==============================] - 0s 859us/step - loss: 0.1266 - accuracy: 0.9069 - mae: 0.1266 - pearson_correlation: 0.6162 - euclidean_distance: 0.2058
Epoch 186/300
57/57 [==============================] - 0s 844us/step - loss: 0.1255 - accuracy: 0.9140 - mae: 0.1255 - pearson_correlation: 0.6205 - euclidean_distance: 0.2034
Epoch 187/300
57/57 [==============================] - 0s 914us/step - loss: 0.1252 - accuracy: 0.9149 - mae: 0.1252 - pearson_correlation: 0.6189 - euclidean_distance: 0.2027
Epoch 188/300
57/57 [==============================] - 0s 942us/step - loss: 0.1255 - accuracy: 0.9078 - mae: 0.1255 - pearson_correlation: 0.6231 - euclidean_distance: 0.2035
Epoch 189/300
57/57 [==============================] - 0s 970us/step - loss: 0.1223 - accuracy: 0.9118 - mae: 0.1223 - pearson_correlation: 0.6270 - euclidean_distance: 0.1988
Epoch 190/300
57/57 [==============================] - 0s 932us/step - loss: 0.1246 - accuracy: 0.9193 - mae: 0.1246 - pearson_correlation: 0.6311 - euclidean_distance: 0.2027
Epoch 191/300
57/57 [==============================] - 0s 971us/step - loss: 0.1230 - accuracy: 0.9188 - mae: 0.1230 - pearson_correlation: 0.6253 - euclidean_distance: 0.1997
Epoch 192/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1273 - accuracy: 0.9180 - mae: 0.1273 - pearson_correlation: 0.6146 - euclidean_distance: 0.2069
Epoch 193/300
57/57 [==============================] - 0s 992us/step - loss: 0.1237 - accuracy: 0.9175 - mae: 0.1237 - pearson_correlation: 0.6259 - euclidean_distance: 0.2001
Epoch 194/300
57/57 [==============================] - 0s 967us/step - loss: 0.1219 - accuracy: 0.9180 - mae: 0.1219 - pearson_correlation: 0.6290 - euclidean_distance: 0.1980
Epoch 195/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1193 - accuracy: 0.9206 - mae: 0.1193 - pearson_correlation: 0.6358 - euclidean_distance: 0.1939
Epoch 196/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1235 - accuracy: 0.9180 - mae: 0.1235 - pearson_correlation: 0.6228 - euclidean_distance: 0.2008
Epoch 197/300
57/57 [==============================] - 0s 892us/step - loss: 0.1232 - accuracy: 0.9149 - mae: 0.1232 - pearson_correlation: 0.6363 - euclidean_distance: 0.1991
Epoch 198/300
57/57 [==============================] - 0s 863us/step - loss: 0.1208 - accuracy: 0.9193 - mae: 0.1208 - pearson_correlation: 0.6347 - euclidean_distance: 0.1955
Epoch 199/300
57/57 [==============================] - 0s 870us/step - loss: 0.1204 - accuracy: 0.9188 - mae: 0.1204 - pearson_correlation: 0.6386 - euclidean_distance: 0.1956
Epoch 200/300
57/57 [==============================] - 0s 918us/step - loss: 0.1215 - accuracy: 0.9188 - mae: 0.1215 - pearson_correlation: 0.6340 - euclidean_distance: 0.1971
Epoch 201/300
57/57 [==============================] - 0s 873us/step - loss: 0.1208 - accuracy: 0.9193 - mae: 0.1208 - pearson_correlation: 0.6397 - euclidean_distance: 0.1955
Epoch 202/300
57/57 [==============================] - 0s 865us/step - loss: 0.1219 - accuracy: 0.9184 - mae: 0.1219 - pearson_correlation: 0.6292 - euclidean_distance: 0.1976
Epoch 203/300
57/57 [==============================] - 0s 849us/step - loss: 0.1184 - accuracy: 0.9241 - mae: 0.1184 - pearson_correlation: 0.6451 - euclidean_distance: 0.1928
Epoch 204/300
57/57 [==============================] - 0s 856us/step - loss: 0.1201 - accuracy: 0.9175 - mae: 0.1201 - pearson_correlation: 0.6385 - euclidean_distance: 0.1950
Epoch 205/300
57/57 [==============================] - 0s 870us/step - loss: 0.1201 - accuracy: 0.9224 - mae: 0.1201 - pearson_correlation: 0.6391 - euclidean_distance: 0.1947
Epoch 206/300
57/57 [==============================] - 0s 863us/step - loss: 0.1214 - accuracy: 0.9202 - mae: 0.1214 - pearson_correlation: 0.6354 - euclidean_distance: 0.1966
Epoch 207/300
57/57 [==============================] - 0s 858us/step - loss: 0.1220 - accuracy: 0.9219 - mae: 0.1220 - pearson_correlation: 0.6348 - euclidean_distance: 0.1984
Epoch 208/300
57/57 [==============================] - 0s 871us/step - loss: 0.1231 - accuracy: 0.9219 - mae: 0.1231 - pearson_correlation: 0.6278 - euclidean_distance: 0.1996
Epoch 209/300
57/57 [==============================] - 0s 870us/step - loss: 0.1197 - accuracy: 0.9237 - mae: 0.1197 - pearson_correlation: 0.6448 - euclidean_distance: 0.1946
Epoch 210/300
57/57 [==============================] - 0s 863us/step - loss: 0.1174 - accuracy: 0.9228 - mae: 0.1174 - pearson_correlation: 0.6462 - euclidean_distance: 0.1908
Epoch 211/300
57/57 [==============================] - 0s 863us/step - loss: 0.1223 - accuracy: 0.9210 - mae: 0.1223 - pearson_correlation: 0.6383 - euclidean_distance: 0.1983
Epoch 212/300
57/57 [==============================] - 0s 888us/step - loss: 0.1179 - accuracy: 0.9210 - mae: 0.1179 - pearson_correlation: 0.6486 - euclidean_distance: 0.1912
Epoch 213/300
57/57 [==============================] - 0s 891us/step - loss: 0.1206 - accuracy: 0.9197 - mae: 0.1206 - pearson_correlation: 0.6451 - euclidean_distance: 0.1954
Epoch 214/300
57/57 [==============================] - 0s 858us/step - loss: 0.1185 - accuracy: 0.9215 - mae: 0.1185 - pearson_correlation: 0.6453 - euclidean_distance: 0.1929
Epoch 215/300
57/57 [==============================] - 0s 866us/step - loss: 0.1169 - accuracy: 0.9206 - mae: 0.1169 - pearson_correlation: 0.6468 - euclidean_distance: 0.1890
Epoch 216/300
57/57 [==============================] - 0s 852us/step - loss: 0.1185 - accuracy: 0.9206 - mae: 0.1185 - pearson_correlation: 0.6473 - euclidean_distance: 0.1917
Epoch 217/300
57/57 [==============================] - 0s 866us/step - loss: 0.1169 - accuracy: 0.9241 - mae: 0.1169 - pearson_correlation: 0.6467 - euclidean_distance: 0.1900
Epoch 218/300
57/57 [==============================] - 0s 862us/step - loss: 0.1152 - accuracy: 0.9206 - mae: 0.1152 - pearson_correlation: 0.6540 - euclidean_distance: 0.1872
Epoch 219/300
57/57 [==============================] - 0s 861us/step - loss: 0.1154 - accuracy: 0.9228 - mae: 0.1154 - pearson_correlation: 0.6580 - euclidean_distance: 0.1875
Epoch 220/300
57/57 [==============================] - 0s 865us/step - loss: 0.1172 - accuracy: 0.9259 - mae: 0.1172 - pearson_correlation: 0.6530 - euclidean_distance: 0.1899
Epoch 221/300
57/57 [==============================] - 0s 864us/step - loss: 0.1151 - accuracy: 0.9259 - mae: 0.1151 - pearson_correlation: 0.6572 - euclidean_distance: 0.1865
Epoch 222/300
57/57 [==============================] - 0s 867us/step - loss: 0.1136 - accuracy: 0.9268 - mae: 0.1136 - pearson_correlation: 0.6549 - euclidean_distance: 0.1842
Epoch 223/300
57/57 [==============================] - 0s 863us/step - loss: 0.1168 - accuracy: 0.9259 - mae: 0.1168 - pearson_correlation: 0.6561 - euclidean_distance: 0.1890
Epoch 224/300
57/57 [==============================] - 0s 858us/step - loss: 0.1183 - accuracy: 0.9246 - mae: 0.1183 - pearson_correlation: 0.6422 - euclidean_distance: 0.1925
Epoch 225/300
57/57 [==============================] - 0s 869us/step - loss: 0.1146 - accuracy: 0.9290 - mae: 0.1146 - pearson_correlation: 0.6660 - euclidean_distance: 0.1858
Epoch 226/300
57/57 [==============================] - 0s 853us/step - loss: 0.1153 - accuracy: 0.9263 - mae: 0.1153 - pearson_correlation: 0.6537 - euclidean_distance: 0.1872
Epoch 227/300
57/57 [==============================] - 0s 868us/step - loss: 0.1132 - accuracy: 0.9268 - mae: 0.1132 - pearson_correlation: 0.6621 - euclidean_distance: 0.1834
Epoch 228/300
57/57 [==============================] - 0s 859us/step - loss: 0.1182 - accuracy: 0.9232 - mae: 0.1182 - pearson_correlation: 0.6525 - euclidean_distance: 0.1919
Epoch 229/300
57/57 [==============================] - 0s 862us/step - loss: 0.1127 - accuracy: 0.9224 - mae: 0.1127 - pearson_correlation: 0.6584 - euclidean_distance: 0.1828
Epoch 230/300
57/57 [==============================] - 0s 860us/step - loss: 0.1168 - accuracy: 0.9268 - mae: 0.1168 - pearson_correlation: 0.6477 - euclidean_distance: 0.1900
Epoch 231/300
57/57 [==============================] - 0s 867us/step - loss: 0.1166 - accuracy: 0.9263 - mae: 0.1166 - pearson_correlation: 0.6522 - euclidean_distance: 0.1899
Epoch 232/300
57/57 [==============================] - 0s 846us/step - loss: 0.1134 - accuracy: 0.9255 - mae: 0.1134 - pearson_correlation: 0.6636 - euclidean_distance: 0.1835
Epoch 233/300
57/57 [==============================] - 0s 854us/step - loss: 0.1128 - accuracy: 0.9232 - mae: 0.1128 - pearson_correlation: 0.6638 - euclidean_distance: 0.1828
Epoch 234/300
57/57 [==============================] - 0s 860us/step - loss: 0.1155 - accuracy: 0.9232 - mae: 0.1155 - pearson_correlation: 0.6592 - euclidean_distance: 0.1879
Epoch 235/300
57/57 [==============================] - 0s 857us/step - loss: 0.1117 - accuracy: 0.9268 - mae: 0.1117 - pearson_correlation: 0.6690 - euclidean_distance: 0.1818
Epoch 236/300
57/57 [==============================] - 0s 858us/step - loss: 0.1144 - accuracy: 0.9263 - mae: 0.1144 - pearson_correlation: 0.6590 - euclidean_distance: 0.1854
Epoch 237/300
57/57 [==============================] - 0s 856us/step - loss: 0.1099 - accuracy: 0.9268 - mae: 0.1099 - pearson_correlation: 0.6707 - euclidean_distance: 0.1788
Epoch 238/300
57/57 [==============================] - 0s 860us/step - loss: 0.1125 - accuracy: 0.9272 - mae: 0.1125 - pearson_correlation: 0.6601 - euclidean_distance: 0.1829
Epoch 239/300
57/57 [==============================] - 0s 853us/step - loss: 0.1152 - accuracy: 0.9307 - mae: 0.1152 - pearson_correlation: 0.6599 - euclidean_distance: 0.1863
Epoch 240/300
57/57 [==============================] - 0s 862us/step - loss: 0.1095 - accuracy: 0.9294 - mae: 0.1095 - pearson_correlation: 0.6671 - euclidean_distance: 0.1779
Epoch 241/300
57/57 [==============================] - 0s 859us/step - loss: 0.1139 - accuracy: 0.9285 - mae: 0.1139 - pearson_correlation: 0.6608 - euclidean_distance: 0.1849
Epoch 242/300
57/57 [==============================] - 0s 850us/step - loss: 0.1109 - accuracy: 0.9250 - mae: 0.1109 - pearson_correlation: 0.6689 - euclidean_distance: 0.1797
Epoch 243/300
57/57 [==============================] - 0s 867us/step - loss: 0.1125 - accuracy: 0.9307 - mae: 0.1125 - pearson_correlation: 0.6641 - euclidean_distance: 0.1831
Epoch 244/300
57/57 [==============================] - 0s 846us/step - loss: 0.1112 - accuracy: 0.9272 - mae: 0.1112 - pearson_correlation: 0.6703 - euclidean_distance: 0.1808
Epoch 245/300
57/57 [==============================] - 0s 850us/step - loss: 0.1123 - accuracy: 0.9303 - mae: 0.1123 - pearson_correlation: 0.6675 - euclidean_distance: 0.1817
Epoch 246/300
57/57 [==============================] - 0s 859us/step - loss: 0.1088 - accuracy: 0.9259 - mae: 0.1088 - pearson_correlation: 0.6760 - euclidean_distance: 0.1761
Epoch 247/300
57/57 [==============================] - 0s 872us/step - loss: 0.1111 - accuracy: 0.9299 - mae: 0.1111 - pearson_correlation: 0.6685 - euclidean_distance: 0.1808
Epoch 248/300
57/57 [==============================] - 0s 869us/step - loss: 0.1120 - accuracy: 0.9259 - mae: 0.1120 - pearson_correlation: 0.6638 - euclidean_distance: 0.1818
Epoch 249/300
57/57 [==============================] - 0s 873us/step - loss: 0.1148 - accuracy: 0.9299 - mae: 0.1148 - pearson_correlation: 0.6647 - euclidean_distance: 0.1858
Epoch 250/300
57/57 [==============================] - 0s 872us/step - loss: 0.1078 - accuracy: 0.9294 - mae: 0.1078 - pearson_correlation: 0.6797 - euclidean_distance: 0.1750
Epoch 251/300
57/57 [==============================] - 0s 861us/step - loss: 0.1111 - accuracy: 0.9338 - mae: 0.1111 - pearson_correlation: 0.6733 - euclidean_distance: 0.1803
Epoch 252/300
57/57 [==============================] - 0s 857us/step - loss: 0.1143 - accuracy: 0.9307 - mae: 0.1143 - pearson_correlation: 0.6684 - euclidean_distance: 0.1848
Epoch 253/300
57/57 [==============================] - 0s 862us/step - loss: 0.1104 - accuracy: 0.9303 - mae: 0.1104 - pearson_correlation: 0.6712 - euclidean_distance: 0.1795
Epoch 254/300
57/57 [==============================] - 0s 866us/step - loss: 0.1089 - accuracy: 0.9330 - mae: 0.1089 - pearson_correlation: 0.6780 - euclidean_distance: 0.1772
Epoch 255/300
57/57 [==============================] - 0s 862us/step - loss: 0.1114 - accuracy: 0.9325 - mae: 0.1114 - pearson_correlation: 0.6681 - euclidean_distance: 0.1806
Epoch 256/300
57/57 [==============================] - 0s 864us/step - loss: 0.1097 - accuracy: 0.9356 - mae: 0.1097 - pearson_correlation: 0.6759 - euclidean_distance: 0.1789
Epoch 257/300
57/57 [==============================] - 0s 863us/step - loss: 0.1113 - accuracy: 0.9321 - mae: 0.1113 - pearson_correlation: 0.6727 - euclidean_distance: 0.1809
Epoch 258/300
57/57 [==============================] - 0s 863us/step - loss: 0.1080 - accuracy: 0.9281 - mae: 0.1080 - pearson_correlation: 0.6733 - euclidean_distance: 0.1755
Epoch 259/300
57/57 [==============================] - 0s 859us/step - loss: 0.1113 - accuracy: 0.9303 - mae: 0.1113 - pearson_correlation: 0.6678 - euclidean_distance: 0.1809
Epoch 260/300
57/57 [==============================] - 0s 862us/step - loss: 0.1114 - accuracy: 0.9330 - mae: 0.1114 - pearson_correlation: 0.6729 - euclidean_distance: 0.1810
Epoch 261/300
57/57 [==============================] - 0s 868us/step - loss: 0.1097 - accuracy: 0.9299 - mae: 0.1097 - pearson_correlation: 0.6691 - euclidean_distance: 0.1780
Epoch 262/300
57/57 [==============================] - 0s 868us/step - loss: 0.1094 - accuracy: 0.9294 - mae: 0.1094 - pearson_correlation: 0.6767 - euclidean_distance: 0.1779
Epoch 263/300
57/57 [==============================] - 0s 863us/step - loss: 0.1079 - accuracy: 0.9334 - mae: 0.1079 - pearson_correlation: 0.6825 - euclidean_distance: 0.1758
Epoch 264/300
57/57 [==============================] - 0s 863us/step - loss: 0.1081 - accuracy: 0.9303 - mae: 0.1081 - pearson_correlation: 0.6745 - euclidean_distance: 0.1753
Epoch 265/300
57/57 [==============================] - 0s 859us/step - loss: 0.1088 - accuracy: 0.9303 - mae: 0.1088 - pearson_correlation: 0.6779 - euclidean_distance: 0.1766
Epoch 266/300
57/57 [==============================] - 0s 862us/step - loss: 0.1078 - accuracy: 0.9330 - mae: 0.1078 - pearson_correlation: 0.6853 - euclidean_distance: 0.1746
Epoch 267/300
57/57 [==============================] - 0s 857us/step - loss: 0.1083 - accuracy: 0.9312 - mae: 0.1083 - pearson_correlation: 0.6750 - euclidean_distance: 0.1763
Epoch 268/300
57/57 [==============================] - 0s 859us/step - loss: 0.1101 - accuracy: 0.9294 - mae: 0.1101 - pearson_correlation: 0.6763 - euclidean_distance: 0.1786
Epoch 269/300
57/57 [==============================] - 0s 865us/step - loss: 0.1071 - accuracy: 0.9312 - mae: 0.1071 - pearson_correlation: 0.6735 - euclidean_distance: 0.1735
Epoch 270/300
57/57 [==============================] - 0s 860us/step - loss: 0.1072 - accuracy: 0.9352 - mae: 0.1072 - pearson_correlation: 0.6828 - euclidean_distance: 0.1742
Epoch 271/300
57/57 [==============================] - 0s 856us/step - loss: 0.1070 - accuracy: 0.9334 - mae: 0.1070 - pearson_correlation: 0.6803 - euclidean_distance: 0.1739
Epoch 272/300
57/57 [==============================] - 0s 870us/step - loss: 0.1088 - accuracy: 0.9277 - mae: 0.1088 - pearson_correlation: 0.6751 - euclidean_distance: 0.1767
Epoch 273/300
57/57 [==============================] - 0s 851us/step - loss: 0.1099 - accuracy: 0.9294 - mae: 0.1099 - pearson_correlation: 0.6746 - euclidean_distance: 0.1778
Epoch 274/300
57/57 [==============================] - 0s 856us/step - loss: 0.1049 - accuracy: 0.9330 - mae: 0.1049 - pearson_correlation: 0.6872 - euclidean_distance: 0.1702
Epoch 275/300
57/57 [==============================] - 0s 862us/step - loss: 0.1086 - accuracy: 0.9338 - mae: 0.1086 - pearson_correlation: 0.6810 - euclidean_distance: 0.1761
Epoch 276/300
57/57 [==============================] - 0s 849us/step - loss: 0.1043 - accuracy: 0.9338 - mae: 0.1043 - pearson_correlation: 0.6913 - euclidean_distance: 0.1689
Epoch 277/300
57/57 [==============================] - 0s 856us/step - loss: 0.1066 - accuracy: 0.9303 - mae: 0.1066 - pearson_correlation: 0.6848 - euclidean_distance: 0.1729
Epoch 278/300
57/57 [==============================] - 0s 847us/step - loss: 0.1052 - accuracy: 0.9356 - mae: 0.1052 - pearson_correlation: 0.6795 - euclidean_distance: 0.1714
Epoch 279/300
57/57 [==============================] - 0s 854us/step - loss: 0.1079 - accuracy: 0.9356 - mae: 0.1079 - pearson_correlation: 0.6779 - euclidean_distance: 0.1753
Epoch 280/300
57/57 [==============================] - 0s 853us/step - loss: 0.1056 - accuracy: 0.9321 - mae: 0.1056 - pearson_correlation: 0.6834 - euclidean_distance: 0.1712
Epoch 281/300
57/57 [==============================] - 0s 858us/step - loss: 0.1071 - accuracy: 0.9369 - mae: 0.1071 - pearson_correlation: 0.6793 - euclidean_distance: 0.1738
Epoch 282/300
57/57 [==============================] - 0s 856us/step - loss: 0.1053 - accuracy: 0.9330 - mae: 0.1053 - pearson_correlation: 0.6915 - euclidean_distance: 0.1712
Epoch 283/300
57/57 [==============================] - 0s 855us/step - loss: 0.1042 - accuracy: 0.9325 - mae: 0.1042 - pearson_correlation: 0.6896 - euclidean_distance: 0.1693
Epoch 284/300
57/57 [==============================] - 0s 862us/step - loss: 0.1026 - accuracy: 0.9334 - mae: 0.1026 - pearson_correlation: 0.6913 - euclidean_distance: 0.1677
Epoch 285/300
57/57 [==============================] - 0s 851us/step - loss: 0.1066 - accuracy: 0.9338 - mae: 0.1066 - pearson_correlation: 0.6907 - euclidean_distance: 0.1729
Epoch 286/300
57/57 [==============================] - 0s 860us/step - loss: 0.1042 - accuracy: 0.9321 - mae: 0.1042 - pearson_correlation: 0.6916 - euclidean_distance: 0.1693
Epoch 287/300
57/57 [==============================] - 0s 856us/step - loss: 0.1046 - accuracy: 0.9325 - mae: 0.1046 - pearson_correlation: 0.6911 - euclidean_distance: 0.1696
Epoch 288/300
57/57 [==============================] - 0s 866us/step - loss: 0.1030 - accuracy: 0.9356 - mae: 0.1030 - pearson_correlation: 0.6939 - euclidean_distance: 0.1680
Epoch 289/300
57/57 [==============================] - 0s 864us/step - loss: 0.1064 - accuracy: 0.9343 - mae: 0.1064 - pearson_correlation: 0.6829 - euclidean_distance: 0.1726
Epoch 290/300
57/57 [==============================] - 0s 860us/step - loss: 0.1012 - accuracy: 0.9360 - mae: 0.1012 - pearson_correlation: 0.7000 - euclidean_distance: 0.1643
Epoch 291/300
57/57 [==============================] - 0s 852us/step - loss: 0.1071 - accuracy: 0.9334 - mae: 0.1071 - pearson_correlation: 0.6887 - euclidean_distance: 0.1736
Epoch 292/300
57/57 [==============================] - 0s 860us/step - loss: 0.1037 - accuracy: 0.9378 - mae: 0.1037 - pearson_correlation: 0.6951 - euclidean_distance: 0.1690
Epoch 293/300
57/57 [==============================] - 0s 857us/step - loss: 0.1020 - accuracy: 0.9382 - mae: 0.1020 - pearson_correlation: 0.7028 - euclidean_distance: 0.1660
Epoch 294/300
57/57 [==============================] - 0s 855us/step - loss: 0.1044 - accuracy: 0.9330 - mae: 0.1044 - pearson_correlation: 0.6926 - euclidean_distance: 0.1691
Epoch 295/300
57/57 [==============================] - 0s 852us/step - loss: 0.1007 - accuracy: 0.9347 - mae: 0.1007 - pearson_correlation: 0.6968 - euclidean_distance: 0.1637
Epoch 296/300
57/57 [==============================] - 0s 861us/step - loss: 0.1020 - accuracy: 0.9369 - mae: 0.1020 - pearson_correlation: 0.6948 - euclidean_distance: 0.1658
Epoch 297/300
57/57 [==============================] - 0s 853us/step - loss: 0.1070 - accuracy: 0.9356 - mae: 0.1070 - pearson_correlation: 0.6854 - euclidean_distance: 0.1735
Epoch 298/300
57/57 [==============================] - 0s 854us/step - loss: 0.1012 - accuracy: 0.9409 - mae: 0.1012 - pearson_correlation: 0.7017 - euclidean_distance: 0.1649
Epoch 299/300
57/57 [==============================] - 0s 859us/step - loss: 0.1014 - accuracy: 0.9347 - mae: 0.1014 - pearson_correlation: 0.6990 - euclidean_distance: 0.1647
Epoch 300/300
57/57 [==============================] - 0s 861us/step - loss: 0.1007 - accuracy: 0.9382 - mae: 0.1007 - pearson_correlation: 0.6958 - euclidean_distance: 0.1638
29/29 [==============================] - 0s 479us/step
Epoch 1/300
57/57 [==============================] - 1s 862us/step - loss: 0.4564 - accuracy: 0.1773 - mae: 0.4564 - pearson_correlation: -0.5229 - euclidean_distance: 0.7357
Epoch 2/300
57/57 [==============================] - 0s 813us/step - loss: 0.4538 - accuracy: 0.1897 - mae: 0.4538 - pearson_correlation: -0.5178 - euclidean_distance: 0.7300
Epoch 3/300
57/57 [==============================] - 0s 870us/step - loss: 0.4493 - accuracy: 0.1888 - mae: 0.4493 - pearson_correlation: -0.5185 - euclidean_distance: 0.7250
Epoch 4/300
57/57 [==============================] - 0s 853us/step - loss: 0.4457 - accuracy: 0.1914 - mae: 0.4457 - pearson_correlation: -0.5206 - euclidean_distance: 0.7209
Epoch 5/300
57/57 [==============================] - 0s 872us/step - loss: 0.4423 - accuracy: 0.1923 - mae: 0.4423 - pearson_correlation: -0.5110 - euclidean_distance: 0.7153
Epoch 6/300
57/57 [==============================] - 0s 864us/step - loss: 0.4392 - accuracy: 0.1989 - mae: 0.4392 - pearson_correlation: -0.5087 - euclidean_distance: 0.7106
Epoch 7/300
57/57 [==============================] - 0s 868us/step - loss: 0.4362 - accuracy: 0.2047 - mae: 0.4362 - pearson_correlation: -0.4989 - euclidean_distance: 0.7052
Epoch 8/300
57/57 [==============================] - 0s 854us/step - loss: 0.4322 - accuracy: 0.1967 - mae: 0.4322 - pearson_correlation: -0.5044 - euclidean_distance: 0.7002
Epoch 9/300
57/57 [==============================] - 0s 869us/step - loss: 0.4304 - accuracy: 0.2029 - mae: 0.4304 - pearson_correlation: -0.4876 - euclidean_distance: 0.6967
Epoch 10/300
57/57 [==============================] - 0s 856us/step - loss: 0.4259 - accuracy: 0.2131 - mae: 0.4259 - pearson_correlation: -0.4812 - euclidean_distance: 0.6900
Epoch 11/300
57/57 [==============================] - 0s 871us/step - loss: 0.4222 - accuracy: 0.2148 - mae: 0.4222 - pearson_correlation: -0.4834 - euclidean_distance: 0.6856
Epoch 12/300
57/57 [==============================] - 0s 861us/step - loss: 0.4187 - accuracy: 0.2135 - mae: 0.4187 - pearson_correlation: -0.4829 - euclidean_distance: 0.6804
Epoch 13/300
57/57 [==============================] - 0s 873us/step - loss: 0.4149 - accuracy: 0.2175 - mae: 0.4149 - pearson_correlation: -0.4766 - euclidean_distance: 0.6749
Epoch 14/300
57/57 [==============================] - 0s 867us/step - loss: 0.4120 - accuracy: 0.2206 - mae: 0.4120 - pearson_correlation: -0.4706 - euclidean_distance: 0.6691
Epoch 15/300
57/57 [==============================] - 0s 868us/step - loss: 0.4092 - accuracy: 0.2276 - mae: 0.4092 - pearson_correlation: -0.4593 - euclidean_distance: 0.6651
Epoch 16/300
57/57 [==============================] - 0s 870us/step - loss: 0.4050 - accuracy: 0.2214 - mae: 0.4050 - pearson_correlation: -0.4559 - euclidean_distance: 0.6589
Epoch 17/300
57/57 [==============================] - 0s 861us/step - loss: 0.4003 - accuracy: 0.2329 - mae: 0.4003 - pearson_correlation: -0.4595 - euclidean_distance: 0.6537
Epoch 18/300
57/57 [==============================] - 0s 869us/step - loss: 0.3954 - accuracy: 0.2360 - mae: 0.3954 - pearson_correlation: -0.4410 - euclidean_distance: 0.6456
Epoch 19/300
57/57 [==============================] - 0s 864us/step - loss: 0.3930 - accuracy: 0.2408 - mae: 0.3930 - pearson_correlation: -0.4346 - euclidean_distance: 0.6419
Epoch 20/300
57/57 [==============================] - 0s 864us/step - loss: 0.3910 - accuracy: 0.2488 - mae: 0.3910 - pearson_correlation: -0.4211 - euclidean_distance: 0.6374
Epoch 21/300
57/57 [==============================] - 0s 872us/step - loss: 0.3864 - accuracy: 0.2501 - mae: 0.3864 - pearson_correlation: -0.4209 - euclidean_distance: 0.6307
Epoch 22/300
57/57 [==============================] - 0s 867us/step - loss: 0.3816 - accuracy: 0.2558 - mae: 0.3816 - pearson_correlation: -0.4105 - euclidean_distance: 0.6244
Epoch 23/300
57/57 [==============================] - 0s 867us/step - loss: 0.3784 - accuracy: 0.2576 - mae: 0.3784 - pearson_correlation: -0.4035 - euclidean_distance: 0.6196
Epoch 24/300
57/57 [==============================] - 0s 866us/step - loss: 0.3739 - accuracy: 0.2616 - mae: 0.3739 - pearson_correlation: -0.3882 - euclidean_distance: 0.6127
Epoch 25/300
57/57 [==============================] - 0s 870us/step - loss: 0.3700 - accuracy: 0.2669 - mae: 0.3700 - pearson_correlation: -0.3810 - euclidean_distance: 0.6077
Epoch 26/300
57/57 [==============================] - 0s 867us/step - loss: 0.3663 - accuracy: 0.2722 - mae: 0.3663 - pearson_correlation: -0.3698 - euclidean_distance: 0.6012
Epoch 27/300
57/57 [==============================] - 0s 855us/step - loss: 0.3620 - accuracy: 0.2858 - mae: 0.3620 - pearson_correlation: -0.3525 - euclidean_distance: 0.5947
Epoch 28/300
57/57 [==============================] - 0s 860us/step - loss: 0.3594 - accuracy: 0.2955 - mae: 0.3594 - pearson_correlation: -0.3408 - euclidean_distance: 0.5902
Epoch 29/300
57/57 [==============================] - 0s 861us/step - loss: 0.3562 - accuracy: 0.3013 - mae: 0.3562 - pearson_correlation: -0.3354 - euclidean_distance: 0.5853
Epoch 30/300
57/57 [==============================] - 0s 850us/step - loss: 0.3510 - accuracy: 0.3066 - mae: 0.3510 - pearson_correlation: -0.3200 - euclidean_distance: 0.5773
Epoch 31/300
57/57 [==============================] - 0s 848us/step - loss: 0.3476 - accuracy: 0.3092 - mae: 0.3476 - pearson_correlation: -0.3090 - euclidean_distance: 0.5720
Epoch 32/300
57/57 [==============================] - 0s 864us/step - loss: 0.3440 - accuracy: 0.3229 - mae: 0.3440 - pearson_correlation: -0.2901 - euclidean_distance: 0.5656
Epoch 33/300
57/57 [==============================] - 0s 861us/step - loss: 0.3401 - accuracy: 0.3269 - mae: 0.3401 - pearson_correlation: -0.2775 - euclidean_distance: 0.5599
Epoch 34/300
57/57 [==============================] - 0s 869us/step - loss: 0.3350 - accuracy: 0.3300 - mae: 0.3350 - pearson_correlation: -0.2620 - euclidean_distance: 0.5518
Epoch 35/300
57/57 [==============================] - 0s 854us/step - loss: 0.3328 - accuracy: 0.3397 - mae: 0.3328 - pearson_correlation: -0.2545 - euclidean_distance: 0.5481
Epoch 36/300
57/57 [==============================] - 0s 851us/step - loss: 0.3288 - accuracy: 0.3480 - mae: 0.3288 - pearson_correlation: -0.2429 - euclidean_distance: 0.5433
Epoch 37/300
57/57 [==============================] - 0s 863us/step - loss: 0.3241 - accuracy: 0.3520 - mae: 0.3241 - pearson_correlation: -0.2228 - euclidean_distance: 0.5356
Epoch 38/300
57/57 [==============================] - 0s 856us/step - loss: 0.3201 - accuracy: 0.3564 - mae: 0.3201 - pearson_correlation: -0.2142 - euclidean_distance: 0.5304
Epoch 39/300
57/57 [==============================] - 0s 859us/step - loss: 0.3158 - accuracy: 0.3608 - mae: 0.3158 - pearson_correlation: -0.2069 - euclidean_distance: 0.5230
Epoch 40/300
57/57 [==============================] - 0s 856us/step - loss: 0.3115 - accuracy: 0.3732 - mae: 0.3115 - pearson_correlation: -0.1794 - euclidean_distance: 0.5154
Epoch 41/300
57/57 [==============================] - 0s 853us/step - loss: 0.3117 - accuracy: 0.3780 - mae: 0.3117 - pearson_correlation: -0.1696 - euclidean_distance: 0.5142
Epoch 42/300
57/57 [==============================] - 0s 871us/step - loss: 0.3053 - accuracy: 0.3873 - mae: 0.3053 - pearson_correlation: -0.1503 - euclidean_distance: 0.5056
Epoch 43/300
57/57 [==============================] - 0s 860us/step - loss: 0.3025 - accuracy: 0.3935 - mae: 0.3025 - pearson_correlation: -0.1381 - euclidean_distance: 0.5014
Epoch 44/300
57/57 [==============================] - 0s 859us/step - loss: 0.2973 - accuracy: 0.3983 - mae: 0.2973 - pearson_correlation: -0.1258 - euclidean_distance: 0.4941
Epoch 45/300
57/57 [==============================] - 0s 866us/step - loss: 0.2951 - accuracy: 0.4041 - mae: 0.2951 - pearson_correlation: -0.1167 - euclidean_distance: 0.4907
Epoch 46/300
57/57 [==============================] - 0s 862us/step - loss: 0.2969 - accuracy: 0.4094 - mae: 0.2969 - pearson_correlation: -0.1115 - euclidean_distance: 0.4923
Epoch 47/300
57/57 [==============================] - 0s 854us/step - loss: 0.2893 - accuracy: 0.4094 - mae: 0.2893 - pearson_correlation: -0.0902 - euclidean_distance: 0.4813
Epoch 48/300
57/57 [==============================] - 0s 859us/step - loss: 0.2869 - accuracy: 0.4235 - mae: 0.2869 - pearson_correlation: -0.0769 - euclidean_distance: 0.4780
Epoch 49/300
57/57 [==============================] - 0s 845us/step - loss: 0.2831 - accuracy: 0.4248 - mae: 0.2831 - pearson_correlation: -0.0592 - euclidean_distance: 0.4716
Epoch 50/300
57/57 [==============================] - 0s 864us/step - loss: 0.2806 - accuracy: 0.4310 - mae: 0.2806 - pearson_correlation: -0.0542 - euclidean_distance: 0.4676
Epoch 51/300
57/57 [==============================] - 0s 848us/step - loss: 0.2777 - accuracy: 0.4442 - mae: 0.2777 - pearson_correlation: -0.0375 - euclidean_distance: 0.4636
Epoch 52/300
57/57 [==============================] - 0s 868us/step - loss: 0.2787 - accuracy: 0.4349 - mae: 0.2787 - pearson_correlation: -0.0361 - euclidean_distance: 0.4631
Epoch 53/300
57/57 [==============================] - 0s 848us/step - loss: 0.2736 - accuracy: 0.4442 - mae: 0.2736 - pearson_correlation: -0.0297 - euclidean_distance: 0.4573
Epoch 54/300
57/57 [==============================] - 0s 855us/step - loss: 0.2729 - accuracy: 0.4561 - mae: 0.2729 - pearson_correlation: -0.0174 - euclidean_distance: 0.4553
Epoch 55/300
57/57 [==============================] - 0s 864us/step - loss: 0.2703 - accuracy: 0.4596 - mae: 0.2703 - pearson_correlation: -0.0041 - euclidean_distance: 0.4514
Epoch 56/300
57/57 [==============================] - 0s 861us/step - loss: 0.2668 - accuracy: 0.4543 - mae: 0.2668 - pearson_correlation: 0.0056 - euclidean_distance: 0.4466
Epoch 57/300
57/57 [==============================] - 0s 862us/step - loss: 0.2670 - accuracy: 0.4566 - mae: 0.2670 - pearson_correlation: 0.0071 - euclidean_distance: 0.4463
Epoch 58/300
57/57 [==============================] - 0s 865us/step - loss: 0.2642 - accuracy: 0.4654 - mae: 0.2642 - pearson_correlation: 0.0196 - euclidean_distance: 0.4415
Epoch 59/300
57/57 [==============================] - 0s 863us/step - loss: 0.2678 - accuracy: 0.4795 - mae: 0.2678 - pearson_correlation: 0.0212 - euclidean_distance: 0.4463
Epoch 60/300
57/57 [==============================] - 0s 865us/step - loss: 0.2603 - accuracy: 0.4707 - mae: 0.2603 - pearson_correlation: 0.0303 - euclidean_distance: 0.4363
Epoch 61/300
57/57 [==============================] - 0s 851us/step - loss: 0.2606 - accuracy: 0.4879 - mae: 0.2606 - pearson_correlation: 0.0372 - euclidean_distance: 0.4355
Epoch 62/300
57/57 [==============================] - 0s 863us/step - loss: 0.2590 - accuracy: 0.4768 - mae: 0.2590 - pearson_correlation: 0.0425 - euclidean_distance: 0.4329
Epoch 63/300
57/57 [==============================] - 0s 858us/step - loss: 0.2554 - accuracy: 0.4821 - mae: 0.2554 - pearson_correlation: 0.0475 - euclidean_distance: 0.4281
Epoch 64/300
57/57 [==============================] - 0s 869us/step - loss: 0.2515 - accuracy: 0.4852 - mae: 0.2515 - pearson_correlation: 0.0580 - euclidean_distance: 0.4218
Epoch 65/300
57/57 [==============================] - 0s 867us/step - loss: 0.2528 - accuracy: 0.4993 - mae: 0.2528 - pearson_correlation: 0.0731 - euclidean_distance: 0.4240
Epoch 66/300
57/57 [==============================] - 0s 858us/step - loss: 0.2527 - accuracy: 0.4936 - mae: 0.2527 - pearson_correlation: 0.0685 - euclidean_distance: 0.4235
Epoch 67/300
57/57 [==============================] - 0s 892us/step - loss: 0.2502 - accuracy: 0.5126 - mae: 0.2502 - pearson_correlation: 0.0758 - euclidean_distance: 0.4187
Epoch 68/300
57/57 [==============================] - 0s 861us/step - loss: 0.2474 - accuracy: 0.5095 - mae: 0.2474 - pearson_correlation: 0.0834 - euclidean_distance: 0.4157
Epoch 69/300
57/57 [==============================] - 0s 855us/step - loss: 0.2476 - accuracy: 0.5218 - mae: 0.2476 - pearson_correlation: 0.0855 - euclidean_distance: 0.4149
Epoch 70/300
57/57 [==============================] - 0s 879us/step - loss: 0.2452 - accuracy: 0.5179 - mae: 0.2452 - pearson_correlation: 0.0995 - euclidean_distance: 0.4115
Epoch 71/300
57/57 [==============================] - 0s 860us/step - loss: 0.2442 - accuracy: 0.5117 - mae: 0.2442 - pearson_correlation: 0.1003 - euclidean_distance: 0.4095
Epoch 72/300
57/57 [==============================] - 0s 840us/step - loss: 0.2428 - accuracy: 0.5267 - mae: 0.2428 - pearson_correlation: 0.1053 - euclidean_distance: 0.4070
Epoch 73/300
57/57 [==============================] - 0s 864us/step - loss: 0.2404 - accuracy: 0.5320 - mae: 0.2404 - pearson_correlation: 0.1105 - euclidean_distance: 0.4030
Epoch 74/300
57/57 [==============================] - 0s 865us/step - loss: 0.2400 - accuracy: 0.5223 - mae: 0.2400 - pearson_correlation: 0.1121 - euclidean_distance: 0.4020
Epoch 75/300
57/57 [==============================] - 0s 865us/step - loss: 0.2399 - accuracy: 0.5329 - mae: 0.2399 - pearson_correlation: 0.1156 - euclidean_distance: 0.4025
Epoch 76/300
57/57 [==============================] - 0s 863us/step - loss: 0.2371 - accuracy: 0.5514 - mae: 0.2371 - pearson_correlation: 0.1272 - euclidean_distance: 0.3977
Epoch 77/300
57/57 [==============================] - 0s 862us/step - loss: 0.2379 - accuracy: 0.5483 - mae: 0.2379 - pearson_correlation: 0.1294 - euclidean_distance: 0.3987
Epoch 78/300
57/57 [==============================] - 0s 863us/step - loss: 0.2366 - accuracy: 0.5602 - mae: 0.2366 - pearson_correlation: 0.1413 - euclidean_distance: 0.3957
Epoch 79/300
57/57 [==============================] - 0s 862us/step - loss: 0.2324 - accuracy: 0.5699 - mae: 0.2324 - pearson_correlation: 0.1427 - euclidean_distance: 0.3899
Epoch 80/300
57/57 [==============================] - 0s 859us/step - loss: 0.2328 - accuracy: 0.5765 - mae: 0.2328 - pearson_correlation: 0.1459 - euclidean_distance: 0.3901
Epoch 81/300
57/57 [==============================] - 0s 867us/step - loss: 0.2297 - accuracy: 0.5721 - mae: 0.2297 - pearson_correlation: 0.1538 - euclidean_distance: 0.3857
Epoch 82/300
57/57 [==============================] - 0s 868us/step - loss: 0.2308 - accuracy: 0.5739 - mae: 0.2308 - pearson_correlation: 0.1536 - euclidean_distance: 0.3868
Epoch 83/300
57/57 [==============================] - 0s 858us/step - loss: 0.2296 - accuracy: 0.5849 - mae: 0.2296 - pearson_correlation: 0.1617 - euclidean_distance: 0.3841
Epoch 84/300
57/57 [==============================] - 0s 856us/step - loss: 0.2273 - accuracy: 0.5871 - mae: 0.2273 - pearson_correlation: 0.1706 - euclidean_distance: 0.3801
Epoch 85/300
57/57 [==============================] - 0s 912us/step - loss: 0.2270 - accuracy: 0.5906 - mae: 0.2270 - pearson_correlation: 0.1705 - euclidean_distance: 0.3816
Epoch 86/300
57/57 [==============================] - 0s 874us/step - loss: 0.2233 - accuracy: 0.6215 - mae: 0.2233 - pearson_correlation: 0.1848 - euclidean_distance: 0.3736
Epoch 87/300
57/57 [==============================] - 0s 870us/step - loss: 0.2263 - accuracy: 0.6030 - mae: 0.2263 - pearson_correlation: 0.1787 - euclidean_distance: 0.3785
Epoch 88/300
57/57 [==============================] - 0s 941us/step - loss: 0.2217 - accuracy: 0.6034 - mae: 0.2217 - pearson_correlation: 0.1842 - euclidean_distance: 0.3732
Epoch 89/300
57/57 [==============================] - 0s 867us/step - loss: 0.2200 - accuracy: 0.6087 - mae: 0.2200 - pearson_correlation: 0.1879 - euclidean_distance: 0.3678
Epoch 90/300
57/57 [==============================] - 0s 862us/step - loss: 0.2185 - accuracy: 0.6273 - mae: 0.2185 - pearson_correlation: 0.1888 - euclidean_distance: 0.3667
Epoch 91/300
57/57 [==============================] - 0s 866us/step - loss: 0.2179 - accuracy: 0.6251 - mae: 0.2179 - pearson_correlation: 0.1971 - euclidean_distance: 0.3651
Epoch 92/300
57/57 [==============================] - 0s 858us/step - loss: 0.2138 - accuracy: 0.6361 - mae: 0.2138 - pearson_correlation: 0.2082 - euclidean_distance: 0.3594
Epoch 93/300
57/57 [==============================] - 0s 863us/step - loss: 0.2148 - accuracy: 0.6383 - mae: 0.2148 - pearson_correlation: 0.2108 - euclidean_distance: 0.3593
Epoch 94/300
57/57 [==============================] - 0s 865us/step - loss: 0.2141 - accuracy: 0.6387 - mae: 0.2141 - pearson_correlation: 0.2160 - euclidean_distance: 0.3590
Epoch 95/300
57/57 [==============================] - 0s 875us/step - loss: 0.2100 - accuracy: 0.6423 - mae: 0.2100 - pearson_correlation: 0.2233 - euclidean_distance: 0.3530
Epoch 96/300
57/57 [==============================] - 0s 875us/step - loss: 0.2104 - accuracy: 0.6506 - mae: 0.2104 - pearson_correlation: 0.2259 - euclidean_distance: 0.3528
Epoch 97/300
57/57 [==============================] - 0s 889us/step - loss: 0.2110 - accuracy: 0.6498 - mae: 0.2110 - pearson_correlation: 0.2205 - euclidean_distance: 0.3541
Epoch 98/300
57/57 [==============================] - 0s 856us/step - loss: 0.2087 - accuracy: 0.6533 - mae: 0.2087 - pearson_correlation: 0.2248 - euclidean_distance: 0.3500
Epoch 99/300
57/57 [==============================] - 0s 863us/step - loss: 0.2087 - accuracy: 0.6634 - mae: 0.2087 - pearson_correlation: 0.2352 - euclidean_distance: 0.3495
Epoch 100/300
57/57 [==============================] - 0s 871us/step - loss: 0.2082 - accuracy: 0.6524 - mae: 0.2082 - pearson_correlation: 0.2361 - euclidean_distance: 0.3478
Epoch 101/300
57/57 [==============================] - 0s 869us/step - loss: 0.2059 - accuracy: 0.6621 - mae: 0.2059 - pearson_correlation: 0.2411 - euclidean_distance: 0.3446
Epoch 102/300
57/57 [==============================] - 0s 852us/step - loss: 0.2037 - accuracy: 0.6652 - mae: 0.2037 - pearson_correlation: 0.2461 - euclidean_distance: 0.3421
Epoch 103/300
57/57 [==============================] - 0s 865us/step - loss: 0.2027 - accuracy: 0.6736 - mae: 0.2027 - pearson_correlation: 0.2437 - euclidean_distance: 0.3391
Epoch 104/300
57/57 [==============================] - 0s 870us/step - loss: 0.1996 - accuracy: 0.6815 - mae: 0.1996 - pearson_correlation: 0.2565 - euclidean_distance: 0.3344
Epoch 105/300
57/57 [==============================] - 0s 866us/step - loss: 0.2025 - accuracy: 0.6802 - mae: 0.2025 - pearson_correlation: 0.2526 - euclidean_distance: 0.3395
Epoch 106/300
57/57 [==============================] - 0s 855us/step - loss: 0.2009 - accuracy: 0.6798 - mae: 0.2009 - pearson_correlation: 0.2587 - euclidean_distance: 0.3365
Epoch 107/300
57/57 [==============================] - 0s 859us/step - loss: 0.1973 - accuracy: 0.6855 - mae: 0.1973 - pearson_correlation: 0.2708 - euclidean_distance: 0.3297
Epoch 108/300
57/57 [==============================] - 0s 865us/step - loss: 0.1967 - accuracy: 0.6890 - mae: 0.1967 - pearson_correlation: 0.2745 - euclidean_distance: 0.3300
Epoch 109/300
57/57 [==============================] - 0s 849us/step - loss: 0.1955 - accuracy: 0.6903 - mae: 0.1955 - pearson_correlation: 0.2726 - euclidean_distance: 0.3281
Epoch 110/300
57/57 [==============================] - 0s 851us/step - loss: 0.1993 - accuracy: 0.6908 - mae: 0.1993 - pearson_correlation: 0.2729 - euclidean_distance: 0.3330
Epoch 111/300
57/57 [==============================] - 0s 855us/step - loss: 0.1936 - accuracy: 0.6921 - mae: 0.1936 - pearson_correlation: 0.2813 - euclidean_distance: 0.3247
Epoch 112/300
57/57 [==============================] - 0s 866us/step - loss: 0.1932 - accuracy: 0.6925 - mae: 0.1932 - pearson_correlation: 0.2796 - euclidean_distance: 0.3236
Epoch 113/300
57/57 [==============================] - 0s 856us/step - loss: 0.1939 - accuracy: 0.6983 - mae: 0.1939 - pearson_correlation: 0.2887 - euclidean_distance: 0.3240
Epoch 114/300
57/57 [==============================] - 0s 852us/step - loss: 0.1886 - accuracy: 0.7071 - mae: 0.1886 - pearson_correlation: 0.2920 - euclidean_distance: 0.3167
Epoch 115/300
57/57 [==============================] - 0s 854us/step - loss: 0.1888 - accuracy: 0.7124 - mae: 0.1888 - pearson_correlation: 0.2947 - euclidean_distance: 0.3160
Epoch 116/300
57/57 [==============================] - 0s 864us/step - loss: 0.1858 - accuracy: 0.7045 - mae: 0.1858 - pearson_correlation: 0.2996 - euclidean_distance: 0.3124
Epoch 117/300
57/57 [==============================] - 0s 862us/step - loss: 0.1877 - accuracy: 0.7075 - mae: 0.1877 - pearson_correlation: 0.3012 - euclidean_distance: 0.3138
Epoch 118/300
57/57 [==============================] - 0s 849us/step - loss: 0.1847 - accuracy: 0.7155 - mae: 0.1847 - pearson_correlation: 0.3038 - euclidean_distance: 0.3099
Epoch 119/300
57/57 [==============================] - 0s 854us/step - loss: 0.1861 - accuracy: 0.7155 - mae: 0.1861 - pearson_correlation: 0.3097 - euclidean_distance: 0.3118
Epoch 120/300
57/57 [==============================] - 0s 868us/step - loss: 0.1833 - accuracy: 0.7208 - mae: 0.1833 - pearson_correlation: 0.3139 - euclidean_distance: 0.3072
Epoch 121/300
57/57 [==============================] - 0s 849us/step - loss: 0.1848 - accuracy: 0.7186 - mae: 0.1848 - pearson_correlation: 0.3042 - euclidean_distance: 0.3101
Epoch 122/300
57/57 [==============================] - 0s 856us/step - loss: 0.1811 - accuracy: 0.7186 - mae: 0.1811 - pearson_correlation: 0.3164 - euclidean_distance: 0.3042
Epoch 123/300
57/57 [==============================] - 0s 865us/step - loss: 0.1817 - accuracy: 0.7212 - mae: 0.1817 - pearson_correlation: 0.3225 - euclidean_distance: 0.3045
Epoch 124/300
57/57 [==============================] - 0s 859us/step - loss: 0.1807 - accuracy: 0.7243 - mae: 0.1807 - pearson_correlation: 0.3181 - euclidean_distance: 0.3030
Epoch 125/300
57/57 [==============================] - 0s 857us/step - loss: 0.1802 - accuracy: 0.7208 - mae: 0.1802 - pearson_correlation: 0.3284 - euclidean_distance: 0.3006
Epoch 126/300
57/57 [==============================] - 0s 854us/step - loss: 0.1794 - accuracy: 0.7278 - mae: 0.1794 - pearson_correlation: 0.3280 - euclidean_distance: 0.3002
Epoch 127/300
57/57 [==============================] - 0s 861us/step - loss: 0.1799 - accuracy: 0.7256 - mae: 0.1799 - pearson_correlation: 0.3303 - euclidean_distance: 0.3006
Epoch 128/300
57/57 [==============================] - 0s 850us/step - loss: 0.1757 - accuracy: 0.7375 - mae: 0.1757 - pearson_correlation: 0.3465 - euclidean_distance: 0.2940
Epoch 129/300
57/57 [==============================] - 0s 873us/step - loss: 0.1766 - accuracy: 0.7322 - mae: 0.1766 - pearson_correlation: 0.3366 - euclidean_distance: 0.2962
Epoch 130/300
57/57 [==============================] - 0s 865us/step - loss: 0.1787 - accuracy: 0.7345 - mae: 0.1787 - pearson_correlation: 0.3404 - euclidean_distance: 0.2984
Epoch 131/300
57/57 [==============================] - 0s 863us/step - loss: 0.1721 - accuracy: 0.7375 - mae: 0.1721 - pearson_correlation: 0.3560 - euclidean_distance: 0.2884
Epoch 132/300
57/57 [==============================] - 0s 868us/step - loss: 0.1740 - accuracy: 0.7318 - mae: 0.1740 - pearson_correlation: 0.3476 - euclidean_distance: 0.2918
Epoch 133/300
57/57 [==============================] - 0s 856us/step - loss: 0.1724 - accuracy: 0.7393 - mae: 0.1724 - pearson_correlation: 0.3480 - euclidean_distance: 0.2890
Epoch 134/300
57/57 [==============================] - 0s 866us/step - loss: 0.1702 - accuracy: 0.7380 - mae: 0.1702 - pearson_correlation: 0.3569 - euclidean_distance: 0.2855
Epoch 135/300
57/57 [==============================] - 0s 843us/step - loss: 0.1728 - accuracy: 0.7389 - mae: 0.1728 - pearson_correlation: 0.3526 - euclidean_distance: 0.2887
Epoch 136/300
57/57 [==============================] - 0s 862us/step - loss: 0.1699 - accuracy: 0.7424 - mae: 0.1699 - pearson_correlation: 0.3581 - euclidean_distance: 0.2841
Epoch 137/300
57/57 [==============================] - 0s 851us/step - loss: 0.1678 - accuracy: 0.7437 - mae: 0.1678 - pearson_correlation: 0.3628 - euclidean_distance: 0.2809
Epoch 138/300
57/57 [==============================] - 0s 863us/step - loss: 0.1693 - accuracy: 0.7402 - mae: 0.1693 - pearson_correlation: 0.3608 - euclidean_distance: 0.2835
Epoch 139/300
57/57 [==============================] - 0s 851us/step - loss: 0.1678 - accuracy: 0.7442 - mae: 0.1678 - pearson_correlation: 0.3692 - euclidean_distance: 0.2809
Epoch 140/300
57/57 [==============================] - 0s 865us/step - loss: 0.1676 - accuracy: 0.7468 - mae: 0.1676 - pearson_correlation: 0.3725 - euclidean_distance: 0.2801
Epoch 141/300
57/57 [==============================] - 0s 866us/step - loss: 0.1659 - accuracy: 0.7468 - mae: 0.1659 - pearson_correlation: 0.3764 - euclidean_distance: 0.2763
Epoch 142/300
57/57 [==============================] - 0s 870us/step - loss: 0.1648 - accuracy: 0.7512 - mae: 0.1648 - pearson_correlation: 0.3764 - euclidean_distance: 0.2755
Epoch 143/300
57/57 [==============================] - 0s 855us/step - loss: 0.1647 - accuracy: 0.7508 - mae: 0.1647 - pearson_correlation: 0.3822 - euclidean_distance: 0.2757
Epoch 144/300
57/57 [==============================] - 0s 865us/step - loss: 0.1630 - accuracy: 0.7525 - mae: 0.1630 - pearson_correlation: 0.3895 - euclidean_distance: 0.2727
Epoch 145/300
57/57 [==============================] - 0s 853us/step - loss: 0.1613 - accuracy: 0.7486 - mae: 0.1613 - pearson_correlation: 0.3836 - euclidean_distance: 0.2705
Epoch 146/300
57/57 [==============================] - 0s 864us/step - loss: 0.1630 - accuracy: 0.7569 - mae: 0.1630 - pearson_correlation: 0.3880 - euclidean_distance: 0.2722
Epoch 147/300
57/57 [==============================] - 0s 856us/step - loss: 0.1632 - accuracy: 0.7565 - mae: 0.1632 - pearson_correlation: 0.3862 - euclidean_distance: 0.2729
Epoch 148/300
57/57 [==============================] - 0s 850us/step - loss: 0.1595 - accuracy: 0.7552 - mae: 0.1595 - pearson_correlation: 0.3994 - euclidean_distance: 0.2665
Epoch 149/300
57/57 [==============================] - 0s 860us/step - loss: 0.1582 - accuracy: 0.7574 - mae: 0.1582 - pearson_correlation: 0.4017 - euclidean_distance: 0.2649
Epoch 150/300
57/57 [==============================] - 0s 860us/step - loss: 0.1599 - accuracy: 0.7556 - mae: 0.1599 - pearson_correlation: 0.3956 - euclidean_distance: 0.2674
Epoch 151/300
57/57 [==============================] - 0s 854us/step - loss: 0.1567 - accuracy: 0.7569 - mae: 0.1567 - pearson_correlation: 0.4033 - euclidean_distance: 0.2622
Epoch 152/300
57/57 [==============================] - 0s 851us/step - loss: 0.1563 - accuracy: 0.7609 - mae: 0.1563 - pearson_correlation: 0.4115 - euclidean_distance: 0.2616
Epoch 153/300
57/57 [==============================] - 0s 864us/step - loss: 0.1556 - accuracy: 0.7644 - mae: 0.1556 - pearson_correlation: 0.4168 - euclidean_distance: 0.2600
Epoch 154/300
57/57 [==============================] - 0s 859us/step - loss: 0.1541 - accuracy: 0.7609 - mae: 0.1541 - pearson_correlation: 0.4122 - euclidean_distance: 0.2581
Epoch 155/300
57/57 [==============================] - 0s 860us/step - loss: 0.1556 - accuracy: 0.7640 - mae: 0.1556 - pearson_correlation: 0.4084 - euclidean_distance: 0.2603
Epoch 156/300
57/57 [==============================] - 0s 865us/step - loss: 0.1568 - accuracy: 0.7631 - mae: 0.1568 - pearson_correlation: 0.4104 - euclidean_distance: 0.2615
Epoch 157/300
57/57 [==============================] - 0s 853us/step - loss: 0.1556 - accuracy: 0.7658 - mae: 0.1556 - pearson_correlation: 0.4117 - euclidean_distance: 0.2600
Epoch 158/300
57/57 [==============================] - 0s 853us/step - loss: 0.1516 - accuracy: 0.7622 - mae: 0.1516 - pearson_correlation: 0.4183 - euclidean_distance: 0.2534
Epoch 159/300
57/57 [==============================] - 0s 862us/step - loss: 0.1536 - accuracy: 0.7636 - mae: 0.1536 - pearson_correlation: 0.4237 - euclidean_distance: 0.2556
Epoch 160/300
57/57 [==============================] - 0s 856us/step - loss: 0.1517 - accuracy: 0.7636 - mae: 0.1517 - pearson_correlation: 0.4238 - euclidean_distance: 0.2540
Epoch 161/300
57/57 [==============================] - 0s 863us/step - loss: 0.1542 - accuracy: 0.7671 - mae: 0.1542 - pearson_correlation: 0.4192 - euclidean_distance: 0.2573
Epoch 162/300
57/57 [==============================] - 0s 863us/step - loss: 0.1535 - accuracy: 0.7644 - mae: 0.1535 - pearson_correlation: 0.4243 - euclidean_distance: 0.2557
Epoch 163/300
57/57 [==============================] - 0s 863us/step - loss: 0.1511 - accuracy: 0.7667 - mae: 0.1511 - pearson_correlation: 0.4316 - euclidean_distance: 0.2520
Epoch 164/300
57/57 [==============================] - 0s 866us/step - loss: 0.1515 - accuracy: 0.7636 - mae: 0.1515 - pearson_correlation: 0.4327 - euclidean_distance: 0.2532
Epoch 165/300
57/57 [==============================] - 0s 867us/step - loss: 0.1522 - accuracy: 0.7600 - mae: 0.1522 - pearson_correlation: 0.4291 - euclidean_distance: 0.2535
Epoch 166/300
57/57 [==============================] - 0s 843us/step - loss: 0.1500 - accuracy: 0.7715 - mae: 0.1500 - pearson_correlation: 0.4337 - euclidean_distance: 0.2515
Epoch 167/300
57/57 [==============================] - 0s 859us/step - loss: 0.1529 - accuracy: 0.7689 - mae: 0.1529 - pearson_correlation: 0.4320 - euclidean_distance: 0.2547
Epoch 168/300
57/57 [==============================] - 0s 867us/step - loss: 0.1484 - accuracy: 0.7689 - mae: 0.1484 - pearson_correlation: 0.4443 - euclidean_distance: 0.2482
Epoch 169/300
57/57 [==============================] - 0s 863us/step - loss: 0.1501 - accuracy: 0.7697 - mae: 0.1501 - pearson_correlation: 0.4434 - euclidean_distance: 0.2501
Epoch 170/300
57/57 [==============================] - 0s 865us/step - loss: 0.1485 - accuracy: 0.7764 - mae: 0.1485 - pearson_correlation: 0.4434 - euclidean_distance: 0.2477
Epoch 171/300
57/57 [==============================] - 0s 856us/step - loss: 0.1468 - accuracy: 0.7724 - mae: 0.1468 - pearson_correlation: 0.4516 - euclidean_distance: 0.2457
Epoch 172/300
57/57 [==============================] - 0s 864us/step - loss: 0.1485 - accuracy: 0.7702 - mae: 0.1485 - pearson_correlation: 0.4451 - euclidean_distance: 0.2480
Epoch 173/300
57/57 [==============================] - 0s 867us/step - loss: 0.1465 - accuracy: 0.7711 - mae: 0.1465 - pearson_correlation: 0.4518 - euclidean_distance: 0.2445
Epoch 174/300
57/57 [==============================] - 0s 872us/step - loss: 0.1477 - accuracy: 0.7733 - mae: 0.1477 - pearson_correlation: 0.4468 - euclidean_distance: 0.2459
Epoch 175/300
57/57 [==============================] - 0s 868us/step - loss: 0.1528 - accuracy: 0.7746 - mae: 0.1528 - pearson_correlation: 0.4425 - euclidean_distance: 0.2539
Epoch 176/300
57/57 [==============================] - 0s 857us/step - loss: 0.1456 - accuracy: 0.7746 - mae: 0.1456 - pearson_correlation: 0.4547 - euclidean_distance: 0.2427
Epoch 177/300
57/57 [==============================] - 0s 856us/step - loss: 0.1472 - accuracy: 0.7733 - mae: 0.1472 - pearson_correlation: 0.4533 - euclidean_distance: 0.2454
Epoch 178/300
57/57 [==============================] - 0s 869us/step - loss: 0.1458 - accuracy: 0.7750 - mae: 0.1458 - pearson_correlation: 0.4581 - euclidean_distance: 0.2431
Epoch 179/300
57/57 [==============================] - 0s 868us/step - loss: 0.1448 - accuracy: 0.7728 - mae: 0.1448 - pearson_correlation: 0.4600 - euclidean_distance: 0.2418
Epoch 180/300
57/57 [==============================] - 0s 856us/step - loss: 0.1455 - accuracy: 0.7764 - mae: 0.1455 - pearson_correlation: 0.4590 - euclidean_distance: 0.2426
Epoch 181/300
57/57 [==============================] - 0s 850us/step - loss: 0.1452 - accuracy: 0.7790 - mae: 0.1452 - pearson_correlation: 0.4582 - euclidean_distance: 0.2420
Epoch 182/300
57/57 [==============================] - 0s 863us/step - loss: 0.1413 - accuracy: 0.7764 - mae: 0.1413 - pearson_correlation: 0.4754 - euclidean_distance: 0.2361
Epoch 183/300
57/57 [==============================] - 0s 872us/step - loss: 0.1405 - accuracy: 0.7777 - mae: 0.1405 - pearson_correlation: 0.4736 - euclidean_distance: 0.2354
Epoch 184/300
57/57 [==============================] - 0s 859us/step - loss: 0.1426 - accuracy: 0.7786 - mae: 0.1426 - pearson_correlation: 0.4611 - euclidean_distance: 0.2380
Epoch 185/300
57/57 [==============================] - 0s 866us/step - loss: 0.1418 - accuracy: 0.7808 - mae: 0.1418 - pearson_correlation: 0.4735 - euclidean_distance: 0.2367
Epoch 186/300
57/57 [==============================] - 0s 863us/step - loss: 0.1417 - accuracy: 0.7777 - mae: 0.1417 - pearson_correlation: 0.4762 - euclidean_distance: 0.2363
Epoch 187/300
57/57 [==============================] - 0s 960us/step - loss: 0.1412 - accuracy: 0.7777 - mae: 0.1412 - pearson_correlation: 0.4776 - euclidean_distance: 0.2352
Epoch 188/300
57/57 [==============================] - 0s 992us/step - loss: 0.1429 - accuracy: 0.7830 - mae: 0.1429 - pearson_correlation: 0.4680 - euclidean_distance: 0.2378
Epoch 189/300
57/57 [==============================] - 0s 981us/step - loss: 0.1406 - accuracy: 0.7786 - mae: 0.1406 - pearson_correlation: 0.4824 - euclidean_distance: 0.2342
Epoch 190/300
57/57 [==============================] - 0s 969us/step - loss: 0.1410 - accuracy: 0.7772 - mae: 0.1410 - pearson_correlation: 0.4737 - euclidean_distance: 0.2350
Epoch 191/300
57/57 [==============================] - 0s 974us/step - loss: 0.1413 - accuracy: 0.7790 - mae: 0.1413 - pearson_correlation: 0.4808 - euclidean_distance: 0.2354
Epoch 192/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1413 - accuracy: 0.7825 - mae: 0.1413 - pearson_correlation: 0.4784 - euclidean_distance: 0.2346
Epoch 193/300
57/57 [==============================] - 0s 974us/step - loss: 0.1392 - accuracy: 0.7794 - mae: 0.1392 - pearson_correlation: 0.4849 - euclidean_distance: 0.2317
Epoch 194/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1412 - accuracy: 0.7777 - mae: 0.1412 - pearson_correlation: 0.4820 - euclidean_distance: 0.2344
Epoch 195/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1370 - accuracy: 0.7861 - mae: 0.1370 - pearson_correlation: 0.4939 - euclidean_distance: 0.2285
Epoch 196/300
57/57 [==============================] - 0s 983us/step - loss: 0.1380 - accuracy: 0.7865 - mae: 0.1380 - pearson_correlation: 0.4840 - euclidean_distance: 0.2309
Epoch 197/300
57/57 [==============================] - 0s 856us/step - loss: 0.1372 - accuracy: 0.7852 - mae: 0.1372 - pearson_correlation: 0.4892 - euclidean_distance: 0.2289
Epoch 198/300
57/57 [==============================] - 0s 860us/step - loss: 0.1389 - accuracy: 0.7821 - mae: 0.1389 - pearson_correlation: 0.4906 - euclidean_distance: 0.2309
Epoch 199/300
57/57 [==============================] - 0s 863us/step - loss: 0.1408 - accuracy: 0.7856 - mae: 0.1408 - pearson_correlation: 0.4855 - euclidean_distance: 0.2346
Epoch 200/300
57/57 [==============================] - 0s 852us/step - loss: 0.1409 - accuracy: 0.7900 - mae: 0.1409 - pearson_correlation: 0.4923 - euclidean_distance: 0.2346
Epoch 201/300
57/57 [==============================] - 0s 860us/step - loss: 0.1356 - accuracy: 0.7830 - mae: 0.1356 - pearson_correlation: 0.4946 - euclidean_distance: 0.2256
Epoch 202/300
57/57 [==============================] - 0s 861us/step - loss: 0.1390 - accuracy: 0.7852 - mae: 0.1390 - pearson_correlation: 0.4933 - euclidean_distance: 0.2304
Epoch 203/300
57/57 [==============================] - 0s 863us/step - loss: 0.1397 - accuracy: 0.7843 - mae: 0.1397 - pearson_correlation: 0.4914 - euclidean_distance: 0.2319
Epoch 204/300
57/57 [==============================] - 0s 937us/step - loss: 0.1355 - accuracy: 0.7922 - mae: 0.1355 - pearson_correlation: 0.4990 - euclidean_distance: 0.2257
Epoch 205/300
57/57 [==============================] - 0s 876us/step - loss: 0.1384 - accuracy: 0.7887 - mae: 0.1384 - pearson_correlation: 0.4973 - euclidean_distance: 0.2299
Epoch 206/300
57/57 [==============================] - 0s 864us/step - loss: 0.1383 - accuracy: 0.7865 - mae: 0.1383 - pearson_correlation: 0.4893 - euclidean_distance: 0.2306
Epoch 207/300
57/57 [==============================] - 0s 869us/step - loss: 0.1345 - accuracy: 0.7944 - mae: 0.1345 - pearson_correlation: 0.5038 - euclidean_distance: 0.2243
Epoch 208/300
57/57 [==============================] - 0s 850us/step - loss: 0.1356 - accuracy: 0.7927 - mae: 0.1356 - pearson_correlation: 0.4996 - euclidean_distance: 0.2254
Epoch 209/300
57/57 [==============================] - 0s 861us/step - loss: 0.1366 - accuracy: 0.7900 - mae: 0.1366 - pearson_correlation: 0.5053 - euclidean_distance: 0.2267
Epoch 210/300
57/57 [==============================] - 0s 864us/step - loss: 0.1358 - accuracy: 0.7966 - mae: 0.1358 - pearson_correlation: 0.5066 - euclidean_distance: 0.2254
Epoch 211/300
57/57 [==============================] - 0s 864us/step - loss: 0.1329 - accuracy: 0.7966 - mae: 0.1329 - pearson_correlation: 0.5078 - euclidean_distance: 0.2212
Epoch 212/300
57/57 [==============================] - 0s 870us/step - loss: 0.1337 - accuracy: 0.7905 - mae: 0.1337 - pearson_correlation: 0.5066 - euclidean_distance: 0.2227
Epoch 213/300
57/57 [==============================] - 0s 861us/step - loss: 0.1339 - accuracy: 0.7922 - mae: 0.1339 - pearson_correlation: 0.5078 - euclidean_distance: 0.2231
Epoch 214/300
57/57 [==============================] - 0s 848us/step - loss: 0.1358 - accuracy: 0.7940 - mae: 0.1358 - pearson_correlation: 0.5061 - euclidean_distance: 0.2258
Epoch 215/300
57/57 [==============================] - 0s 865us/step - loss: 0.1342 - accuracy: 0.8006 - mae: 0.1342 - pearson_correlation: 0.5116 - euclidean_distance: 0.2231
Epoch 216/300
57/57 [==============================] - 0s 851us/step - loss: 0.1318 - accuracy: 0.7958 - mae: 0.1318 - pearson_correlation: 0.5155 - euclidean_distance: 0.2189
Epoch 217/300
57/57 [==============================] - 0s 865us/step - loss: 0.1359 - accuracy: 0.7975 - mae: 0.1359 - pearson_correlation: 0.5127 - euclidean_distance: 0.2254
Epoch 218/300
57/57 [==============================] - 0s 864us/step - loss: 0.1350 - accuracy: 0.7953 - mae: 0.1350 - pearson_correlation: 0.5112 - euclidean_distance: 0.2243
Epoch 219/300
57/57 [==============================] - 0s 866us/step - loss: 0.1334 - accuracy: 0.7931 - mae: 0.1334 - pearson_correlation: 0.5222 - euclidean_distance: 0.2218
Epoch 220/300
57/57 [==============================] - 0s 867us/step - loss: 0.1319 - accuracy: 0.8015 - mae: 0.1319 - pearson_correlation: 0.5154 - euclidean_distance: 0.2197
Epoch 221/300
57/57 [==============================] - 0s 859us/step - loss: 0.1347 - accuracy: 0.8011 - mae: 0.1347 - pearson_correlation: 0.5098 - euclidean_distance: 0.2236
Epoch 222/300
57/57 [==============================] - 0s 853us/step - loss: 0.1306 - accuracy: 0.7993 - mae: 0.1306 - pearson_correlation: 0.5253 - euclidean_distance: 0.2171
Epoch 223/300
57/57 [==============================] - 0s 863us/step - loss: 0.1314 - accuracy: 0.8033 - mae: 0.1314 - pearson_correlation: 0.5232 - euclidean_distance: 0.2185
Epoch 224/300
57/57 [==============================] - 0s 884us/step - loss: 0.1308 - accuracy: 0.8046 - mae: 0.1308 - pearson_correlation: 0.5232 - euclidean_distance: 0.2173
Epoch 225/300
57/57 [==============================] - 0s 978us/step - loss: 0.1333 - accuracy: 0.8077 - mae: 0.1333 - pearson_correlation: 0.5204 - euclidean_distance: 0.2213
Epoch 226/300
57/57 [==============================] - 0s 877us/step - loss: 0.1311 - accuracy: 0.8055 - mae: 0.1311 - pearson_correlation: 0.5264 - euclidean_distance: 0.2182
Epoch 227/300
57/57 [==============================] - 0s 882us/step - loss: 0.1305 - accuracy: 0.8019 - mae: 0.1305 - pearson_correlation: 0.5255 - euclidean_distance: 0.2175
Epoch 228/300
57/57 [==============================] - 0s 872us/step - loss: 0.1331 - accuracy: 0.8116 - mae: 0.1331 - pearson_correlation: 0.5246 - euclidean_distance: 0.2206
Epoch 229/300
57/57 [==============================] - 0s 863us/step - loss: 0.1293 - accuracy: 0.8094 - mae: 0.1293 - pearson_correlation: 0.5352 - euclidean_distance: 0.2145
Epoch 230/300
57/57 [==============================] - 0s 853us/step - loss: 0.1310 - accuracy: 0.8033 - mae: 0.1310 - pearson_correlation: 0.5252 - euclidean_distance: 0.2169
Epoch 231/300
57/57 [==============================] - 0s 854us/step - loss: 0.1300 - accuracy: 0.8099 - mae: 0.1300 - pearson_correlation: 0.5280 - euclidean_distance: 0.2161
Epoch 232/300
57/57 [==============================] - 0s 861us/step - loss: 0.1277 - accuracy: 0.8068 - mae: 0.1277 - pearson_correlation: 0.5338 - euclidean_distance: 0.2125
Epoch 233/300
57/57 [==============================] - 0s 854us/step - loss: 0.1311 - accuracy: 0.8103 - mae: 0.1311 - pearson_correlation: 0.5214 - euclidean_distance: 0.2176
Epoch 234/300
57/57 [==============================] - 0s 866us/step - loss: 0.1269 - accuracy: 0.8086 - mae: 0.1269 - pearson_correlation: 0.5380 - euclidean_distance: 0.2111
Epoch 235/300
57/57 [==============================] - 0s 856us/step - loss: 0.1295 - accuracy: 0.8187 - mae: 0.1295 - pearson_correlation: 0.5364 - euclidean_distance: 0.2150
Epoch 236/300
57/57 [==============================] - 0s 851us/step - loss: 0.1293 - accuracy: 0.8112 - mae: 0.1293 - pearson_correlation: 0.5334 - euclidean_distance: 0.2155
Epoch 237/300
57/57 [==============================] - 0s 854us/step - loss: 0.1281 - accuracy: 0.8200 - mae: 0.1281 - pearson_correlation: 0.5400 - euclidean_distance: 0.2136
Epoch 238/300
57/57 [==============================] - 0s 865us/step - loss: 0.1299 - accuracy: 0.8169 - mae: 0.1299 - pearson_correlation: 0.5370 - euclidean_distance: 0.2148
Epoch 239/300
57/57 [==============================] - 0s 863us/step - loss: 0.1279 - accuracy: 0.8116 - mae: 0.1279 - pearson_correlation: 0.5325 - euclidean_distance: 0.2126
Epoch 240/300
57/57 [==============================] - 0s 851us/step - loss: 0.1258 - accuracy: 0.8191 - mae: 0.1258 - pearson_correlation: 0.5446 - euclidean_distance: 0.2096
Epoch 241/300
57/57 [==============================] - 0s 864us/step - loss: 0.1235 - accuracy: 0.8147 - mae: 0.1235 - pearson_correlation: 0.5486 - euclidean_distance: 0.2062
Epoch 242/300
57/57 [==============================] - 0s 870us/step - loss: 0.1257 - accuracy: 0.8213 - mae: 0.1257 - pearson_correlation: 0.5435 - euclidean_distance: 0.2089
Epoch 243/300
57/57 [==============================] - 0s 873us/step - loss: 0.1248 - accuracy: 0.8200 - mae: 0.1248 - pearson_correlation: 0.5444 - euclidean_distance: 0.2077
Epoch 244/300
57/57 [==============================] - 0s 863us/step - loss: 0.1303 - accuracy: 0.8169 - mae: 0.1303 - pearson_correlation: 0.5331 - euclidean_distance: 0.2163
Epoch 245/300
57/57 [==============================] - 0s 861us/step - loss: 0.1297 - accuracy: 0.8178 - mae: 0.1297 - pearson_correlation: 0.5387 - euclidean_distance: 0.2154
Epoch 246/300
57/57 [==============================] - 0s 851us/step - loss: 0.1246 - accuracy: 0.8200 - mae: 0.1246 - pearson_correlation: 0.5503 - euclidean_distance: 0.2071
Epoch 247/300
57/57 [==============================] - 0s 869us/step - loss: 0.1235 - accuracy: 0.8178 - mae: 0.1235 - pearson_correlation: 0.5517 - euclidean_distance: 0.2056
Epoch 248/300
57/57 [==============================] - 0s 852us/step - loss: 0.1230 - accuracy: 0.8222 - mae: 0.1230 - pearson_correlation: 0.5537 - euclidean_distance: 0.2045
Epoch 249/300
57/57 [==============================] - 0s 867us/step - loss: 0.1247 - accuracy: 0.8200 - mae: 0.1247 - pearson_correlation: 0.5454 - euclidean_distance: 0.2076
Epoch 250/300
57/57 [==============================] - 0s 853us/step - loss: 0.1238 - accuracy: 0.8231 - mae: 0.1238 - pearson_correlation: 0.5538 - euclidean_distance: 0.2053
Epoch 251/300
57/57 [==============================] - 0s 860us/step - loss: 0.1274 - accuracy: 0.8231 - mae: 0.1274 - pearson_correlation: 0.5501 - euclidean_distance: 0.2115
Epoch 252/300
57/57 [==============================] - 0s 863us/step - loss: 0.1252 - accuracy: 0.8205 - mae: 0.1252 - pearson_correlation: 0.5546 - euclidean_distance: 0.2074
Epoch 253/300
57/57 [==============================] - 0s 858us/step - loss: 0.1246 - accuracy: 0.8293 - mae: 0.1246 - pearson_correlation: 0.5535 - euclidean_distance: 0.2066
Epoch 254/300
57/57 [==============================] - 0s 859us/step - loss: 0.1237 - accuracy: 0.8319 - mae: 0.1237 - pearson_correlation: 0.5589 - euclidean_distance: 0.2052
Epoch 255/300
57/57 [==============================] - 0s 865us/step - loss: 0.1245 - accuracy: 0.8297 - mae: 0.1245 - pearson_correlation: 0.5555 - euclidean_distance: 0.2066
Epoch 256/300
57/57 [==============================] - 0s 856us/step - loss: 0.1262 - accuracy: 0.8258 - mae: 0.1262 - pearson_correlation: 0.5522 - euclidean_distance: 0.2087
Epoch 257/300
57/57 [==============================] - 0s 857us/step - loss: 0.1261 - accuracy: 0.8288 - mae: 0.1261 - pearson_correlation: 0.5561 - euclidean_distance: 0.2086
Epoch 258/300
57/57 [==============================] - 0s 865us/step - loss: 0.1236 - accuracy: 0.8341 - mae: 0.1236 - pearson_correlation: 0.5603 - euclidean_distance: 0.2047
Epoch 259/300
57/57 [==============================] - 0s 863us/step - loss: 0.1220 - accuracy: 0.8315 - mae: 0.1220 - pearson_correlation: 0.5668 - euclidean_distance: 0.2026
Epoch 260/300
57/57 [==============================] - 0s 858us/step - loss: 0.1240 - accuracy: 0.8306 - mae: 0.1240 - pearson_correlation: 0.5649 - euclidean_distance: 0.2054
Epoch 261/300
57/57 [==============================] - 0s 871us/step - loss: 0.1248 - accuracy: 0.8302 - mae: 0.1248 - pearson_correlation: 0.5636 - euclidean_distance: 0.2063
Epoch 262/300
57/57 [==============================] - 0s 911us/step - loss: 0.1221 - accuracy: 0.8381 - mae: 0.1221 - pearson_correlation: 0.5647 - euclidean_distance: 0.2029
Epoch 263/300
57/57 [==============================] - 0s 873us/step - loss: 0.1252 - accuracy: 0.8394 - mae: 0.1252 - pearson_correlation: 0.5574 - euclidean_distance: 0.2075
Epoch 264/300
57/57 [==============================] - 0s 864us/step - loss: 0.1208 - accuracy: 0.8377 - mae: 0.1208 - pearson_correlation: 0.5710 - euclidean_distance: 0.2003
Epoch 265/300
57/57 [==============================] - 0s 868us/step - loss: 0.1222 - accuracy: 0.8319 - mae: 0.1222 - pearson_correlation: 0.5689 - euclidean_distance: 0.2025
Epoch 266/300
57/57 [==============================] - 0s 856us/step - loss: 0.1201 - accuracy: 0.8306 - mae: 0.1201 - pearson_correlation: 0.5709 - euclidean_distance: 0.1989
Epoch 267/300
57/57 [==============================] - 0s 864us/step - loss: 0.1196 - accuracy: 0.8390 - mae: 0.1196 - pearson_correlation: 0.5743 - euclidean_distance: 0.1992
Epoch 268/300
57/57 [==============================] - 0s 854us/step - loss: 0.1212 - accuracy: 0.8311 - mae: 0.1212 - pearson_correlation: 0.5640 - euclidean_distance: 0.2013
Epoch 269/300
57/57 [==============================] - 0s 864us/step - loss: 0.1224 - accuracy: 0.8377 - mae: 0.1224 - pearson_correlation: 0.5720 - euclidean_distance: 0.2027
Epoch 270/300
57/57 [==============================] - 0s 867us/step - loss: 0.1214 - accuracy: 0.8377 - mae: 0.1214 - pearson_correlation: 0.5684 - euclidean_distance: 0.2011
Epoch 271/300
57/57 [==============================] - 0s 874us/step - loss: 0.1206 - accuracy: 0.8425 - mae: 0.1206 - pearson_correlation: 0.5732 - euclidean_distance: 0.1994
Epoch 272/300
57/57 [==============================] - 0s 861us/step - loss: 0.1224 - accuracy: 0.8408 - mae: 0.1224 - pearson_correlation: 0.5725 - euclidean_distance: 0.2024
Epoch 273/300
57/57 [==============================] - 0s 852us/step - loss: 0.1198 - accuracy: 0.8447 - mae: 0.1198 - pearson_correlation: 0.5801 - euclidean_distance: 0.1981
Epoch 274/300
57/57 [==============================] - 0s 860us/step - loss: 0.1183 - accuracy: 0.8403 - mae: 0.1183 - pearson_correlation: 0.5748 - euclidean_distance: 0.1967
Epoch 275/300
57/57 [==============================] - 0s 858us/step - loss: 0.1210 - accuracy: 0.8425 - mae: 0.1210 - pearson_correlation: 0.5736 - euclidean_distance: 0.2000
Epoch 276/300
57/57 [==============================] - 0s 850us/step - loss: 0.1227 - accuracy: 0.8412 - mae: 0.1227 - pearson_correlation: 0.5769 - euclidean_distance: 0.2029
Epoch 277/300
57/57 [==============================] - 0s 857us/step - loss: 0.1167 - accuracy: 0.8500 - mae: 0.1167 - pearson_correlation: 0.5901 - euclidean_distance: 0.1939
Epoch 278/300
57/57 [==============================] - 0s 858us/step - loss: 0.1183 - accuracy: 0.8408 - mae: 0.1183 - pearson_correlation: 0.5834 - euclidean_distance: 0.1963
Epoch 279/300
57/57 [==============================] - 0s 865us/step - loss: 0.1157 - accuracy: 0.8438 - mae: 0.1157 - pearson_correlation: 0.5918 - euclidean_distance: 0.1918
Epoch 280/300
57/57 [==============================] - 0s 859us/step - loss: 0.1169 - accuracy: 0.8478 - mae: 0.1169 - pearson_correlation: 0.5944 - euclidean_distance: 0.1935
Epoch 281/300
57/57 [==============================] - 0s 862us/step - loss: 0.1180 - accuracy: 0.8438 - mae: 0.1180 - pearson_correlation: 0.5851 - euclidean_distance: 0.1951
Epoch 282/300
57/57 [==============================] - 0s 852us/step - loss: 0.1165 - accuracy: 0.8443 - mae: 0.1165 - pearson_correlation: 0.5872 - euclidean_distance: 0.1935
Epoch 283/300
57/57 [==============================] - 0s 865us/step - loss: 0.1166 - accuracy: 0.8522 - mae: 0.1166 - pearson_correlation: 0.5872 - euclidean_distance: 0.1939
Epoch 284/300
57/57 [==============================] - 0s 860us/step - loss: 0.1144 - accuracy: 0.8487 - mae: 0.1144 - pearson_correlation: 0.6006 - euclidean_distance: 0.1895
Epoch 285/300
57/57 [==============================] - 0s 865us/step - loss: 0.1159 - accuracy: 0.8496 - mae: 0.1159 - pearson_correlation: 0.5917 - euclidean_distance: 0.1923
Epoch 286/300
57/57 [==============================] - 0s 848us/step - loss: 0.1161 - accuracy: 0.8513 - mae: 0.1161 - pearson_correlation: 0.5916 - euclidean_distance: 0.1922
Epoch 287/300
57/57 [==============================] - 0s 864us/step - loss: 0.1174 - accuracy: 0.8474 - mae: 0.1174 - pearson_correlation: 0.5854 - euclidean_distance: 0.1951
Epoch 288/300
57/57 [==============================] - 0s 870us/step - loss: 0.1171 - accuracy: 0.8536 - mae: 0.1171 - pearson_correlation: 0.5928 - euclidean_distance: 0.1935
Epoch 289/300
57/57 [==============================] - 0s 864us/step - loss: 0.1161 - accuracy: 0.8500 - mae: 0.1161 - pearson_correlation: 0.5929 - euclidean_distance: 0.1922
Epoch 290/300
57/57 [==============================] - 0s 869us/step - loss: 0.1138 - accuracy: 0.8443 - mae: 0.1138 - pearson_correlation: 0.5985 - euclidean_distance: 0.1885
Epoch 291/300
57/57 [==============================] - 0s 864us/step - loss: 0.1191 - accuracy: 0.8562 - mae: 0.1191 - pearson_correlation: 0.5986 - euclidean_distance: 0.1956
Epoch 292/300
57/57 [==============================] - 0s 860us/step - loss: 0.1139 - accuracy: 0.8606 - mae: 0.1139 - pearson_correlation: 0.6002 - euclidean_distance: 0.1887
Epoch 293/300
57/57 [==============================] - 0s 883us/step - loss: 0.1155 - accuracy: 0.8531 - mae: 0.1155 - pearson_correlation: 0.5991 - euclidean_distance: 0.1909
Epoch 294/300
57/57 [==============================] - 0s 872us/step - loss: 0.1167 - accuracy: 0.8553 - mae: 0.1167 - pearson_correlation: 0.5964 - euclidean_distance: 0.1931
Epoch 295/300
57/57 [==============================] - 0s 852us/step - loss: 0.1135 - accuracy: 0.8562 - mae: 0.1135 - pearson_correlation: 0.6050 - euclidean_distance: 0.1876
Epoch 296/300
57/57 [==============================] - 0s 863us/step - loss: 0.1175 - accuracy: 0.8575 - mae: 0.1175 - pearson_correlation: 0.5997 - euclidean_distance: 0.1944
Epoch 297/300
57/57 [==============================] - 0s 866us/step - loss: 0.1151 - accuracy: 0.8566 - mae: 0.1151 - pearson_correlation: 0.5981 - euclidean_distance: 0.1902
Epoch 298/300
57/57 [==============================] - 0s 852us/step - loss: 0.1147 - accuracy: 0.8566 - mae: 0.1147 - pearson_correlation: 0.6035 - euclidean_distance: 0.1896
Epoch 299/300
57/57 [==============================] - 0s 862us/step - loss: 0.1134 - accuracy: 0.8513 - mae: 0.1134 - pearson_correlation: 0.6084 - euclidean_distance: 0.1872
Epoch 300/300
57/57 [==============================] - 0s 847us/step - loss: 0.1139 - accuracy: 0.8610 - mae: 0.1139 - pearson_correlation: 0.6077 - euclidean_distance: 0.1876
29/29 [==============================] - 0s 490us/step
Epoch 1/300
57/57 [==============================] - 1s 941us/step - loss: 0.5786 - accuracy: 0.8104 - mae: 0.5786 - pearson_correlation: 0.5042 - euclidean_distance: 0.8455
Epoch 2/300
57/57 [==============================] - 0s 848us/step - loss: 0.5739 - accuracy: 0.8113 - mae: 0.5739 - pearson_correlation: 0.5035 - euclidean_distance: 0.8392
Epoch 3/300
57/57 [==============================] - 0s 877us/step - loss: 0.5690 - accuracy: 0.8157 - mae: 0.5690 - pearson_correlation: 0.5028 - euclidean_distance: 0.8327
Epoch 4/300
57/57 [==============================] - 0s 867us/step - loss: 0.5643 - accuracy: 0.8113 - mae: 0.5643 - pearson_correlation: 0.4990 - euclidean_distance: 0.8265
Epoch 5/300
57/57 [==============================] - 0s 864us/step - loss: 0.5611 - accuracy: 0.8245 - mae: 0.5611 - pearson_correlation: 0.5103 - euclidean_distance: 0.8212
Epoch 6/300
57/57 [==============================] - 0s 867us/step - loss: 0.5550 - accuracy: 0.8267 - mae: 0.5550 - pearson_correlation: 0.5105 - euclidean_distance: 0.8128
Epoch 7/300
57/57 [==============================] - 0s 862us/step - loss: 0.5501 - accuracy: 0.8267 - mae: 0.5501 - pearson_correlation: 0.5141 - euclidean_distance: 0.8058
Epoch 8/300
57/57 [==============================] - 0s 849us/step - loss: 0.5452 - accuracy: 0.8320 - mae: 0.5452 - pearson_correlation: 0.5109 - euclidean_distance: 0.7991
Epoch 9/300
57/57 [==============================] - 0s 866us/step - loss: 0.5403 - accuracy: 0.8364 - mae: 0.5403 - pearson_correlation: 0.5155 - euclidean_distance: 0.7925
Epoch 10/300
57/57 [==============================] - 0s 848us/step - loss: 0.5342 - accuracy: 0.8267 - mae: 0.5342 - pearson_correlation: 0.5094 - euclidean_distance: 0.7849
Epoch 11/300
57/57 [==============================] - 0s 848us/step - loss: 0.5299 - accuracy: 0.8333 - mae: 0.5299 - pearson_correlation: 0.5108 - euclidean_distance: 0.7784
Epoch 12/300
57/57 [==============================] - 0s 867us/step - loss: 0.5239 - accuracy: 0.8373 - mae: 0.5239 - pearson_correlation: 0.5180 - euclidean_distance: 0.7705
Epoch 13/300
57/57 [==============================] - 0s 859us/step - loss: 0.5194 - accuracy: 0.8373 - mae: 0.5194 - pearson_correlation: 0.5137 - euclidean_distance: 0.7641
Epoch 14/300
57/57 [==============================] - 0s 856us/step - loss: 0.5132 - accuracy: 0.8316 - mae: 0.5132 - pearson_correlation: 0.5117 - euclidean_distance: 0.7563
Epoch 15/300
57/57 [==============================] - 0s 855us/step - loss: 0.5068 - accuracy: 0.8413 - mae: 0.5068 - pearson_correlation: 0.5197 - euclidean_distance: 0.7474
Epoch 16/300
57/57 [==============================] - 0s 864us/step - loss: 0.5019 - accuracy: 0.8408 - mae: 0.5019 - pearson_correlation: 0.5264 - euclidean_distance: 0.7404
Epoch 17/300
57/57 [==============================] - 0s 857us/step - loss: 0.4982 - accuracy: 0.8369 - mae: 0.4982 - pearson_correlation: 0.5226 - euclidean_distance: 0.7355
Epoch 18/300
57/57 [==============================] - 0s 859us/step - loss: 0.4925 - accuracy: 0.8435 - mae: 0.4925 - pearson_correlation: 0.5259 - euclidean_distance: 0.7275
Epoch 19/300
57/57 [==============================] - 0s 843us/step - loss: 0.4873 - accuracy: 0.8302 - mae: 0.4873 - pearson_correlation: 0.5174 - euclidean_distance: 0.7207
Epoch 20/300
57/57 [==============================] - 0s 866us/step - loss: 0.4831 - accuracy: 0.8364 - mae: 0.4831 - pearson_correlation: 0.5209 - euclidean_distance: 0.7149
Epoch 21/300
57/57 [==============================] - 0s 849us/step - loss: 0.4764 - accuracy: 0.8338 - mae: 0.4764 - pearson_correlation: 0.5256 - euclidean_distance: 0.7055
Epoch 22/300
57/57 [==============================] - 0s 845us/step - loss: 0.4710 - accuracy: 0.8426 - mae: 0.4710 - pearson_correlation: 0.5270 - euclidean_distance: 0.6982
Epoch 23/300
57/57 [==============================] - 0s 861us/step - loss: 0.4661 - accuracy: 0.8342 - mae: 0.4661 - pearson_correlation: 0.5252 - euclidean_distance: 0.6924
Epoch 24/300
57/57 [==============================] - 0s 854us/step - loss: 0.4612 - accuracy: 0.8417 - mae: 0.4612 - pearson_correlation: 0.5185 - euclidean_distance: 0.6857
Epoch 25/300
57/57 [==============================] - 0s 857us/step - loss: 0.4556 - accuracy: 0.8395 - mae: 0.4556 - pearson_correlation: 0.5286 - euclidean_distance: 0.6779
Epoch 26/300
57/57 [==============================] - 0s 851us/step - loss: 0.4498 - accuracy: 0.8422 - mae: 0.4498 - pearson_correlation: 0.5254 - euclidean_distance: 0.6700
Epoch 27/300
57/57 [==============================] - 0s 848us/step - loss: 0.4453 - accuracy: 0.8351 - mae: 0.4453 - pearson_correlation: 0.5229 - euclidean_distance: 0.6638
Epoch 28/300
57/57 [==============================] - 0s 849us/step - loss: 0.4406 - accuracy: 0.8369 - mae: 0.4406 - pearson_correlation: 0.5193 - euclidean_distance: 0.6583
Epoch 29/300
57/57 [==============================] - 0s 847us/step - loss: 0.4349 - accuracy: 0.8377 - mae: 0.4349 - pearson_correlation: 0.5226 - euclidean_distance: 0.6496
Epoch 30/300
57/57 [==============================] - 0s 842us/step - loss: 0.4296 - accuracy: 0.8391 - mae: 0.4296 - pearson_correlation: 0.5183 - euclidean_distance: 0.6421
Epoch 31/300
57/57 [==============================] - 0s 853us/step - loss: 0.4233 - accuracy: 0.8395 - mae: 0.4233 - pearson_correlation: 0.5189 - euclidean_distance: 0.6347
Epoch 32/300
57/57 [==============================] - 0s 849us/step - loss: 0.4177 - accuracy: 0.8351 - mae: 0.4177 - pearson_correlation: 0.5192 - euclidean_distance: 0.6267
Epoch 33/300
57/57 [==============================] - 0s 867us/step - loss: 0.4135 - accuracy: 0.8417 - mae: 0.4135 - pearson_correlation: 0.5222 - euclidean_distance: 0.6200
Epoch 34/300
57/57 [==============================] - 0s 851us/step - loss: 0.4087 - accuracy: 0.8342 - mae: 0.4087 - pearson_correlation: 0.5197 - euclidean_distance: 0.6142
Epoch 35/300
57/57 [==============================] - 0s 851us/step - loss: 0.4029 - accuracy: 0.8333 - mae: 0.4029 - pearson_correlation: 0.5203 - euclidean_distance: 0.6067
Epoch 36/300
57/57 [==============================] - 0s 858us/step - loss: 0.3958 - accuracy: 0.8294 - mae: 0.3958 - pearson_correlation: 0.5156 - euclidean_distance: 0.5979
Epoch 37/300
57/57 [==============================] - 0s 842us/step - loss: 0.3919 - accuracy: 0.8316 - mae: 0.3919 - pearson_correlation: 0.5165 - euclidean_distance: 0.5915
Epoch 38/300
57/57 [==============================] - 0s 850us/step - loss: 0.3867 - accuracy: 0.8254 - mae: 0.3867 - pearson_correlation: 0.5134 - euclidean_distance: 0.5848
Epoch 39/300
57/57 [==============================] - 0s 860us/step - loss: 0.3801 - accuracy: 0.8333 - mae: 0.3801 - pearson_correlation: 0.5129 - euclidean_distance: 0.5751
Epoch 40/300
57/57 [==============================] - 0s 858us/step - loss: 0.3770 - accuracy: 0.8342 - mae: 0.3770 - pearson_correlation: 0.5172 - euclidean_distance: 0.5705
Epoch 41/300
57/57 [==============================] - 0s 848us/step - loss: 0.3704 - accuracy: 0.8311 - mae: 0.3704 - pearson_correlation: 0.5112 - euclidean_distance: 0.5618
Epoch 42/300
57/57 [==============================] - 0s 844us/step - loss: 0.3666 - accuracy: 0.8263 - mae: 0.3666 - pearson_correlation: 0.5107 - euclidean_distance: 0.5571
Epoch 43/300
57/57 [==============================] - 0s 841us/step - loss: 0.3616 - accuracy: 0.8280 - mae: 0.3616 - pearson_correlation: 0.5034 - euclidean_distance: 0.5503
Epoch 44/300
57/57 [==============================] - 0s 859us/step - loss: 0.3550 - accuracy: 0.8285 - mae: 0.3550 - pearson_correlation: 0.5061 - euclidean_distance: 0.5413
Epoch 45/300
57/57 [==============================] - 0s 862us/step - loss: 0.3523 - accuracy: 0.8175 - mae: 0.3523 - pearson_correlation: 0.5081 - euclidean_distance: 0.5374
Epoch 46/300
57/57 [==============================] - 0s 843us/step - loss: 0.3468 - accuracy: 0.8135 - mae: 0.3468 - pearson_correlation: 0.5013 - euclidean_distance: 0.5297
Epoch 47/300
57/57 [==============================] - 0s 841us/step - loss: 0.3411 - accuracy: 0.8104 - mae: 0.3411 - pearson_correlation: 0.5039 - euclidean_distance: 0.5218
Epoch 48/300
57/57 [==============================] - 0s 843us/step - loss: 0.3366 - accuracy: 0.8091 - mae: 0.3366 - pearson_correlation: 0.5042 - euclidean_distance: 0.5161
Epoch 49/300
57/57 [==============================] - 0s 855us/step - loss: 0.3324 - accuracy: 0.8082 - mae: 0.3324 - pearson_correlation: 0.5014 - euclidean_distance: 0.5097
Epoch 50/300
57/57 [==============================] - 0s 856us/step - loss: 0.3293 - accuracy: 0.8073 - mae: 0.3293 - pearson_correlation: 0.5012 - euclidean_distance: 0.5048
Epoch 51/300
57/57 [==============================] - 0s 836us/step - loss: 0.3253 - accuracy: 0.8069 - mae: 0.3253 - pearson_correlation: 0.4986 - euclidean_distance: 0.4995
Epoch 52/300
57/57 [==============================] - 0s 862us/step - loss: 0.3217 - accuracy: 0.8042 - mae: 0.3217 - pearson_correlation: 0.4954 - euclidean_distance: 0.4948
Epoch 53/300
57/57 [==============================] - 0s 867us/step - loss: 0.3166 - accuracy: 0.8078 - mae: 0.3166 - pearson_correlation: 0.4962 - euclidean_distance: 0.4876
Epoch 54/300
57/57 [==============================] - 0s 862us/step - loss: 0.3135 - accuracy: 0.8007 - mae: 0.3135 - pearson_correlation: 0.4951 - euclidean_distance: 0.4829
Epoch 55/300
57/57 [==============================] - 0s 858us/step - loss: 0.3088 - accuracy: 0.7945 - mae: 0.3088 - pearson_correlation: 0.4930 - euclidean_distance: 0.4767
Epoch 56/300
57/57 [==============================] - 0s 842us/step - loss: 0.3075 - accuracy: 0.7932 - mae: 0.3075 - pearson_correlation: 0.4892 - euclidean_distance: 0.4746
Epoch 57/300
57/57 [==============================] - 0s 856us/step - loss: 0.3017 - accuracy: 0.7866 - mae: 0.3017 - pearson_correlation: 0.4900 - euclidean_distance: 0.4672
Epoch 58/300
57/57 [==============================] - 0s 841us/step - loss: 0.2990 - accuracy: 0.7950 - mae: 0.2990 - pearson_correlation: 0.4910 - euclidean_distance: 0.4634
Epoch 59/300
57/57 [==============================] - 0s 855us/step - loss: 0.2959 - accuracy: 0.7875 - mae: 0.2959 - pearson_correlation: 0.4831 - euclidean_distance: 0.4588
Epoch 60/300
57/57 [==============================] - 0s 849us/step - loss: 0.2931 - accuracy: 0.7853 - mae: 0.2931 - pearson_correlation: 0.4866 - euclidean_distance: 0.4548
Epoch 61/300
57/57 [==============================] - 0s 836us/step - loss: 0.2891 - accuracy: 0.7844 - mae: 0.2891 - pearson_correlation: 0.4858 - euclidean_distance: 0.4493
Epoch 62/300
57/57 [==============================] - 0s 854us/step - loss: 0.2870 - accuracy: 0.7817 - mae: 0.2870 - pearson_correlation: 0.4818 - euclidean_distance: 0.4464
Epoch 63/300
57/57 [==============================] - 0s 851us/step - loss: 0.2834 - accuracy: 0.7866 - mae: 0.2834 - pearson_correlation: 0.4890 - euclidean_distance: 0.4408
Epoch 64/300
57/57 [==============================] - 0s 848us/step - loss: 0.2810 - accuracy: 0.7844 - mae: 0.2810 - pearson_correlation: 0.4835 - euclidean_distance: 0.4370
Epoch 65/300
57/57 [==============================] - 0s 862us/step - loss: 0.2775 - accuracy: 0.7826 - mae: 0.2775 - pearson_correlation: 0.4838 - euclidean_distance: 0.4324
Epoch 66/300
57/57 [==============================] - 0s 848us/step - loss: 0.2758 - accuracy: 0.7791 - mae: 0.2758 - pearson_correlation: 0.4843 - euclidean_distance: 0.4299
Epoch 67/300
57/57 [==============================] - 0s 851us/step - loss: 0.2724 - accuracy: 0.7800 - mae: 0.2724 - pearson_correlation: 0.4767 - euclidean_distance: 0.4252
Epoch 68/300
57/57 [==============================] - 0s 837us/step - loss: 0.2698 - accuracy: 0.7879 - mae: 0.2698 - pearson_correlation: 0.4837 - euclidean_distance: 0.4207
Epoch 69/300
57/57 [==============================] - 0s 856us/step - loss: 0.2679 - accuracy: 0.7756 - mae: 0.2679 - pearson_correlation: 0.4784 - euclidean_distance: 0.4190
Epoch 70/300
57/57 [==============================] - 0s 848us/step - loss: 0.2647 - accuracy: 0.7800 - mae: 0.2647 - pearson_correlation: 0.4773 - euclidean_distance: 0.4132
Epoch 71/300
57/57 [==============================] - 0s 852us/step - loss: 0.2613 - accuracy: 0.7778 - mae: 0.2613 - pearson_correlation: 0.4808 - euclidean_distance: 0.4092
Epoch 72/300
57/57 [==============================] - 0s 838us/step - loss: 0.2574 - accuracy: 0.7844 - mae: 0.2574 - pearson_correlation: 0.4766 - euclidean_distance: 0.4036
Epoch 73/300
57/57 [==============================] - 0s 853us/step - loss: 0.2568 - accuracy: 0.7773 - mae: 0.2568 - pearson_correlation: 0.4801 - euclidean_distance: 0.4028
Epoch 74/300
57/57 [==============================] - 0s 849us/step - loss: 0.2529 - accuracy: 0.7738 - mae: 0.2529 - pearson_correlation: 0.4775 - euclidean_distance: 0.3981
Epoch 75/300
57/57 [==============================] - 0s 855us/step - loss: 0.2485 - accuracy: 0.7914 - mae: 0.2485 - pearson_correlation: 0.4797 - euclidean_distance: 0.3915
Epoch 76/300
57/57 [==============================] - 0s 849us/step - loss: 0.2501 - accuracy: 0.7879 - mae: 0.2501 - pearson_correlation: 0.4748 - euclidean_distance: 0.3929
Epoch 77/300
57/57 [==============================] - 0s 854us/step - loss: 0.2464 - accuracy: 0.7778 - mae: 0.2464 - pearson_correlation: 0.4781 - euclidean_distance: 0.3876
Epoch 78/300
57/57 [==============================] - 0s 862us/step - loss: 0.2446 - accuracy: 0.7809 - mae: 0.2446 - pearson_correlation: 0.4726 - euclidean_distance: 0.3859
Epoch 79/300
57/57 [==============================] - 0s 849us/step - loss: 0.2406 - accuracy: 0.7862 - mae: 0.2406 - pearson_correlation: 0.4800 - euclidean_distance: 0.3791
Epoch 80/300
57/57 [==============================] - 0s 846us/step - loss: 0.2384 - accuracy: 0.7773 - mae: 0.2384 - pearson_correlation: 0.4786 - euclidean_distance: 0.3770
Epoch 81/300
57/57 [==============================] - 0s 863us/step - loss: 0.2406 - accuracy: 0.7804 - mae: 0.2406 - pearson_correlation: 0.4760 - euclidean_distance: 0.3793
Epoch 82/300
57/57 [==============================] - 0s 845us/step - loss: 0.2344 - accuracy: 0.7809 - mae: 0.2344 - pearson_correlation: 0.4762 - euclidean_distance: 0.3711
Epoch 83/300
57/57 [==============================] - 0s 842us/step - loss: 0.2336 - accuracy: 0.7778 - mae: 0.2336 - pearson_correlation: 0.4749 - euclidean_distance: 0.3692
Epoch 84/300
57/57 [==============================] - 0s 849us/step - loss: 0.2307 - accuracy: 0.7844 - mae: 0.2307 - pearson_correlation: 0.4812 - euclidean_distance: 0.3657
Epoch 85/300
57/57 [==============================] - 0s 852us/step - loss: 0.2308 - accuracy: 0.7822 - mae: 0.2308 - pearson_correlation: 0.4640 - euclidean_distance: 0.3666
Epoch 86/300
57/57 [==============================] - 0s 836us/step - loss: 0.2258 - accuracy: 0.7822 - mae: 0.2258 - pearson_correlation: 0.4780 - euclidean_distance: 0.3593
Epoch 87/300
57/57 [==============================] - 0s 843us/step - loss: 0.2253 - accuracy: 0.7862 - mae: 0.2253 - pearson_correlation: 0.4797 - euclidean_distance: 0.3582
Epoch 88/300
57/57 [==============================] - 0s 848us/step - loss: 0.2249 - accuracy: 0.7822 - mae: 0.2249 - pearson_correlation: 0.4757 - euclidean_distance: 0.3572
Epoch 89/300
57/57 [==============================] - 0s 841us/step - loss: 0.2225 - accuracy: 0.7835 - mae: 0.2225 - pearson_correlation: 0.4741 - euclidean_distance: 0.3533
Epoch 90/300
57/57 [==============================] - 0s 850us/step - loss: 0.2208 - accuracy: 0.7817 - mae: 0.2208 - pearson_correlation: 0.4770 - euclidean_distance: 0.3516
Epoch 91/300
57/57 [==============================] - 0s 843us/step - loss: 0.2209 - accuracy: 0.7795 - mae: 0.2209 - pearson_correlation: 0.4789 - euclidean_distance: 0.3517
Epoch 92/300
57/57 [==============================] - 0s 840us/step - loss: 0.2159 - accuracy: 0.7773 - mae: 0.2159 - pearson_correlation: 0.4760 - euclidean_distance: 0.3445
Epoch 93/300
57/57 [==============================] - 0s 848us/step - loss: 0.2138 - accuracy: 0.7844 - mae: 0.2138 - pearson_correlation: 0.4794 - euclidean_distance: 0.3411
Epoch 94/300
57/57 [==============================] - 0s 845us/step - loss: 0.2141 - accuracy: 0.7870 - mae: 0.2141 - pearson_correlation: 0.4788 - euclidean_distance: 0.3412
Epoch 95/300
57/57 [==============================] - 0s 842us/step - loss: 0.2107 - accuracy: 0.7892 - mae: 0.2107 - pearson_correlation: 0.4787 - euclidean_distance: 0.3369
Epoch 96/300
57/57 [==============================] - 0s 849us/step - loss: 0.2107 - accuracy: 0.7879 - mae: 0.2107 - pearson_correlation: 0.4764 - euclidean_distance: 0.3372
Epoch 97/300
57/57 [==============================] - 0s 843us/step - loss: 0.2082 - accuracy: 0.7897 - mae: 0.2082 - pearson_correlation: 0.4806 - euclidean_distance: 0.3334
Epoch 98/300
57/57 [==============================] - 0s 863us/step - loss: 0.2094 - accuracy: 0.7941 - mae: 0.2094 - pearson_correlation: 0.4773 - euclidean_distance: 0.3348
Epoch 99/300
57/57 [==============================] - 0s 848us/step - loss: 0.2050 - accuracy: 0.7923 - mae: 0.2050 - pearson_correlation: 0.4822 - euclidean_distance: 0.3286
Epoch 100/300
57/57 [==============================] - 0s 845us/step - loss: 0.2028 - accuracy: 0.7976 - mae: 0.2028 - pearson_correlation: 0.4840 - euclidean_distance: 0.3248
Epoch 101/300
57/57 [==============================] - 0s 842us/step - loss: 0.2019 - accuracy: 0.7972 - mae: 0.2019 - pearson_correlation: 0.4860 - euclidean_distance: 0.3234
Epoch 102/300
57/57 [==============================] - 0s 848us/step - loss: 0.2006 - accuracy: 0.7989 - mae: 0.2006 - pearson_correlation: 0.4898 - euclidean_distance: 0.3224
Epoch 103/300
57/57 [==============================] - 0s 839us/step - loss: 0.1996 - accuracy: 0.7959 - mae: 0.1996 - pearson_correlation: 0.4858 - euclidean_distance: 0.3204
Epoch 104/300
57/57 [==============================] - 0s 862us/step - loss: 0.1993 - accuracy: 0.7945 - mae: 0.1993 - pearson_correlation: 0.4850 - euclidean_distance: 0.3196
Epoch 105/300
57/57 [==============================] - 0s 846us/step - loss: 0.1972 - accuracy: 0.7976 - mae: 0.1972 - pearson_correlation: 0.4860 - euclidean_distance: 0.3164
Epoch 106/300
57/57 [==============================] - 0s 845us/step - loss: 0.1979 - accuracy: 0.8034 - mae: 0.1979 - pearson_correlation: 0.4903 - euclidean_distance: 0.3170
Epoch 107/300
57/57 [==============================] - 0s 846us/step - loss: 0.1979 - accuracy: 0.7967 - mae: 0.1979 - pearson_correlation: 0.4854 - euclidean_distance: 0.3169
Epoch 108/300
57/57 [==============================] - 0s 837us/step - loss: 0.1926 - accuracy: 0.7967 - mae: 0.1926 - pearson_correlation: 0.4854 - euclidean_distance: 0.3102
Epoch 109/300
57/57 [==============================] - 0s 846us/step - loss: 0.1936 - accuracy: 0.7963 - mae: 0.1936 - pearson_correlation: 0.4885 - euclidean_distance: 0.3106
Epoch 110/300
57/57 [==============================] - 0s 863us/step - loss: 0.1928 - accuracy: 0.8011 - mae: 0.1928 - pearson_correlation: 0.4955 - euclidean_distance: 0.3093
Epoch 111/300
57/57 [==============================] - 0s 846us/step - loss: 0.1900 - accuracy: 0.8047 - mae: 0.1900 - pearson_correlation: 0.4938 - euclidean_distance: 0.3058
Epoch 112/300
57/57 [==============================] - 0s 845us/step - loss: 0.1904 - accuracy: 0.8011 - mae: 0.1904 - pearson_correlation: 0.4920 - euclidean_distance: 0.3060
Epoch 113/300
57/57 [==============================] - 0s 846us/step - loss: 0.1888 - accuracy: 0.8020 - mae: 0.1888 - pearson_correlation: 0.4967 - euclidean_distance: 0.3040
Epoch 114/300
57/57 [==============================] - 0s 858us/step - loss: 0.1889 - accuracy: 0.8100 - mae: 0.1889 - pearson_correlation: 0.4976 - euclidean_distance: 0.3032
Epoch 115/300
57/57 [==============================] - 0s 850us/step - loss: 0.1846 - accuracy: 0.8064 - mae: 0.1846 - pearson_correlation: 0.4980 - euclidean_distance: 0.2972
Epoch 116/300
57/57 [==============================] - 0s 855us/step - loss: 0.1839 - accuracy: 0.8011 - mae: 0.1839 - pearson_correlation: 0.4959 - euclidean_distance: 0.2964
Epoch 117/300
57/57 [==============================] - 0s 843us/step - loss: 0.1856 - accuracy: 0.8073 - mae: 0.1856 - pearson_correlation: 0.5030 - euclidean_distance: 0.2981
Epoch 118/300
57/57 [==============================] - 0s 862us/step - loss: 0.1829 - accuracy: 0.8069 - mae: 0.1829 - pearson_correlation: 0.5031 - euclidean_distance: 0.2943
Epoch 119/300
57/57 [==============================] - 0s 855us/step - loss: 0.1824 - accuracy: 0.8108 - mae: 0.1824 - pearson_correlation: 0.5047 - euclidean_distance: 0.2936
Epoch 120/300
57/57 [==============================] - 0s 844us/step - loss: 0.1795 - accuracy: 0.8135 - mae: 0.1795 - pearson_correlation: 0.5065 - euclidean_distance: 0.2885
Epoch 121/300
57/57 [==============================] - 0s 849us/step - loss: 0.1813 - accuracy: 0.8082 - mae: 0.1813 - pearson_correlation: 0.5009 - euclidean_distance: 0.2913
Epoch 122/300
57/57 [==============================] - 0s 844us/step - loss: 0.1796 - accuracy: 0.8122 - mae: 0.1796 - pearson_correlation: 0.5045 - euclidean_distance: 0.2893
Epoch 123/300
57/57 [==============================] - 0s 870us/step - loss: 0.1779 - accuracy: 0.8183 - mae: 0.1779 - pearson_correlation: 0.5114 - euclidean_distance: 0.2865
Epoch 124/300
57/57 [==============================] - 0s 859us/step - loss: 0.1764 - accuracy: 0.8192 - mae: 0.1764 - pearson_correlation: 0.5121 - euclidean_distance: 0.2836
Epoch 125/300
57/57 [==============================] - 0s 842us/step - loss: 0.1761 - accuracy: 0.8175 - mae: 0.1761 - pearson_correlation: 0.5116 - euclidean_distance: 0.2831
Epoch 126/300
57/57 [==============================] - 0s 858us/step - loss: 0.1752 - accuracy: 0.8214 - mae: 0.1752 - pearson_correlation: 0.5168 - euclidean_distance: 0.2819
Epoch 127/300
57/57 [==============================] - 0s 845us/step - loss: 0.1751 - accuracy: 0.8153 - mae: 0.1751 - pearson_correlation: 0.5120 - euclidean_distance: 0.2817
Epoch 128/300
57/57 [==============================] - 0s 850us/step - loss: 0.1767 - accuracy: 0.8214 - mae: 0.1767 - pearson_correlation: 0.5195 - euclidean_distance: 0.2838
Epoch 129/300
57/57 [==============================] - 0s 844us/step - loss: 0.1710 - accuracy: 0.8241 - mae: 0.1710 - pearson_correlation: 0.5205 - euclidean_distance: 0.2755
Epoch 130/300
57/57 [==============================] - 0s 851us/step - loss: 0.1723 - accuracy: 0.8267 - mae: 0.1723 - pearson_correlation: 0.5221 - euclidean_distance: 0.2775
Epoch 131/300
57/57 [==============================] - 0s 856us/step - loss: 0.1707 - accuracy: 0.8276 - mae: 0.1707 - pearson_correlation: 0.5222 - euclidean_distance: 0.2744
Epoch 132/300
57/57 [==============================] - 0s 837us/step - loss: 0.1705 - accuracy: 0.8298 - mae: 0.1705 - pearson_correlation: 0.5248 - euclidean_distance: 0.2739
Epoch 133/300
57/57 [==============================] - 0s 840us/step - loss: 0.1694 - accuracy: 0.8258 - mae: 0.1694 - pearson_correlation: 0.5291 - euclidean_distance: 0.2721
Epoch 134/300
57/57 [==============================] - 0s 857us/step - loss: 0.1684 - accuracy: 0.8241 - mae: 0.1684 - pearson_correlation: 0.5229 - euclidean_distance: 0.2717
Epoch 135/300
57/57 [==============================] - 0s 847us/step - loss: 0.1652 - accuracy: 0.8342 - mae: 0.1652 - pearson_correlation: 0.5352 - euclidean_distance: 0.2660
Epoch 136/300
57/57 [==============================] - 0s 844us/step - loss: 0.1664 - accuracy: 0.8316 - mae: 0.1664 - pearson_correlation: 0.5326 - euclidean_distance: 0.2681
Epoch 137/300
57/57 [==============================] - 0s 842us/step - loss: 0.1663 - accuracy: 0.8333 - mae: 0.1663 - pearson_correlation: 0.5360 - euclidean_distance: 0.2670
Epoch 138/300
57/57 [==============================] - 0s 852us/step - loss: 0.1617 - accuracy: 0.8360 - mae: 0.1617 - pearson_correlation: 0.5370 - euclidean_distance: 0.2602
Epoch 139/300
57/57 [==============================] - 0s 840us/step - loss: 0.1621 - accuracy: 0.8311 - mae: 0.1621 - pearson_correlation: 0.5378 - euclidean_distance: 0.2616
Epoch 140/300
57/57 [==============================] - 0s 843us/step - loss: 0.1645 - accuracy: 0.8364 - mae: 0.1645 - pearson_correlation: 0.5425 - euclidean_distance: 0.2643
Epoch 141/300
57/57 [==============================] - 0s 843us/step - loss: 0.1601 - accuracy: 0.8408 - mae: 0.1601 - pearson_correlation: 0.5430 - euclidean_distance: 0.2581
Epoch 142/300
57/57 [==============================] - 0s 845us/step - loss: 0.1602 - accuracy: 0.8360 - mae: 0.1602 - pearson_correlation: 0.5418 - euclidean_distance: 0.2578
Epoch 143/300
57/57 [==============================] - 0s 841us/step - loss: 0.1610 - accuracy: 0.8373 - mae: 0.1610 - pearson_correlation: 0.5415 - euclidean_distance: 0.2596
Epoch 144/300
57/57 [==============================] - 0s 847us/step - loss: 0.1592 - accuracy: 0.8404 - mae: 0.1592 - pearson_correlation: 0.5459 - euclidean_distance: 0.2558
Epoch 145/300
57/57 [==============================] - 0s 860us/step - loss: 0.1599 - accuracy: 0.8448 - mae: 0.1599 - pearson_correlation: 0.5489 - euclidean_distance: 0.2569
Epoch 146/300
57/57 [==============================] - 0s 845us/step - loss: 0.1592 - accuracy: 0.8457 - mae: 0.1592 - pearson_correlation: 0.5456 - euclidean_distance: 0.2562
Epoch 147/300
57/57 [==============================] - 0s 841us/step - loss: 0.1569 - accuracy: 0.8408 - mae: 0.1569 - pearson_correlation: 0.5482 - euclidean_distance: 0.2524
Epoch 148/300
57/57 [==============================] - 0s 844us/step - loss: 0.1561 - accuracy: 0.8404 - mae: 0.1561 - pearson_correlation: 0.5546 - euclidean_distance: 0.2518
Epoch 149/300
57/57 [==============================] - 0s 839us/step - loss: 0.1571 - accuracy: 0.8466 - mae: 0.1571 - pearson_correlation: 0.5521 - euclidean_distance: 0.2530
Epoch 150/300
57/57 [==============================] - 0s 849us/step - loss: 0.1534 - accuracy: 0.8501 - mae: 0.1534 - pearson_correlation: 0.5630 - euclidean_distance: 0.2468
Epoch 151/300
57/57 [==============================] - 0s 848us/step - loss: 0.1523 - accuracy: 0.8452 - mae: 0.1523 - pearson_correlation: 0.5618 - euclidean_distance: 0.2452
Epoch 152/300
57/57 [==============================] - 0s 841us/step - loss: 0.1557 - accuracy: 0.8461 - mae: 0.1557 - pearson_correlation: 0.5571 - euclidean_distance: 0.2497
Epoch 153/300
57/57 [==============================] - 0s 836us/step - loss: 0.1544 - accuracy: 0.8501 - mae: 0.1544 - pearson_correlation: 0.5583 - euclidean_distance: 0.2478
Epoch 154/300
57/57 [==============================] - 0s 843us/step - loss: 0.1530 - accuracy: 0.8466 - mae: 0.1530 - pearson_correlation: 0.5598 - euclidean_distance: 0.2471
Epoch 155/300
57/57 [==============================] - 0s 850us/step - loss: 0.1515 - accuracy: 0.8474 - mae: 0.1515 - pearson_correlation: 0.5714 - euclidean_distance: 0.2439
Epoch 156/300
57/57 [==============================] - 0s 853us/step - loss: 0.1513 - accuracy: 0.8585 - mae: 0.1513 - pearson_correlation: 0.5638 - euclidean_distance: 0.2436
Epoch 157/300
57/57 [==============================] - 0s 851us/step - loss: 0.1513 - accuracy: 0.8527 - mae: 0.1513 - pearson_correlation: 0.5655 - euclidean_distance: 0.2436
Epoch 158/300
57/57 [==============================] - 0s 848us/step - loss: 0.1491 - accuracy: 0.8541 - mae: 0.1491 - pearson_correlation: 0.5687 - euclidean_distance: 0.2399
Epoch 159/300
57/57 [==============================] - 0s 848us/step - loss: 0.1495 - accuracy: 0.8598 - mae: 0.1495 - pearson_correlation: 0.5703 - euclidean_distance: 0.2399
Epoch 160/300
57/57 [==============================] - 0s 847us/step - loss: 0.1458 - accuracy: 0.8598 - mae: 0.1458 - pearson_correlation: 0.5791 - euclidean_distance: 0.2349
Epoch 161/300
57/57 [==============================] - 0s 849us/step - loss: 0.1496 - accuracy: 0.8642 - mae: 0.1496 - pearson_correlation: 0.5710 - euclidean_distance: 0.2401
Epoch 162/300
57/57 [==============================] - 0s 849us/step - loss: 0.1470 - accuracy: 0.8651 - mae: 0.1470 - pearson_correlation: 0.5796 - euclidean_distance: 0.2368
Epoch 163/300
57/57 [==============================] - 0s 846us/step - loss: 0.1465 - accuracy: 0.8607 - mae: 0.1465 - pearson_correlation: 0.5793 - euclidean_distance: 0.2351
Epoch 164/300
57/57 [==============================] - 0s 865us/step - loss: 0.1470 - accuracy: 0.8633 - mae: 0.1470 - pearson_correlation: 0.5775 - euclidean_distance: 0.2366
Epoch 165/300
57/57 [==============================] - 0s 846us/step - loss: 0.1427 - accuracy: 0.8686 - mae: 0.1427 - pearson_correlation: 0.5901 - euclidean_distance: 0.2296
Epoch 166/300
57/57 [==============================] - 0s 853us/step - loss: 0.1437 - accuracy: 0.8655 - mae: 0.1437 - pearson_correlation: 0.5870 - euclidean_distance: 0.2311
Epoch 167/300
57/57 [==============================] - 0s 853us/step - loss: 0.1425 - accuracy: 0.8730 - mae: 0.1425 - pearson_correlation: 0.5933 - euclidean_distance: 0.2287
Epoch 168/300
57/57 [==============================] - 0s 908us/step - loss: 0.1436 - accuracy: 0.8743 - mae: 0.1436 - pearson_correlation: 0.5941 - euclidean_distance: 0.2310
Epoch 169/300
57/57 [==============================] - 0s 876us/step - loss: 0.1435 - accuracy: 0.8695 - mae: 0.1435 - pearson_correlation: 0.5923 - euclidean_distance: 0.2312
Epoch 170/300
57/57 [==============================] - 0s 853us/step - loss: 0.1417 - accuracy: 0.8730 - mae: 0.1417 - pearson_correlation: 0.5925 - euclidean_distance: 0.2277
Epoch 171/300
57/57 [==============================] - 0s 857us/step - loss: 0.1405 - accuracy: 0.8735 - mae: 0.1405 - pearson_correlation: 0.5918 - euclidean_distance: 0.2264
Epoch 172/300
57/57 [==============================] - 0s 854us/step - loss: 0.1386 - accuracy: 0.8743 - mae: 0.1386 - pearson_correlation: 0.6033 - euclidean_distance: 0.2234
Epoch 173/300
57/57 [==============================] - 0s 843us/step - loss: 0.1393 - accuracy: 0.8748 - mae: 0.1393 - pearson_correlation: 0.5983 - euclidean_distance: 0.2244
Epoch 174/300
57/57 [==============================] - 0s 852us/step - loss: 0.1390 - accuracy: 0.8770 - mae: 0.1390 - pearson_correlation: 0.6021 - euclidean_distance: 0.2231
Epoch 175/300
57/57 [==============================] - 0s 847us/step - loss: 0.1369 - accuracy: 0.8832 - mae: 0.1369 - pearson_correlation: 0.6107 - euclidean_distance: 0.2194
Epoch 176/300
57/57 [==============================] - 0s 848us/step - loss: 0.1381 - accuracy: 0.8840 - mae: 0.1381 - pearson_correlation: 0.6081 - euclidean_distance: 0.2215
Epoch 177/300
57/57 [==============================] - 0s 836us/step - loss: 0.1351 - accuracy: 0.8832 - mae: 0.1351 - pearson_correlation: 0.6077 - euclidean_distance: 0.2173
Epoch 178/300
57/57 [==============================] - 0s 852us/step - loss: 0.1370 - accuracy: 0.8823 - mae: 0.1370 - pearson_correlation: 0.6060 - euclidean_distance: 0.2206
Epoch 179/300
57/57 [==============================] - 0s 844us/step - loss: 0.1348 - accuracy: 0.8937 - mae: 0.1348 - pearson_correlation: 0.6114 - euclidean_distance: 0.2169
Epoch 180/300
57/57 [==============================] - 0s 906us/step - loss: 0.1338 - accuracy: 0.8858 - mae: 0.1338 - pearson_correlation: 0.6107 - euclidean_distance: 0.2150
Epoch 181/300
57/57 [==============================] - 0s 870us/step - loss: 0.1360 - accuracy: 0.8911 - mae: 0.1360 - pearson_correlation: 0.6079 - euclidean_distance: 0.2190
Epoch 182/300
57/57 [==============================] - 0s 848us/step - loss: 0.1341 - accuracy: 0.8924 - mae: 0.1341 - pearson_correlation: 0.6145 - euclidean_distance: 0.2156
Epoch 183/300
57/57 [==============================] - 0s 839us/step - loss: 0.1346 - accuracy: 0.8902 - mae: 0.1346 - pearson_correlation: 0.6183 - euclidean_distance: 0.2158
Epoch 184/300
57/57 [==============================] - 0s 850us/step - loss: 0.1325 - accuracy: 0.9012 - mae: 0.1325 - pearson_correlation: 0.6204 - euclidean_distance: 0.2127
Epoch 185/300
57/57 [==============================] - 0s 849us/step - loss: 0.1337 - accuracy: 0.9004 - mae: 0.1337 - pearson_correlation: 0.6175 - euclidean_distance: 0.2148
Epoch 186/300
57/57 [==============================] - 0s 847us/step - loss: 0.1305 - accuracy: 0.8981 - mae: 0.1305 - pearson_correlation: 0.6217 - euclidean_distance: 0.2104
Epoch 187/300
57/57 [==============================] - 0s 849us/step - loss: 0.1347 - accuracy: 0.9012 - mae: 0.1347 - pearson_correlation: 0.6156 - euclidean_distance: 0.2154
Epoch 188/300
57/57 [==============================] - 0s 939us/step - loss: 0.1318 - accuracy: 0.8999 - mae: 0.1318 - pearson_correlation: 0.6227 - euclidean_distance: 0.2119
Epoch 189/300
57/57 [==============================] - 0s 968us/step - loss: 0.1298 - accuracy: 0.8986 - mae: 0.1298 - pearson_correlation: 0.6276 - euclidean_distance: 0.2086
Epoch 190/300
57/57 [==============================] - 0s 957us/step - loss: 0.1303 - accuracy: 0.9034 - mae: 0.1303 - pearson_correlation: 0.6259 - euclidean_distance: 0.2094
Epoch 191/300
57/57 [==============================] - 0s 954us/step - loss: 0.1301 - accuracy: 0.9034 - mae: 0.1301 - pearson_correlation: 0.6317 - euclidean_distance: 0.2086
Epoch 192/300
57/57 [==============================] - 0s 959us/step - loss: 0.1301 - accuracy: 0.9153 - mae: 0.1301 - pearson_correlation: 0.6335 - euclidean_distance: 0.2089
Epoch 193/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1271 - accuracy: 0.9127 - mae: 0.1271 - pearson_correlation: 0.6376 - euclidean_distance: 0.2046
Epoch 194/300
57/57 [==============================] - 0s 984us/step - loss: 0.1283 - accuracy: 0.9118 - mae: 0.1283 - pearson_correlation: 0.6355 - euclidean_distance: 0.2065
Epoch 195/300
57/57 [==============================] - 0s 970us/step - loss: 0.1291 - accuracy: 0.9127 - mae: 0.1291 - pearson_correlation: 0.6334 - euclidean_distance: 0.2073
Epoch 196/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1265 - accuracy: 0.9167 - mae: 0.1265 - pearson_correlation: 0.6423 - euclidean_distance: 0.2027
Epoch 197/300
57/57 [==============================] - 0s 1ms/step - loss: 0.1260 - accuracy: 0.9162 - mae: 0.1260 - pearson_correlation: 0.6461 - euclidean_distance: 0.2026
Epoch 198/300
57/57 [==============================] - 0s 892us/step - loss: 0.1263 - accuracy: 0.9184 - mae: 0.1263 - pearson_correlation: 0.6421 - euclidean_distance: 0.2024
Epoch 199/300
57/57 [==============================] - 0s 860us/step - loss: 0.1260 - accuracy: 0.9224 - mae: 0.1260 - pearson_correlation: 0.6410 - euclidean_distance: 0.2024
Epoch 200/300
57/57 [==============================] - 0s 868us/step - loss: 0.1264 - accuracy: 0.9246 - mae: 0.1264 - pearson_correlation: 0.6439 - euclidean_distance: 0.2029
Epoch 201/300
57/57 [==============================] - 0s 864us/step - loss: 0.1236 - accuracy: 0.9206 - mae: 0.1236 - pearson_correlation: 0.6465 - euclidean_distance: 0.1988
Epoch 202/300
57/57 [==============================] - 0s 868us/step - loss: 0.1251 - accuracy: 0.9255 - mae: 0.1251 - pearson_correlation: 0.6457 - euclidean_distance: 0.2010
Epoch 203/300
57/57 [==============================] - 0s 866us/step - loss: 0.1237 - accuracy: 0.9250 - mae: 0.1237 - pearson_correlation: 0.6501 - euclidean_distance: 0.1985
Epoch 204/300
57/57 [==============================] - 0s 869us/step - loss: 0.1242 - accuracy: 0.9295 - mae: 0.1242 - pearson_correlation: 0.6442 - euclidean_distance: 0.2000
Epoch 205/300
57/57 [==============================] - 0s 867us/step - loss: 0.1252 - accuracy: 0.9242 - mae: 0.1252 - pearson_correlation: 0.6487 - euclidean_distance: 0.1999
Epoch 206/300
57/57 [==============================] - 0s 853us/step - loss: 0.1195 - accuracy: 0.9290 - mae: 0.1195 - pearson_correlation: 0.6579 - euclidean_distance: 0.1921
Epoch 207/300
57/57 [==============================] - 0s 851us/step - loss: 0.1214 - accuracy: 0.9268 - mae: 0.1214 - pearson_correlation: 0.6544 - euclidean_distance: 0.1954
Epoch 208/300
57/57 [==============================] - 0s 859us/step - loss: 0.1214 - accuracy: 0.9312 - mae: 0.1214 - pearson_correlation: 0.6541 - euclidean_distance: 0.1944
Epoch 209/300
57/57 [==============================] - 0s 868us/step - loss: 0.1215 - accuracy: 0.9303 - mae: 0.1215 - pearson_correlation: 0.6530 - euclidean_distance: 0.1954
Epoch 210/300
57/57 [==============================] - 0s 846us/step - loss: 0.1212 - accuracy: 0.9330 - mae: 0.1212 - pearson_correlation: 0.6567 - euclidean_distance: 0.1940
Epoch 211/300
57/57 [==============================] - 0s 854us/step - loss: 0.1207 - accuracy: 0.9325 - mae: 0.1207 - pearson_correlation: 0.6565 - euclidean_distance: 0.1936
Epoch 212/300
57/57 [==============================] - 0s 855us/step - loss: 0.1207 - accuracy: 0.9330 - mae: 0.1207 - pearson_correlation: 0.6609 - euclidean_distance: 0.1938
Epoch 213/300
57/57 [==============================] - 0s 845us/step - loss: 0.1192 - accuracy: 0.9277 - mae: 0.1192 - pearson_correlation: 0.6614 - euclidean_distance: 0.1920
Epoch 214/300
57/57 [==============================] - 0s 853us/step - loss: 0.1212 - accuracy: 0.9356 - mae: 0.1212 - pearson_correlation: 0.6622 - euclidean_distance: 0.1936
Epoch 215/300
57/57 [==============================] - 0s 849us/step - loss: 0.1197 - accuracy: 0.9312 - mae: 0.1197 - pearson_correlation: 0.6621 - euclidean_distance: 0.1920
Epoch 216/300
57/57 [==============================] - 0s 850us/step - loss: 0.1181 - accuracy: 0.9356 - mae: 0.1181 - pearson_correlation: 0.6677 - euclidean_distance: 0.1897
Epoch 217/300
57/57 [==============================] - 0s 867us/step - loss: 0.1174 - accuracy: 0.9400 - mae: 0.1174 - pearson_correlation: 0.6698 - euclidean_distance: 0.1884
Epoch 218/300
57/57 [==============================] - 0s 849us/step - loss: 0.1174 - accuracy: 0.9374 - mae: 0.1174 - pearson_correlation: 0.6645 - euclidean_distance: 0.1886
Epoch 219/300
57/57 [==============================] - 0s 858us/step - loss: 0.1157 - accuracy: 0.9392 - mae: 0.1157 - pearson_correlation: 0.6719 - euclidean_distance: 0.1862
Epoch 220/300
57/57 [==============================] - 0s 843us/step - loss: 0.1155 - accuracy: 0.9414 - mae: 0.1155 - pearson_correlation: 0.6705 - euclidean_distance: 0.1854
Epoch 221/300
57/57 [==============================] - 0s 845us/step - loss: 0.1175 - accuracy: 0.9352 - mae: 0.1175 - pearson_correlation: 0.6675 - euclidean_distance: 0.1891
Epoch 222/300
57/57 [==============================] - 0s 849us/step - loss: 0.1143 - accuracy: 0.9409 - mae: 0.1143 - pearson_correlation: 0.6789 - euclidean_distance: 0.1832
Epoch 223/300
57/57 [==============================] - 0s 858us/step - loss: 0.1152 - accuracy: 0.9414 - mae: 0.1152 - pearson_correlation: 0.6734 - euclidean_distance: 0.1852
Epoch 224/300
57/57 [==============================] - 0s 843us/step - loss: 0.1172 - accuracy: 0.9383 - mae: 0.1172 - pearson_correlation: 0.6698 - euclidean_distance: 0.1878
Epoch 225/300
57/57 [==============================] - 0s 848us/step - loss: 0.1155 - accuracy: 0.9414 - mae: 0.1155 - pearson_correlation: 0.6728 - euclidean_distance: 0.1863
Epoch 226/300
57/57 [==============================] - 0s 850us/step - loss: 0.1157 - accuracy: 0.9396 - mae: 0.1157 - pearson_correlation: 0.6762 - euclidean_distance: 0.1859
Epoch 227/300
57/57 [==============================] - 0s 848us/step - loss: 0.1146 - accuracy: 0.9436 - mae: 0.1146 - pearson_correlation: 0.6800 - euclidean_distance: 0.1838
Epoch 228/300
57/57 [==============================] - 0s 842us/step - loss: 0.1143 - accuracy: 0.9422 - mae: 0.1143 - pearson_correlation: 0.6781 - euclidean_distance: 0.1843
Epoch 229/300
57/57 [==============================] - 0s 858us/step - loss: 0.1147 - accuracy: 0.9396 - mae: 0.1147 - pearson_correlation: 0.6772 - euclidean_distance: 0.1845
Epoch 230/300
57/57 [==============================] - 0s 851us/step - loss: 0.1137 - accuracy: 0.9418 - mae: 0.1137 - pearson_correlation: 0.6796 - euclidean_distance: 0.1827
Epoch 231/300
57/57 [==============================] - 0s 849us/step - loss: 0.1152 - accuracy: 0.9400 - mae: 0.1152 - pearson_correlation: 0.6835 - euclidean_distance: 0.1851
Epoch 232/300
57/57 [==============================] - 0s 857us/step - loss: 0.1124 - accuracy: 0.9449 - mae: 0.1124 - pearson_correlation: 0.6822 - euclidean_distance: 0.1800
Epoch 233/300
57/57 [==============================] - 0s 843us/step - loss: 0.1154 - accuracy: 0.9392 - mae: 0.1154 - pearson_correlation: 0.6764 - euclidean_distance: 0.1850
Epoch 234/300
57/57 [==============================] - 0s 864us/step - loss: 0.1089 - accuracy: 0.9453 - mae: 0.1089 - pearson_correlation: 0.6911 - euclidean_distance: 0.1754
Epoch 235/300
57/57 [==============================] - 0s 845us/step - loss: 0.1147 - accuracy: 0.9422 - mae: 0.1147 - pearson_correlation: 0.6822 - euclidean_distance: 0.1846
Epoch 236/300
57/57 [==============================] - 0s 852us/step - loss: 0.1109 - accuracy: 0.9440 - mae: 0.1109 - pearson_correlation: 0.6832 - euclidean_distance: 0.1784
Epoch 237/300
57/57 [==============================] - 0s 862us/step - loss: 0.1117 - accuracy: 0.9475 - mae: 0.1117 - pearson_correlation: 0.6872 - euclidean_distance: 0.1794
Epoch 238/300
57/57 [==============================] - 0s 855us/step - loss: 0.1123 - accuracy: 0.9422 - mae: 0.1123 - pearson_correlation: 0.6881 - euclidean_distance: 0.1798
Epoch 239/300
57/57 [==============================] - 0s 838us/step - loss: 0.1117 - accuracy: 0.9431 - mae: 0.1117 - pearson_correlation: 0.6857 - euclidean_distance: 0.1794
Epoch 240/300
57/57 [==============================] - 0s 837us/step - loss: 0.1100 - accuracy: 0.9440 - mae: 0.1100 - pearson_correlation: 0.6956 - euclidean_distance: 0.1766
Epoch 241/300
57/57 [==============================] - 0s 850us/step - loss: 0.1097 - accuracy: 0.9466 - mae: 0.1097 - pearson_correlation: 0.6924 - euclidean_distance: 0.1766
Epoch 242/300
57/57 [==============================] - 0s 852us/step - loss: 0.1111 - accuracy: 0.9471 - mae: 0.1111 - pearson_correlation: 0.6895 - euclidean_distance: 0.1778
Epoch 243/300
57/57 [==============================] - 0s 849us/step - loss: 0.1100 - accuracy: 0.9431 - mae: 0.1100 - pearson_correlation: 0.6947 - euclidean_distance: 0.1766
Epoch 244/300
57/57 [==============================] - 0s 851us/step - loss: 0.1085 - accuracy: 0.9466 - mae: 0.1085 - pearson_correlation: 0.6979 - euclidean_distance: 0.1743
Epoch 245/300
57/57 [==============================] - 0s 846us/step - loss: 0.1102 - accuracy: 0.9471 - mae: 0.1102 - pearson_correlation: 0.6926 - euclidean_distance: 0.1768
Epoch 246/300
57/57 [==============================] - 0s 849us/step - loss: 0.1114 - accuracy: 0.9480 - mae: 0.1114 - pearson_correlation: 0.6904 - euclidean_distance: 0.1788
Epoch 247/300
57/57 [==============================] - 0s 847us/step - loss: 0.1101 - accuracy: 0.9462 - mae: 0.1101 - pearson_correlation: 0.6975 - euclidean_distance: 0.1763
Epoch 248/300
57/57 [==============================] - 0s 839us/step - loss: 0.1108 - accuracy: 0.9466 - mae: 0.1108 - pearson_correlation: 0.6940 - euclidean_distance: 0.1777
Epoch 249/300
57/57 [==============================] - 0s 844us/step - loss: 0.1094 - accuracy: 0.9484 - mae: 0.1094 - pearson_correlation: 0.6955 - euclidean_distance: 0.1750
Epoch 250/300
57/57 [==============================] - 0s 856us/step - loss: 0.1072 - accuracy: 0.9431 - mae: 0.1072 - pearson_correlation: 0.6997 - euclidean_distance: 0.1725
Epoch 251/300
57/57 [==============================] - 0s 847us/step - loss: 0.1088 - accuracy: 0.9449 - mae: 0.1088 - pearson_correlation: 0.6959 - euclidean_distance: 0.1745
Epoch 252/300
57/57 [==============================] - 0s 865us/step - loss: 0.1087 - accuracy: 0.9471 - mae: 0.1087 - pearson_correlation: 0.6990 - euclidean_distance: 0.1742
Epoch 253/300
57/57 [==============================] - 0s 851us/step - loss: 0.1069 - accuracy: 0.9493 - mae: 0.1069 - pearson_correlation: 0.6997 - euclidean_distance: 0.1716
Epoch 254/300
57/57 [==============================] - 0s 844us/step - loss: 0.1094 - accuracy: 0.9449 - mae: 0.1094 - pearson_correlation: 0.6948 - euclidean_distance: 0.1753
Epoch 255/300
57/57 [==============================] - 0s 845us/step - loss: 0.1062 - accuracy: 0.9480 - mae: 0.1062 - pearson_correlation: 0.7016 - euclidean_distance: 0.1707
Epoch 256/300
57/57 [==============================] - 0s 857us/step - loss: 0.1078 - accuracy: 0.9471 - mae: 0.1078 - pearson_correlation: 0.6970 - euclidean_distance: 0.1734
Epoch 257/300
57/57 [==============================] - 0s 849us/step - loss: 0.1086 - accuracy: 0.9480 - mae: 0.1086 - pearson_correlation: 0.7019 - euclidean_distance: 0.1741
Epoch 258/300
57/57 [==============================] - 0s 852us/step - loss: 0.1089 - accuracy: 0.9453 - mae: 0.1089 - pearson_correlation: 0.6968 - euclidean_distance: 0.1746
Epoch 259/300
57/57 [==============================] - 0s 854us/step - loss: 0.1050 - accuracy: 0.9475 - mae: 0.1050 - pearson_correlation: 0.7062 - euclidean_distance: 0.1683
Epoch 260/300
57/57 [==============================] - 0s 856us/step - loss: 0.1049 - accuracy: 0.9489 - mae: 0.1049 - pearson_correlation: 0.7051 - euclidean_distance: 0.1684
Epoch 261/300
57/57 [==============================] - 0s 853us/step - loss: 0.1058 - accuracy: 0.9471 - mae: 0.1058 - pearson_correlation: 0.6994 - euclidean_distance: 0.1697
Epoch 262/300
57/57 [==============================] - 0s 847us/step - loss: 0.1058 - accuracy: 0.9484 - mae: 0.1058 - pearson_correlation: 0.7082 - euclidean_distance: 0.1699
Epoch 263/300
57/57 [==============================] - 0s 860us/step - loss: 0.1082 - accuracy: 0.9440 - mae: 0.1082 - pearson_correlation: 0.6995 - euclidean_distance: 0.1736
Epoch 264/300
57/57 [==============================] - 0s 858us/step - loss: 0.1068 - accuracy: 0.9480 - mae: 0.1068 - pearson_correlation: 0.7079 - euclidean_distance: 0.1710
Epoch 265/300
57/57 [==============================] - 0s 861us/step - loss: 0.1087 - accuracy: 0.9458 - mae: 0.1087 - pearson_correlation: 0.6998 - euclidean_distance: 0.1737
Epoch 266/300
57/57 [==============================] - 0s 845us/step - loss: 0.1055 - accuracy: 0.9458 - mae: 0.1055 - pearson_correlation: 0.7036 - euclidean_distance: 0.1694
Epoch 267/300
57/57 [==============================] - 0s 844us/step - loss: 0.1020 - accuracy: 0.9489 - mae: 0.1020 - pearson_correlation: 0.7161 - euclidean_distance: 0.1639
Epoch 268/300
57/57 [==============================] - 0s 847us/step - loss: 0.1034 - accuracy: 0.9475 - mae: 0.1034 - pearson_correlation: 0.7118 - euclidean_distance: 0.1663
Epoch 269/300
57/57 [==============================] - 0s 848us/step - loss: 0.1025 - accuracy: 0.9458 - mae: 0.1025 - pearson_correlation: 0.7100 - euclidean_distance: 0.1648
Epoch 270/300
57/57 [==============================] - 0s 851us/step - loss: 0.1034 - accuracy: 0.9466 - mae: 0.1034 - pearson_correlation: 0.7073 - euclidean_distance: 0.1667
Epoch 271/300
57/57 [==============================] - 0s 848us/step - loss: 0.1063 - accuracy: 0.9489 - mae: 0.1063 - pearson_correlation: 0.7091 - euclidean_distance: 0.1703
Epoch 272/300
57/57 [==============================] - 0s 844us/step - loss: 0.1022 - accuracy: 0.9475 - mae: 0.1022 - pearson_correlation: 0.7141 - euclidean_distance: 0.1639
Epoch 273/300
57/57 [==============================] - 0s 860us/step - loss: 0.1004 - accuracy: 0.9475 - mae: 0.1004 - pearson_correlation: 0.7178 - euclidean_distance: 0.1620
Epoch 274/300
57/57 [==============================] - 0s 852us/step - loss: 0.1029 - accuracy: 0.9480 - mae: 0.1029 - pearson_correlation: 0.7103 - euclidean_distance: 0.1659
Epoch 275/300
57/57 [==============================] - 0s 839us/step - loss: 0.1017 - accuracy: 0.9480 - mae: 0.1017 - pearson_correlation: 0.7191 - euclidean_distance: 0.1634
Epoch 276/300
57/57 [==============================] - 0s 860us/step - loss: 0.1041 - accuracy: 0.9475 - mae: 0.1041 - pearson_correlation: 0.7107 - euclidean_distance: 0.1664
Epoch 277/300
57/57 [==============================] - 0s 862us/step - loss: 0.1021 - accuracy: 0.9493 - mae: 0.1021 - pearson_correlation: 0.7134 - euclidean_distance: 0.1647
Epoch 278/300
57/57 [==============================] - 0s 864us/step - loss: 0.1025 - accuracy: 0.9489 - mae: 0.1025 - pearson_correlation: 0.7171 - euclidean_distance: 0.1646
Epoch 279/300
57/57 [==============================] - 0s 852us/step - loss: 0.1036 - accuracy: 0.9493 - mae: 0.1036 - pearson_correlation: 0.7131 - euclidean_distance: 0.1665
Epoch 280/300
57/57 [==============================] - 0s 844us/step - loss: 0.0989 - accuracy: 0.9506 - mae: 0.0989 - pearson_correlation: 0.7236 - euclidean_distance: 0.1589
Epoch 281/300
57/57 [==============================] - 0s 844us/step - loss: 0.1050 - accuracy: 0.9466 - mae: 0.1050 - pearson_correlation: 0.7071 - euclidean_distance: 0.1684
Epoch 282/300
57/57 [==============================] - 0s 857us/step - loss: 0.1014 - accuracy: 0.9493 - mae: 0.1014 - pearson_correlation: 0.7182 - euclidean_distance: 0.1629
Epoch 283/300
57/57 [==============================] - 0s 842us/step - loss: 0.1011 - accuracy: 0.9493 - mae: 0.1011 - pearson_correlation: 0.7222 - euclidean_distance: 0.1624
Epoch 284/300
57/57 [==============================] - 0s 843us/step - loss: 0.1018 - accuracy: 0.9480 - mae: 0.1018 - pearson_correlation: 0.7166 - euclidean_distance: 0.1640
Epoch 285/300
57/57 [==============================] - 0s 852us/step - loss: 0.1021 - accuracy: 0.9493 - mae: 0.1021 - pearson_correlation: 0.7157 - euclidean_distance: 0.1641
Epoch 286/300
57/57 [==============================] - 0s 843us/step - loss: 0.1006 - accuracy: 0.9480 - mae: 0.1006 - pearson_correlation: 0.7224 - euclidean_distance: 0.1617
Epoch 287/300
57/57 [==============================] - 0s 857us/step - loss: 0.1002 - accuracy: 0.9480 - mae: 0.1002 - pearson_correlation: 0.7231 - euclidean_distance: 0.1610
Epoch 288/300
57/57 [==============================] - 0s 844us/step - loss: 0.0995 - accuracy: 0.9475 - mae: 0.0995 - pearson_correlation: 0.7208 - euclidean_distance: 0.1597
Epoch 289/300
57/57 [==============================] - 0s 843us/step - loss: 0.1022 - accuracy: 0.9519 - mae: 0.1022 - pearson_correlation: 0.7232 - euclidean_distance: 0.1640
Epoch 290/300
57/57 [==============================] - 0s 857us/step - loss: 0.1005 - accuracy: 0.9502 - mae: 0.1005 - pearson_correlation: 0.7263 - euclidean_distance: 0.1613
Epoch 291/300
57/57 [==============================] - 0s 850us/step - loss: 0.0981 - accuracy: 0.9493 - mae: 0.0981 - pearson_correlation: 0.7263 - euclidean_distance: 0.1580
Epoch 292/300
57/57 [==============================] - 0s 843us/step - loss: 0.0979 - accuracy: 0.9489 - mae: 0.0979 - pearson_correlation: 0.7248 - euclidean_distance: 0.1575
Epoch 293/300
57/57 [==============================] - 0s 847us/step - loss: 0.0994 - accuracy: 0.9489 - mae: 0.0994 - pearson_correlation: 0.7216 - euclidean_distance: 0.1597
Epoch 294/300
57/57 [==============================] - 0s 849us/step - loss: 0.0993 - accuracy: 0.9475 - mae: 0.0993 - pearson_correlation: 0.7199 - euclidean_distance: 0.1602
Epoch 295/300
57/57 [==============================] - 0s 851us/step - loss: 0.0994 - accuracy: 0.9484 - mae: 0.0994 - pearson_correlation: 0.7232 - euclidean_distance: 0.1601
Epoch 296/300
57/57 [==============================] - 0s 848us/step - loss: 0.1003 - accuracy: 0.9493 - mae: 0.1003 - pearson_correlation: 0.7232 - euclidean_distance: 0.1611
Epoch 297/300
57/57 [==============================] - 0s 855us/step - loss: 0.0998 - accuracy: 0.9493 - mae: 0.0998 - pearson_correlation: 0.7189 - euclidean_distance: 0.1602
Epoch 298/300
57/57 [==============================] - 0s 847us/step - loss: 0.0987 - accuracy: 0.9519 - mae: 0.0987 - pearson_correlation: 0.7304 - euclidean_distance: 0.1589
Epoch 299/300
57/57 [==============================] - 0s 845us/step - loss: 0.1008 - accuracy: 0.9511 - mae: 0.1008 - pearson_correlation: 0.7212 - euclidean_distance: 0.1621
Epoch 300/300
57/57 [==============================] - 0s 844us/step - loss: 0.0983 - accuracy: 0.9493 - mae: 0.0983 - pearson_correlation: 0.7256 - euclidean_distance: 0.1585
29/29 [==============================] - 0s 493us/step
Epoch 1/350
57/57 [==============================] - 1s 953us/step - loss: 0.9390 - accuracy: 0.0732 - mae: 0.9390 - pearson_correlation: -0.5962 - euclidean_distance: 1.5464
Epoch 2/350
57/57 [==============================] - 0s 844us/step - loss: 0.9320 - accuracy: 0.0768 - mae: 0.9320 - pearson_correlation: -0.5924 - euclidean_distance: 1.5354
Epoch 3/350
57/57 [==============================] - 0s 873us/step - loss: 0.9245 - accuracy: 0.0710 - mae: 0.9245 - pearson_correlation: -0.5968 - euclidean_distance: 1.5237
Epoch 4/350
57/57 [==============================] - 0s 873us/step - loss: 0.9192 - accuracy: 0.0723 - mae: 0.9192 - pearson_correlation: -0.5946 - euclidean_distance: 1.5152
Epoch 5/350
57/57 [==============================] - 0s 863us/step - loss: 0.9119 - accuracy: 0.0719 - mae: 0.9119 - pearson_correlation: -0.5943 - euclidean_distance: 1.5045
Epoch 6/350
57/57 [==============================] - 0s 867us/step - loss: 0.9058 - accuracy: 0.0754 - mae: 0.9058 - pearson_correlation: -0.5967 - euclidean_distance: 1.4954
Epoch 7/350
57/57 [==============================] - 0s 864us/step - loss: 0.8976 - accuracy: 0.0750 - mae: 0.8976 - pearson_correlation: -0.5932 - euclidean_distance: 1.4815
Epoch 8/350
57/57 [==============================] - 0s 859us/step - loss: 0.8885 - accuracy: 0.0768 - mae: 0.8885 - pearson_correlation: -0.5918 - euclidean_distance: 1.4669
Epoch 9/350
57/57 [==============================] - 0s 860us/step - loss: 0.8814 - accuracy: 0.0759 - mae: 0.8814 - pearson_correlation: -0.5940 - euclidean_distance: 1.4578
Epoch 10/350
57/57 [==============================] - 0s 865us/step - loss: 0.8732 - accuracy: 0.0807 - mae: 0.8732 - pearson_correlation: -0.5895 - euclidean_distance: 1.4444
Epoch 11/350
57/57 [==============================] - 0s 862us/step - loss: 0.8660 - accuracy: 0.0772 - mae: 0.8660 - pearson_correlation: -0.5939 - euclidean_distance: 1.4325
Epoch 12/350
57/57 [==============================] - 0s 868us/step - loss: 0.8577 - accuracy: 0.0737 - mae: 0.8577 - pearson_correlation: -0.6004 - euclidean_distance: 1.4202
Epoch 13/350
57/57 [==============================] - 0s 865us/step - loss: 0.8501 - accuracy: 0.0798 - mae: 0.8501 - pearson_correlation: -0.5966 - euclidean_distance: 1.4079
Epoch 14/350
57/57 [==============================] - 0s 871us/step - loss: 0.8412 - accuracy: 0.0754 - mae: 0.8412 - pearson_correlation: -0.5995 - euclidean_distance: 1.3954
Epoch 15/350
57/57 [==============================] - 0s 859us/step - loss: 0.8336 - accuracy: 0.0794 - mae: 0.8336 - pearson_correlation: -0.5977 - euclidean_distance: 1.3831
Epoch 16/350
57/57 [==============================] - 0s 866us/step - loss: 0.8256 - accuracy: 0.0820 - mae: 0.8256 - pearson_correlation: -0.5959 - euclidean_distance: 1.3714
Epoch 17/350
57/57 [==============================] - 0s 860us/step - loss: 0.8153 - accuracy: 0.0781 - mae: 0.8153 - pearson_correlation: -0.5960 - euclidean_distance: 1.3538
Epoch 18/350
57/57 [==============================] - 0s 863us/step - loss: 0.8071 - accuracy: 0.0860 - mae: 0.8071 - pearson_correlation: -0.5985 - euclidean_distance: 1.3423
Epoch 19/350
57/57 [==============================] - 0s 871us/step - loss: 0.7988 - accuracy: 0.0816 - mae: 0.7988 - pearson_correlation: -0.5989 - euclidean_distance: 1.3293
Epoch 20/350
57/57 [==============================] - 0s 863us/step - loss: 0.7896 - accuracy: 0.0834 - mae: 0.7896 - pearson_correlation: -0.5961 - euclidean_distance: 1.3147
Epoch 21/350
57/57 [==============================] - 0s 862us/step - loss: 0.7813 - accuracy: 0.0873 - mae: 0.7813 - pearson_correlation: -0.5987 - euclidean_distance: 1.3012
Epoch 22/350
57/57 [==============================] - 0s 862us/step - loss: 0.7716 - accuracy: 0.0873 - mae: 0.7716 - pearson_correlation: -0.5898 - euclidean_distance: 1.2865
Epoch 23/350
57/57 [==============================] - 0s 868us/step - loss: 0.7629 - accuracy: 0.0834 - mae: 0.7629 - pearson_correlation: -0.5948 - euclidean_distance: 1.2733
Epoch 24/350
57/57 [==============================] - 0s 870us/step - loss: 0.7538 - accuracy: 0.0922 - mae: 0.7538 - pearson_correlation: -0.5913 - euclidean_distance: 1.2593
Epoch 25/350
57/57 [==============================] - 0s 855us/step - loss: 0.7447 - accuracy: 0.0904 - mae: 0.7447 - pearson_correlation: -0.5886 - euclidean_distance: 1.2432
Epoch 26/350
57/57 [==============================] - 0s 859us/step - loss: 0.7336 - accuracy: 0.0878 - mae: 0.7336 - pearson_correlation: -0.5925 - euclidean_distance: 1.2285
Epoch 27/350
57/57 [==============================] - 0s 871us/step - loss: 0.7249 - accuracy: 0.0931 - mae: 0.7249 - pearson_correlation: -0.5880 - euclidean_distance: 1.2134
Epoch 28/350
57/57 [==============================] - 0s 869us/step - loss: 0.7163 - accuracy: 0.0988 - mae: 0.7163 - pearson_correlation: -0.5924 - euclidean_distance: 1.2007
Epoch 29/350
57/57 [==============================] - 0s 866us/step - loss: 0.7067 - accuracy: 0.1085 - mae: 0.7067 - pearson_correlation: -0.5870 - euclidean_distance: 1.1853
Epoch 30/350
57/57 [==============================] - 0s 860us/step - loss: 0.6978 - accuracy: 0.1072 - mae: 0.6978 - pearson_correlation: -0.5835 - euclidean_distance: 1.1724
Epoch 31/350
57/57 [==============================] - 0s 866us/step - loss: 0.6883 - accuracy: 0.1094 - mae: 0.6883 - pearson_correlation: -0.5835 - euclidean_distance: 1.1563
Epoch 32/350
57/57 [==============================] - 0s 859us/step - loss: 0.6793 - accuracy: 0.1191 - mae: 0.6793 - pearson_correlation: -0.5758 - euclidean_distance: 1.1420
Epoch 33/350
57/57 [==============================] - 0s 909us/step - loss: 0.6691 - accuracy: 0.1107 - mae: 0.6691 - pearson_correlation: -0.5787 - euclidean_distance: 1.1270
Epoch 34/350
57/57 [==============================] - 0s 878us/step - loss: 0.6604 - accuracy: 0.1244 - mae: 0.6604 - pearson_correlation: -0.5768 - euclidean_distance: 1.1119
Epoch 35/350
57/57 [==============================] - 0s 866us/step - loss: 0.6509 - accuracy: 0.1213 - mae: 0.6509 - pearson_correlation: -0.5746 - euclidean_distance: 1.0979
Epoch 36/350
57/57 [==============================] - 0s 854us/step - loss: 0.6417 - accuracy: 0.1217 - mae: 0.6417 - pearson_correlation: -0.5710 - euclidean_distance: 1.0831
Epoch 37/350
57/57 [==============================] - 0s 863us/step - loss: 0.6345 - accuracy: 0.1332 - mae: 0.6345 - pearson_correlation: -0.5687 - euclidean_distance: 1.0719
Epoch 38/350
57/57 [==============================] - 0s 864us/step - loss: 0.6250 - accuracy: 0.1297 - mae: 0.6250 - pearson_correlation: -0.5629 - euclidean_distance: 1.0562
Epoch 39/350
57/57 [==============================] - 0s 867us/step - loss: 0.6149 - accuracy: 0.1390 - mae: 0.6149 - pearson_correlation: -0.5547 - euclidean_distance: 1.0396
Epoch 40/350
57/57 [==============================] - 0s 864us/step - loss: 0.6044 - accuracy: 0.1478 - mae: 0.6044 - pearson_correlation: -0.5501 - euclidean_distance: 1.0236
Epoch 41/350
57/57 [==============================] - 0s 862us/step - loss: 0.5984 - accuracy: 0.1456 - mae: 0.5984 - pearson_correlation: -0.5523 - euclidean_distance: 1.0139
Epoch 42/350
57/57 [==============================] - 0s 862us/step - loss: 0.5880 - accuracy: 0.1500 - mae: 0.5880 - pearson_correlation: -0.5488 - euclidean_distance: 0.9968
Epoch 43/350
57/57 [==============================] - 0s 862us/step - loss: 0.5794 - accuracy: 0.1570 - mae: 0.5794 - pearson_correlation: -0.5412 - euclidean_distance: 0.9835
Epoch 44/350
57/57 [==============================] - 0s 869us/step - loss: 0.5719 - accuracy: 0.1610 - mae: 0.5719 - pearson_correlation: -0.5351 - euclidean_distance: 0.9714
Epoch 45/350
57/57 [==============================] - 0s 863us/step - loss: 0.5635 - accuracy: 0.1628 - mae: 0.5635 - pearson_correlation: -0.5274 - euclidean_distance: 0.9576
Epoch 46/350
57/57 [==============================] - 0s 867us/step - loss: 0.5537 - accuracy: 0.1703 - mae: 0.5537 - pearson_correlation: -0.5283 - euclidean_distance: 0.9423
Epoch 47/350
57/57 [==============================] - 0s 863us/step - loss: 0.5455 - accuracy: 0.1703 - mae: 0.5455 - pearson_correlation: -0.5204 - euclidean_distance: 0.9286
Epoch 48/350
57/57 [==============================] - 0s 863us/step - loss: 0.5343 - accuracy: 0.1778 - mae: 0.5343 - pearson_correlation: -0.5052 - euclidean_distance: 0.9107
Epoch 49/350
57/57 [==============================] - 0s 865us/step - loss: 0.5275 - accuracy: 0.1734 - mae: 0.5275 - pearson_correlation: -0.5040 - euclidean_distance: 0.8989
Epoch 50/350
57/57 [==============================] - 0s 859us/step - loss: 0.5170 - accuracy: 0.1782 - mae: 0.5170 - pearson_correlation: -0.4961 - euclidean_distance: 0.8833
Epoch 51/350
57/57 [==============================] - 0s 866us/step - loss: 0.5091 - accuracy: 0.1870 - mae: 0.5091 - pearson_correlation: -0.4895 - euclidean_distance: 0.8693
Epoch 52/350
57/57 [==============================] - 0s 857us/step - loss: 0.5005 - accuracy: 0.1919 - mae: 0.5005 - pearson_correlation: -0.4735 - euclidean_distance: 0.8545
Epoch 53/350
57/57 [==============================] - 0s 867us/step - loss: 0.4918 - accuracy: 0.1892 - mae: 0.4918 - pearson_correlation: -0.4754 - euclidean_distance: 0.8414
Epoch 54/350
57/57 [==============================] - 0s 866us/step - loss: 0.4834 - accuracy: 0.2034 - mae: 0.4834 - pearson_correlation: -0.4591 - euclidean_distance: 0.8269
Epoch 55/350
57/57 [==============================] - 0s 854us/step - loss: 0.4749 - accuracy: 0.2038 - mae: 0.4749 - pearson_correlation: -0.4410 - euclidean_distance: 0.8119
Epoch 56/350
57/57 [==============================] - 0s 866us/step - loss: 0.4666 - accuracy: 0.2095 - mae: 0.4666 - pearson_correlation: -0.4369 - euclidean_distance: 0.7982
Epoch 57/350
57/57 [==============================] - 0s 860us/step - loss: 0.4581 - accuracy: 0.2117 - mae: 0.4581 - pearson_correlation: -0.4240 - euclidean_distance: 0.7851
Epoch 58/350
57/57 [==============================] - 0s 861us/step - loss: 0.4494 - accuracy: 0.2126 - mae: 0.4494 - pearson_correlation: -0.4203 - euclidean_distance: 0.7708
Epoch 59/350
57/57 [==============================] - 0s 860us/step - loss: 0.4416 - accuracy: 0.2254 - mae: 0.4416 - pearson_correlation: -0.4029 - euclidean_distance: 0.7571
Epoch 60/350
57/57 [==============================] - 0s 855us/step - loss: 0.4315 - accuracy: 0.2373 - mae: 0.4315 - pearson_correlation: -0.3832 - euclidean_distance: 0.7404
Epoch 61/350
57/57 [==============================] - 0s 872us/step - loss: 0.4248 - accuracy: 0.2466 - mae: 0.4248 - pearson_correlation: -0.3743 - euclidean_distance: 0.7279
Epoch 62/350
57/57 [==============================] - 0s 855us/step - loss: 0.4157 - accuracy: 0.2510 - mae: 0.4157 - pearson_correlation: -0.3561 - euclidean_distance: 0.7130
Epoch 63/350
57/57 [==============================] - 0s 870us/step - loss: 0.4086 - accuracy: 0.2673 - mae: 0.4086 - pearson_correlation: -0.3373 - euclidean_distance: 0.6997
Epoch 64/350
57/57 [==============================] - 0s 884us/step - loss: 0.4007 - accuracy: 0.2722 - mae: 0.4007 - pearson_correlation: -0.3223 - euclidean_distance: 0.6860
Epoch 65/350
57/57 [==============================] - 0s 878us/step - loss: 0.3938 - accuracy: 0.2819 - mae: 0.3938 - pearson_correlation: -0.3100 - euclidean_distance: 0.6764
Epoch 66/350
57/57 [==============================] - 0s 872us/step - loss: 0.3849 - accuracy: 0.2925 - mae: 0.3849 - pearson_correlation: -0.2910 - euclidean_distance: 0.6605
Epoch 67/350
57/57 [==============================] - 0s 861us/step - loss: 0.3774 - accuracy: 0.2955 - mae: 0.3774 - pearson_correlation: -0.2670 - euclidean_distance: 0.6471
Epoch 68/350
57/57 [==============================] - 0s 860us/step - loss: 0.3709 - accuracy: 0.3110 - mae: 0.3709 - pearson_correlation: -0.2550 - euclidean_distance: 0.6353
Epoch 69/350
57/57 [==============================] - 0s 846us/step - loss: 0.3630 - accuracy: 0.3127 - mae: 0.3630 - pearson_correlation: -0.2362 - euclidean_distance: 0.6220
Epoch 70/350
57/57 [==============================] - 0s 861us/step - loss: 0.3597 - accuracy: 0.3260 - mae: 0.3597 - pearson_correlation: -0.2190 - euclidean_distance: 0.6149
Epoch 71/350
57/57 [==============================] - 0s 857us/step - loss: 0.3488 - accuracy: 0.3401 - mae: 0.3488 - pearson_correlation: -0.1991 - euclidean_distance: 0.5974
Epoch 72/350
57/57 [==============================] - 0s 874us/step - loss: 0.3429 - accuracy: 0.3410 - mae: 0.3429 - pearson_correlation: -0.1861 - euclidean_distance: 0.5879
Epoch 73/350
57/57 [==============================] - 0s 881us/step - loss: 0.3368 - accuracy: 0.3533 - mae: 0.3368 - pearson_correlation: -0.1732 - euclidean_distance: 0.5764
Epoch 74/350
57/57 [==============================] - 0s 875us/step - loss: 0.3306 - accuracy: 0.3555 - mae: 0.3306 - pearson_correlation: -0.1559 - euclidean_distance: 0.5663
Epoch 75/350
57/57 [==============================] - 0s 858us/step - loss: 0.3253 - accuracy: 0.3688 - mae: 0.3253 - pearson_correlation: -0.1334 - euclidean_distance: 0.5551
Epoch 76/350
57/57 [==============================] - 0s 865us/step - loss: 0.3189 - accuracy: 0.3974 - mae: 0.3189 - pearson_correlation: -0.1146 - euclidean_distance: 0.5443
Epoch 77/350
57/57 [==============================] - 0s 853us/step - loss: 0.3118 - accuracy: 0.3811 - mae: 0.3118 - pearson_correlation: -0.1009 - euclidean_distance: 0.5335
Epoch 78/350
57/57 [==============================] - 0s 860us/step - loss: 0.3074 - accuracy: 0.4213 - mae: 0.3074 - pearson_correlation: -0.0789 - euclidean_distance: 0.5237
Epoch 79/350
57/57 [==============================] - 0s 853us/step - loss: 0.2999 - accuracy: 0.4314 - mae: 0.2999 - pearson_correlation: -0.0587 - euclidean_distance: 0.5111
Epoch 80/350
57/57 [==============================] - 0s 863us/step - loss: 0.2965 - accuracy: 0.4424 - mae: 0.2965 - pearson_correlation: -0.0389 - euclidean_distance: 0.5035
Epoch 81/350
57/57 [==============================] - 0s 861us/step - loss: 0.2917 - accuracy: 0.4579 - mae: 0.2917 - pearson_correlation: -0.0130 - euclidean_distance: 0.4949
Epoch 82/350
57/57 [==============================] - 0s 855us/step - loss: 0.2870 - accuracy: 0.4808 - mae: 0.2870 - pearson_correlation: -0.0073 - euclidean_distance: 0.4868
Epoch 83/350
57/57 [==============================] - 0s 855us/step - loss: 0.2798 - accuracy: 0.4804 - mae: 0.2798 - pearson_correlation: 0.0081 - euclidean_distance: 0.4751
Epoch 84/350
57/57 [==============================] - 0s 868us/step - loss: 0.2760 - accuracy: 0.4918 - mae: 0.2760 - pearson_correlation: 0.0331 - euclidean_distance: 0.4678
Epoch 85/350
57/57 [==============================] - 0s 868us/step - loss: 0.2704 - accuracy: 0.5236 - mae: 0.2704 - pearson_correlation: 0.0548 - euclidean_distance: 0.4571
Epoch 86/350
57/57 [==============================] - 0s 868us/step - loss: 0.2672 - accuracy: 0.5412 - mae: 0.2672 - pearson_correlation: 0.0635 - euclidean_distance: 0.4506
Epoch 87/350
57/57 [==============================] - 0s 869us/step - loss: 0.2604 - accuracy: 0.5545 - mae: 0.2604 - pearson_correlation: 0.0912 - euclidean_distance: 0.4393
Epoch 88/350
57/57 [==============================] - 0s 853us/step - loss: 0.2583 - accuracy: 0.5704 - mae: 0.2583 - pearson_correlation: 0.1029 - euclidean_distance: 0.4342
Epoch 89/350
57/57 [==============================] - 0s 864us/step - loss: 0.2543 - accuracy: 0.5876 - mae: 0.2543 - pearson_correlation: 0.1117 - euclidean_distance: 0.4272
Epoch 90/350
57/57 [==============================] - 0s 863us/step - loss: 0.2490 - accuracy: 0.6220 - mae: 0.2490 - pearson_correlation: 0.1414 - euclidean_distance: 0.4177
Epoch 91/350
57/57 [==============================] - 0s 851us/step - loss: 0.2469 - accuracy: 0.6162 - mae: 0.2469 - pearson_correlation: 0.1443 - euclidean_distance: 0.4137
Epoch 92/350
57/57 [==============================] - 0s 863us/step - loss: 0.2406 - accuracy: 0.6281 - mae: 0.2406 - pearson_correlation: 0.1610 - euclidean_distance: 0.4035
Epoch 93/350
57/57 [==============================] - 0s 868us/step - loss: 0.2397 - accuracy: 0.6471 - mae: 0.2397 - pearson_correlation: 0.1839 - euclidean_distance: 0.4004
Epoch 94/350
57/57 [==============================] - 0s 871us/step - loss: 0.2369 - accuracy: 0.6559 - mae: 0.2369 - pearson_correlation: 0.1925 - euclidean_distance: 0.3951
Epoch 95/350
57/57 [==============================] - 0s 868us/step - loss: 0.2291 - accuracy: 0.6705 - mae: 0.2291 - pearson_correlation: 0.2052 - euclidean_distance: 0.3837
Epoch 96/350
57/57 [==============================] - 0s 868us/step - loss: 0.2270 - accuracy: 0.6886 - mae: 0.2270 - pearson_correlation: 0.2165 - euclidean_distance: 0.3795
Epoch 97/350
57/57 [==============================] - 0s 859us/step - loss: 0.2242 - accuracy: 0.6917 - mae: 0.2242 - pearson_correlation: 0.2298 - euclidean_distance: 0.3735
Epoch 98/350
57/57 [==============================] - 0s 854us/step - loss: 0.2213 - accuracy: 0.6996 - mae: 0.2213 - pearson_correlation: 0.2366 - euclidean_distance: 0.3690
Epoch 99/350
57/57 [==============================] - 0s 860us/step - loss: 0.2181 - accuracy: 0.6992 - mae: 0.2181 - pearson_correlation: 0.2531 - euclidean_distance: 0.3635
Epoch 100/350
57/57 [==============================] - 0s 864us/step - loss: 0.2159 - accuracy: 0.7150 - mae: 0.2159 - pearson_correlation: 0.2631 - euclidean_distance: 0.3593
Epoch 101/350
57/57 [==============================] - 0s 859us/step - loss: 0.2141 - accuracy: 0.7186 - mae: 0.2141 - pearson_correlation: 0.2632 - euclidean_distance: 0.3559
Epoch 102/350
57/57 [==============================] - 0s 863us/step - loss: 0.2104 - accuracy: 0.7283 - mae: 0.2104 - pearson_correlation: 0.2867 - euclidean_distance: 0.3485
Epoch 103/350
57/57 [==============================] - 0s 855us/step - loss: 0.2096 - accuracy: 0.7367 - mae: 0.2096 - pearson_correlation: 0.2922 - euclidean_distance: 0.3474
Epoch 104/350
57/57 [==============================] - 0s 868us/step - loss: 0.2065 - accuracy: 0.7305 - mae: 0.2065 - pearson_correlation: 0.2924 - euclidean_distance: 0.3429
Epoch 105/350
57/57 [==============================] - 0s 856us/step - loss: 0.2082 - accuracy: 0.7314 - mae: 0.2082 - pearson_correlation: 0.2980 - euclidean_distance: 0.3458
Epoch 106/350
57/57 [==============================] - 0s 862us/step - loss: 0.2033 - accuracy: 0.7437 - mae: 0.2033 - pearson_correlation: 0.3075 - euclidean_distance: 0.3362
Epoch 107/350
57/57 [==============================] - 0s 852us/step - loss: 0.2031 - accuracy: 0.7521 - mae: 0.2031 - pearson_correlation: 0.3168 - euclidean_distance: 0.3362
Epoch 108/350
57/57 [==============================] - 0s 858us/step - loss: 0.1983 - accuracy: 0.7481 - mae: 0.1983 - pearson_correlation: 0.3257 - euclidean_distance: 0.3291
Epoch 109/350
57/57 [==============================] - 0s 862us/step - loss: 0.1968 - accuracy: 0.7636 - mae: 0.1968 - pearson_correlation: 0.3337 - euclidean_distance: 0.3258
Epoch 110/350
57/57 [==============================] - 0s 871us/step - loss: 0.1944 - accuracy: 0.7640 - mae: 0.1944 - pearson_correlation: 0.3395 - euclidean_distance: 0.3217
Epoch 111/350
57/57 [==============================] - 0s 848us/step - loss: 0.1920 - accuracy: 0.7689 - mae: 0.1920 - pearson_correlation: 0.3537 - euclidean_distance: 0.3174
Epoch 112/350
57/57 [==============================] - 0s 849us/step - loss: 0.1910 - accuracy: 0.7684 - mae: 0.1910 - pearson_correlation: 0.3474 - euclidean_distance: 0.3158
Epoch 113/350
57/57 [==============================] - 0s 857us/step - loss: 0.1895 - accuracy: 0.7640 - mae: 0.1895 - pearson_correlation: 0.3547 - euclidean_distance: 0.3139
Epoch 114/350
57/57 [==============================] - 0s 847us/step - loss: 0.1912 - accuracy: 0.7680 - mae: 0.1912 - pearson_correlation: 0.3598 - euclidean_distance: 0.3148
Epoch 115/350
57/57 [==============================] - 0s 863us/step - loss: 0.1863 - accuracy: 0.7812 - mae: 0.1863 - pearson_correlation: 0.3742 - euclidean_distance: 0.3077
Epoch 116/350
57/57 [==============================] - 0s 858us/step - loss: 0.1871 - accuracy: 0.7715 - mae: 0.1871 - pearson_correlation: 0.3781 - euclidean_distance: 0.3084
Epoch 117/350
57/57 [==============================] - 0s 850us/step - loss: 0.1842 - accuracy: 0.7865 - mae: 0.1842 - pearson_correlation: 0.3867 - euclidean_distance: 0.3034
Epoch 118/350
57/57 [==============================] - 0s 851us/step - loss: 0.1824 - accuracy: 0.7861 - mae: 0.1824 - pearson_correlation: 0.3822 - euclidean_distance: 0.3015
Epoch 119/350
57/57 [==============================] - 0s 859us/step - loss: 0.1793 - accuracy: 0.7914 - mae: 0.1793 - pearson_correlation: 0.3964 - euclidean_distance: 0.2955
Epoch 120/350
57/57 [==============================] - 0s 851us/step - loss: 0.1816 - accuracy: 0.7839 - mae: 0.1816 - pearson_correlation: 0.3912 - euclidean_distance: 0.2998
Epoch 121/350
57/57 [==============================] - 0s 854us/step - loss: 0.1764 - accuracy: 0.7984 - mae: 0.1764 - pearson_correlation: 0.4096 - euclidean_distance: 0.2911
Epoch 122/350
57/57 [==============================] - 0s 857us/step - loss: 0.1783 - accuracy: 0.8024 - mae: 0.1783 - pearson_correlation: 0.4132 - euclidean_distance: 0.2926
Epoch 123/350
57/57 [==============================] - 0s 881us/step - loss: 0.1751 - accuracy: 0.8033 - mae: 0.1751 - pearson_correlation: 0.4178 - euclidean_distance: 0.2886
Epoch 124/350
57/57 [==============================] - 0s 859us/step - loss: 0.1730 - accuracy: 0.7984 - mae: 0.1730 - pearson_correlation: 0.4225 - euclidean_distance: 0.2867
Epoch 125/350
57/57 [==============================] - 0s 866us/step - loss: 0.1726 - accuracy: 0.8094 - mae: 0.1726 - pearson_correlation: 0.4244 - euclidean_distance: 0.2834
Epoch 126/350
57/57 [==============================] - 0s 860us/step - loss: 0.1728 - accuracy: 0.8081 - mae: 0.1728 - pearson_correlation: 0.4343 - euclidean_distance: 0.2835
Epoch 127/350
57/57 [==============================] - 0s 859us/step - loss: 0.1699 - accuracy: 0.8112 - mae: 0.1699 - pearson_correlation: 0.4330 - euclidean_distance: 0.2800
Epoch 128/350
57/57 [==============================] - 0s 866us/step - loss: 0.1669 - accuracy: 0.8090 - mae: 0.1669 - pearson_correlation: 0.4519 - euclidean_distance: 0.2749
Epoch 129/350
57/57 [==============================] - 0s 857us/step - loss: 0.1644 - accuracy: 0.8191 - mae: 0.1644 - pearson_correlation: 0.4557 - euclidean_distance: 0.2708
Epoch 130/350
57/57 [==============================] - 0s 854us/step - loss: 0.1649 - accuracy: 0.8121 - mae: 0.1649 - pearson_correlation: 0.4477 - euclidean_distance: 0.2719
Epoch 131/350
57/57 [==============================] - 0s 867us/step - loss: 0.1650 - accuracy: 0.8205 - mae: 0.1650 - pearson_correlation: 0.4570 - euclidean_distance: 0.2719
Epoch 132/350
57/57 [==============================] - 0s 865us/step - loss: 0.1621 - accuracy: 0.8169 - mae: 0.1621 - pearson_correlation: 0.4707 - euclidean_distance: 0.2662
Epoch 133/350
57/57 [==============================] - 0s 868us/step - loss: 0.1628 - accuracy: 0.8196 - mae: 0.1628 - pearson_correlation: 0.4608 - euclidean_distance: 0.2681
Epoch 134/350
57/57 [==============================] - 0s 864us/step - loss: 0.1615 - accuracy: 0.8271 - mae: 0.1615 - pearson_correlation: 0.4728 - euclidean_distance: 0.2648
Epoch 135/350
57/57 [==============================] - 0s 862us/step - loss: 0.1612 - accuracy: 0.8315 - mae: 0.1612 - pearson_correlation: 0.4764 - euclidean_distance: 0.2645
Epoch 136/350
57/57 [==============================] - 0s 859us/step - loss: 0.1586 - accuracy: 0.8288 - mae: 0.1586 - pearson_correlation: 0.4807 - euclidean_distance: 0.2607
Epoch 137/350
57/57 [==============================] - 0s 866us/step - loss: 0.1591 - accuracy: 0.8302 - mae: 0.1591 - pearson_correlation: 0.4941 - euclidean_distance: 0.2612
Epoch 138/350
57/57 [==============================] - 0s 863us/step - loss: 0.1587 - accuracy: 0.8341 - mae: 0.1587 - pearson_correlation: 0.4922 - euclidean_distance: 0.2595
Epoch 139/350
57/57 [==============================] - 0s 854us/step - loss: 0.1581 - accuracy: 0.8359 - mae: 0.1581 - pearson_correlation: 0.4824 - euclidean_distance: 0.2595
Epoch 140/350
57/57 [==============================] - 0s 861us/step - loss: 0.1549 - accuracy: 0.8438 - mae: 0.1549 - pearson_correlation: 0.5031 - euclidean_distance: 0.2541
Epoch 141/350
57/57 [==============================] - 0s 857us/step - loss: 0.1529 - accuracy: 0.8425 - mae: 0.1529 - pearson_correlation: 0.5054 - euclidean_distance: 0.2509
Epoch 142/350
57/57 [==============================] - 0s 867us/step - loss: 0.1530 - accuracy: 0.8372 - mae: 0.1530 - pearson_correlation: 0.5014 - euclidean_distance: 0.2506
Epoch 143/350
57/57 [==============================] - 0s 876us/step - loss: 0.1518 - accuracy: 0.8452 - mae: 0.1518 - pearson_correlation: 0.5163 - euclidean_distance: 0.2484
Epoch 144/350
57/57 [==============================] - 0s 868us/step - loss: 0.1501 - accuracy: 0.8487 - mae: 0.1501 - pearson_correlation: 0.5137 - euclidean_distance: 0.2466
Epoch 145/350
57/57 [==============================] - 0s 863us/step - loss: 0.1508 - accuracy: 0.8491 - mae: 0.1508 - pearson_correlation: 0.5162 - euclidean_distance: 0.2475
Epoch 146/350
57/57 [==============================] - 0s 853us/step - loss: 0.1503 - accuracy: 0.8465 - mae: 0.1503 - pearson_correlation: 0.5168 - euclidean_distance: 0.2459
Epoch 147/350
57/57 [==============================] - 0s 859us/step - loss: 0.1511 - accuracy: 0.8513 - mae: 0.1511 - pearson_correlation: 0.5282 - euclidean_distance: 0.2468
Epoch 148/350
57/57 [==============================] - 0s 862us/step - loss: 0.1493 - accuracy: 0.8544 - mae: 0.1493 - pearson_correlation: 0.5304 - euclidean_distance: 0.2446
Epoch 149/350
57/57 [==============================] - 0s 860us/step - loss: 0.1482 - accuracy: 0.8509 - mae: 0.1482 - pearson_correlation: 0.5297 - euclidean_distance: 0.2420
Epoch 150/350
57/57 [==============================] - 0s 866us/step - loss: 0.1466 - accuracy: 0.8584 - mae: 0.1466 - pearson_correlation: 0.5322 - euclidean_distance: 0.2396
Epoch 151/350
57/57 [==============================] - 0s 863us/step - loss: 0.1436 - accuracy: 0.8633 - mae: 0.1436 - pearson_correlation: 0.5433 - euclidean_distance: 0.2350
Epoch 152/350
57/57 [==============================] - 0s 856us/step - loss: 0.1427 - accuracy: 0.8588 - mae: 0.1427 - pearson_correlation: 0.5385 - euclidean_distance: 0.2344
Epoch 153/350
57/57 [==============================] - 0s 856us/step - loss: 0.1433 - accuracy: 0.8637 - mae: 0.1433 - pearson_correlation: 0.5476 - euclidean_distance: 0.2341
Epoch 154/350
57/57 [==============================] - 0s 849us/step - loss: 0.1449 - accuracy: 0.8633 - mae: 0.1449 - pearson_correlation: 0.5493 - euclidean_distance: 0.2372
Epoch 155/350
57/57 [==============================] - 0s 855us/step - loss: 0.1426 - accuracy: 0.8597 - mae: 0.1426 - pearson_correlation: 0.5425 - euclidean_distance: 0.2330
Epoch 156/350
57/57 [==============================] - 0s 862us/step - loss: 0.1421 - accuracy: 0.8659 - mae: 0.1421 - pearson_correlation: 0.5526 - euclidean_distance: 0.2324
Epoch 157/350
57/57 [==============================] - 0s 865us/step - loss: 0.1407 - accuracy: 0.8672 - mae: 0.1407 - pearson_correlation: 0.5592 - euclidean_distance: 0.2288
Epoch 158/350
57/57 [==============================] - 0s 851us/step - loss: 0.1402 - accuracy: 0.8637 - mae: 0.1402 - pearson_correlation: 0.5600 - euclidean_distance: 0.2288
Epoch 159/350
57/57 [==============================] - 0s 854us/step - loss: 0.1401 - accuracy: 0.8659 - mae: 0.1401 - pearson_correlation: 0.5630 - euclidean_distance: 0.2287
Epoch 160/350
57/57 [==============================] - 0s 864us/step - loss: 0.1386 - accuracy: 0.8703 - mae: 0.1386 - pearson_correlation: 0.5617 - euclidean_distance: 0.2264
Epoch 161/350
57/57 [==============================] - 0s 863us/step - loss: 0.1362 - accuracy: 0.8747 - mae: 0.1362 - pearson_correlation: 0.5634 - euclidean_distance: 0.2234
Epoch 162/350
57/57 [==============================] - 0s 862us/step - loss: 0.1334 - accuracy: 0.8730 - mae: 0.1334 - pearson_correlation: 0.5730 - euclidean_distance: 0.2183
Epoch 163/350
57/57 [==============================] - 0s 865us/step - loss: 0.1353 - accuracy: 0.8730 - mae: 0.1353 - pearson_correlation: 0.5684 - euclidean_distance: 0.2216
Epoch 164/350
57/57 [==============================] - 0s 864us/step - loss: 0.1376 - accuracy: 0.8730 - mae: 0.1376 - pearson_correlation: 0.5673 - euclidean_distance: 0.2248
Epoch 165/350
57/57 [==============================] - 0s 855us/step - loss: 0.1339 - accuracy: 0.8765 - mae: 0.1339 - pearson_correlation: 0.5752 - euclidean_distance: 0.2198
Epoch 166/350
57/57 [==============================] - 0s 862us/step - loss: 0.1339 - accuracy: 0.8752 - mae: 0.1339 - pearson_correlation: 0.5777 - euclidean_distance: 0.2191
Epoch 167/350
57/57 [==============================] - 0s 862us/step - loss: 0.1347 - accuracy: 0.8778 - mae: 0.1347 - pearson_correlation: 0.5833 - euclidean_distance: 0.2202
Epoch 168/350
57/57 [==============================] - 0s 858us/step - loss: 0.1308 - accuracy: 0.8831 - mae: 0.1308 - pearson_correlation: 0.5894 - euclidean_distance: 0.2136
Epoch 169/350
57/57 [==============================] - 0s 856us/step - loss: 0.1309 - accuracy: 0.8849 - mae: 0.1309 - pearson_correlation: 0.5865 - euclidean_distance: 0.2141
Epoch 170/350
57/57 [==============================] - 0s 854us/step - loss: 0.1330 - accuracy: 0.8827 - mae: 0.1330 - pearson_correlation: 0.5820 - euclidean_distance: 0.2176
Epoch 171/350
57/57 [==============================] - 0s 857us/step - loss: 0.1300 - accuracy: 0.8862 - mae: 0.1300 - pearson_correlation: 0.5910 - euclidean_distance: 0.2126
Epoch 172/350
57/57 [==============================] - 0s 851us/step - loss: 0.1289 - accuracy: 0.8866 - mae: 0.1289 - pearson_correlation: 0.5987 - euclidean_distance: 0.2101
Epoch 173/350
57/57 [==============================] - 0s 861us/step - loss: 0.1306 - accuracy: 0.8875 - mae: 0.1306 - pearson_correlation: 0.5943 - euclidean_distance: 0.2127
Epoch 174/350
57/57 [==============================] - 0s 864us/step - loss: 0.1300 - accuracy: 0.8902 - mae: 0.1300 - pearson_correlation: 0.5996 - euclidean_distance: 0.2119
Epoch 175/350
57/57 [==============================] - 0s 864us/step - loss: 0.1263 - accuracy: 0.8897 - mae: 0.1263 - pearson_correlation: 0.6035 - euclidean_distance: 0.2059
Epoch 176/350
57/57 [==============================] - 0s 867us/step - loss: 0.1288 - accuracy: 0.8875 - mae: 0.1288 - pearson_correlation: 0.5935 - euclidean_distance: 0.2101
Epoch 177/350
57/57 [==============================] - 0s 861us/step - loss: 0.1282 - accuracy: 0.8884 - mae: 0.1282 - pearson_correlation: 0.6002 - euclidean_distance: 0.2093
Epoch 178/350
57/57 [==============================] - 0s 856us/step - loss: 0.1241 - accuracy: 0.8888 - mae: 0.1241 - pearson_correlation: 0.6082 - euclidean_distance: 0.2030
Epoch 179/350
57/57 [==============================] - 0s 856us/step - loss: 0.1285 - accuracy: 0.8897 - mae: 0.1285 - pearson_correlation: 0.6029 - euclidean_distance: 0.2089
Epoch 180/350
57/57 [==============================] - 0s 848us/step - loss: 0.1264 - accuracy: 0.8968 - mae: 0.1264 - pearson_correlation: 0.6120 - euclidean_distance: 0.2052
Epoch 181/350
57/57 [==============================] - 0s 855us/step - loss: 0.1253 - accuracy: 0.8884 - mae: 0.1253 - pearson_correlation: 0.6133 - euclidean_distance: 0.2042
Epoch 182/350
57/57 [==============================] - 0s 853us/step - loss: 0.1237 - accuracy: 0.8950 - mae: 0.1237 - pearson_correlation: 0.6158 - euclidean_distance: 0.2017
Epoch 183/350
57/57 [==============================] - 0s 865us/step - loss: 0.1239 - accuracy: 0.8985 - mae: 0.1239 - pearson_correlation: 0.6181 - euclidean_distance: 0.2021
Epoch 184/350
57/57 [==============================] - 0s 860us/step - loss: 0.1225 - accuracy: 0.8919 - mae: 0.1225 - pearson_correlation: 0.6135 - euclidean_distance: 0.2004
Epoch 185/350
57/57 [==============================] - 0s 855us/step - loss: 0.1220 - accuracy: 0.9007 - mae: 0.1220 - pearson_correlation: 0.6179 - euclidean_distance: 0.1985
Epoch 186/350
57/57 [==============================] - 0s 852us/step - loss: 0.1199 - accuracy: 0.8963 - mae: 0.1199 - pearson_correlation: 0.6269 - euclidean_distance: 0.1957
Epoch 187/350
57/57 [==============================] - 0s 859us/step - loss: 0.1207 - accuracy: 0.9003 - mae: 0.1207 - pearson_correlation: 0.6303 - euclidean_distance: 0.1976
Epoch 188/350
57/57 [==============================] - 0s 858us/step - loss: 0.1221 - accuracy: 0.8941 - mae: 0.1221 - pearson_correlation: 0.6218 - euclidean_distance: 0.1993
Epoch 189/350
57/57 [==============================] - 0s 962us/step - loss: 0.1200 - accuracy: 0.8990 - mae: 0.1200 - pearson_correlation: 0.6273 - euclidean_distance: 0.1955
Epoch 190/350
57/57 [==============================] - 0s 984us/step - loss: 0.1214 - accuracy: 0.8946 - mae: 0.1214 - pearson_correlation: 0.6276 - euclidean_distance: 0.1977
Epoch 191/350
57/57 [==============================] - 0s 972us/step - loss: 0.1206 - accuracy: 0.9030 - mae: 0.1206 - pearson_correlation: 0.6351 - euclidean_distance: 0.1959
Epoch 192/350
57/57 [==============================] - 0s 967us/step - loss: 0.1204 - accuracy: 0.8959 - mae: 0.1204 - pearson_correlation: 0.6296 - euclidean_distance: 0.1959
Epoch 193/350
57/57 [==============================] - 0s 964us/step - loss: 0.1206 - accuracy: 0.8977 - mae: 0.1206 - pearson_correlation: 0.6245 - euclidean_distance: 0.1961
Epoch 194/350
57/57 [==============================] - 0s 1ms/step - loss: 0.1193 - accuracy: 0.9016 - mae: 0.1193 - pearson_correlation: 0.6273 - euclidean_distance: 0.1946
Epoch 195/350
57/57 [==============================] - 0s 977us/step - loss: 0.1198 - accuracy: 0.9012 - mae: 0.1198 - pearson_correlation: 0.6258 - euclidean_distance: 0.1952
Epoch 196/350
57/57 [==============================] - 0s 1ms/step - loss: 0.1175 - accuracy: 0.9052 - mae: 0.1175 - pearson_correlation: 0.6380 - euclidean_distance: 0.1917
Epoch 197/350
57/57 [==============================] - 0s 1ms/step - loss: 0.1189 - accuracy: 0.9016 - mae: 0.1189 - pearson_correlation: 0.6309 - euclidean_distance: 0.1938
Epoch 198/350
57/57 [==============================] - 0s 1ms/step - loss: 0.1192 - accuracy: 0.9030 - mae: 0.1192 - pearson_correlation: 0.6351 - euclidean_distance: 0.1939
Epoch 199/350
57/57 [==============================] - 0s 870us/step - loss: 0.1170 - accuracy: 0.9034 - mae: 0.1170 - pearson_correlation: 0.6379 - euclidean_distance: 0.1910
Epoch 200/350
57/57 [==============================] - 0s 870us/step - loss: 0.1171 - accuracy: 0.9025 - mae: 0.1171 - pearson_correlation: 0.6351 - euclidean_distance: 0.1900
Epoch 201/350
57/57 [==============================] - 0s 869us/step - loss: 0.1166 - accuracy: 0.9047 - mae: 0.1166 - pearson_correlation: 0.6411 - euclidean_distance: 0.1897
Epoch 202/350
57/57 [==============================] - 0s 872us/step - loss: 0.1156 - accuracy: 0.9100 - mae: 0.1156 - pearson_correlation: 0.6422 - euclidean_distance: 0.1884
Epoch 203/350
57/57 [==============================] - 0s 870us/step - loss: 0.1155 - accuracy: 0.9012 - mae: 0.1155 - pearson_correlation: 0.6367 - euclidean_distance: 0.1881
Epoch 204/350
57/57 [==============================] - 0s 867us/step - loss: 0.1146 - accuracy: 0.9091 - mae: 0.1146 - pearson_correlation: 0.6406 - euclidean_distance: 0.1861
Epoch 205/350
57/57 [==============================] - 0s 857us/step - loss: 0.1148 - accuracy: 0.9091 - mae: 0.1148 - pearson_correlation: 0.6502 - euclidean_distance: 0.1862
Epoch 206/350
57/57 [==============================] - 0s 866us/step - loss: 0.1150 - accuracy: 0.9082 - mae: 0.1150 - pearson_correlation: 0.6497 - euclidean_distance: 0.1873
Epoch 207/350
57/57 [==============================] - 0s 860us/step - loss: 0.1145 - accuracy: 0.9087 - mae: 0.1145 - pearson_correlation: 0.6421 - euclidean_distance: 0.1863
Epoch 208/350
57/57 [==============================] - 0s 867us/step - loss: 0.1173 - accuracy: 0.9060 - mae: 0.1173 - pearson_correlation: 0.6339 - euclidean_distance: 0.1908
Epoch 209/350
57/57 [==============================] - 0s 857us/step - loss: 0.1135 - accuracy: 0.9034 - mae: 0.1135 - pearson_correlation: 0.6463 - euclidean_distance: 0.1846
Epoch 210/350
57/57 [==============================] - 0s 853us/step - loss: 0.1134 - accuracy: 0.9100 - mae: 0.1134 - pearson_correlation: 0.6558 - euclidean_distance: 0.1841
Epoch 211/350
57/57 [==============================] - 0s 858us/step - loss: 0.1134 - accuracy: 0.9056 - mae: 0.1134 - pearson_correlation: 0.6515 - euclidean_distance: 0.1846
Epoch 212/350
57/57 [==============================] - 0s 868us/step - loss: 0.1152 - accuracy: 0.9091 - mae: 0.1152 - pearson_correlation: 0.6493 - euclidean_distance: 0.1874
Epoch 213/350
57/57 [==============================] - 0s 861us/step - loss: 0.1131 - accuracy: 0.9131 - mae: 0.1131 - pearson_correlation: 0.6525 - euclidean_distance: 0.1842
Epoch 214/350
57/57 [==============================] - 0s 861us/step - loss: 0.1136 - accuracy: 0.9118 - mae: 0.1136 - pearson_correlation: 0.6560 - euclidean_distance: 0.1840
Epoch 215/350
57/57 [==============================] - 0s 866us/step - loss: 0.1111 - accuracy: 0.9082 - mae: 0.1111 - pearson_correlation: 0.6542 - euclidean_distance: 0.1812
Epoch 216/350
57/57 [==============================] - 0s 865us/step - loss: 0.1134 - accuracy: 0.9144 - mae: 0.1134 - pearson_correlation: 0.6511 - euclidean_distance: 0.1843
Epoch 217/350
57/57 [==============================] - 0s 867us/step - loss: 0.1099 - accuracy: 0.9096 - mae: 0.1099 - pearson_correlation: 0.6588 - euclidean_distance: 0.1789
Epoch 218/350
57/57 [==============================] - 0s 861us/step - loss: 0.1099 - accuracy: 0.9078 - mae: 0.1099 - pearson_correlation: 0.6618 - euclidean_distance: 0.1792
Epoch 219/350
57/57 [==============================] - 0s 867us/step - loss: 0.1116 - accuracy: 0.9105 - mae: 0.1116 - pearson_correlation: 0.6510 - euclidean_distance: 0.1821
Epoch 220/350
57/57 [==============================] - 0s 867us/step - loss: 0.1113 - accuracy: 0.9153 - mae: 0.1113 - pearson_correlation: 0.6627 - euclidean_distance: 0.1805
Epoch 221/350
57/57 [==============================] - 0s 867us/step - loss: 0.1104 - accuracy: 0.9135 - mae: 0.1104 - pearson_correlation: 0.6611 - euclidean_distance: 0.1794
Epoch 222/350
57/57 [==============================] - 0s 855us/step - loss: 0.1124 - accuracy: 0.9157 - mae: 0.1124 - pearson_correlation: 0.6595 - euclidean_distance: 0.1829
Epoch 223/350
57/57 [==============================] - 0s 862us/step - loss: 0.1074 - accuracy: 0.9113 - mae: 0.1074 - pearson_correlation: 0.6588 - euclidean_distance: 0.1753
Epoch 224/350
57/57 [==============================] - 0s 849us/step - loss: 0.1090 - accuracy: 0.9149 - mae: 0.1090 - pearson_correlation: 0.6657 - euclidean_distance: 0.1770
Epoch 225/350
57/57 [==============================] - 0s 857us/step - loss: 0.1127 - accuracy: 0.9153 - mae: 0.1127 - pearson_correlation: 0.6562 - euclidean_distance: 0.1830
Epoch 226/350
57/57 [==============================] - 0s 863us/step - loss: 0.1106 - accuracy: 0.9180 - mae: 0.1106 - pearson_correlation: 0.6655 - euclidean_distance: 0.1789
Epoch 227/350
57/57 [==============================] - 0s 861us/step - loss: 0.1102 - accuracy: 0.9140 - mae: 0.1102 - pearson_correlation: 0.6626 - euclidean_distance: 0.1795
Epoch 228/350
57/57 [==============================] - 0s 863us/step - loss: 0.1093 - accuracy: 0.9149 - mae: 0.1093 - pearson_correlation: 0.6655 - euclidean_distance: 0.1778
Epoch 229/350
57/57 [==============================] - 0s 867us/step - loss: 0.1079 - accuracy: 0.9131 - mae: 0.1079 - pearson_correlation: 0.6657 - euclidean_distance: 0.1752
Epoch 230/350
57/57 [==============================] - 0s 916us/step - loss: 0.1098 - accuracy: 0.9171 - mae: 0.1098 - pearson_correlation: 0.6639 - euclidean_distance: 0.1784
Epoch 231/350
57/57 [==============================] - 0s 868us/step - loss: 0.1072 - accuracy: 0.9197 - mae: 0.1072 - pearson_correlation: 0.6641 - euclidean_distance: 0.1747
Epoch 232/350
57/57 [==============================] - 0s 868us/step - loss: 0.1070 - accuracy: 0.9153 - mae: 0.1070 - pearson_correlation: 0.6714 - euclidean_distance: 0.1748
Epoch 233/350
57/57 [==============================] - 0s 861us/step - loss: 0.1094 - accuracy: 0.9188 - mae: 0.1094 - pearson_correlation: 0.6675 - euclidean_distance: 0.1780
Epoch 234/350
57/57 [==============================] - 0s 863us/step - loss: 0.1077 - accuracy: 0.9180 - mae: 0.1077 - pearson_correlation: 0.6662 - euclidean_distance: 0.1750
Epoch 235/350
57/57 [==============================] - 0s 865us/step - loss: 0.1061 - accuracy: 0.9175 - mae: 0.1061 - pearson_correlation: 0.6740 - euclidean_distance: 0.1729
Epoch 236/350
57/57 [==============================] - 0s 860us/step - loss: 0.1105 - accuracy: 0.9162 - mae: 0.1105 - pearson_correlation: 0.6617 - euclidean_distance: 0.1794
Epoch 237/350
57/57 [==============================] - 0s 866us/step - loss: 0.1070 - accuracy: 0.9215 - mae: 0.1070 - pearson_correlation: 0.6729 - euclidean_distance: 0.1732
Epoch 238/350
57/57 [==============================] - 0s 865us/step - loss: 0.1068 - accuracy: 0.9184 - mae: 0.1068 - pearson_correlation: 0.6750 - euclidean_distance: 0.1739
Epoch 239/350
57/57 [==============================] - 0s 864us/step - loss: 0.1065 - accuracy: 0.9149 - mae: 0.1065 - pearson_correlation: 0.6721 - euclidean_distance: 0.1729
Epoch 240/350
57/57 [==============================] - 0s 858us/step - loss: 0.1073 - accuracy: 0.9188 - mae: 0.1073 - pearson_correlation: 0.6733 - euclidean_distance: 0.1746
Epoch 241/350
57/57 [==============================] - 0s 870us/step - loss: 0.1065 - accuracy: 0.9197 - mae: 0.1065 - pearson_correlation: 0.6740 - euclidean_distance: 0.1733
Epoch 242/350
57/57 [==============================] - 0s 857us/step - loss: 0.1083 - accuracy: 0.9180 - mae: 0.1083 - pearson_correlation: 0.6754 - euclidean_distance: 0.1757
Epoch 243/350
57/57 [==============================] - 0s 865us/step - loss: 0.1057 - accuracy: 0.9246 - mae: 0.1057 - pearson_correlation: 0.6762 - euclidean_distance: 0.1714
Epoch 244/350
57/57 [==============================] - 0s 868us/step - loss: 0.1051 - accuracy: 0.9224 - mae: 0.1051 - pearson_correlation: 0.6767 - euclidean_distance: 0.1710
Epoch 245/350
57/57 [==============================] - 0s 863us/step - loss: 0.1055 - accuracy: 0.9210 - mae: 0.1055 - pearson_correlation: 0.6774 - euclidean_distance: 0.1715
Epoch 246/350
57/57 [==============================] - 0s 865us/step - loss: 0.1044 - accuracy: 0.9228 - mae: 0.1044 - pearson_correlation: 0.6856 - euclidean_distance: 0.1693
Epoch 247/350
57/57 [==============================] - 0s 855us/step - loss: 0.1037 - accuracy: 0.9219 - mae: 0.1037 - pearson_correlation: 0.6835 - euclidean_distance: 0.1688
Epoch 248/350
57/57 [==============================] - 0s 865us/step - loss: 0.1052 - accuracy: 0.9228 - mae: 0.1052 - pearson_correlation: 0.6805 - euclidean_distance: 0.1706
Epoch 249/350
57/57 [==============================] - 0s 857us/step - loss: 0.1054 - accuracy: 0.9246 - mae: 0.1054 - pearson_correlation: 0.6779 - euclidean_distance: 0.1706
Epoch 250/350
57/57 [==============================] - 0s 859us/step - loss: 0.1045 - accuracy: 0.9259 - mae: 0.1045 - pearson_correlation: 0.6821 - euclidean_distance: 0.1694
Epoch 251/350
57/57 [==============================] - 0s 868us/step - loss: 0.1045 - accuracy: 0.9215 - mae: 0.1045 - pearson_correlation: 0.6809 - euclidean_distance: 0.1698
Epoch 252/350
57/57 [==============================] - 0s 867us/step - loss: 0.1067 - accuracy: 0.9246 - mae: 0.1067 - pearson_correlation: 0.6753 - euclidean_distance: 0.1731
Epoch 253/350
57/57 [==============================] - 0s 861us/step - loss: 0.1034 - accuracy: 0.9259 - mae: 0.1034 - pearson_correlation: 0.6878 - euclidean_distance: 0.1678
Epoch 254/350
57/57 [==============================] - 0s 859us/step - loss: 0.1041 - accuracy: 0.9219 - mae: 0.1041 - pearson_correlation: 0.6799 - euclidean_distance: 0.1692
Epoch 255/350
57/57 [==============================] - 0s 865us/step - loss: 0.1018 - accuracy: 0.9250 - mae: 0.1018 - pearson_correlation: 0.6919 - euclidean_distance: 0.1656
Epoch 256/350
57/57 [==============================] - 0s 863us/step - loss: 0.1037 - accuracy: 0.9241 - mae: 0.1037 - pearson_correlation: 0.6832 - euclidean_distance: 0.1682
Epoch 257/350
57/57 [==============================] - 0s 862us/step - loss: 0.1002 - accuracy: 0.9171 - mae: 0.1002 - pearson_correlation: 0.6881 - euclidean_distance: 0.1630
Epoch 258/350
57/57 [==============================] - 0s 855us/step - loss: 0.1042 - accuracy: 0.9228 - mae: 0.1042 - pearson_correlation: 0.6843 - euclidean_distance: 0.1698
Epoch 259/350
57/57 [==============================] - 0s 859us/step - loss: 0.1019 - accuracy: 0.9259 - mae: 0.1019 - pearson_correlation: 0.6892 - euclidean_distance: 0.1660
Epoch 260/350
57/57 [==============================] - 0s 888us/step - loss: 0.1027 - accuracy: 0.9259 - mae: 0.1027 - pearson_correlation: 0.6882 - euclidean_distance: 0.1663
Epoch 261/350
57/57 [==============================] - 0s 880us/step - loss: 0.1026 - accuracy: 0.9259 - mae: 0.1026 - pearson_correlation: 0.6905 - euclidean_distance: 0.1667
Epoch 262/350
57/57 [==============================] - 0s 875us/step - loss: 0.1033 - accuracy: 0.9232 - mae: 0.1033 - pearson_correlation: 0.6879 - euclidean_distance: 0.1676
Epoch 263/350
57/57 [==============================] - 0s 870us/step - loss: 0.1028 - accuracy: 0.9277 - mae: 0.1028 - pearson_correlation: 0.6877 - euclidean_distance: 0.1673
Epoch 264/350
57/57 [==============================] - 0s 865us/step - loss: 0.1033 - accuracy: 0.9299 - mae: 0.1033 - pearson_correlation: 0.6888 - euclidean_distance: 0.1678
Epoch 265/350
57/57 [==============================] - 0s 851us/step - loss: 0.1025 - accuracy: 0.9246 - mae: 0.1025 - pearson_correlation: 0.6920 - euclidean_distance: 0.1667
Epoch 266/350
57/57 [==============================] - 0s 861us/step - loss: 0.1016 - accuracy: 0.9281 - mae: 0.1016 - pearson_correlation: 0.6956 - euclidean_distance: 0.1651
Epoch 267/350
57/57 [==============================] - 0s 866us/step - loss: 0.1027 - accuracy: 0.9299 - mae: 0.1027 - pearson_correlation: 0.6880 - euclidean_distance: 0.1668
Epoch 268/350
57/57 [==============================] - 0s 864us/step - loss: 0.1051 - accuracy: 0.9277 - mae: 0.1051 - pearson_correlation: 0.6845 - euclidean_distance: 0.1701
Epoch 269/350
57/57 [==============================] - 0s 849us/step - loss: 0.0984 - accuracy: 0.9285 - mae: 0.0984 - pearson_correlation: 0.6993 - euclidean_distance: 0.1601
Epoch 270/350
57/57 [==============================] - 0s 853us/step - loss: 0.1012 - accuracy: 0.9290 - mae: 0.1012 - pearson_correlation: 0.6926 - euclidean_distance: 0.1644
Epoch 271/350
57/57 [==============================] - 0s 862us/step - loss: 0.1002 - accuracy: 0.9321 - mae: 0.1002 - pearson_correlation: 0.6961 - euclidean_distance: 0.1626
Epoch 272/350
57/57 [==============================] - 0s 858us/step - loss: 0.0997 - accuracy: 0.9307 - mae: 0.0997 - pearson_correlation: 0.6965 - euclidean_distance: 0.1622
Epoch 273/350
57/57 [==============================] - 0s 859us/step - loss: 0.0984 - accuracy: 0.9277 - mae: 0.0984 - pearson_correlation: 0.7014 - euclidean_distance: 0.1602
Epoch 274/350
57/57 [==============================] - 0s 868us/step - loss: 0.1009 - accuracy: 0.9316 - mae: 0.1009 - pearson_correlation: 0.6916 - euclidean_distance: 0.1636
Epoch 275/350
57/57 [==============================] - 0s 869us/step - loss: 0.0998 - accuracy: 0.9299 - mae: 0.0998 - pearson_correlation: 0.7002 - euclidean_distance: 0.1623
Epoch 276/350
57/57 [==============================] - 0s 862us/step - loss: 0.0998 - accuracy: 0.9290 - mae: 0.0998 - pearson_correlation: 0.6954 - euclidean_distance: 0.1626
Epoch 277/350
57/57 [==============================] - 0s 863us/step - loss: 0.1015 - accuracy: 0.9316 - mae: 0.1015 - pearson_correlation: 0.6947 - euclidean_distance: 0.1651
Epoch 278/350
57/57 [==============================] - 0s 861us/step - loss: 0.0985 - accuracy: 0.9325 - mae: 0.0985 - pearson_correlation: 0.7008 - euclidean_distance: 0.1602
Epoch 279/350
57/57 [==============================] - 0s 856us/step - loss: 0.1004 - accuracy: 0.9285 - mae: 0.1004 - pearson_correlation: 0.6929 - euclidean_distance: 0.1630
Epoch 280/350
57/57 [==============================] - 0s 874us/step - loss: 0.0992 - accuracy: 0.9299 - mae: 0.0992 - pearson_correlation: 0.6958 - euclidean_distance: 0.1612
Epoch 281/350
57/57 [==============================] - 0s 861us/step - loss: 0.0994 - accuracy: 0.9272 - mae: 0.0994 - pearson_correlation: 0.6986 - euclidean_distance: 0.1623
Epoch 282/350
57/57 [==============================] - 0s 860us/step - loss: 0.0986 - accuracy: 0.9330 - mae: 0.0986 - pearson_correlation: 0.6996 - euclidean_distance: 0.1608
Epoch 283/350
57/57 [==============================] - 0s 867us/step - loss: 0.0987 - accuracy: 0.9307 - mae: 0.0987 - pearson_correlation: 0.7021 - euclidean_distance: 0.1602
Epoch 284/350
57/57 [==============================] - 0s 856us/step - loss: 0.0997 - accuracy: 0.9312 - mae: 0.0997 - pearson_correlation: 0.6997 - euclidean_distance: 0.1617
Epoch 285/350
57/57 [==============================] - 0s 856us/step - loss: 0.0984 - accuracy: 0.9316 - mae: 0.0984 - pearson_correlation: 0.6999 - euclidean_distance: 0.1601
Epoch 286/350
57/57 [==============================] - 0s 987us/step - loss: 0.1006 - accuracy: 0.9334 - mae: 0.1006 - pearson_correlation: 0.6904 - euclidean_distance: 0.1639
Epoch 287/350
57/57 [==============================] - 0s 873us/step - loss: 0.1000 - accuracy: 0.9338 - mae: 0.1000 - pearson_correlation: 0.7011 - euclidean_distance: 0.1626
Epoch 288/350
57/57 [==============================] - 0s 861us/step - loss: 0.1007 - accuracy: 0.9312 - mae: 0.1007 - pearson_correlation: 0.6947 - euclidean_distance: 0.1639
Epoch 289/350
57/57 [==============================] - 0s 866us/step - loss: 0.0977 - accuracy: 0.9334 - mae: 0.0977 - pearson_correlation: 0.7101 - euclidean_distance: 0.1588
Epoch 290/350
57/57 [==============================] - 0s 867us/step - loss: 0.0961 - accuracy: 0.9338 - mae: 0.0961 - pearson_correlation: 0.7070 - euclidean_distance: 0.1561
Epoch 291/350
57/57 [==============================] - 0s 856us/step - loss: 0.0963 - accuracy: 0.9321 - mae: 0.0963 - pearson_correlation: 0.7076 - euclidean_distance: 0.1571
Epoch 292/350
57/57 [==============================] - 0s 856us/step - loss: 0.0975 - accuracy: 0.9334 - mae: 0.0975 - pearson_correlation: 0.7030 - euclidean_distance: 0.1587
Epoch 293/350
57/57 [==============================] - 0s 860us/step - loss: 0.0993 - accuracy: 0.9307 - mae: 0.0993 - pearson_correlation: 0.7001 - euclidean_distance: 0.1612
Epoch 294/350
57/57 [==============================] - 0s 858us/step - loss: 0.0979 - accuracy: 0.9338 - mae: 0.0979 - pearson_correlation: 0.7021 - euclidean_distance: 0.1598
Epoch 295/350
57/57 [==============================] - 0s 856us/step - loss: 0.0959 - accuracy: 0.9338 - mae: 0.0959 - pearson_correlation: 0.7063 - euclidean_distance: 0.1558
Epoch 296/350
57/57 [==============================] - 0s 863us/step - loss: 0.0982 - accuracy: 0.9334 - mae: 0.0982 - pearson_correlation: 0.7052 - euclidean_distance: 0.1597
Epoch 297/350
57/57 [==============================] - 0s 856us/step - loss: 0.0979 - accuracy: 0.9343 - mae: 0.0979 - pearson_correlation: 0.7034 - euclidean_distance: 0.1593
Epoch 298/350
57/57 [==============================] - 0s 850us/step - loss: 0.0979 - accuracy: 0.9338 - mae: 0.0979 - pearson_correlation: 0.7057 - euclidean_distance: 0.1588
Epoch 299/350
57/57 [==============================] - 0s 869us/step - loss: 0.0984 - accuracy: 0.9352 - mae: 0.0984 - pearson_correlation: 0.7057 - euclidean_distance: 0.1597
Epoch 300/350
57/57 [==============================] - 0s 875us/step - loss: 0.0982 - accuracy: 0.9347 - mae: 0.0982 - pearson_correlation: 0.7056 - euclidean_distance: 0.1593
Epoch 301/350
57/57 [==============================] - 0s 858us/step - loss: 0.1005 - accuracy: 0.9312 - mae: 0.1005 - pearson_correlation: 0.6978 - euclidean_distance: 0.1627
Epoch 302/350
57/57 [==============================] - 0s 862us/step - loss: 0.0974 - accuracy: 0.9378 - mae: 0.0974 - pearson_correlation: 0.7104 - euclidean_distance: 0.1576
Epoch 303/350
57/57 [==============================] - 0s 863us/step - loss: 0.0960 - accuracy: 0.9360 - mae: 0.0960 - pearson_correlation: 0.7086 - euclidean_distance: 0.1565
Epoch 304/350
57/57 [==============================] - 0s 852us/step - loss: 0.0953 - accuracy: 0.9378 - mae: 0.0953 - pearson_correlation: 0.7150 - euclidean_distance: 0.1547
Epoch 305/350
57/57 [==============================] - 0s 859us/step - loss: 0.0949 - accuracy: 0.9325 - mae: 0.0949 - pearson_correlation: 0.7125 - euclidean_distance: 0.1550
Epoch 306/350
57/57 [==============================] - 0s 868us/step - loss: 0.0959 - accuracy: 0.9321 - mae: 0.0959 - pearson_correlation: 0.7085 - euclidean_distance: 0.1562
Epoch 307/350
57/57 [==============================] - 0s 865us/step - loss: 0.0974 - accuracy: 0.9378 - mae: 0.0974 - pearson_correlation: 0.7094 - euclidean_distance: 0.1580
Epoch 308/350
57/57 [==============================] - 0s 867us/step - loss: 0.0968 - accuracy: 0.9400 - mae: 0.0968 - pearson_correlation: 0.7165 - euclidean_distance: 0.1573
Epoch 309/350
57/57 [==============================] - 0s 846us/step - loss: 0.0950 - accuracy: 0.9365 - mae: 0.0950 - pearson_correlation: 0.7174 - euclidean_distance: 0.1541
Epoch 310/350
57/57 [==============================] - 0s 859us/step - loss: 0.0961 - accuracy: 0.9343 - mae: 0.0961 - pearson_correlation: 0.7095 - euclidean_distance: 0.1562
Epoch 311/350
57/57 [==============================] - 0s 851us/step - loss: 0.0973 - accuracy: 0.9343 - mae: 0.0973 - pearson_correlation: 0.7103 - euclidean_distance: 0.1580
Epoch 312/350
57/57 [==============================] - 0s 852us/step - loss: 0.0958 - accuracy: 0.9365 - mae: 0.0958 - pearson_correlation: 0.7046 - euclidean_distance: 0.1560
Epoch 313/350
57/57 [==============================] - 0s 855us/step - loss: 0.0945 - accuracy: 0.9369 - mae: 0.0945 - pearson_correlation: 0.7121 - euclidean_distance: 0.1538
Epoch 314/350
57/57 [==============================] - 0s 859us/step - loss: 0.0970 - accuracy: 0.9360 - mae: 0.0970 - pearson_correlation: 0.7167 - euclidean_distance: 0.1571
Epoch 315/350
57/57 [==============================] - 0s 860us/step - loss: 0.0966 - accuracy: 0.9374 - mae: 0.0966 - pearson_correlation: 0.7097 - euclidean_distance: 0.1571
Epoch 316/350
57/57 [==============================] - 0s 864us/step - loss: 0.0972 - accuracy: 0.9365 - mae: 0.0972 - pearson_correlation: 0.7078 - euclidean_distance: 0.1577
Epoch 317/350
57/57 [==============================] - 0s 863us/step - loss: 0.0961 - accuracy: 0.9365 - mae: 0.0961 - pearson_correlation: 0.7094 - euclidean_distance: 0.1563
Epoch 318/350
57/57 [==============================] - 0s 858us/step - loss: 0.0940 - accuracy: 0.9374 - mae: 0.0940 - pearson_correlation: 0.7158 - euclidean_distance: 0.1525
Epoch 319/350
57/57 [==============================] - 0s 863us/step - loss: 0.0924 - accuracy: 0.9360 - mae: 0.0924 - pearson_correlation: 0.7202 - euclidean_distance: 0.1503
Epoch 320/350
57/57 [==============================] - 0s 870us/step - loss: 0.0974 - accuracy: 0.9374 - mae: 0.0974 - pearson_correlation: 0.7073 - euclidean_distance: 0.1579
Epoch 321/350
57/57 [==============================] - 0s 861us/step - loss: 0.0960 - accuracy: 0.9382 - mae: 0.0960 - pearson_correlation: 0.7146 - euclidean_distance: 0.1560
Epoch 322/350
57/57 [==============================] - 0s 865us/step - loss: 0.0950 - accuracy: 0.9356 - mae: 0.0950 - pearson_correlation: 0.7148 - euclidean_distance: 0.1539
Epoch 323/350
57/57 [==============================] - 0s 853us/step - loss: 0.0943 - accuracy: 0.9378 - mae: 0.0943 - pearson_correlation: 0.7188 - euclidean_distance: 0.1529
Epoch 324/350
57/57 [==============================] - 0s 848us/step - loss: 0.0958 - accuracy: 0.9356 - mae: 0.0958 - pearson_correlation: 0.7094 - euclidean_distance: 0.1557
Epoch 325/350
57/57 [==============================] - 0s 861us/step - loss: 0.0959 - accuracy: 0.9360 - mae: 0.0959 - pearson_correlation: 0.7146 - euclidean_distance: 0.1552
Epoch 326/350
57/57 [==============================] - 0s 865us/step - loss: 0.0924 - accuracy: 0.9365 - mae: 0.0924 - pearson_correlation: 0.7201 - euclidean_distance: 0.1500
Epoch 327/350
57/57 [==============================] - 0s 863us/step - loss: 0.0928 - accuracy: 0.9378 - mae: 0.0928 - pearson_correlation: 0.7148 - euclidean_distance: 0.1508
Epoch 328/350
57/57 [==============================] - 0s 862us/step - loss: 0.0949 - accuracy: 0.9378 - mae: 0.0949 - pearson_correlation: 0.7172 - euclidean_distance: 0.1541
Epoch 329/350
57/57 [==============================] - 0s 866us/step - loss: 0.0940 - accuracy: 0.9387 - mae: 0.0940 - pearson_correlation: 0.7145 - euclidean_distance: 0.1530
Epoch 330/350
57/57 [==============================] - 0s 859us/step - loss: 0.0923 - accuracy: 0.9369 - mae: 0.0923 - pearson_correlation: 0.7220 - euclidean_distance: 0.1505
Epoch 331/350
57/57 [==============================] - 0s 861us/step - loss: 0.0912 - accuracy: 0.9374 - mae: 0.0912 - pearson_correlation: 0.7224 - euclidean_distance: 0.1482
Epoch 332/350
57/57 [==============================] - 0s 861us/step - loss: 0.0908 - accuracy: 0.9365 - mae: 0.0908 - pearson_correlation: 0.7259 - euclidean_distance: 0.1478
Epoch 333/350
57/57 [==============================] - 0s 848us/step - loss: 0.0953 - accuracy: 0.9365 - mae: 0.0953 - pearson_correlation: 0.7156 - euclidean_distance: 0.1548
Epoch 334/350
57/57 [==============================] - 0s 862us/step - loss: 0.0945 - accuracy: 0.9378 - mae: 0.0945 - pearson_correlation: 0.7136 - euclidean_distance: 0.1534
Epoch 335/350
57/57 [==============================] - 0s 857us/step - loss: 0.0938 - accuracy: 0.9374 - mae: 0.0938 - pearson_correlation: 0.7209 - euclidean_distance: 0.1523
Epoch 336/350
57/57 [==============================] - 0s 859us/step - loss: 0.0923 - accuracy: 0.9378 - mae: 0.0923 - pearson_correlation: 0.7199 - euclidean_distance: 0.1498
Epoch 337/350
57/57 [==============================] - 0s 863us/step - loss: 0.0923 - accuracy: 0.9396 - mae: 0.0923 - pearson_correlation: 0.7221 - euclidean_distance: 0.1503
Epoch 338/350
57/57 [==============================] - 0s 862us/step - loss: 0.0937 - accuracy: 0.9404 - mae: 0.0937 - pearson_correlation: 0.7213 - euclidean_distance: 0.1526
Epoch 339/350
57/57 [==============================] - 0s 858us/step - loss: 0.0927 - accuracy: 0.9404 - mae: 0.0927 - pearson_correlation: 0.7205 - euclidean_distance: 0.1508
Epoch 340/350
57/57 [==============================] - 0s 868us/step - loss: 0.0936 - accuracy: 0.9387 - mae: 0.0936 - pearson_correlation: 0.7183 - euclidean_distance: 0.1522
Epoch 341/350
57/57 [==============================] - 0s 949us/step - loss: 0.0927 - accuracy: 0.9312 - mae: 0.0927 - pearson_correlation: 0.7190 - euclidean_distance: 0.1503
Epoch 342/350
57/57 [==============================] - 0s 1ms/step - loss: 0.0900 - accuracy: 0.9360 - mae: 0.0900 - pearson_correlation: 0.7312 - euclidean_distance: 0.1456
Epoch 343/350
57/57 [==============================] - 0s 909us/step - loss: 0.0936 - accuracy: 0.9382 - mae: 0.0936 - pearson_correlation: 0.7212 - euclidean_distance: 0.1519
Epoch 344/350
57/57 [==============================] - 0s 859us/step - loss: 0.0919 - accuracy: 0.9391 - mae: 0.0919 - pearson_correlation: 0.7230 - euclidean_distance: 0.1494
Epoch 345/350
57/57 [==============================] - 0s 971us/step - loss: 0.0920 - accuracy: 0.9391 - mae: 0.0920 - pearson_correlation: 0.7222 - euclidean_distance: 0.1498
Epoch 346/350
57/57 [==============================] - 0s 836us/step - loss: 0.0910 - accuracy: 0.9378 - mae: 0.0910 - pearson_correlation: 0.7269 - euclidean_distance: 0.1481
Epoch 347/350
57/57 [==============================] - 0s 843us/step - loss: 0.0894 - accuracy: 0.9404 - mae: 0.0894 - pearson_correlation: 0.7320 - euclidean_distance: 0.1452
Epoch 348/350
57/57 [==============================] - 0s 872us/step - loss: 0.0915 - accuracy: 0.9365 - mae: 0.0915 - pearson_correlation: 0.7285 - euclidean_distance: 0.1484
Epoch 349/350
57/57 [==============================] - 0s 861us/step - loss: 0.0900 - accuracy: 0.9391 - mae: 0.0900 - pearson_correlation: 0.7274 - euclidean_distance: 0.1468
Epoch 350/350
57/57 [==============================] - 0s 855us/step - loss: 0.0924 - accuracy: 0.9378 - mae: 0.0924 - pearson_correlation: 0.7232 - euclidean_distance: 0.1496
29/29 [==============================] - 0s 525us/step
Epoch 1/350
57/57 [==============================] - 1s 858us/step - loss: 0.5864 - accuracy: 0.1584 - mae: 0.5864 - pearson_correlation: -0.5191 - euclidean_distance: 0.9496
Epoch 2/350
57/57 [==============================] - 0s 823us/step - loss: 0.5832 - accuracy: 0.1592 - mae: 0.5832 - pearson_correlation: -0.5288 - euclidean_distance: 0.9450
Epoch 3/350
57/57 [==============================] - 0s 871us/step - loss: 0.5786 - accuracy: 0.1491 - mae: 0.5786 - pearson_correlation: -0.5314 - euclidean_distance: 0.9392
Epoch 4/350
57/57 [==============================] - 0s 865us/step - loss: 0.5765 - accuracy: 0.1495 - mae: 0.5765 - pearson_correlation: -0.5346 - euclidean_distance: 0.9352
Epoch 5/350
57/57 [==============================] - 0s 864us/step - loss: 0.5729 - accuracy: 0.1504 - mae: 0.5729 - pearson_correlation: -0.5383 - euclidean_distance: 0.9309
Epoch 6/350
57/57 [==============================] - 0s 860us/step - loss: 0.5680 - accuracy: 0.1513 - mae: 0.5680 - pearson_correlation: -0.5375 - euclidean_distance: 0.9249
Epoch 7/350
57/57 [==============================] - 0s 862us/step - loss: 0.5657 - accuracy: 0.1535 - mae: 0.5657 - pearson_correlation: -0.5399 - euclidean_distance: 0.9210
Epoch 8/350
57/57 [==============================] - 0s 857us/step - loss: 0.5622 - accuracy: 0.1491 - mae: 0.5622 - pearson_correlation: -0.5353 - euclidean_distance: 0.9152
Epoch 9/350
57/57 [==============================] - 0s 856us/step - loss: 0.5587 - accuracy: 0.1557 - mae: 0.5587 - pearson_correlation: -0.5411 - euclidean_distance: 0.9098
Epoch 10/350
57/57 [==============================] - 0s 860us/step - loss: 0.5551 - accuracy: 0.1517 - mae: 0.5551 - pearson_correlation: -0.5430 - euclidean_distance: 0.9052
Epoch 11/350
57/57 [==============================] - 0s 860us/step - loss: 0.5509 - accuracy: 0.1526 - mae: 0.5509 - pearson_correlation: -0.5466 - euclidean_distance: 0.9005
Epoch 12/350
57/57 [==============================] - 0s 859us/step - loss: 0.5488 - accuracy: 0.1464 - mae: 0.5488 - pearson_correlation: -0.5464 - euclidean_distance: 0.8965
Epoch 13/350
57/57 [==============================] - 0s 857us/step - loss: 0.5446 - accuracy: 0.1539 - mae: 0.5446 - pearson_correlation: -0.5451 - euclidean_distance: 0.8909
Epoch 14/350
57/57 [==============================] - 0s 862us/step - loss: 0.5409 - accuracy: 0.1504 - mae: 0.5409 - pearson_correlation: -0.5443 - euclidean_distance: 0.8849
Epoch 15/350
57/57 [==============================] - 0s 861us/step - loss: 0.5397 - accuracy: 0.1491 - mae: 0.5397 - pearson_correlation: -0.5512 - euclidean_distance: 0.8820
Epoch 16/350
57/57 [==============================] - 0s 859us/step - loss: 0.5346 - accuracy: 0.1416 - mae: 0.5346 - pearson_correlation: -0.5537 - euclidean_distance: 0.8761
Epoch 17/350
57/57 [==============================] - 0s 853us/step - loss: 0.5313 - accuracy: 0.1381 - mae: 0.5313 - pearson_correlation: -0.5532 - euclidean_distance: 0.8700
Epoch 18/350
57/57 [==============================] - 0s 857us/step - loss: 0.5276 - accuracy: 0.1557 - mae: 0.5276 - pearson_correlation: -0.5507 - euclidean_distance: 0.8655
Epoch 19/350
57/57 [==============================] - 0s 855us/step - loss: 0.5252 - accuracy: 0.1473 - mae: 0.5252 - pearson_correlation: -0.5492 - euclidean_distance: 0.8622
Epoch 20/350
57/57 [==============================] - 0s 860us/step - loss: 0.5206 - accuracy: 0.1464 - mae: 0.5206 - pearson_correlation: -0.5524 - euclidean_distance: 0.8546
Epoch 21/350
57/57 [==============================] - 0s 908us/step - loss: 0.5178 - accuracy: 0.1394 - mae: 0.5178 - pearson_correlation: -0.5551 - euclidean_distance: 0.8518
Epoch 22/350
57/57 [==============================] - 0s 855us/step - loss: 0.5139 - accuracy: 0.1535 - mae: 0.5139 - pearson_correlation: -0.5464 - euclidean_distance: 0.8458
Epoch 23/350
57/57 [==============================] - 0s 853us/step - loss: 0.5108 - accuracy: 0.1434 - mae: 0.5108 - pearson_correlation: -0.5522 - euclidean_distance: 0.8412
Epoch 24/350
57/57 [==============================] - 0s 860us/step - loss: 0.5068 - accuracy: 0.1451 - mae: 0.5068 - pearson_correlation: -0.5524 - euclidean_distance: 0.8360
Epoch 25/350
57/57 [==============================] - 0s 867us/step - loss: 0.5042 - accuracy: 0.1420 - mae: 0.5042 - pearson_correlation: -0.5535 - euclidean_distance: 0.8303
Epoch 26/350
57/57 [==============================] - 0s 850us/step - loss: 0.4998 - accuracy: 0.1469 - mae: 0.4998 - pearson_correlation: -0.5533 - euclidean_distance: 0.8248
Epoch 27/350
57/57 [==============================] - 0s 851us/step - loss: 0.4966 - accuracy: 0.1464 - mae: 0.4966 - pearson_correlation: -0.5509 - euclidean_distance: 0.8194
Epoch 28/350
57/57 [==============================] - 0s 852us/step - loss: 0.4940 - accuracy: 0.1513 - mae: 0.4940 - pearson_correlation: -0.5489 - euclidean_distance: 0.8158
Epoch 29/350
57/57 [==============================] - 0s 858us/step - loss: 0.4907 - accuracy: 0.1464 - mae: 0.4907 - pearson_correlation: -0.5530 - euclidean_distance: 0.8105
Epoch 30/350
57/57 [==============================] - 0s 860us/step - loss: 0.4862 - accuracy: 0.1535 - mae: 0.4862 - pearson_correlation: -0.5440 - euclidean_distance: 0.8033
Epoch 31/350
57/57 [==============================] - 0s 852us/step - loss: 0.4835 - accuracy: 0.1451 - mae: 0.4835 - pearson_correlation: -0.5516 - euclidean_distance: 0.7999
Epoch 32/350
57/57 [==============================] - 0s 853us/step - loss: 0.4796 - accuracy: 0.1517 - mae: 0.4796 - pearson_correlation: -0.5436 - euclidean_distance: 0.7940
Epoch 33/350
57/57 [==============================] - 0s 852us/step - loss: 0.4763 - accuracy: 0.1531 - mae: 0.4763 - pearson_correlation: -0.5526 - euclidean_distance: 0.7889
Epoch 34/350
57/57 [==============================] - 0s 855us/step - loss: 0.4728 - accuracy: 0.1522 - mae: 0.4728 - pearson_correlation: -0.5465 - euclidean_distance: 0.7833
Epoch 35/350
57/57 [==============================] - 0s 856us/step - loss: 0.4699 - accuracy: 0.1588 - mae: 0.4699 - pearson_correlation: -0.5367 - euclidean_distance: 0.7783
Epoch 36/350
57/57 [==============================] - 0s 857us/step - loss: 0.4653 - accuracy: 0.1517 - mae: 0.4653 - pearson_correlation: -0.5458 - euclidean_distance: 0.7729
Epoch 37/350
57/57 [==============================] - 0s 859us/step - loss: 0.4622 - accuracy: 0.1562 - mae: 0.4622 - pearson_correlation: -0.5469 - euclidean_distance: 0.7675
Epoch 38/350
57/57 [==============================] - 0s 858us/step - loss: 0.4586 - accuracy: 0.1535 - mae: 0.4586 - pearson_correlation: -0.5416 - euclidean_distance: 0.7619
Epoch 39/350
57/57 [==============================] - 0s 867us/step - loss: 0.4553 - accuracy: 0.1575 - mae: 0.4553 - pearson_correlation: -0.5358 - euclidean_distance: 0.7564
Epoch 40/350
57/57 [==============================] - 0s 852us/step - loss: 0.4505 - accuracy: 0.1526 - mae: 0.4505 - pearson_correlation: -0.5374 - euclidean_distance: 0.7505
Epoch 41/350
57/57 [==============================] - 0s 848us/step - loss: 0.4477 - accuracy: 0.1509 - mae: 0.4477 - pearson_correlation: -0.5394 - euclidean_distance: 0.7458
Epoch 42/350
57/57 [==============================] - 0s 838us/step - loss: 0.4455 - accuracy: 0.1619 - mae: 0.4455 - pearson_correlation: -0.5329 - euclidean_distance: 0.7405
Epoch 43/350
57/57 [==============================] - 0s 856us/step - loss: 0.4402 - accuracy: 0.1614 - mae: 0.4402 - pearson_correlation: -0.5304 - euclidean_distance: 0.7336
Epoch 44/350
57/57 [==============================] - 0s 852us/step - loss: 0.4374 - accuracy: 0.1685 - mae: 0.4374 - pearson_correlation: -0.5272 - euclidean_distance: 0.7287
Epoch 45/350
57/57 [==============================] - 0s 860us/step - loss: 0.4334 - accuracy: 0.1522 - mae: 0.4334 - pearson_correlation: -0.5340 - euclidean_distance: 0.7228
Epoch 46/350
57/57 [==============================] - 0s 845us/step - loss: 0.4296 - accuracy: 0.1592 - mae: 0.4296 - pearson_correlation: -0.5314 - euclidean_distance: 0.7174
Epoch 47/350
57/57 [==============================] - 0s 864us/step - loss: 0.4257 - accuracy: 0.1544 - mae: 0.4257 - pearson_correlation: -0.5218 - euclidean_distance: 0.7119
Epoch 48/350
57/57 [==============================] - 0s 850us/step - loss: 0.4227 - accuracy: 0.1694 - mae: 0.4227 - pearson_correlation: -0.5168 - euclidean_distance: 0.7064
Epoch 49/350
57/57 [==============================] - 0s 861us/step - loss: 0.4181 - accuracy: 0.1597 - mae: 0.4181 - pearson_correlation: -0.5192 - euclidean_distance: 0.7001
Epoch 50/350
57/57 [==============================] - 0s 859us/step - loss: 0.4149 - accuracy: 0.1689 - mae: 0.4149 - pearson_correlation: -0.5076 - euclidean_distance: 0.6941
Epoch 51/350
57/57 [==============================] - 0s 858us/step - loss: 0.4105 - accuracy: 0.1685 - mae: 0.4105 - pearson_correlation: -0.5104 - euclidean_distance: 0.6878
Epoch 52/350
57/57 [==============================] - 0s 853us/step - loss: 0.4072 - accuracy: 0.1703 - mae: 0.4072 - pearson_correlation: -0.5026 - euclidean_distance: 0.6825
Epoch 53/350
57/57 [==============================] - 0s 849us/step - loss: 0.4036 - accuracy: 0.1703 - mae: 0.4036 - pearson_correlation: -0.4963 - euclidean_distance: 0.6777
Epoch 54/350
57/57 [==============================] - 0s 844us/step - loss: 0.3986 - accuracy: 0.1773 - mae: 0.3986 - pearson_correlation: -0.4857 - euclidean_distance: 0.6704
Epoch 55/350
57/57 [==============================] - 0s 861us/step - loss: 0.3966 - accuracy: 0.1778 - mae: 0.3966 - pearson_correlation: -0.4893 - euclidean_distance: 0.6665
Epoch 56/350
57/57 [==============================] - 0s 860us/step - loss: 0.3920 - accuracy: 0.1800 - mae: 0.3920 - pearson_correlation: -0.4777 - euclidean_distance: 0.6588
Epoch 57/350
57/57 [==============================] - 0s 852us/step - loss: 0.3890 - accuracy: 0.1773 - mae: 0.3890 - pearson_correlation: -0.4733 - euclidean_distance: 0.6534
Epoch 58/350
57/57 [==============================] - 0s 847us/step - loss: 0.3841 - accuracy: 0.1906 - mae: 0.3841 - pearson_correlation: -0.4729 - euclidean_distance: 0.6474
Epoch 59/350
57/57 [==============================] - 0s 852us/step - loss: 0.3801 - accuracy: 0.1901 - mae: 0.3801 - pearson_correlation: -0.4588 - euclidean_distance: 0.6406
Epoch 60/350
57/57 [==============================] - 0s 857us/step - loss: 0.3765 - accuracy: 0.1932 - mae: 0.3765 - pearson_correlation: -0.4585 - euclidean_distance: 0.6351
Epoch 61/350
57/57 [==============================] - 0s 865us/step - loss: 0.3734 - accuracy: 0.1928 - mae: 0.3734 - pearson_correlation: -0.4442 - euclidean_distance: 0.6298
Epoch 62/350
57/57 [==============================] - 0s 842us/step - loss: 0.3701 - accuracy: 0.2034 - mae: 0.3701 - pearson_correlation: -0.4396 - euclidean_distance: 0.6241
Epoch 63/350
57/57 [==============================] - 0s 860us/step - loss: 0.3660 - accuracy: 0.2073 - mae: 0.3660 - pearson_correlation: -0.4198 - euclidean_distance: 0.6169
Epoch 64/350
57/57 [==============================] - 0s 852us/step - loss: 0.3618 - accuracy: 0.2051 - mae: 0.3618 - pearson_correlation: -0.4190 - euclidean_distance: 0.6110
Epoch 65/350
57/57 [==============================] - 0s 863us/step - loss: 0.3574 - accuracy: 0.2069 - mae: 0.3574 - pearson_correlation: -0.4053 - euclidean_distance: 0.6040
Epoch 66/350
57/57 [==============================] - 0s 851us/step - loss: 0.3553 - accuracy: 0.2153 - mae: 0.3553 - pearson_correlation: -0.4035 - euclidean_distance: 0.6003
Epoch 67/350
57/57 [==============================] - 0s 847us/step - loss: 0.3525 - accuracy: 0.2267 - mae: 0.3525 - pearson_correlation: -0.3876 - euclidean_distance: 0.5947
Epoch 68/350
57/57 [==============================] - 0s 854us/step - loss: 0.3479 - accuracy: 0.2254 - mae: 0.3479 - pearson_correlation: -0.3768 - euclidean_distance: 0.5876
Epoch 69/350
57/57 [==============================] - 0s 847us/step - loss: 0.3432 - accuracy: 0.2214 - mae: 0.3432 - pearson_correlation: -0.3729 - euclidean_distance: 0.5806
Epoch 70/350
57/57 [==============================] - 0s 857us/step - loss: 0.3409 - accuracy: 0.2444 - mae: 0.3409 - pearson_correlation: -0.3478 - euclidean_distance: 0.5748
Epoch 71/350
57/57 [==============================] - 0s 853us/step - loss: 0.3372 - accuracy: 0.2448 - mae: 0.3372 - pearson_correlation: -0.3463 - euclidean_distance: 0.5701
Epoch 72/350
57/57 [==============================] - 0s 844us/step - loss: 0.3332 - accuracy: 0.2651 - mae: 0.3332 - pearson_correlation: -0.3167 - euclidean_distance: 0.5619
Epoch 73/350
57/57 [==============================] - 0s 848us/step - loss: 0.3295 - accuracy: 0.2554 - mae: 0.3295 - pearson_correlation: -0.3045 - euclidean_distance: 0.5562
Epoch 74/350
57/57 [==============================] - 0s 843us/step - loss: 0.3279 - accuracy: 0.2753 - mae: 0.3279 - pearson_correlation: -0.2914 - euclidean_distance: 0.5509
Epoch 75/350
57/57 [==============================] - 0s 853us/step - loss: 0.3228 - accuracy: 0.2801 - mae: 0.3228 - pearson_correlation: -0.2918 - euclidean_distance: 0.5452
Epoch 76/350
57/57 [==============================] - 0s 859us/step - loss: 0.3191 - accuracy: 0.2947 - mae: 0.3191 - pearson_correlation: -0.2673 - euclidean_distance: 0.5380
Epoch 77/350
57/57 [==============================] - 0s 849us/step - loss: 0.3164 - accuracy: 0.3105 - mae: 0.3164 - pearson_correlation: -0.2361 - euclidean_distance: 0.5318
Epoch 78/350
57/57 [==============================] - 0s 863us/step - loss: 0.3130 - accuracy: 0.3132 - mae: 0.3130 - pearson_correlation: -0.2306 - euclidean_distance: 0.5266
Epoch 79/350
57/57 [==============================] - 0s 856us/step - loss: 0.3096 - accuracy: 0.3150 - mae: 0.3096 - pearson_correlation: -0.2192 - euclidean_distance: 0.5213
Epoch 80/350
57/57 [==============================] - 0s 1ms/step - loss: 0.3046 - accuracy: 0.3167 - mae: 0.3046 - pearson_correlation: -0.1976 - euclidean_distance: 0.5128
Epoch 81/350
57/57 [==============================] - 0s 908us/step - loss: 0.3019 - accuracy: 0.3423 - mae: 0.3019 - pearson_correlation: -0.1845 - euclidean_distance: 0.5077
Epoch 82/350
57/57 [==============================] - 0s 878us/step - loss: 0.2978 - accuracy: 0.3507 - mae: 0.2978 - pearson_correlation: -0.1692 - euclidean_distance: 0.5010
Epoch 83/350
57/57 [==============================] - 0s 869us/step - loss: 0.2959 - accuracy: 0.3630 - mae: 0.2959 - pearson_correlation: -0.1518 - euclidean_distance: 0.4972
Epoch 84/350
57/57 [==============================] - 0s 861us/step - loss: 0.2910 - accuracy: 0.3873 - mae: 0.2910 - pearson_correlation: -0.1450 - euclidean_distance: 0.4900
Epoch 85/350
57/57 [==============================] - 0s 859us/step - loss: 0.2880 - accuracy: 0.4085 - mae: 0.2880 - pearson_correlation: -0.1223 - euclidean_distance: 0.4842
Epoch 86/350
57/57 [==============================] - 0s 860us/step - loss: 0.2840 - accuracy: 0.4283 - mae: 0.2840 - pearson_correlation: -0.1113 - euclidean_distance: 0.4772
Epoch 87/350
57/57 [==============================] - 0s 860us/step - loss: 0.2810 - accuracy: 0.4526 - mae: 0.2810 - pearson_correlation: -0.0847 - euclidean_distance: 0.4709
Epoch 88/350
57/57 [==============================] - 0s 844us/step - loss: 0.2785 - accuracy: 0.4579 - mae: 0.2785 - pearson_correlation: -0.0658 - euclidean_distance: 0.4669
Epoch 89/350
57/57 [==============================] - 0s 861us/step - loss: 0.2742 - accuracy: 0.4790 - mae: 0.2742 - pearson_correlation: -0.0586 - euclidean_distance: 0.4599
Epoch 90/350
57/57 [==============================] - 0s 868us/step - loss: 0.2707 - accuracy: 0.4799 - mae: 0.2707 - pearson_correlation: -0.0323 - euclidean_distance: 0.4540
Epoch 91/350
57/57 [==============================] - 0s 854us/step - loss: 0.2670 - accuracy: 0.4976 - mae: 0.2670 - pearson_correlation: -0.0221 - euclidean_distance: 0.4469
Epoch 92/350
57/57 [==============================] - 0s 856us/step - loss: 0.2651 - accuracy: 0.5077 - mae: 0.2651 - pearson_correlation: -0.0114 - euclidean_distance: 0.4446
Epoch 93/350
57/57 [==============================] - 0s 850us/step - loss: 0.2613 - accuracy: 0.5139 - mae: 0.2613 - pearson_correlation: 0.0033 - euclidean_distance: 0.4367
Epoch 94/350
57/57 [==============================] - 0s 855us/step - loss: 0.2577 - accuracy: 0.5293 - mae: 0.2577 - pearson_correlation: 0.0272 - euclidean_distance: 0.4300
Epoch 95/350
57/57 [==============================] - 0s 886us/step - loss: 0.2555 - accuracy: 0.5373 - mae: 0.2555 - pearson_correlation: 0.0378 - euclidean_distance: 0.4264
Epoch 96/350
57/57 [==============================] - 0s 877us/step - loss: 0.2526 - accuracy: 0.5443 - mae: 0.2526 - pearson_correlation: 0.0485 - euclidean_distance: 0.4211
Epoch 97/350
57/57 [==============================] - 0s 875us/step - loss: 0.2476 - accuracy: 0.5404 - mae: 0.2476 - pearson_correlation: 0.0597 - euclidean_distance: 0.4138
Epoch 98/350
57/57 [==============================] - 0s 860us/step - loss: 0.2458 - accuracy: 0.5457 - mae: 0.2458 - pearson_correlation: 0.0716 - euclidean_distance: 0.4103
Epoch 99/350
57/57 [==============================] - 0s 859us/step - loss: 0.2426 - accuracy: 0.5624 - mae: 0.2426 - pearson_correlation: 0.0817 - euclidean_distance: 0.4055
Epoch 100/350
57/57 [==============================] - 0s 848us/step - loss: 0.2387 - accuracy: 0.5664 - mae: 0.2387 - pearson_correlation: 0.1069 - euclidean_distance: 0.3989
Epoch 101/350
57/57 [==============================] - 0s 855us/step - loss: 0.2365 - accuracy: 0.5809 - mae: 0.2365 - pearson_correlation: 0.1203 - euclidean_distance: 0.3946
Epoch 102/350
57/57 [==============================] - 0s 853us/step - loss: 0.2355 - accuracy: 0.5734 - mae: 0.2355 - pearson_correlation: 0.1165 - euclidean_distance: 0.3931
Epoch 103/350
57/57 [==============================] - 0s 854us/step - loss: 0.2305 - accuracy: 0.5951 - mae: 0.2305 - pearson_correlation: 0.1373 - euclidean_distance: 0.3853
Epoch 104/350
57/57 [==============================] - 0s 871us/step - loss: 0.2279 - accuracy: 0.5959 - mae: 0.2279 - pearson_correlation: 0.1469 - euclidean_distance: 0.3814
Epoch 105/350
57/57 [==============================] - 0s 846us/step - loss: 0.2273 - accuracy: 0.5995 - mae: 0.2273 - pearson_correlation: 0.1579 - euclidean_distance: 0.3785
Epoch 106/350
57/57 [==============================] - 0s 841us/step - loss: 0.2240 - accuracy: 0.6048 - mae: 0.2240 - pearson_correlation: 0.1658 - euclidean_distance: 0.3742
Epoch 107/350
57/57 [==============================] - 0s 861us/step - loss: 0.2225 - accuracy: 0.6087 - mae: 0.2225 - pearson_correlation: 0.1664 - euclidean_distance: 0.3712
Epoch 108/350
57/57 [==============================] - 0s 859us/step - loss: 0.2189 - accuracy: 0.6361 - mae: 0.2189 - pearson_correlation: 0.1875 - euclidean_distance: 0.3645
Epoch 109/350
57/57 [==============================] - 0s 871us/step - loss: 0.2162 - accuracy: 0.6220 - mae: 0.2162 - pearson_correlation: 0.1933 - euclidean_distance: 0.3610
Epoch 110/350
57/57 [==============================] - 0s 859us/step - loss: 0.2154 - accuracy: 0.6246 - mae: 0.2154 - pearson_correlation: 0.1971 - euclidean_distance: 0.3593
Epoch 111/350
57/57 [==============================] - 0s 865us/step - loss: 0.2115 - accuracy: 0.6387 - mae: 0.2115 - pearson_correlation: 0.2125 - euclidean_distance: 0.3540
Epoch 112/350
57/57 [==============================] - 0s 862us/step - loss: 0.2105 - accuracy: 0.6409 - mae: 0.2105 - pearson_correlation: 0.2153 - euclidean_distance: 0.3508
Epoch 113/350
57/57 [==============================] - 0s 860us/step - loss: 0.2084 - accuracy: 0.6520 - mae: 0.2084 - pearson_correlation: 0.2357 - euclidean_distance: 0.3474
Epoch 114/350
57/57 [==============================] - 0s 865us/step - loss: 0.2075 - accuracy: 0.6493 - mae: 0.2075 - pearson_correlation: 0.2283 - euclidean_distance: 0.3466
Epoch 115/350
57/57 [==============================] - 0s 861us/step - loss: 0.2057 - accuracy: 0.6608 - mae: 0.2057 - pearson_correlation: 0.2399 - euclidean_distance: 0.3428
Epoch 116/350
57/57 [==============================] - 0s 856us/step - loss: 0.2034 - accuracy: 0.6621 - mae: 0.2034 - pearson_correlation: 0.2425 - euclidean_distance: 0.3394
Epoch 117/350
57/57 [==============================] - 0s 872us/step - loss: 0.2023 - accuracy: 0.6643 - mae: 0.2023 - pearson_correlation: 0.2509 - euclidean_distance: 0.3376
Epoch 118/350
57/57 [==============================] - 0s 853us/step - loss: 0.1991 - accuracy: 0.6661 - mae: 0.1991 - pearson_correlation: 0.2607 - euclidean_distance: 0.3317
Epoch 119/350
57/57 [==============================] - 0s 851us/step - loss: 0.1985 - accuracy: 0.6678 - mae: 0.1985 - pearson_correlation: 0.2654 - euclidean_distance: 0.3309
Epoch 120/350
57/57 [==============================] - 0s 845us/step - loss: 0.1959 - accuracy: 0.6802 - mae: 0.1959 - pearson_correlation: 0.2796 - euclidean_distance: 0.3265
Epoch 121/350
57/57 [==============================] - 0s 861us/step - loss: 0.1960 - accuracy: 0.6833 - mae: 0.1960 - pearson_correlation: 0.2853 - euclidean_distance: 0.3254
Epoch 122/350
57/57 [==============================] - 0s 854us/step - loss: 0.1931 - accuracy: 0.6948 - mae: 0.1931 - pearson_correlation: 0.2888 - euclidean_distance: 0.3218
Epoch 123/350
57/57 [==============================] - 0s 849us/step - loss: 0.1923 - accuracy: 0.7018 - mae: 0.1923 - pearson_correlation: 0.2957 - euclidean_distance: 0.3202
Epoch 124/350
57/57 [==============================] - 0s 853us/step - loss: 0.1895 - accuracy: 0.7000 - mae: 0.1895 - pearson_correlation: 0.3069 - euclidean_distance: 0.3156
Epoch 125/350
57/57 [==============================] - 0s 852us/step - loss: 0.1873 - accuracy: 0.7071 - mae: 0.1873 - pearson_correlation: 0.3152 - euclidean_distance: 0.3119
Epoch 126/350
57/57 [==============================] - 0s 858us/step - loss: 0.1855 - accuracy: 0.7115 - mae: 0.1855 - pearson_correlation: 0.3234 - euclidean_distance: 0.3089
Epoch 127/350
57/57 [==============================] - 0s 860us/step - loss: 0.1882 - accuracy: 0.7142 - mae: 0.1882 - pearson_correlation: 0.3173 - euclidean_distance: 0.3120
Epoch 128/350
57/57 [==============================] - 0s 847us/step - loss: 0.1845 - accuracy: 0.7172 - mae: 0.1845 - pearson_correlation: 0.3270 - euclidean_distance: 0.3062
Epoch 129/350
57/57 [==============================] - 0s 859us/step - loss: 0.1820 - accuracy: 0.7181 - mae: 0.1820 - pearson_correlation: 0.3358 - euclidean_distance: 0.3023
Epoch 130/350
57/57 [==============================] - 0s 848us/step - loss: 0.1815 - accuracy: 0.7274 - mae: 0.1815 - pearson_correlation: 0.3364 - euclidean_distance: 0.3023
Epoch 131/350
57/57 [==============================] - 0s 857us/step - loss: 0.1804 - accuracy: 0.7371 - mae: 0.1804 - pearson_correlation: 0.3459 - euclidean_distance: 0.2997
Epoch 132/350
57/57 [==============================] - 0s 843us/step - loss: 0.1779 - accuracy: 0.7239 - mae: 0.1779 - pearson_correlation: 0.3558 - euclidean_distance: 0.2958
Epoch 133/350
57/57 [==============================] - 0s 857us/step - loss: 0.1791 - accuracy: 0.7309 - mae: 0.1791 - pearson_correlation: 0.3478 - euclidean_distance: 0.2972
Epoch 134/350
57/57 [==============================] - 0s 860us/step - loss: 0.1766 - accuracy: 0.7345 - mae: 0.1766 - pearson_correlation: 0.3601 - euclidean_distance: 0.2930
Epoch 135/350
57/57 [==============================] - 0s 860us/step - loss: 0.1744 - accuracy: 0.7503 - mae: 0.1744 - pearson_correlation: 0.3706 - euclidean_distance: 0.2889
Epoch 136/350
57/57 [==============================] - 0s 846us/step - loss: 0.1741 - accuracy: 0.7450 - mae: 0.1741 - pearson_correlation: 0.3778 - euclidean_distance: 0.2879
Epoch 137/350
57/57 [==============================] - 0s 862us/step - loss: 0.1743 - accuracy: 0.7578 - mae: 0.1743 - pearson_correlation: 0.3712 - euclidean_distance: 0.2881
Epoch 138/350
57/57 [==============================] - 0s 947us/step - loss: 0.1718 - accuracy: 0.7600 - mae: 0.1718 - pearson_correlation: 0.3826 - euclidean_distance: 0.2843
Epoch 139/350
57/57 [==============================] - 0s 974us/step - loss: 0.1718 - accuracy: 0.7578 - mae: 0.1718 - pearson_correlation: 0.3823 - euclidean_distance: 0.2836
Epoch 140/350
57/57 [==============================] - 0s 1ms/step - loss: 0.1697 - accuracy: 0.7605 - mae: 0.1697 - pearson_correlation: 0.3842 - euclidean_distance: 0.2807
Epoch 141/350
57/57 [==============================] - 0s 978us/step - loss: 0.1703 - accuracy: 0.7596 - mae: 0.1703 - pearson_correlation: 0.3928 - euclidean_distance: 0.2820
Epoch 142/350
57/57 [==============================] - 0s 971us/step - loss: 0.1691 - accuracy: 0.7640 - mae: 0.1691 - pearson_correlation: 0.4014 - euclidean_distance: 0.2787
Epoch 143/350
57/57 [==============================] - 0s 1ms/step - loss: 0.1682 - accuracy: 0.7675 - mae: 0.1682 - pearson_correlation: 0.4049 - euclidean_distance: 0.2775
Epoch 144/350
57/57 [==============================] - 0s 981us/step - loss: 0.1646 - accuracy: 0.7777 - mae: 0.1646 - pearson_correlation: 0.4186 - euclidean_distance: 0.2730
Epoch 145/350
57/57 [==============================] - 0s 997us/step - loss: 0.1650 - accuracy: 0.7750 - mae: 0.1650 - pearson_correlation: 0.4148 - euclidean_distance: 0.2726
Epoch 146/350
57/57 [==============================] - 0s 1ms/step - loss: 0.1646 - accuracy: 0.7852 - mae: 0.1646 - pearson_correlation: 0.4207 - euclidean_distance: 0.2719
Epoch 147/350
57/57 [==============================] - 0s 1ms/step - loss: 0.1637 - accuracy: 0.7861 - mae: 0.1637 - pearson_correlation: 0.4178 - euclidean_distance: 0.2701
Epoch 148/350
57/57 [==============================] - 0s 876us/step - loss: 0.1609 - accuracy: 0.7808 - mae: 0.1609 - pearson_correlation: 0.4334 - euclidean_distance: 0.2660
Epoch 149/350
57/57 [==============================] - 0s 857us/step - loss: 0.1637 - accuracy: 0.7883 - mae: 0.1637 - pearson_correlation: 0.4283 - euclidean_distance: 0.2691
Epoch 150/350
57/57 [==============================] - 0s 861us/step - loss: 0.1595 - accuracy: 0.7887 - mae: 0.1595 - pearson_correlation: 0.4363 - euclidean_distance: 0.2636
Epoch 151/350
57/57 [==============================] - 0s 842us/step - loss: 0.1598 - accuracy: 0.8099 - mae: 0.1598 - pearson_correlation: 0.4378 - euclidean_distance: 0.2628
Epoch 152/350
57/57 [==============================] - 0s 868us/step - loss: 0.1585 - accuracy: 0.8028 - mae: 0.1585 - pearson_correlation: 0.4422 - euclidean_distance: 0.2610
Epoch 153/350
57/57 [==============================] - 0s 862us/step - loss: 0.1575 - accuracy: 0.8090 - mae: 0.1575 - pearson_correlation: 0.4507 - euclidean_distance: 0.2597
Epoch 154/350
57/57 [==============================] - 0s 865us/step - loss: 0.1557 - accuracy: 0.8090 - mae: 0.1557 - pearson_correlation: 0.4498 - euclidean_distance: 0.2565
Epoch 155/350
57/57 [==============================] - 0s 858us/step - loss: 0.1562 - accuracy: 0.8103 - mae: 0.1562 - pearson_correlation: 0.4486 - euclidean_distance: 0.2572
Epoch 156/350
57/57 [==============================] - 0s 865us/step - loss: 0.1538 - accuracy: 0.8196 - mae: 0.1538 - pearson_correlation: 0.4678 - euclidean_distance: 0.2536
Epoch 157/350
57/57 [==============================] - 0s 850us/step - loss: 0.1553 - accuracy: 0.8174 - mae: 0.1553 - pearson_correlation: 0.4626 - euclidean_distance: 0.2552
Epoch 158/350
57/57 [==============================] - 0s 863us/step - loss: 0.1538 - accuracy: 0.8236 - mae: 0.1538 - pearson_correlation: 0.4636 - euclidean_distance: 0.2522
Epoch 159/350
57/57 [==============================] - 0s 910us/step - loss: 0.1505 - accuracy: 0.8341 - mae: 0.1505 - pearson_correlation: 0.4819 - euclidean_distance: 0.2472
Epoch 160/350
57/57 [==============================] - 0s 959us/step - loss: 0.1533 - accuracy: 0.8341 - mae: 0.1533 - pearson_correlation: 0.4710 - euclidean_distance: 0.2508
Epoch 161/350
57/57 [==============================] - 0s 877us/step - loss: 0.1512 - accuracy: 0.8341 - mae: 0.1512 - pearson_correlation: 0.4825 - euclidean_distance: 0.2482
Epoch 162/350
57/57 [==============================] - 0s 871us/step - loss: 0.1491 - accuracy: 0.8311 - mae: 0.1491 - pearson_correlation: 0.4919 - euclidean_distance: 0.2445
Epoch 163/350
57/57 [==============================] - 0s 865us/step - loss: 0.1506 - accuracy: 0.8425 - mae: 0.1506 - pearson_correlation: 0.4851 - euclidean_distance: 0.2469
Epoch 164/350
57/57 [==============================] - 0s 866us/step - loss: 0.1474 - accuracy: 0.8438 - mae: 0.1474 - pearson_correlation: 0.4947 - euclidean_distance: 0.2416
Epoch 165/350
57/57 [==============================] - 0s 852us/step - loss: 0.1456 - accuracy: 0.8447 - mae: 0.1456 - pearson_correlation: 0.5021 - euclidean_distance: 0.2393
Epoch 166/350
57/57 [==============================] - 0s 865us/step - loss: 0.1464 - accuracy: 0.8474 - mae: 0.1464 - pearson_correlation: 0.5010 - euclidean_distance: 0.2402
Epoch 167/350
57/57 [==============================] - 0s 857us/step - loss: 0.1454 - accuracy: 0.8465 - mae: 0.1454 - pearson_correlation: 0.5013 - euclidean_distance: 0.2384
Epoch 168/350
57/57 [==============================] - 0s 850us/step - loss: 0.1432 - accuracy: 0.8566 - mae: 0.1432 - pearson_correlation: 0.5084 - euclidean_distance: 0.2348
Epoch 169/350
57/57 [==============================] - 0s 841us/step - loss: 0.1466 - accuracy: 0.8500 - mae: 0.1466 - pearson_correlation: 0.5028 - euclidean_distance: 0.2399
Epoch 170/350
57/57 [==============================] - 0s 856us/step - loss: 0.1417 - accuracy: 0.8536 - mae: 0.1417 - pearson_correlation: 0.5225 - euclidean_distance: 0.2326
Epoch 171/350
57/57 [==============================] - 0s 855us/step - loss: 0.1411 - accuracy: 0.8540 - mae: 0.1411 - pearson_correlation: 0.5196 - euclidean_distance: 0.2312
Epoch 172/350
57/57 [==============================] - 0s 854us/step - loss: 0.1419 - accuracy: 0.8672 - mae: 0.1419 - pearson_correlation: 0.5171 - euclidean_distance: 0.2327
Epoch 173/350
57/57 [==============================] - 0s 851us/step - loss: 0.1412 - accuracy: 0.8513 - mae: 0.1412 - pearson_correlation: 0.5166 - euclidean_distance: 0.2309
Epoch 174/350
57/57 [==============================] - 0s 857us/step - loss: 0.1407 - accuracy: 0.8694 - mae: 0.1407 - pearson_correlation: 0.5292 - euclidean_distance: 0.2295
Epoch 175/350
57/57 [==============================] - 0s 863us/step - loss: 0.1385 - accuracy: 0.8703 - mae: 0.1385 - pearson_correlation: 0.5305 - euclidean_distance: 0.2267
Epoch 176/350
57/57 [==============================] - 0s 859us/step - loss: 0.1396 - accuracy: 0.8783 - mae: 0.1396 - pearson_correlation: 0.5356 - euclidean_distance: 0.2276
Epoch 177/350
57/57 [==============================] - 0s 858us/step - loss: 0.1379 - accuracy: 0.8690 - mae: 0.1379 - pearson_correlation: 0.5421 - euclidean_distance: 0.2249
Epoch 178/350
57/57 [==============================] - 0s 861us/step - loss: 0.1377 - accuracy: 0.8721 - mae: 0.1377 - pearson_correlation: 0.5419 - euclidean_distance: 0.2247
Epoch 179/350
57/57 [==============================] - 0s 853us/step - loss: 0.1360 - accuracy: 0.8796 - mae: 0.1360 - pearson_correlation: 0.5466 - euclidean_distance: 0.2219
Epoch 180/350
57/57 [==============================] - 0s 849us/step - loss: 0.1351 - accuracy: 0.8756 - mae: 0.1351 - pearson_correlation: 0.5469 - euclidean_distance: 0.2206
Epoch 181/350
57/57 [==============================] - 0s 867us/step - loss: 0.1369 - accuracy: 0.8805 - mae: 0.1369 - pearson_correlation: 0.5462 - euclidean_distance: 0.2231
Epoch 182/350
57/57 [==============================] - 0s 843us/step - loss: 0.1353 - accuracy: 0.8800 - mae: 0.1353 - pearson_correlation: 0.5567 - euclidean_distance: 0.2205
Epoch 183/350
57/57 [==============================] - 0s 858us/step - loss: 0.1334 - accuracy: 0.8813 - mae: 0.1334 - pearson_correlation: 0.5650 - euclidean_distance: 0.2175
Epoch 184/350
57/57 [==============================] - 0s 841us/step - loss: 0.1317 - accuracy: 0.8853 - mae: 0.1317 - pearson_correlation: 0.5666 - euclidean_distance: 0.2147
Epoch 185/350
57/57 [==============================] - 0s 840us/step - loss: 0.1334 - accuracy: 0.8805 - mae: 0.1334 - pearson_correlation: 0.5582 - euclidean_distance: 0.2177
Epoch 186/350
57/57 [==============================] - 0s 863us/step - loss: 0.1309 - accuracy: 0.8862 - mae: 0.1309 - pearson_correlation: 0.5648 - euclidean_distance: 0.2133
Epoch 187/350
57/57 [==============================] - 0s 859us/step - loss: 0.1307 - accuracy: 0.8897 - mae: 0.1307 - pearson_correlation: 0.5723 - euclidean_distance: 0.2136
Epoch 188/350
57/57 [==============================] - 0s 846us/step - loss: 0.1304 - accuracy: 0.8893 - mae: 0.1304 - pearson_correlation: 0.5788 - euclidean_distance: 0.2118
Epoch 189/350
57/57 [==============================] - 0s 857us/step - loss: 0.1314 - accuracy: 0.8924 - mae: 0.1314 - pearson_correlation: 0.5713 - euclidean_distance: 0.2134
Epoch 190/350
57/57 [==============================] - 0s 846us/step - loss: 0.1267 - accuracy: 0.8906 - mae: 0.1267 - pearson_correlation: 0.5877 - euclidean_distance: 0.2068
Epoch 191/350
57/57 [==============================] - 0s 850us/step - loss: 0.1283 - accuracy: 0.8910 - mae: 0.1283 - pearson_correlation: 0.5812 - euclidean_distance: 0.2089
Epoch 192/350
57/57 [==============================] - 0s 854us/step - loss: 0.1285 - accuracy: 0.8875 - mae: 0.1285 - pearson_correlation: 0.5817 - euclidean_distance: 0.2088
Epoch 193/350
57/57 [==============================] - 0s 854us/step - loss: 0.1283 - accuracy: 0.8963 - mae: 0.1283 - pearson_correlation: 0.5820 - euclidean_distance: 0.2080
Epoch 194/350
57/57 [==============================] - 0s 874us/step - loss: 0.1271 - accuracy: 0.9025 - mae: 0.1271 - pearson_correlation: 0.5925 - euclidean_distance: 0.2064
Epoch 195/350
57/57 [==============================] - 0s 869us/step - loss: 0.1248 - accuracy: 0.8963 - mae: 0.1248 - pearson_correlation: 0.5964 - euclidean_distance: 0.2032
Epoch 196/350
57/57 [==============================] - 0s 858us/step - loss: 0.1239 - accuracy: 0.9025 - mae: 0.1239 - pearson_correlation: 0.5990 - euclidean_distance: 0.2017
Epoch 197/350
57/57 [==============================] - 0s 863us/step - loss: 0.1248 - accuracy: 0.8985 - mae: 0.1248 - pearson_correlation: 0.6006 - euclidean_distance: 0.2027
Epoch 198/350
57/57 [==============================] - 0s 862us/step - loss: 0.1259 - accuracy: 0.9016 - mae: 0.1259 - pearson_correlation: 0.5992 - euclidean_distance: 0.2044
Epoch 199/350
57/57 [==============================] - 0s 849us/step - loss: 0.1248 - accuracy: 0.9007 - mae: 0.1248 - pearson_correlation: 0.6018 - euclidean_distance: 0.2026
Epoch 200/350
57/57 [==============================] - 0s 865us/step - loss: 0.1238 - accuracy: 0.9016 - mae: 0.1238 - pearson_correlation: 0.5981 - euclidean_distance: 0.2015
Epoch 201/350
57/57 [==============================] - 0s 854us/step - loss: 0.1243 - accuracy: 0.9043 - mae: 0.1243 - pearson_correlation: 0.6052 - euclidean_distance: 0.2014
Epoch 202/350
57/57 [==============================] - 0s 856us/step - loss: 0.1231 - accuracy: 0.9056 - mae: 0.1231 - pearson_correlation: 0.6075 - euclidean_distance: 0.1995
Epoch 203/350
57/57 [==============================] - 0s 847us/step - loss: 0.1249 - accuracy: 0.9030 - mae: 0.1249 - pearson_correlation: 0.5976 - euclidean_distance: 0.2025
Epoch 204/350
57/57 [==============================] - 0s 852us/step - loss: 0.1221 - accuracy: 0.9060 - mae: 0.1221 - pearson_correlation: 0.6098 - euclidean_distance: 0.1981
Epoch 205/350
57/57 [==============================] - 0s 860us/step - loss: 0.1210 - accuracy: 0.9082 - mae: 0.1210 - pearson_correlation: 0.6147 - euclidean_distance: 0.1963
Epoch 206/350
57/57 [==============================] - 0s 850us/step - loss: 0.1209 - accuracy: 0.9056 - mae: 0.1209 - pearson_correlation: 0.6154 - euclidean_distance: 0.1961
Epoch 207/350
57/57 [==============================] - 0s 857us/step - loss: 0.1200 - accuracy: 0.9034 - mae: 0.1200 - pearson_correlation: 0.6196 - euclidean_distance: 0.1950
Epoch 208/350
57/57 [==============================] - 0s 850us/step - loss: 0.1191 - accuracy: 0.9047 - mae: 0.1191 - pearson_correlation: 0.6226 - euclidean_distance: 0.1935
Epoch 209/350
57/57 [==============================] - 0s 866us/step - loss: 0.1180 - accuracy: 0.9087 - mae: 0.1180 - pearson_correlation: 0.6238 - euclidean_distance: 0.1921
Epoch 210/350
57/57 [==============================] - 0s 861us/step - loss: 0.1184 - accuracy: 0.9052 - mae: 0.1184 - pearson_correlation: 0.6256 - euclidean_distance: 0.1920
Epoch 211/350
57/57 [==============================] - 0s 863us/step - loss: 0.1185 - accuracy: 0.9105 - mae: 0.1185 - pearson_correlation: 0.6214 - euclidean_distance: 0.1925
Epoch 212/350
57/57 [==============================] - 0s 851us/step - loss: 0.1185 - accuracy: 0.9091 - mae: 0.1185 - pearson_correlation: 0.6260 - euclidean_distance: 0.1915
Epoch 213/350
57/57 [==============================] - 0s 850us/step - loss: 0.1181 - accuracy: 0.9087 - mae: 0.1181 - pearson_correlation: 0.6238 - euclidean_distance: 0.1914
Epoch 214/350
57/57 [==============================] - 0s 863us/step - loss: 0.1169 - accuracy: 0.9074 - mae: 0.1169 - pearson_correlation: 0.6299 - euclidean_distance: 0.1895
Epoch 215/350
57/57 [==============================] - 0s 866us/step - loss: 0.1180 - accuracy: 0.9109 - mae: 0.1180 - pearson_correlation: 0.6315 - euclidean_distance: 0.1910
Epoch 216/350
57/57 [==============================] - 0s 858us/step - loss: 0.1178 - accuracy: 0.9105 - mae: 0.1178 - pearson_correlation: 0.6347 - euclidean_distance: 0.1903
Epoch 217/350
57/57 [==============================] - 0s 857us/step - loss: 0.1153 - accuracy: 0.9109 - mae: 0.1153 - pearson_correlation: 0.6331 - euclidean_distance: 0.1873
Epoch 218/350
57/57 [==============================] - 0s 849us/step - loss: 0.1129 - accuracy: 0.9087 - mae: 0.1129 - pearson_correlation: 0.6457 - euclidean_distance: 0.1842
Epoch 219/350
57/57 [==============================] - 0s 857us/step - loss: 0.1133 - accuracy: 0.9131 - mae: 0.1133 - pearson_correlation: 0.6403 - euclidean_distance: 0.1840
Epoch 220/350
57/57 [==============================] - 0s 850us/step - loss: 0.1128 - accuracy: 0.9113 - mae: 0.1128 - pearson_correlation: 0.6458 - euclidean_distance: 0.1823
Epoch 221/350
57/57 [==============================] - 0s 862us/step - loss: 0.1136 - accuracy: 0.9135 - mae: 0.1136 - pearson_correlation: 0.6505 - euclidean_distance: 0.1838
Epoch 222/350
57/57 [==============================] - 0s 860us/step - loss: 0.1143 - accuracy: 0.9131 - mae: 0.1143 - pearson_correlation: 0.6431 - euclidean_distance: 0.1851
Epoch 223/350
57/57 [==============================] - 0s 854us/step - loss: 0.1137 - accuracy: 0.9109 - mae: 0.1137 - pearson_correlation: 0.6401 - euclidean_distance: 0.1839
Epoch 224/350
57/57 [==============================] - 0s 860us/step - loss: 0.1112 - accuracy: 0.9162 - mae: 0.1112 - pearson_correlation: 0.6523 - euclidean_distance: 0.1804
Epoch 225/350
57/57 [==============================] - 0s 853us/step - loss: 0.1120 - accuracy: 0.9153 - mae: 0.1120 - pearson_correlation: 0.6548 - euclidean_distance: 0.1809
Epoch 226/350
57/57 [==============================] - 0s 845us/step - loss: 0.1132 - accuracy: 0.9135 - mae: 0.1132 - pearson_correlation: 0.6442 - euclidean_distance: 0.1828
Epoch 227/350
57/57 [==============================] - 0s 858us/step - loss: 0.1111 - accuracy: 0.9171 - mae: 0.1111 - pearson_correlation: 0.6576 - euclidean_distance: 0.1792
Epoch 228/350
57/57 [==============================] - 0s 841us/step - loss: 0.1113 - accuracy: 0.9184 - mae: 0.1113 - pearson_correlation: 0.6609 - euclidean_distance: 0.1800
Epoch 229/350
57/57 [==============================] - 0s 852us/step - loss: 0.1096 - accuracy: 0.9184 - mae: 0.1096 - pearson_correlation: 0.6572 - euclidean_distance: 0.1777
Epoch 230/350
57/57 [==============================] - 0s 849us/step - loss: 0.1102 - accuracy: 0.9188 - mae: 0.1102 - pearson_correlation: 0.6592 - euclidean_distance: 0.1784
Epoch 231/350
57/57 [==============================] - 0s 857us/step - loss: 0.1102 - accuracy: 0.9166 - mae: 0.1102 - pearson_correlation: 0.6578 - euclidean_distance: 0.1785
Epoch 232/350
57/57 [==============================] - 0s 864us/step - loss: 0.1119 - accuracy: 0.9149 - mae: 0.1119 - pearson_correlation: 0.6560 - euclidean_distance: 0.1796
Epoch 233/350
57/57 [==============================] - 0s 855us/step - loss: 0.1080 - accuracy: 0.9180 - mae: 0.1080 - pearson_correlation: 0.6634 - euclidean_distance: 0.1745
Epoch 234/350
57/57 [==============================] - 0s 854us/step - loss: 0.1086 - accuracy: 0.9188 - mae: 0.1086 - pearson_correlation: 0.6660 - euclidean_distance: 0.1759
Epoch 235/350
57/57 [==============================] - 0s 865us/step - loss: 0.1081 - accuracy: 0.9197 - mae: 0.1081 - pearson_correlation: 0.6683 - euclidean_distance: 0.1745
Epoch 236/350
57/57 [==============================] - 0s 849us/step - loss: 0.1080 - accuracy: 0.9202 - mae: 0.1080 - pearson_correlation: 0.6686 - euclidean_distance: 0.1748
Epoch 237/350
57/57 [==============================] - 0s 851us/step - loss: 0.1074 - accuracy: 0.9246 - mae: 0.1074 - pearson_correlation: 0.6701 - euclidean_distance: 0.1737
Epoch 238/350
57/57 [==============================] - 0s 864us/step - loss: 0.1088 - accuracy: 0.9197 - mae: 0.1088 - pearson_correlation: 0.6680 - euclidean_distance: 0.1758
Epoch 239/350
57/57 [==============================] - 0s 859us/step - loss: 0.1074 - accuracy: 0.9171 - mae: 0.1074 - pearson_correlation: 0.6675 - euclidean_distance: 0.1737
Epoch 240/350
57/57 [==============================] - 0s 856us/step - loss: 0.1063 - accuracy: 0.9215 - mae: 0.1063 - pearson_correlation: 0.6743 - euclidean_distance: 0.1721
Epoch 241/350
57/57 [==============================] - 0s 862us/step - loss: 0.1062 - accuracy: 0.9215 - mae: 0.1062 - pearson_correlation: 0.6759 - euclidean_distance: 0.1717
Epoch 242/350
57/57 [==============================] - 0s 855us/step - loss: 0.1057 - accuracy: 0.9193 - mae: 0.1057 - pearson_correlation: 0.6750 - euclidean_distance: 0.1713
Epoch 243/350
57/57 [==============================] - 0s 851us/step - loss: 0.1054 - accuracy: 0.9193 - mae: 0.1054 - pearson_correlation: 0.6759 - euclidean_distance: 0.1706
Epoch 244/350
57/57 [==============================] - 0s 855us/step - loss: 0.1045 - accuracy: 0.9232 - mae: 0.1045 - pearson_correlation: 0.6826 - euclidean_distance: 0.1690
Epoch 245/350
57/57 [==============================] - 0s 845us/step - loss: 0.1048 - accuracy: 0.9171 - mae: 0.1048 - pearson_correlation: 0.6801 - euclidean_distance: 0.1697
Epoch 246/350
57/57 [==============================] - 0s 858us/step - loss: 0.1048 - accuracy: 0.9241 - mae: 0.1048 - pearson_correlation: 0.6772 - euclidean_distance: 0.1694
Epoch 247/350
57/57 [==============================] - 0s 846us/step - loss: 0.1048 - accuracy: 0.9210 - mae: 0.1048 - pearson_correlation: 0.6808 - euclidean_distance: 0.1694
Epoch 248/350
57/57 [==============================] - 0s 854us/step - loss: 0.1051 - accuracy: 0.9219 - mae: 0.1051 - pearson_correlation: 0.6814 - euclidean_distance: 0.1702
Epoch 249/350
57/57 [==============================] - 0s 851us/step - loss: 0.1024 - accuracy: 0.9250 - mae: 0.1024 - pearson_correlation: 0.6878 - euclidean_distance: 0.1652
Epoch 250/350
57/57 [==============================] - 0s 851us/step - loss: 0.1075 - accuracy: 0.9215 - mae: 0.1075 - pearson_correlation: 0.6762 - euclidean_distance: 0.1732
Epoch 251/350
57/57 [==============================] - 0s 852us/step - loss: 0.1052 - accuracy: 0.9215 - mae: 0.1052 - pearson_correlation: 0.6775 - euclidean_distance: 0.1704
Epoch 252/350
57/57 [==============================] - 0s 854us/step - loss: 0.1015 - accuracy: 0.9268 - mae: 0.1015 - pearson_correlation: 0.6891 - euclidean_distance: 0.1643
Epoch 253/350
57/57 [==============================] - 0s 853us/step - loss: 0.1046 - accuracy: 0.9206 - mae: 0.1046 - pearson_correlation: 0.6829 - euclidean_distance: 0.1692
Epoch 254/350
57/57 [==============================] - 0s 886us/step - loss: 0.1008 - accuracy: 0.9255 - mae: 0.1008 - pearson_correlation: 0.6946 - euclidean_distance: 0.1640
Epoch 255/350
57/57 [==============================] - 0s 869us/step - loss: 0.1026 - accuracy: 0.9246 - mae: 0.1026 - pearson_correlation: 0.6920 - euclidean_distance: 0.1658
Epoch 256/350
57/57 [==============================] - 0s 860us/step - loss: 0.1044 - accuracy: 0.9241 - mae: 0.1044 - pearson_correlation: 0.6842 - euclidean_distance: 0.1685
Epoch 257/350
57/57 [==============================] - 0s 859us/step - loss: 0.1021 - accuracy: 0.9246 - mae: 0.1021 - pearson_correlation: 0.6889 - euclidean_distance: 0.1650
Epoch 258/350
57/57 [==============================] - 0s 848us/step - loss: 0.1014 - accuracy: 0.9259 - mae: 0.1014 - pearson_correlation: 0.6929 - euclidean_distance: 0.1636
Epoch 259/350
57/57 [==============================] - 0s 867us/step - loss: 0.1016 - accuracy: 0.9285 - mae: 0.1016 - pearson_correlation: 0.6864 - euclidean_distance: 0.1650
Epoch 260/350
57/57 [==============================] - 0s 862us/step - loss: 0.1002 - accuracy: 0.9272 - mae: 0.1002 - pearson_correlation: 0.6973 - euclidean_distance: 0.1623
Epoch 261/350
57/57 [==============================] - 0s 845us/step - loss: 0.1004 - accuracy: 0.9255 - mae: 0.1004 - pearson_correlation: 0.6992 - euclidean_distance: 0.1621
Epoch 262/350
57/57 [==============================] - 0s 860us/step - loss: 0.1009 - accuracy: 0.9272 - mae: 0.1009 - pearson_correlation: 0.6945 - euclidean_distance: 0.1629
Epoch 263/350
57/57 [==============================] - 0s 859us/step - loss: 0.0990 - accuracy: 0.9312 - mae: 0.0990 - pearson_correlation: 0.6982 - euclidean_distance: 0.1605
Epoch 264/350
57/57 [==============================] - 0s 853us/step - loss: 0.0997 - accuracy: 0.9290 - mae: 0.0997 - pearson_correlation: 0.7025 - euclidean_distance: 0.1610
Epoch 265/350
57/57 [==============================] - 0s 860us/step - loss: 0.1011 - accuracy: 0.9277 - mae: 0.1011 - pearson_correlation: 0.6907 - euclidean_distance: 0.1632
Epoch 266/350
57/57 [==============================] - 0s 845us/step - loss: 0.0981 - accuracy: 0.9281 - mae: 0.0981 - pearson_correlation: 0.7036 - euclidean_distance: 0.1588
Epoch 267/350
57/57 [==============================] - 0s 854us/step - loss: 0.0997 - accuracy: 0.9250 - mae: 0.0997 - pearson_correlation: 0.7013 - euclidean_distance: 0.1614
Epoch 268/350
57/57 [==============================] - 0s 872us/step - loss: 0.0982 - accuracy: 0.9250 - mae: 0.0982 - pearson_correlation: 0.7010 - euclidean_distance: 0.1588
Epoch 269/350
57/57 [==============================] - 0s 849us/step - loss: 0.0971 - accuracy: 0.9290 - mae: 0.0971 - pearson_correlation: 0.7078 - euclidean_distance: 0.1567
Epoch 270/350
57/57 [==============================] - 0s 852us/step - loss: 0.0975 - accuracy: 0.9268 - mae: 0.0975 - pearson_correlation: 0.7053 - euclidean_distance: 0.1576
Epoch 271/350
57/57 [==============================] - 0s 850us/step - loss: 0.0977 - accuracy: 0.9250 - mae: 0.0977 - pearson_correlation: 0.7015 - euclidean_distance: 0.1582
Epoch 272/350
57/57 [==============================] - 0s 855us/step - loss: 0.0992 - accuracy: 0.9299 - mae: 0.0992 - pearson_correlation: 0.6994 - euclidean_distance: 0.1599
Epoch 273/350
57/57 [==============================] - 0s 843us/step - loss: 0.0984 - accuracy: 0.9303 - mae: 0.0984 - pearson_correlation: 0.7056 - euclidean_distance: 0.1592
Epoch 274/350
57/57 [==============================] - 0s 847us/step - loss: 0.0971 - accuracy: 0.9272 - mae: 0.0971 - pearson_correlation: 0.7058 - euclidean_distance: 0.1570
Epoch 275/350
57/57 [==============================] - 0s 865us/step - loss: 0.0968 - accuracy: 0.9272 - mae: 0.0968 - pearson_correlation: 0.7040 - euclidean_distance: 0.1566
Epoch 276/350
57/57 [==============================] - 0s 843us/step - loss: 0.0981 - accuracy: 0.9277 - mae: 0.0981 - pearson_correlation: 0.7038 - euclidean_distance: 0.1584
Epoch 277/350
57/57 [==============================] - 0s 862us/step - loss: 0.0943 - accuracy: 0.9299 - mae: 0.0943 - pearson_correlation: 0.7151 - euclidean_distance: 0.1527
Epoch 278/350
57/57 [==============================] - 0s 842us/step - loss: 0.0977 - accuracy: 0.9316 - mae: 0.0977 - pearson_correlation: 0.7116 - euclidean_distance: 0.1577
Epoch 279/350
57/57 [==============================] - 0s 862us/step - loss: 0.0959 - accuracy: 0.9330 - mae: 0.0959 - pearson_correlation: 0.7149 - euclidean_distance: 0.1549
Epoch 280/350
57/57 [==============================] - 0s 855us/step - loss: 0.0948 - accuracy: 0.9307 - mae: 0.0948 - pearson_correlation: 0.7195 - euclidean_distance: 0.1531
Epoch 281/350
57/57 [==============================] - 0s 853us/step - loss: 0.0949 - accuracy: 0.9352 - mae: 0.0949 - pearson_correlation: 0.7136 - euclidean_distance: 0.1532
Epoch 282/350
57/57 [==============================] - 0s 850us/step - loss: 0.0950 - accuracy: 0.9307 - mae: 0.0950 - pearson_correlation: 0.7171 - euclidean_distance: 0.1533
Epoch 283/350
57/57 [==============================] - 0s 855us/step - loss: 0.0951 - accuracy: 0.9294 - mae: 0.0951 - pearson_correlation: 0.7149 - euclidean_distance: 0.1540
Epoch 284/350
57/57 [==============================] - 0s 844us/step - loss: 0.0942 - accuracy: 0.9307 - mae: 0.0942 - pearson_correlation: 0.7134 - euclidean_distance: 0.1525
Epoch 285/350
57/57 [==============================] - 0s 849us/step - loss: 0.0947 - accuracy: 0.9303 - mae: 0.0947 - pearson_correlation: 0.7193 - euclidean_distance: 0.1529
Epoch 286/350
57/57 [==============================] - 0s 836us/step - loss: 0.0965 - accuracy: 0.9277 - mae: 0.0965 - pearson_correlation: 0.7102 - euclidean_distance: 0.1560
Epoch 287/350
57/57 [==============================] - 0s 853us/step - loss: 0.0949 - accuracy: 0.9307 - mae: 0.0949 - pearson_correlation: 0.7123 - euclidean_distance: 0.1533
Epoch 288/350
57/57 [==============================] - 0s 844us/step - loss: 0.0946 - accuracy: 0.9277 - mae: 0.0946 - pearson_correlation: 0.7145 - euclidean_distance: 0.1532
Epoch 289/350
57/57 [==============================] - 0s 850us/step - loss: 0.0937 - accuracy: 0.9338 - mae: 0.0937 - pearson_correlation: 0.7189 - euclidean_distance: 0.1519
Epoch 290/350
57/57 [==============================] - 0s 859us/step - loss: 0.0935 - accuracy: 0.9334 - mae: 0.0935 - pearson_correlation: 0.7207 - euclidean_distance: 0.1510
Epoch 291/350
57/57 [==============================] - 0s 862us/step - loss: 0.0962 - accuracy: 0.9316 - mae: 0.0962 - pearson_correlation: 0.7144 - euclidean_distance: 0.1547
Epoch 292/350
57/57 [==============================] - 0s 889us/step - loss: 0.0924 - accuracy: 0.9321 - mae: 0.0924 - pearson_correlation: 0.7215 - euclidean_distance: 0.1494
Epoch 293/350
57/57 [==============================] - 0s 876us/step - loss: 0.0947 - accuracy: 0.9334 - mae: 0.0947 - pearson_correlation: 0.7211 - euclidean_distance: 0.1525
Epoch 294/350
57/57 [==============================] - 0s 860us/step - loss: 0.0938 - accuracy: 0.9343 - mae: 0.0938 - pearson_correlation: 0.7175 - euclidean_distance: 0.1518
Epoch 295/350
57/57 [==============================] - 0s 863us/step - loss: 0.0939 - accuracy: 0.9325 - mae: 0.0939 - pearson_correlation: 0.7234 - euclidean_distance: 0.1517
Epoch 296/350
57/57 [==============================] - 0s 856us/step - loss: 0.0931 - accuracy: 0.9356 - mae: 0.0931 - pearson_correlation: 0.7194 - euclidean_distance: 0.1501
Epoch 297/350
57/57 [==============================] - 0s 865us/step - loss: 0.0921 - accuracy: 0.9360 - mae: 0.0921 - pearson_correlation: 0.7277 - euclidean_distance: 0.1491
Epoch 298/350
57/57 [==============================] - 0s 846us/step - loss: 0.0912 - accuracy: 0.9321 - mae: 0.0912 - pearson_correlation: 0.7279 - euclidean_distance: 0.1472
Epoch 299/350
57/57 [==============================] - 0s 853us/step - loss: 0.0942 - accuracy: 0.9352 - mae: 0.0942 - pearson_correlation: 0.7166 - euclidean_distance: 0.1518
Epoch 300/350
57/57 [==============================] - 0s 859us/step - loss: 0.0924 - accuracy: 0.9347 - mae: 0.0924 - pearson_correlation: 0.7237 - euclidean_distance: 0.1494
Epoch 301/350
57/57 [==============================] - 0s 848us/step - loss: 0.0919 - accuracy: 0.9347 - mae: 0.0919 - pearson_correlation: 0.7293 - euclidean_distance: 0.1477
Epoch 302/350
57/57 [==============================] - 0s 861us/step - loss: 0.0918 - accuracy: 0.9356 - mae: 0.0918 - pearson_correlation: 0.7219 - euclidean_distance: 0.1486
Epoch 303/350
57/57 [==============================] - 0s 855us/step - loss: 0.0906 - accuracy: 0.9365 - mae: 0.0906 - pearson_correlation: 0.7313 - euclidean_distance: 0.1466
Epoch 304/350
57/57 [==============================] - 0s 845us/step - loss: 0.0912 - accuracy: 0.9356 - mae: 0.0912 - pearson_correlation: 0.7345 - euclidean_distance: 0.1470
Epoch 305/350
57/57 [==============================] - 0s 863us/step - loss: 0.0903 - accuracy: 0.9352 - mae: 0.0903 - pearson_correlation: 0.7304 - euclidean_distance: 0.1462
Epoch 306/350
57/57 [==============================] - 0s 862us/step - loss: 0.0911 - accuracy: 0.9378 - mae: 0.0911 - pearson_correlation: 0.7277 - euclidean_distance: 0.1470
Epoch 307/350
57/57 [==============================] - 0s 847us/step - loss: 0.0906 - accuracy: 0.9356 - mae: 0.0906 - pearson_correlation: 0.7310 - euclidean_distance: 0.1463
Epoch 308/350
57/57 [==============================] - 0s 858us/step - loss: 0.0925 - accuracy: 0.9369 - mae: 0.0925 - pearson_correlation: 0.7266 - euclidean_distance: 0.1490
Epoch 309/350
57/57 [==============================] - 0s 854us/step - loss: 0.0897 - accuracy: 0.9352 - mae: 0.0897 - pearson_correlation: 0.7323 - euclidean_distance: 0.1445
Epoch 310/350
57/57 [==============================] - 0s 850us/step - loss: 0.0921 - accuracy: 0.9356 - mae: 0.0921 - pearson_correlation: 0.7272 - euclidean_distance: 0.1488
Epoch 311/350
57/57 [==============================] - 0s 849us/step - loss: 0.0896 - accuracy: 0.9369 - mae: 0.0896 - pearson_correlation: 0.7323 - euclidean_distance: 0.1448
Epoch 312/350
57/57 [==============================] - 0s 849us/step - loss: 0.0875 - accuracy: 0.9382 - mae: 0.0875 - pearson_correlation: 0.7377 - euclidean_distance: 0.1419
Epoch 313/350
57/57 [==============================] - 0s 855us/step - loss: 0.0914 - accuracy: 0.9365 - mae: 0.0914 - pearson_correlation: 0.7258 - euclidean_distance: 0.1474
Epoch 314/350
57/57 [==============================] - 0s 854us/step - loss: 0.0912 - accuracy: 0.9387 - mae: 0.0912 - pearson_correlation: 0.7274 - euclidean_distance: 0.1468
Epoch 315/350
57/57 [==============================] - 0s 853us/step - loss: 0.0898 - accuracy: 0.9391 - mae: 0.0898 - pearson_correlation: 0.7320 - euclidean_distance: 0.1452
Epoch 316/350
57/57 [==============================] - 0s 847us/step - loss: 0.0881 - accuracy: 0.9365 - mae: 0.0881 - pearson_correlation: 0.7359 - euclidean_distance: 0.1425
Epoch 317/350
57/57 [==============================] - 0s 858us/step - loss: 0.0889 - accuracy: 0.9356 - mae: 0.0889 - pearson_correlation: 0.7329 - euclidean_distance: 0.1438
Epoch 318/350
57/57 [==============================] - 0s 840us/step - loss: 0.0886 - accuracy: 0.9396 - mae: 0.0886 - pearson_correlation: 0.7364 - euclidean_distance: 0.1433
Epoch 319/350
57/57 [==============================] - 0s 866us/step - loss: 0.0890 - accuracy: 0.9365 - mae: 0.0890 - pearson_correlation: 0.7340 - euclidean_distance: 0.1439
Epoch 320/350
57/57 [==============================] - 0s 852us/step - loss: 0.0882 - accuracy: 0.9382 - mae: 0.0882 - pearson_correlation: 0.7417 - euclidean_distance: 0.1425
Epoch 321/350
57/57 [==============================] - 0s 863us/step - loss: 0.0917 - accuracy: 0.9369 - mae: 0.0917 - pearson_correlation: 0.7304 - euclidean_distance: 0.1480
Epoch 322/350
57/57 [==============================] - 0s 845us/step - loss: 0.0887 - accuracy: 0.9413 - mae: 0.0887 - pearson_correlation: 0.7370 - euclidean_distance: 0.1431
Epoch 323/350
57/57 [==============================] - 0s 851us/step - loss: 0.0873 - accuracy: 0.9396 - mae: 0.0873 - pearson_correlation: 0.7403 - euclidean_distance: 0.1410
Epoch 324/350
57/57 [==============================] - 0s 858us/step - loss: 0.0887 - accuracy: 0.9365 - mae: 0.0887 - pearson_correlation: 0.7389 - euclidean_distance: 0.1433
Epoch 325/350
57/57 [==============================] - 0s 847us/step - loss: 0.0856 - accuracy: 0.9360 - mae: 0.0856 - pearson_correlation: 0.7438 - euclidean_distance: 0.1383
Epoch 326/350
57/57 [==============================] - 0s 850us/step - loss: 0.0891 - accuracy: 0.9369 - mae: 0.0891 - pearson_correlation: 0.7346 - euclidean_distance: 0.1440
Epoch 327/350
57/57 [==============================] - 0s 852us/step - loss: 0.0877 - accuracy: 0.9422 - mae: 0.0877 - pearson_correlation: 0.7380 - euclidean_distance: 0.1419
Epoch 328/350
57/57 [==============================] - 0s 834us/step - loss: 0.0878 - accuracy: 0.9422 - mae: 0.0878 - pearson_correlation: 0.7338 - euclidean_distance: 0.1418
Epoch 329/350
57/57 [==============================] - 0s 855us/step - loss: 0.0862 - accuracy: 0.9418 - mae: 0.0862 - pearson_correlation: 0.7403 - euclidean_distance: 0.1395
Epoch 330/350
57/57 [==============================] - 0s 853us/step - loss: 0.0878 - accuracy: 0.9413 - mae: 0.0878 - pearson_correlation: 0.7375 - euclidean_distance: 0.1423
Epoch 331/350
57/57 [==============================] - 0s 846us/step - loss: 0.0882 - accuracy: 0.9387 - mae: 0.0882 - pearson_correlation: 0.7381 - euclidean_distance: 0.1423
Epoch 332/350
57/57 [==============================] - 0s 847us/step - loss: 0.0843 - accuracy: 0.9418 - mae: 0.0843 - pearson_correlation: 0.7491 - euclidean_distance: 0.1366
Epoch 333/350
57/57 [==============================] - 0s 850us/step - loss: 0.0876 - accuracy: 0.9427 - mae: 0.0876 - pearson_correlation: 0.7399 - euclidean_distance: 0.1419
Epoch 334/350
57/57 [==============================] - 0s 861us/step - loss: 0.0864 - accuracy: 0.9409 - mae: 0.0864 - pearson_correlation: 0.7453 - euclidean_distance: 0.1394
Epoch 335/350
57/57 [==============================] - 0s 867us/step - loss: 0.0874 - accuracy: 0.9387 - mae: 0.0874 - pearson_correlation: 0.7413 - euclidean_distance: 0.1409
Epoch 336/350
57/57 [==============================] - 0s 857us/step - loss: 0.0866 - accuracy: 0.9387 - mae: 0.0866 - pearson_correlation: 0.7434 - euclidean_distance: 0.1400
Epoch 337/350
57/57 [==============================] - 0s 849us/step - loss: 0.0878 - accuracy: 0.9391 - mae: 0.0878 - pearson_correlation: 0.7400 - euclidean_distance: 0.1419
Epoch 338/350
57/57 [==============================] - 0s 850us/step - loss: 0.0883 - accuracy: 0.9382 - mae: 0.0883 - pearson_correlation: 0.7389 - euclidean_distance: 0.1427
Epoch 339/350
57/57 [==============================] - 0s 852us/step - loss: 0.0854 - accuracy: 0.9382 - mae: 0.0854 - pearson_correlation: 0.7473 - euclidean_distance: 0.1381
Epoch 340/350
57/57 [==============================] - 0s 861us/step - loss: 0.0849 - accuracy: 0.9387 - mae: 0.0849 - pearson_correlation: 0.7492 - euclidean_distance: 0.1373
Epoch 341/350
57/57 [==============================] - 0s 848us/step - loss: 0.0864 - accuracy: 0.9387 - mae: 0.0864 - pearson_correlation: 0.7427 - euclidean_distance: 0.1395
Epoch 342/350
57/57 [==============================] - 0s 847us/step - loss: 0.0856 - accuracy: 0.9396 - mae: 0.0856 - pearson_correlation: 0.7458 - euclidean_distance: 0.1384
Epoch 343/350
57/57 [==============================] - 0s 857us/step - loss: 0.0877 - accuracy: 0.9409 - mae: 0.0877 - pearson_correlation: 0.7412 - euclidean_distance: 0.1413
Epoch 344/350
57/57 [==============================] - 0s 842us/step - loss: 0.0861 - accuracy: 0.9422 - mae: 0.0861 - pearson_correlation: 0.7451 - euclidean_distance: 0.1391
Epoch 345/350
57/57 [==============================] - 0s 859us/step - loss: 0.0857 - accuracy: 0.9427 - mae: 0.0857 - pearson_correlation: 0.7475 - euclidean_distance: 0.1384
Epoch 346/350
57/57 [==============================] - 0s 861us/step - loss: 0.0865 - accuracy: 0.9413 - mae: 0.0865 - pearson_correlation: 0.7452 - euclidean_distance: 0.1398
Epoch 347/350
57/57 [==============================] - 0s 850us/step - loss: 0.0869 - accuracy: 0.9418 - mae: 0.0869 - pearson_correlation: 0.7469 - euclidean_distance: 0.1399
Epoch 348/350
57/57 [==============================] - 0s 846us/step - loss: 0.0853 - accuracy: 0.9440 - mae: 0.0853 - pearson_correlation: 0.7467 - euclidean_distance: 0.1384
Epoch 349/350
57/57 [==============================] - 0s 855us/step - loss: 0.0853 - accuracy: 0.9427 - mae: 0.0853 - pearson_correlation: 0.7437 - euclidean_distance: 0.1377
Epoch 350/350
57/57 [==============================] - 0s 850us/step - loss: 0.0831 - accuracy: 0.9422 - mae: 0.0831 - pearson_correlation: 0.7495 - euclidean_distance: 0.1348
29/29 [==============================] - 0s 497us/step
Epoch 1/350
57/57 [==============================] - 1s 956us/step - loss: 0.6494 - accuracy: 0.0454 - mae: 0.6494 - pearson_correlation: -0.6845 - euclidean_distance: 1.1084
Epoch 2/350
57/57 [==============================] - 0s 836us/step - loss: 0.6449 - accuracy: 0.0450 - mae: 0.6449 - pearson_correlation: -0.6863 - euclidean_distance: 1.1010
Epoch 3/350
57/57 [==============================] - 0s 867us/step - loss: 0.6380 - accuracy: 0.0463 - mae: 0.6380 - pearson_correlation: -0.6865 - euclidean_distance: 1.0919
Epoch 4/350
57/57 [==============================] - 0s 866us/step - loss: 0.6344 - accuracy: 0.0476 - mae: 0.6344 - pearson_correlation: -0.6858 - euclidean_distance: 1.0843
Epoch 5/350
57/57 [==============================] - 0s 863us/step - loss: 0.6295 - accuracy: 0.0472 - mae: 0.6295 - pearson_correlation: -0.6850 - euclidean_distance: 1.0791
Epoch 6/350
57/57 [==============================] - 0s 863us/step - loss: 0.6225 - accuracy: 0.0467 - mae: 0.6225 - pearson_correlation: -0.6852 - euclidean_distance: 1.0693
Epoch 7/350
57/57 [==============================] - 0s 858us/step - loss: 0.6189 - accuracy: 0.0467 - mae: 0.6189 - pearson_correlation: -0.6880 - euclidean_distance: 1.0630
Epoch 8/350
57/57 [==============================] - 0s 854us/step - loss: 0.6138 - accuracy: 0.0476 - mae: 0.6138 - pearson_correlation: -0.6836 - euclidean_distance: 1.0550
Epoch 9/350
57/57 [==============================] - 0s 859us/step - loss: 0.6071 - accuracy: 0.0476 - mae: 0.6071 - pearson_correlation: -0.6869 - euclidean_distance: 1.0445
Epoch 10/350
57/57 [==============================] - 0s 860us/step - loss: 0.6027 - accuracy: 0.0472 - mae: 0.6027 - pearson_correlation: -0.6830 - euclidean_distance: 1.0387
Epoch 11/350
57/57 [==============================] - 0s 868us/step - loss: 0.5979 - accuracy: 0.0481 - mae: 0.5979 - pearson_correlation: -0.6843 - euclidean_distance: 1.0306
Epoch 12/350
57/57 [==============================] - 0s 863us/step - loss: 0.5935 - accuracy: 0.0472 - mae: 0.5935 - pearson_correlation: -0.6852 - euclidean_distance: 1.0244
Epoch 13/350
57/57 [==============================] - 0s 859us/step - loss: 0.5876 - accuracy: 0.0472 - mae: 0.5876 - pearson_correlation: -0.6837 - euclidean_distance: 1.0146
Epoch 14/350
57/57 [==============================] - 0s 860us/step - loss: 0.5812 - accuracy: 0.0481 - mae: 0.5812 - pearson_correlation: -0.6837 - euclidean_distance: 1.0058
Epoch 15/350
57/57 [==============================] - 0s 859us/step - loss: 0.5755 - accuracy: 0.0467 - mae: 0.5755 - pearson_correlation: -0.6821 - euclidean_distance: 0.9974
Epoch 16/350
57/57 [==============================] - 0s 865us/step - loss: 0.5704 - accuracy: 0.0467 - mae: 0.5704 - pearson_correlation: -0.6834 - euclidean_distance: 0.9891
Epoch 17/350
57/57 [==============================] - 0s 870us/step - loss: 0.5645 - accuracy: 0.0498 - mae: 0.5645 - pearson_correlation: -0.6799 - euclidean_distance: 0.9797
Epoch 18/350
57/57 [==============================] - 0s 864us/step - loss: 0.5581 - accuracy: 0.0529 - mae: 0.5581 - pearson_correlation: -0.6793 - euclidean_distance: 0.9698
Epoch 19/350
57/57 [==============================] - 0s 865us/step - loss: 0.5536 - accuracy: 0.0498 - mae: 0.5536 - pearson_correlation: -0.6812 - euclidean_distance: 0.9633
Epoch 20/350
57/57 [==============================] - 0s 851us/step - loss: 0.5486 - accuracy: 0.0507 - mae: 0.5486 - pearson_correlation: -0.6775 - euclidean_distance: 0.9547
Epoch 21/350
57/57 [==============================] - 0s 852us/step - loss: 0.5440 - accuracy: 0.0511 - mae: 0.5440 - pearson_correlation: -0.6737 - euclidean_distance: 0.9466
Epoch 22/350
57/57 [==============================] - 0s 853us/step - loss: 0.5365 - accuracy: 0.0538 - mae: 0.5365 - pearson_correlation: -0.6772 - euclidean_distance: 0.9359
Epoch 23/350
57/57 [==============================] - 0s 864us/step - loss: 0.5337 - accuracy: 0.0556 - mae: 0.5337 - pearson_correlation: -0.6721 - euclidean_distance: 0.9296
Epoch 24/350
57/57 [==============================] - 0s 855us/step - loss: 0.5272 - accuracy: 0.0551 - mae: 0.5272 - pearson_correlation: -0.6769 - euclidean_distance: 0.9192
Epoch 25/350
57/57 [==============================] - 0s 871us/step - loss: 0.5233 - accuracy: 0.0556 - mae: 0.5233 - pearson_correlation: -0.6719 - euclidean_distance: 0.9123
Epoch 26/350
57/57 [==============================] - 0s 851us/step - loss: 0.5176 - accuracy: 0.0556 - mae: 0.5176 - pearson_correlation: -0.6695 - euclidean_distance: 0.9035
Epoch 27/350
57/57 [==============================] - 0s 855us/step - loss: 0.5137 - accuracy: 0.0595 - mae: 0.5137 - pearson_correlation: -0.6664 - euclidean_distance: 0.8955
Epoch 28/350
57/57 [==============================] - 0s 864us/step - loss: 0.5074 - accuracy: 0.0635 - mae: 0.5074 - pearson_correlation: -0.6672 - euclidean_distance: 0.8861
Epoch 29/350
57/57 [==============================] - 0s 859us/step - loss: 0.5037 - accuracy: 0.0617 - mae: 0.5037 - pearson_correlation: -0.6689 - euclidean_distance: 0.8797
Epoch 30/350
57/57 [==============================] - 0s 864us/step - loss: 0.4978 - accuracy: 0.0714 - mae: 0.4978 - pearson_correlation: -0.6614 - euclidean_distance: 0.8698
Epoch 31/350
57/57 [==============================] - 0s 852us/step - loss: 0.4939 - accuracy: 0.0701 - mae: 0.4939 - pearson_correlation: -0.6606 - euclidean_distance: 0.8633
Epoch 32/350
57/57 [==============================] - 0s 869us/step - loss: 0.4901 - accuracy: 0.0710 - mae: 0.4901 - pearson_correlation: -0.6588 - euclidean_distance: 0.8549
Epoch 33/350
57/57 [==============================] - 0s 863us/step - loss: 0.4847 - accuracy: 0.0750 - mae: 0.4847 - pearson_correlation: -0.6552 - euclidean_distance: 0.8468
Epoch 34/350
57/57 [==============================] - 0s 857us/step - loss: 0.4783 - accuracy: 0.0838 - mae: 0.4783 - pearson_correlation: -0.6491 - euclidean_distance: 0.8365
Epoch 35/350
57/57 [==============================] - 0s 854us/step - loss: 0.4762 - accuracy: 0.0882 - mae: 0.4762 - pearson_correlation: -0.6481 - euclidean_distance: 0.8311
Epoch 36/350
57/57 [==============================] - 0s 852us/step - loss: 0.4710 - accuracy: 0.0904 - mae: 0.4710 - pearson_correlation: -0.6433 - euclidean_distance: 0.8217
Epoch 37/350
57/57 [==============================] - 0s 850us/step - loss: 0.4669 - accuracy: 0.0860 - mae: 0.4669 - pearson_correlation: -0.6445 - euclidean_distance: 0.8144
Epoch 38/350
57/57 [==============================] - 0s 857us/step - loss: 0.4622 - accuracy: 0.1014 - mae: 0.4622 - pearson_correlation: -0.6350 - euclidean_distance: 0.8048
Epoch 39/350
57/57 [==============================] - 0s 866us/step - loss: 0.4585 - accuracy: 0.0961 - mae: 0.4585 - pearson_correlation: -0.6390 - euclidean_distance: 0.7987
Epoch 40/350
57/57 [==============================] - 0s 857us/step - loss: 0.4546 - accuracy: 0.1098 - mae: 0.4546 - pearson_correlation: -0.6290 - euclidean_distance: 0.7920
Epoch 41/350
57/57 [==============================] - 0s 859us/step - loss: 0.4485 - accuracy: 0.1093 - mae: 0.4485 - pearson_correlation: -0.6333 - euclidean_distance: 0.7822
Epoch 42/350
57/57 [==============================] - 0s 846us/step - loss: 0.4439 - accuracy: 0.1177 - mae: 0.4439 - pearson_correlation: -0.6231 - euclidean_distance: 0.7731
Epoch 43/350
57/57 [==============================] - 0s 853us/step - loss: 0.4405 - accuracy: 0.1182 - mae: 0.4405 - pearson_correlation: -0.6183 - euclidean_distance: 0.7659
Epoch 44/350
57/57 [==============================] - 0s 856us/step - loss: 0.4344 - accuracy: 0.1195 - mae: 0.4344 - pearson_correlation: -0.6132 - euclidean_distance: 0.7569
Epoch 45/350
57/57 [==============================] - 0s 855us/step - loss: 0.4323 - accuracy: 0.1318 - mae: 0.4323 - pearson_correlation: -0.6087 - euclidean_distance: 0.7511
Epoch 46/350
57/57 [==============================] - 0s 858us/step - loss: 0.4270 - accuracy: 0.1279 - mae: 0.4270 - pearson_correlation: -0.6043 - euclidean_distance: 0.7414
Epoch 47/350
57/57 [==============================] - 0s 847us/step - loss: 0.4253 - accuracy: 0.1292 - mae: 0.4253 - pearson_correlation: -0.5988 - euclidean_distance: 0.7368
Epoch 48/350
57/57 [==============================] - 0s 853us/step - loss: 0.4204 - accuracy: 0.1384 - mae: 0.4204 - pearson_correlation: -0.5921 - euclidean_distance: 0.7286
Epoch 49/350
57/57 [==============================] - 0s 847us/step - loss: 0.4158 - accuracy: 0.1349 - mae: 0.4158 - pearson_correlation: -0.5880 - euclidean_distance: 0.7219
Epoch 50/350
57/57 [==============================] - 0s 855us/step - loss: 0.4106 - accuracy: 0.1415 - mae: 0.4106 - pearson_correlation: -0.5799 - euclidean_distance: 0.7115
Epoch 51/350
57/57 [==============================] - 0s 844us/step - loss: 0.4066 - accuracy: 0.1459 - mae: 0.4066 - pearson_correlation: -0.5706 - euclidean_distance: 0.7038
Epoch 52/350
57/57 [==============================] - 0s 861us/step - loss: 0.4036 - accuracy: 0.1548 - mae: 0.4036 - pearson_correlation: -0.5607 - euclidean_distance: 0.6973
Epoch 53/350
57/57 [==============================] - 0s 850us/step - loss: 0.3982 - accuracy: 0.1601 - mae: 0.3982 - pearson_correlation: -0.5512 - euclidean_distance: 0.6888
Epoch 54/350
57/57 [==============================] - 0s 854us/step - loss: 0.3955 - accuracy: 0.1627 - mae: 0.3955 - pearson_correlation: -0.5437 - euclidean_distance: 0.6824
Epoch 55/350
57/57 [==============================] - 0s 856us/step - loss: 0.3905 - accuracy: 0.1711 - mae: 0.3905 - pearson_correlation: -0.5428 - euclidean_distance: 0.6740
Epoch 56/350
57/57 [==============================] - 0s 845us/step - loss: 0.3868 - accuracy: 0.1742 - mae: 0.3868 - pearson_correlation: -0.5325 - euclidean_distance: 0.6669
Epoch 57/350
57/57 [==============================] - 0s 856us/step - loss: 0.3833 - accuracy: 0.1856 - mae: 0.3833 - pearson_correlation: -0.5227 - euclidean_distance: 0.6600
Epoch 58/350
57/57 [==============================] - 0s 857us/step - loss: 0.3792 - accuracy: 0.1834 - mae: 0.3792 - pearson_correlation: -0.5174 - euclidean_distance: 0.6530
Epoch 59/350
57/57 [==============================] - 0s 849us/step - loss: 0.3764 - accuracy: 0.1812 - mae: 0.3764 - pearson_correlation: -0.5066 - euclidean_distance: 0.6477
Epoch 60/350
57/57 [==============================] - 0s 856us/step - loss: 0.3708 - accuracy: 0.1883 - mae: 0.3708 - pearson_correlation: -0.5005 - euclidean_distance: 0.6381
Epoch 61/350
57/57 [==============================] - 0s 857us/step - loss: 0.3663 - accuracy: 0.1971 - mae: 0.3663 - pearson_correlation: -0.4842 - euclidean_distance: 0.6297
Epoch 62/350
57/57 [==============================] - 0s 849us/step - loss: 0.3625 - accuracy: 0.1989 - mae: 0.3625 - pearson_correlation: -0.4772 - euclidean_distance: 0.6223
Epoch 63/350
57/57 [==============================] - 0s 855us/step - loss: 0.3579 - accuracy: 0.2059 - mae: 0.3579 - pearson_correlation: -0.4655 - euclidean_distance: 0.6148
Epoch 64/350
57/57 [==============================] - 0s 863us/step - loss: 0.3545 - accuracy: 0.2200 - mae: 0.3545 - pearson_correlation: -0.4551 - euclidean_distance: 0.6084
Epoch 65/350
57/57 [==============================] - 0s 862us/step - loss: 0.3499 - accuracy: 0.2275 - mae: 0.3499 - pearson_correlation: -0.4471 - euclidean_distance: 0.6006
Epoch 66/350
57/57 [==============================] - 0s 855us/step - loss: 0.3463 - accuracy: 0.2319 - mae: 0.3463 - pearson_correlation: -0.4320 - euclidean_distance: 0.5930
Epoch 67/350
57/57 [==============================] - 0s 854us/step - loss: 0.3434 - accuracy: 0.2509 - mae: 0.3434 - pearson_correlation: -0.4145 - euclidean_distance: 0.5864
Epoch 68/350
57/57 [==============================] - 0s 851us/step - loss: 0.3378 - accuracy: 0.2460 - mae: 0.3378 - pearson_correlation: -0.4058 - euclidean_distance: 0.5787
Epoch 69/350
57/57 [==============================] - 0s 853us/step - loss: 0.3356 - accuracy: 0.2681 - mae: 0.3356 - pearson_correlation: -0.3935 - euclidean_distance: 0.5727
Epoch 70/350
57/57 [==============================] - 0s 859us/step - loss: 0.3306 - accuracy: 0.2734 - mae: 0.3306 - pearson_correlation: -0.3817 - euclidean_distance: 0.5650
Epoch 71/350
57/57 [==============================] - 0s 855us/step - loss: 0.3266 - accuracy: 0.2853 - mae: 0.3266 - pearson_correlation: -0.3632 - euclidean_distance: 0.5568
Epoch 72/350
57/57 [==============================] - 0s 870us/step - loss: 0.3230 - accuracy: 0.3086 - mae: 0.3230 - pearson_correlation: -0.3465 - euclidean_distance: 0.5502
Epoch 73/350
57/57 [==============================] - 0s 851us/step - loss: 0.3174 - accuracy: 0.3157 - mae: 0.3174 - pearson_correlation: -0.3268 - euclidean_distance: 0.5409
Epoch 74/350
57/57 [==============================] - 0s 850us/step - loss: 0.3152 - accuracy: 0.3298 - mae: 0.3152 - pearson_correlation: -0.3168 - euclidean_distance: 0.5353
Epoch 75/350
57/57 [==============================] - 0s 850us/step - loss: 0.3105 - accuracy: 0.3404 - mae: 0.3105 - pearson_correlation: -0.2960 - euclidean_distance: 0.5266
Epoch 76/350
57/57 [==============================] - 0s 871us/step - loss: 0.3073 - accuracy: 0.3589 - mae: 0.3073 - pearson_correlation: -0.2877 - euclidean_distance: 0.5225
Epoch 77/350
57/57 [==============================] - 0s 857us/step - loss: 0.3022 - accuracy: 0.3655 - mae: 0.3022 - pearson_correlation: -0.2599 - euclidean_distance: 0.5126
Epoch 78/350
57/57 [==============================] - 0s 848us/step - loss: 0.2983 - accuracy: 0.3880 - mae: 0.2983 - pearson_correlation: -0.2409 - euclidean_distance: 0.5053
Epoch 79/350
57/57 [==============================] - 0s 850us/step - loss: 0.2936 - accuracy: 0.3884 - mae: 0.2936 - pearson_correlation: -0.2267 - euclidean_distance: 0.4973
Epoch 80/350
57/57 [==============================] - 0s 853us/step - loss: 0.2893 - accuracy: 0.4039 - mae: 0.2893 - pearson_correlation: -0.2098 - euclidean_distance: 0.4908
Epoch 81/350
57/57 [==============================] - 0s 845us/step - loss: 0.2857 - accuracy: 0.4123 - mae: 0.2857 - pearson_correlation: -0.1912 - euclidean_distance: 0.4829
Epoch 82/350
57/57 [==============================] - 0s 857us/step - loss: 0.2819 - accuracy: 0.4255 - mae: 0.2819 - pearson_correlation: -0.1676 - euclidean_distance: 0.4751
Epoch 83/350
57/57 [==============================] - 0s 854us/step - loss: 0.2762 - accuracy: 0.4405 - mae: 0.2762 - pearson_correlation: -0.1517 - euclidean_distance: 0.4664
Epoch 84/350
57/57 [==============================] - 0s 851us/step - loss: 0.2721 - accuracy: 0.4480 - mae: 0.2721 - pearson_correlation: -0.1260 - euclidean_distance: 0.4584
Epoch 85/350
57/57 [==============================] - 0s 854us/step - loss: 0.2692 - accuracy: 0.4586 - mae: 0.2692 - pearson_correlation: -0.1085 - euclidean_distance: 0.4524
Epoch 86/350
57/57 [==============================] - 0s 859us/step - loss: 0.2630 - accuracy: 0.4735 - mae: 0.2630 - pearson_correlation: -0.0819 - euclidean_distance: 0.4424
Epoch 87/350
57/57 [==============================] - 0s 854us/step - loss: 0.2595 - accuracy: 0.4881 - mae: 0.2595 - pearson_correlation: -0.0604 - euclidean_distance: 0.4360
Epoch 88/350
57/57 [==============================] - 0s 857us/step - loss: 0.2547 - accuracy: 0.4850 - mae: 0.2547 - pearson_correlation: -0.0424 - euclidean_distance: 0.4277
Epoch 89/350
57/57 [==============================] - 0s 888us/step - loss: 0.2518 - accuracy: 0.5053 - mae: 0.2518 - pearson_correlation: -0.0182 - euclidean_distance: 0.4220
Epoch 90/350
57/57 [==============================] - 0s 966us/step - loss: 0.2457 - accuracy: 0.5172 - mae: 0.2457 - pearson_correlation: 0.0048 - euclidean_distance: 0.4117
Epoch 91/350
57/57 [==============================] - 0s 965us/step - loss: 0.2427 - accuracy: 0.5238 - mae: 0.2427 - pearson_correlation: 0.0261 - euclidean_distance: 0.4062
Epoch 92/350
57/57 [==============================] - 0s 975us/step - loss: 0.2381 - accuracy: 0.5419 - mae: 0.2381 - pearson_correlation: 0.0427 - euclidean_distance: 0.3990
Epoch 93/350
57/57 [==============================] - 0s 935us/step - loss: 0.2357 - accuracy: 0.5467 - mae: 0.2357 - pearson_correlation: 0.0569 - euclidean_distance: 0.3935
Epoch 94/350
57/57 [==============================] - 0s 1ms/step - loss: 0.2300 - accuracy: 0.5586 - mae: 0.2300 - pearson_correlation: 0.0911 - euclidean_distance: 0.3838
Epoch 95/350
57/57 [==============================] - 0s 1ms/step - loss: 0.2245 - accuracy: 0.5785 - mae: 0.2245 - pearson_correlation: 0.1113 - euclidean_distance: 0.3745
Epoch 96/350
57/57 [==============================] - 0s 1ms/step - loss: 0.2228 - accuracy: 0.5922 - mae: 0.2228 - pearson_correlation: 0.1253 - euclidean_distance: 0.3709
Epoch 97/350
57/57 [==============================] - 0s 1ms/step - loss: 0.2175 - accuracy: 0.6111 - mae: 0.2175 - pearson_correlation: 0.1492 - euclidean_distance: 0.3618
Epoch 98/350
57/57 [==============================] - 0s 994us/step - loss: 0.2131 - accuracy: 0.6221 - mae: 0.2131 - pearson_correlation: 0.1741 - euclidean_distance: 0.3546
Epoch 99/350
57/57 [==============================] - 0s 973us/step - loss: 0.2110 - accuracy: 0.6345 - mae: 0.2110 - pearson_correlation: 0.1932 - euclidean_distance: 0.3499
Epoch 100/350
57/57 [==============================] - 0s 860us/step - loss: 0.2061 - accuracy: 0.6504 - mae: 0.2061 - pearson_correlation: 0.2019 - euclidean_distance: 0.3419
Epoch 101/350
57/57 [==============================] - 0s 855us/step - loss: 0.2032 - accuracy: 0.6574 - mae: 0.2032 - pearson_correlation: 0.2205 - euclidean_distance: 0.3368
Epoch 102/350
57/57 [==============================] - 0s 858us/step - loss: 0.1988 - accuracy: 0.6742 - mae: 0.1988 - pearson_correlation: 0.2393 - euclidean_distance: 0.3290
Epoch 103/350
57/57 [==============================] - 0s 861us/step - loss: 0.1986 - accuracy: 0.6817 - mae: 0.1986 - pearson_correlation: 0.2561 - euclidean_distance: 0.3273
Epoch 104/350
57/57 [==============================] - 0s 859us/step - loss: 0.1922 - accuracy: 0.7033 - mae: 0.1922 - pearson_correlation: 0.2780 - euclidean_distance: 0.3173
Epoch 105/350
57/57 [==============================] - 0s 851us/step - loss: 0.1900 - accuracy: 0.7174 - mae: 0.1900 - pearson_correlation: 0.2921 - euclidean_distance: 0.3131
Epoch 106/350
57/57 [==============================] - 0s 860us/step - loss: 0.1879 - accuracy: 0.7200 - mae: 0.1879 - pearson_correlation: 0.3022 - euclidean_distance: 0.3097
Epoch 107/350
57/57 [==============================] - 0s 838us/step - loss: 0.1858 - accuracy: 0.7240 - mae: 0.1858 - pearson_correlation: 0.3156 - euclidean_distance: 0.3045
Epoch 108/350
57/57 [==============================] - 0s 858us/step - loss: 0.1810 - accuracy: 0.7412 - mae: 0.1810 - pearson_correlation: 0.3283 - euclidean_distance: 0.2980
Epoch 109/350
57/57 [==============================] - 0s 858us/step - loss: 0.1782 - accuracy: 0.7478 - mae: 0.1782 - pearson_correlation: 0.3506 - euclidean_distance: 0.2928
Epoch 110/350
57/57 [==============================] - 0s 855us/step - loss: 0.1761 - accuracy: 0.7518 - mae: 0.1761 - pearson_correlation: 0.3577 - euclidean_distance: 0.2890
Epoch 111/350
57/57 [==============================] - 0s 860us/step - loss: 0.1739 - accuracy: 0.7676 - mae: 0.1739 - pearson_correlation: 0.3712 - euclidean_distance: 0.2849
Epoch 112/350
57/57 [==============================] - 0s 841us/step - loss: 0.1689 - accuracy: 0.7782 - mae: 0.1689 - pearson_correlation: 0.3862 - euclidean_distance: 0.2770
Epoch 113/350
57/57 [==============================] - 0s 843us/step - loss: 0.1707 - accuracy: 0.7910 - mae: 0.1707 - pearson_correlation: 0.3877 - euclidean_distance: 0.2794
Epoch 114/350
57/57 [==============================] - 0s 849us/step - loss: 0.1671 - accuracy: 0.7923 - mae: 0.1671 - pearson_correlation: 0.4066 - euclidean_distance: 0.2740
Epoch 115/350
57/57 [==============================] - 0s 843us/step - loss: 0.1665 - accuracy: 0.7998 - mae: 0.1665 - pearson_correlation: 0.4056 - euclidean_distance: 0.2720
Epoch 116/350
57/57 [==============================] - 0s 863us/step - loss: 0.1635 - accuracy: 0.8108 - mae: 0.1635 - pearson_correlation: 0.4167 - euclidean_distance: 0.2672
Epoch 117/350
57/57 [==============================] - 0s 859us/step - loss: 0.1634 - accuracy: 0.8258 - mae: 0.1634 - pearson_correlation: 0.4236 - euclidean_distance: 0.2667
Epoch 118/350
57/57 [==============================] - 0s 850us/step - loss: 0.1610 - accuracy: 0.8188 - mae: 0.1610 - pearson_correlation: 0.4442 - euclidean_distance: 0.2623
Epoch 119/350
57/57 [==============================] - 0s 858us/step - loss: 0.1600 - accuracy: 0.8333 - mae: 0.1600 - pearson_correlation: 0.4398 - euclidean_distance: 0.2614
Epoch 120/350
57/57 [==============================] - 0s 849us/step - loss: 0.1570 - accuracy: 0.8325 - mae: 0.1570 - pearson_correlation: 0.4521 - euclidean_distance: 0.2565
Epoch 121/350
57/57 [==============================] - 0s 848us/step - loss: 0.1557 - accuracy: 0.8391 - mae: 0.1557 - pearson_correlation: 0.4579 - euclidean_distance: 0.2533
Epoch 122/350
57/57 [==============================] - 0s 857us/step - loss: 0.1517 - accuracy: 0.8501 - mae: 0.1517 - pearson_correlation: 0.4713 - euclidean_distance: 0.2479
Epoch 123/350
57/57 [==============================] - 0s 856us/step - loss: 0.1520 - accuracy: 0.8501 - mae: 0.1520 - pearson_correlation: 0.4792 - euclidean_distance: 0.2475
Epoch 124/350
57/57 [==============================] - 0s 856us/step - loss: 0.1506 - accuracy: 0.8585 - mae: 0.1506 - pearson_correlation: 0.4793 - euclidean_distance: 0.2457
Epoch 125/350
57/57 [==============================] - 0s 849us/step - loss: 0.1507 - accuracy: 0.8593 - mae: 0.1507 - pearson_correlation: 0.4878 - euclidean_distance: 0.2448
Epoch 126/350
57/57 [==============================] - 0s 877us/step - loss: 0.1470 - accuracy: 0.8668 - mae: 0.1470 - pearson_correlation: 0.5025 - euclidean_distance: 0.2397
Epoch 127/350
57/57 [==============================] - 0s 857us/step - loss: 0.1447 - accuracy: 0.8664 - mae: 0.1447 - pearson_correlation: 0.5013 - euclidean_distance: 0.2356
Epoch 128/350
57/57 [==============================] - 0s 913us/step - loss: 0.1469 - accuracy: 0.8655 - mae: 0.1469 - pearson_correlation: 0.5029 - euclidean_distance: 0.2387
Epoch 129/350
57/57 [==============================] - 0s 842us/step - loss: 0.1449 - accuracy: 0.8765 - mae: 0.1449 - pearson_correlation: 0.5100 - euclidean_distance: 0.2361
Epoch 130/350
57/57 [==============================] - 0s 855us/step - loss: 0.1416 - accuracy: 0.8779 - mae: 0.1416 - pearson_correlation: 0.5195 - euclidean_distance: 0.2308
Epoch 131/350
57/57 [==============================] - 0s 858us/step - loss: 0.1425 - accuracy: 0.8805 - mae: 0.1425 - pearson_correlation: 0.5184 - euclidean_distance: 0.2322
Epoch 132/350
57/57 [==============================] - 0s 851us/step - loss: 0.1427 - accuracy: 0.8774 - mae: 0.1427 - pearson_correlation: 0.5212 - euclidean_distance: 0.2322
Epoch 133/350
57/57 [==============================] - 0s 858us/step - loss: 0.1424 - accuracy: 0.8810 - mae: 0.1424 - pearson_correlation: 0.5300 - euclidean_distance: 0.2304
Epoch 134/350
57/57 [==============================] - 0s 847us/step - loss: 0.1403 - accuracy: 0.8845 - mae: 0.1403 - pearson_correlation: 0.5357 - euclidean_distance: 0.2278
Epoch 135/350
57/57 [==============================] - 0s 854us/step - loss: 0.1375 - accuracy: 0.8862 - mae: 0.1375 - pearson_correlation: 0.5398 - euclidean_distance: 0.2243
Epoch 136/350
57/57 [==============================] - 0s 856us/step - loss: 0.1369 - accuracy: 0.8929 - mae: 0.1369 - pearson_correlation: 0.5421 - euclidean_distance: 0.2234
Epoch 137/350
57/57 [==============================] - 0s 850us/step - loss: 0.1355 - accuracy: 0.8911 - mae: 0.1355 - pearson_correlation: 0.5496 - euclidean_distance: 0.2201
Epoch 138/350
57/57 [==============================] - 0s 852us/step - loss: 0.1351 - accuracy: 0.8946 - mae: 0.1351 - pearson_correlation: 0.5533 - euclidean_distance: 0.2202
Epoch 139/350
57/57 [==============================] - 0s 849us/step - loss: 0.1336 - accuracy: 0.8964 - mae: 0.1336 - pearson_correlation: 0.5589 - euclidean_distance: 0.2163
Epoch 140/350
57/57 [==============================] - 0s 854us/step - loss: 0.1339 - accuracy: 0.8986 - mae: 0.1339 - pearson_correlation: 0.5597 - euclidean_distance: 0.2166
Epoch 141/350
57/57 [==============================] - 0s 850us/step - loss: 0.1342 - accuracy: 0.8977 - mae: 0.1342 - pearson_correlation: 0.5635 - euclidean_distance: 0.2182
Epoch 142/350
57/57 [==============================] - 0s 851us/step - loss: 0.1334 - accuracy: 0.8977 - mae: 0.1334 - pearson_correlation: 0.5618 - euclidean_distance: 0.2165
Epoch 143/350
57/57 [==============================] - 0s 857us/step - loss: 0.1305 - accuracy: 0.9008 - mae: 0.1305 - pearson_correlation: 0.5748 - euclidean_distance: 0.2118
Epoch 144/350
57/57 [==============================] - 0s 856us/step - loss: 0.1309 - accuracy: 0.9043 - mae: 0.1309 - pearson_correlation: 0.5770 - euclidean_distance: 0.2124
Epoch 145/350
57/57 [==============================] - 0s 860us/step - loss: 0.1288 - accuracy: 0.9030 - mae: 0.1288 - pearson_correlation: 0.5801 - euclidean_distance: 0.2091
Epoch 146/350
57/57 [==============================] - 0s 867us/step - loss: 0.1301 - accuracy: 0.9056 - mae: 0.1301 - pearson_correlation: 0.5797 - euclidean_distance: 0.2110
Epoch 147/350
57/57 [==============================] - 0s 851us/step - loss: 0.1274 - accuracy: 0.8999 - mae: 0.1274 - pearson_correlation: 0.5831 - euclidean_distance: 0.2070
Epoch 148/350
57/57 [==============================] - 0s 858us/step - loss: 0.1280 - accuracy: 0.9092 - mae: 0.1280 - pearson_correlation: 0.5873 - euclidean_distance: 0.2081
Epoch 149/350
57/57 [==============================] - 0s 865us/step - loss: 0.1263 - accuracy: 0.9056 - mae: 0.1263 - pearson_correlation: 0.5930 - euclidean_distance: 0.2050
Epoch 150/350
57/57 [==============================] - 0s 850us/step - loss: 0.1274 - accuracy: 0.9105 - mae: 0.1274 - pearson_correlation: 0.5857 - euclidean_distance: 0.2064
Epoch 151/350
57/57 [==============================] - 0s 853us/step - loss: 0.1260 - accuracy: 0.9087 - mae: 0.1260 - pearson_correlation: 0.5986 - euclidean_distance: 0.2038
Epoch 152/350
57/57 [==============================] - 0s 851us/step - loss: 0.1261 - accuracy: 0.9145 - mae: 0.1261 - pearson_correlation: 0.5929 - euclidean_distance: 0.2039
Epoch 153/350
57/57 [==============================] - 0s 856us/step - loss: 0.1268 - accuracy: 0.9131 - mae: 0.1268 - pearson_correlation: 0.5946 - euclidean_distance: 0.2050
Epoch 154/350
57/57 [==============================] - 0s 856us/step - loss: 0.1246 - accuracy: 0.9114 - mae: 0.1246 - pearson_correlation: 0.6080 - euclidean_distance: 0.2011
Epoch 155/350
57/57 [==============================] - 0s 851us/step - loss: 0.1254 - accuracy: 0.9153 - mae: 0.1254 - pearson_correlation: 0.5971 - euclidean_distance: 0.2032
Epoch 156/350
57/57 [==============================] - 0s 841us/step - loss: 0.1253 - accuracy: 0.9162 - mae: 0.1253 - pearson_correlation: 0.6027 - euclidean_distance: 0.2024
Epoch 157/350
57/57 [==============================] - 0s 848us/step - loss: 0.1238 - accuracy: 0.9189 - mae: 0.1238 - pearson_correlation: 0.6026 - euclidean_distance: 0.2005
Epoch 158/350
57/57 [==============================] - 0s 855us/step - loss: 0.1198 - accuracy: 0.9162 - mae: 0.1198 - pearson_correlation: 0.6147 - euclidean_distance: 0.1941
Epoch 159/350
57/57 [==============================] - 0s 856us/step - loss: 0.1220 - accuracy: 0.9167 - mae: 0.1220 - pearson_correlation: 0.6096 - euclidean_distance: 0.1979
Epoch 160/350
57/57 [==============================] - 0s 846us/step - loss: 0.1199 - accuracy: 0.9167 - mae: 0.1199 - pearson_correlation: 0.6160 - euclidean_distance: 0.1942
Epoch 161/350
57/57 [==============================] - 0s 858us/step - loss: 0.1198 - accuracy: 0.9189 - mae: 0.1198 - pearson_correlation: 0.6185 - euclidean_distance: 0.1940
Epoch 162/350
57/57 [==============================] - 0s 852us/step - loss: 0.1173 - accuracy: 0.9193 - mae: 0.1173 - pearson_correlation: 0.6245 - euclidean_distance: 0.1897
Epoch 163/350
57/57 [==============================] - 0s 861us/step - loss: 0.1206 - accuracy: 0.9206 - mae: 0.1206 - pearson_correlation: 0.6155 - euclidean_distance: 0.1951
Epoch 164/350
57/57 [==============================] - 0s 849us/step - loss: 0.1195 - accuracy: 0.9202 - mae: 0.1195 - pearson_correlation: 0.6227 - euclidean_distance: 0.1930
Epoch 165/350
57/57 [==============================] - 0s 848us/step - loss: 0.1185 - accuracy: 0.9233 - mae: 0.1185 - pearson_correlation: 0.6265 - euclidean_distance: 0.1917
Epoch 166/350
57/57 [==============================] - 0s 853us/step - loss: 0.1168 - accuracy: 0.9206 - mae: 0.1168 - pearson_correlation: 0.6251 - euclidean_distance: 0.1889
Epoch 167/350
57/57 [==============================] - 0s 856us/step - loss: 0.1173 - accuracy: 0.9211 - mae: 0.1173 - pearson_correlation: 0.6280 - euclidean_distance: 0.1896
Epoch 168/350
57/57 [==============================] - 0s 851us/step - loss: 0.1177 - accuracy: 0.9220 - mae: 0.1177 - pearson_correlation: 0.6300 - euclidean_distance: 0.1898
Epoch 169/350
57/57 [==============================] - 0s 856us/step - loss: 0.1164 - accuracy: 0.9202 - mae: 0.1164 - pearson_correlation: 0.6328 - euclidean_distance: 0.1882
Epoch 170/350
57/57 [==============================] - 0s 857us/step - loss: 0.1156 - accuracy: 0.9198 - mae: 0.1156 - pearson_correlation: 0.6326 - euclidean_distance: 0.1875
Epoch 171/350
57/57 [==============================] - 0s 852us/step - loss: 0.1175 - accuracy: 0.9202 - mae: 0.1175 - pearson_correlation: 0.6329 - euclidean_distance: 0.1892
Epoch 172/350
57/57 [==============================] - 0s 851us/step - loss: 0.1141 - accuracy: 0.9228 - mae: 0.1141 - pearson_correlation: 0.6422 - euclidean_distance: 0.1846
Epoch 173/350
57/57 [==============================] - 0s 858us/step - loss: 0.1142 - accuracy: 0.9246 - mae: 0.1142 - pearson_correlation: 0.6395 - euclidean_distance: 0.1845
Epoch 174/350
57/57 [==============================] - 0s 844us/step - loss: 0.1145 - accuracy: 0.9250 - mae: 0.1145 - pearson_correlation: 0.6409 - euclidean_distance: 0.1846
Epoch 175/350
57/57 [==============================] - 0s 853us/step - loss: 0.1149 - accuracy: 0.9228 - mae: 0.1149 - pearson_correlation: 0.6376 - euclidean_distance: 0.1856
Epoch 176/350
57/57 [==============================] - 0s 851us/step - loss: 0.1127 - accuracy: 0.9255 - mae: 0.1127 - pearson_correlation: 0.6439 - euclidean_distance: 0.1823
Epoch 177/350
57/57 [==============================] - 0s 847us/step - loss: 0.1124 - accuracy: 0.9295 - mae: 0.1124 - pearson_correlation: 0.6453 - euclidean_distance: 0.1810
Epoch 178/350
57/57 [==============================] - 0s 850us/step - loss: 0.1120 - accuracy: 0.9272 - mae: 0.1120 - pearson_correlation: 0.6481 - euclidean_distance: 0.1808
Epoch 179/350
57/57 [==============================] - 0s 846us/step - loss: 0.1096 - accuracy: 0.9339 - mae: 0.1096 - pearson_correlation: 0.6565 - euclidean_distance: 0.1771
Epoch 180/350
57/57 [==============================] - 0s 845us/step - loss: 0.1138 - accuracy: 0.9255 - mae: 0.1138 - pearson_correlation: 0.6449 - euclidean_distance: 0.1837
Epoch 181/350
57/57 [==============================] - 0s 852us/step - loss: 0.1096 - accuracy: 0.9268 - mae: 0.1096 - pearson_correlation: 0.6538 - euclidean_distance: 0.1769
Epoch 182/350
57/57 [==============================] - 0s 840us/step - loss: 0.1108 - accuracy: 0.9339 - mae: 0.1108 - pearson_correlation: 0.6514 - euclidean_distance: 0.1787
Epoch 183/350
57/57 [==============================] - 0s 855us/step - loss: 0.1124 - accuracy: 0.9317 - mae: 0.1124 - pearson_correlation: 0.6496 - euclidean_distance: 0.1817
Epoch 184/350
57/57 [==============================] - 0s 857us/step - loss: 0.1116 - accuracy: 0.9272 - mae: 0.1116 - pearson_correlation: 0.6540 - euclidean_distance: 0.1799
Epoch 185/350
57/57 [==============================] - 0s 848us/step - loss: 0.1106 - accuracy: 0.9303 - mae: 0.1106 - pearson_correlation: 0.6570 - euclidean_distance: 0.1780
Epoch 186/350
57/57 [==============================] - 0s 843us/step - loss: 0.1091 - accuracy: 0.9325 - mae: 0.1091 - pearson_correlation: 0.6561 - euclidean_distance: 0.1763
Epoch 187/350
57/57 [==============================] - 0s 845us/step - loss: 0.1105 - accuracy: 0.9312 - mae: 0.1105 - pearson_correlation: 0.6609 - euclidean_distance: 0.1786
Epoch 188/350
57/57 [==============================] - 0s 851us/step - loss: 0.1082 - accuracy: 0.9321 - mae: 0.1082 - pearson_correlation: 0.6612 - euclidean_distance: 0.1747
Epoch 189/350
57/57 [==============================] - 0s 855us/step - loss: 0.1083 - accuracy: 0.9264 - mae: 0.1083 - pearson_correlation: 0.6614 - euclidean_distance: 0.1744
Epoch 190/350
57/57 [==============================] - 0s 841us/step - loss: 0.1097 - accuracy: 0.9295 - mae: 0.1097 - pearson_correlation: 0.6636 - euclidean_distance: 0.1759
Epoch 191/350
57/57 [==============================] - 0s 863us/step - loss: 0.1090 - accuracy: 0.9334 - mae: 0.1090 - pearson_correlation: 0.6702 - euclidean_distance: 0.1749
Epoch 192/350
57/57 [==============================] - 0s 855us/step - loss: 0.1097 - accuracy: 0.9343 - mae: 0.1097 - pearson_correlation: 0.6642 - euclidean_distance: 0.1760
Epoch 193/350
57/57 [==============================] - 0s 853us/step - loss: 0.1071 - accuracy: 0.9303 - mae: 0.1071 - pearson_correlation: 0.6693 - euclidean_distance: 0.1723
Epoch 194/350
57/57 [==============================] - 0s 846us/step - loss: 0.1075 - accuracy: 0.9303 - mae: 0.1075 - pearson_correlation: 0.6691 - euclidean_distance: 0.1729
Epoch 195/350
57/57 [==============================] - 0s 840us/step - loss: 0.1059 - accuracy: 0.9334 - mae: 0.1059 - pearson_correlation: 0.6707 - euclidean_distance: 0.1711
Epoch 196/350
57/57 [==============================] - 0s 856us/step - loss: 0.1080 - accuracy: 0.9290 - mae: 0.1080 - pearson_correlation: 0.6677 - euclidean_distance: 0.1738
Epoch 197/350
57/57 [==============================] - 0s 840us/step - loss: 0.1045 - accuracy: 0.9330 - mae: 0.1045 - pearson_correlation: 0.6754 - euclidean_distance: 0.1682
Epoch 198/350
57/57 [==============================] - 0s 845us/step - loss: 0.1044 - accuracy: 0.9317 - mae: 0.1044 - pearson_correlation: 0.6776 - euclidean_distance: 0.1682
Epoch 199/350
57/57 [==============================] - 0s 854us/step - loss: 0.1066 - accuracy: 0.9339 - mae: 0.1066 - pearson_correlation: 0.6665 - euclidean_distance: 0.1712
Epoch 200/350
57/57 [==============================] - 0s 854us/step - loss: 0.1065 - accuracy: 0.9361 - mae: 0.1065 - pearson_correlation: 0.6721 - euclidean_distance: 0.1717
Epoch 201/350
57/57 [==============================] - 0s 845us/step - loss: 0.1057 - accuracy: 0.9339 - mae: 0.1057 - pearson_correlation: 0.6774 - euclidean_distance: 0.1698
Epoch 202/350
57/57 [==============================] - 0s 854us/step - loss: 0.1043 - accuracy: 0.9392 - mae: 0.1043 - pearson_correlation: 0.6805 - euclidean_distance: 0.1678
Epoch 203/350
57/57 [==============================] - 0s 856us/step - loss: 0.1034 - accuracy: 0.9369 - mae: 0.1034 - pearson_correlation: 0.6863 - euclidean_distance: 0.1661
Epoch 204/350
57/57 [==============================] - 0s 850us/step - loss: 0.1055 - accuracy: 0.9392 - mae: 0.1055 - pearson_correlation: 0.6793 - euclidean_distance: 0.1693
Epoch 205/350
57/57 [==============================] - 0s 857us/step - loss: 0.1048 - accuracy: 0.9369 - mae: 0.1048 - pearson_correlation: 0.6827 - euclidean_distance: 0.1687
Epoch 206/350
57/57 [==============================] - 0s 853us/step - loss: 0.1012 - accuracy: 0.9374 - mae: 0.1012 - pearson_correlation: 0.6873 - euclidean_distance: 0.1632
Epoch 207/350
57/57 [==============================] - 0s 849us/step - loss: 0.1012 - accuracy: 0.9352 - mae: 0.1012 - pearson_correlation: 0.6852 - euclidean_distance: 0.1631
Epoch 208/350
57/57 [==============================] - 0s 853us/step - loss: 0.1017 - accuracy: 0.9418 - mae: 0.1017 - pearson_correlation: 0.6872 - euclidean_distance: 0.1643
Epoch 209/350
57/57 [==============================] - 0s 845us/step - loss: 0.1006 - accuracy: 0.9414 - mae: 0.1006 - pearson_correlation: 0.6912 - euclidean_distance: 0.1622
Epoch 210/350
57/57 [==============================] - 0s 844us/step - loss: 0.1013 - accuracy: 0.9378 - mae: 0.1013 - pearson_correlation: 0.6907 - euclidean_distance: 0.1625
Epoch 211/350
57/57 [==============================] - 0s 865us/step - loss: 0.1022 - accuracy: 0.9383 - mae: 0.1022 - pearson_correlation: 0.6848 - euclidean_distance: 0.1640
Epoch 212/350
57/57 [==============================] - 0s 856us/step - loss: 0.1039 - accuracy: 0.9400 - mae: 0.1039 - pearson_correlation: 0.6846 - euclidean_distance: 0.1675
Epoch 213/350
57/57 [==============================] - 0s 848us/step - loss: 0.0999 - accuracy: 0.9414 - mae: 0.0999 - pearson_correlation: 0.6902 - euclidean_distance: 0.1610
Epoch 214/350
57/57 [==============================] - 0s 843us/step - loss: 0.1020 - accuracy: 0.9369 - mae: 0.1020 - pearson_correlation: 0.6858 - euclidean_distance: 0.1637
Epoch 215/350
57/57 [==============================] - 0s 848us/step - loss: 0.1020 - accuracy: 0.9374 - mae: 0.1020 - pearson_correlation: 0.6891 - euclidean_distance: 0.1642
Epoch 216/350
57/57 [==============================] - 0s 853us/step - loss: 0.1017 - accuracy: 0.9396 - mae: 0.1017 - pearson_correlation: 0.6880 - euclidean_distance: 0.1630
Epoch 217/350
57/57 [==============================] - 0s 854us/step - loss: 0.1018 - accuracy: 0.9405 - mae: 0.1018 - pearson_correlation: 0.6923 - euclidean_distance: 0.1634
Epoch 218/350
57/57 [==============================] - 0s 846us/step - loss: 0.0995 - accuracy: 0.9418 - mae: 0.0995 - pearson_correlation: 0.6992 - euclidean_distance: 0.1598
Epoch 219/350
57/57 [==============================] - 0s 853us/step - loss: 0.1010 - accuracy: 0.9418 - mae: 0.1010 - pearson_correlation: 0.6932 - euclidean_distance: 0.1625
Epoch 220/350
57/57 [==============================] - 0s 848us/step - loss: 0.1020 - accuracy: 0.9396 - mae: 0.1020 - pearson_correlation: 0.6843 - euclidean_distance: 0.1641
Epoch 221/350
57/57 [==============================] - 0s 852us/step - loss: 0.0987 - accuracy: 0.9427 - mae: 0.0987 - pearson_correlation: 0.6964 - euclidean_distance: 0.1589
Epoch 222/350
57/57 [==============================] - 0s 852us/step - loss: 0.0980 - accuracy: 0.9444 - mae: 0.0980 - pearson_correlation: 0.7018 - euclidean_distance: 0.1574
Epoch 223/350
57/57 [==============================] - 0s 851us/step - loss: 0.0993 - accuracy: 0.9383 - mae: 0.0993 - pearson_correlation: 0.7005 - euclidean_distance: 0.1596
Epoch 224/350
57/57 [==============================] - 0s 863us/step - loss: 0.0996 - accuracy: 0.9422 - mae: 0.0996 - pearson_correlation: 0.6977 - euclidean_distance: 0.1598
Epoch 225/350
57/57 [==============================] - 0s 850us/step - loss: 0.1004 - accuracy: 0.9414 - mae: 0.1004 - pearson_correlation: 0.6998 - euclidean_distance: 0.1609
Epoch 226/350
57/57 [==============================] - 0s 847us/step - loss: 0.1008 - accuracy: 0.9436 - mae: 0.1008 - pearson_correlation: 0.6950 - euclidean_distance: 0.1619
Epoch 227/350
57/57 [==============================] - 0s 848us/step - loss: 0.0977 - accuracy: 0.9431 - mae: 0.0977 - pearson_correlation: 0.7050 - euclidean_distance: 0.1569
Epoch 228/350
57/57 [==============================] - 0s 841us/step - loss: 0.0984 - accuracy: 0.9427 - mae: 0.0984 - pearson_correlation: 0.7029 - euclidean_distance: 0.1580
Epoch 229/350
57/57 [==============================] - 0s 853us/step - loss: 0.0975 - accuracy: 0.9431 - mae: 0.0975 - pearson_correlation: 0.7019 - euclidean_distance: 0.1566
Epoch 230/350
57/57 [==============================] - 0s 853us/step - loss: 0.0984 - accuracy: 0.9458 - mae: 0.0984 - pearson_correlation: 0.7014 - euclidean_distance: 0.1578
Epoch 231/350
57/57 [==============================] - 0s 856us/step - loss: 0.0978 - accuracy: 0.9440 - mae: 0.0978 - pearson_correlation: 0.7038 - euclidean_distance: 0.1572
Epoch 232/350
57/57 [==============================] - 0s 846us/step - loss: 0.0967 - accuracy: 0.9427 - mae: 0.0967 - pearson_correlation: 0.7055 - euclidean_distance: 0.1557
Epoch 233/350
57/57 [==============================] - 0s 851us/step - loss: 0.0997 - accuracy: 0.9462 - mae: 0.0997 - pearson_correlation: 0.6992 - euclidean_distance: 0.1598
Epoch 234/350
57/57 [==============================] - 0s 859us/step - loss: 0.0969 - accuracy: 0.9444 - mae: 0.0969 - pearson_correlation: 0.7087 - euclidean_distance: 0.1555
Epoch 235/350
57/57 [==============================] - 0s 847us/step - loss: 0.0984 - accuracy: 0.9449 - mae: 0.0984 - pearson_correlation: 0.7049 - euclidean_distance: 0.1577
Epoch 236/350
57/57 [==============================] - 0s 847us/step - loss: 0.0970 - accuracy: 0.9453 - mae: 0.0970 - pearson_correlation: 0.7033 - euclidean_distance: 0.1552
Epoch 237/350
57/57 [==============================] - 0s 853us/step - loss: 0.0957 - accuracy: 0.9444 - mae: 0.0957 - pearson_correlation: 0.7052 - euclidean_distance: 0.1542
Epoch 238/350
57/57 [==============================] - 0s 855us/step - loss: 0.0956 - accuracy: 0.9458 - mae: 0.0956 - pearson_correlation: 0.7101 - euclidean_distance: 0.1536
Epoch 239/350
57/57 [==============================] - 0s 851us/step - loss: 0.0958 - accuracy: 0.9440 - mae: 0.0958 - pearson_correlation: 0.7103 - euclidean_distance: 0.1537
Epoch 240/350
57/57 [==============================] - 0s 848us/step - loss: 0.0974 - accuracy: 0.9440 - mae: 0.0974 - pearson_correlation: 0.7071 - euclidean_distance: 0.1566
Epoch 241/350
57/57 [==============================] - 0s 850us/step - loss: 0.0960 - accuracy: 0.9449 - mae: 0.0960 - pearson_correlation: 0.7112 - euclidean_distance: 0.1535
Epoch 242/350
57/57 [==============================] - 0s 845us/step - loss: 0.0950 - accuracy: 0.9471 - mae: 0.0950 - pearson_correlation: 0.7164 - euclidean_distance: 0.1521
Epoch 243/350
57/57 [==============================] - 0s 855us/step - loss: 0.0967 - accuracy: 0.9436 - mae: 0.0967 - pearson_correlation: 0.7120 - euclidean_distance: 0.1549
Epoch 244/350
57/57 [==============================] - 0s 847us/step - loss: 0.0966 - accuracy: 0.9471 - mae: 0.0966 - pearson_correlation: 0.7079 - euclidean_distance: 0.1547
Epoch 245/350
57/57 [==============================] - 0s 846us/step - loss: 0.0942 - accuracy: 0.9480 - mae: 0.0942 - pearson_correlation: 0.7121 - euclidean_distance: 0.1512
Epoch 246/350
57/57 [==============================] - 0s 843us/step - loss: 0.0949 - accuracy: 0.9453 - mae: 0.0949 - pearson_correlation: 0.7174 - euclidean_distance: 0.1524
Epoch 247/350
57/57 [==============================] - 0s 851us/step - loss: 0.0950 - accuracy: 0.9466 - mae: 0.0950 - pearson_correlation: 0.7121 - euclidean_distance: 0.1524
Epoch 248/350
57/57 [==============================] - 0s 847us/step - loss: 0.0939 - accuracy: 0.9471 - mae: 0.0939 - pearson_correlation: 0.7180 - euclidean_distance: 0.1502
Epoch 249/350
57/57 [==============================] - 0s 846us/step - loss: 0.0940 - accuracy: 0.9427 - mae: 0.0940 - pearson_correlation: 0.7175 - euclidean_distance: 0.1507
Epoch 250/350
57/57 [==============================] - 0s 854us/step - loss: 0.0918 - accuracy: 0.9493 - mae: 0.0918 - pearson_correlation: 0.7286 - euclidean_distance: 0.1474
Epoch 251/350
57/57 [==============================] - 0s 860us/step - loss: 0.0968 - accuracy: 0.9471 - mae: 0.0968 - pearson_correlation: 0.7128 - euclidean_distance: 0.1551
Epoch 252/350
57/57 [==============================] - 0s 850us/step - loss: 0.0924 - accuracy: 0.9480 - mae: 0.0924 - pearson_correlation: 0.7208 - euclidean_distance: 0.1485
Epoch 253/350
57/57 [==============================] - 0s 851us/step - loss: 0.0920 - accuracy: 0.9466 - mae: 0.0920 - pearson_correlation: 0.7225 - euclidean_distance: 0.1479
Epoch 254/350
57/57 [==============================] - 0s 843us/step - loss: 0.0933 - accuracy: 0.9493 - mae: 0.0933 - pearson_correlation: 0.7193 - euclidean_distance: 0.1496
Epoch 255/350
57/57 [==============================] - 0s 841us/step - loss: 0.0933 - accuracy: 0.9480 - mae: 0.0933 - pearson_correlation: 0.7196 - euclidean_distance: 0.1494
Epoch 256/350
57/57 [==============================] - 0s 855us/step - loss: 0.0927 - accuracy: 0.9475 - mae: 0.0927 - pearson_correlation: 0.7210 - euclidean_distance: 0.1487
Epoch 257/350
57/57 [==============================] - 0s 855us/step - loss: 0.0946 - accuracy: 0.9480 - mae: 0.0946 - pearson_correlation: 0.7187 - euclidean_distance: 0.1514
Epoch 258/350
57/57 [==============================] - 0s 855us/step - loss: 0.0927 - accuracy: 0.9475 - mae: 0.0927 - pearson_correlation: 0.7217 - euclidean_distance: 0.1488
Epoch 259/350
57/57 [==============================] - 0s 857us/step - loss: 0.0928 - accuracy: 0.9489 - mae: 0.0928 - pearson_correlation: 0.7178 - euclidean_distance: 0.1491
Epoch 260/350
57/57 [==============================] - 0s 864us/step - loss: 0.0907 - accuracy: 0.9511 - mae: 0.0907 - pearson_correlation: 0.7259 - euclidean_distance: 0.1459
Epoch 261/350
57/57 [==============================] - 0s 856us/step - loss: 0.0915 - accuracy: 0.9484 - mae: 0.0915 - pearson_correlation: 0.7231 - euclidean_distance: 0.1467
Epoch 262/350
57/57 [==============================] - 0s 847us/step - loss: 0.0922 - accuracy: 0.9489 - mae: 0.0922 - pearson_correlation: 0.7227 - euclidean_distance: 0.1479
Epoch 263/350
57/57 [==============================] - 0s 859us/step - loss: 0.0917 - accuracy: 0.9489 - mae: 0.0917 - pearson_correlation: 0.7252 - euclidean_distance: 0.1469
Epoch 264/350
57/57 [==============================] - 0s 842us/step - loss: 0.0897 - accuracy: 0.9497 - mae: 0.0897 - pearson_correlation: 0.7243 - euclidean_distance: 0.1447
Epoch 265/350
57/57 [==============================] - 0s 861us/step - loss: 0.0905 - accuracy: 0.9511 - mae: 0.0905 - pearson_correlation: 0.7285 - euclidean_distance: 0.1456
Epoch 266/350
57/57 [==============================] - 0s 852us/step - loss: 0.0902 - accuracy: 0.9493 - mae: 0.0902 - pearson_correlation: 0.7271 - euclidean_distance: 0.1455
Epoch 267/350
57/57 [==============================] - 0s 855us/step - loss: 0.0894 - accuracy: 0.9511 - mae: 0.0894 - pearson_correlation: 0.7312 - euclidean_distance: 0.1439
Epoch 268/350
57/57 [==============================] - 0s 858us/step - loss: 0.0890 - accuracy: 0.9515 - mae: 0.0890 - pearson_correlation: 0.7300 - euclidean_distance: 0.1436
Epoch 269/350
57/57 [==============================] - 0s 841us/step - loss: 0.0918 - accuracy: 0.9475 - mae: 0.0918 - pearson_correlation: 0.7238 - euclidean_distance: 0.1470
Epoch 270/350
57/57 [==============================] - 0s 838us/step - loss: 0.0895 - accuracy: 0.9519 - mae: 0.0895 - pearson_correlation: 0.7319 - euclidean_distance: 0.1437
Epoch 271/350
57/57 [==============================] - 0s 859us/step - loss: 0.0914 - accuracy: 0.9502 - mae: 0.0914 - pearson_correlation: 0.7280 - euclidean_distance: 0.1464
Epoch 272/350
57/57 [==============================] - 0s 845us/step - loss: 0.0909 - accuracy: 0.9515 - mae: 0.0909 - pearson_correlation: 0.7284 - euclidean_distance: 0.1458
Epoch 273/350
57/57 [==============================] - 0s 853us/step - loss: 0.0892 - accuracy: 0.9528 - mae: 0.0892 - pearson_correlation: 0.7304 - euclidean_distance: 0.1432
Epoch 274/350
57/57 [==============================] - 0s 853us/step - loss: 0.0921 - accuracy: 0.9511 - mae: 0.0921 - pearson_correlation: 0.7256 - euclidean_distance: 0.1475
Epoch 275/350
57/57 [==============================] - 0s 853us/step - loss: 0.0911 - accuracy: 0.9493 - mae: 0.0911 - pearson_correlation: 0.7278 - euclidean_distance: 0.1458
Epoch 276/350
57/57 [==============================] - 0s 849us/step - loss: 0.0889 - accuracy: 0.9497 - mae: 0.0889 - pearson_correlation: 0.7345 - euclidean_distance: 0.1429
Epoch 277/350
57/57 [==============================] - 0s 847us/step - loss: 0.0912 - accuracy: 0.9506 - mae: 0.0912 - pearson_correlation: 0.7281 - euclidean_distance: 0.1463
Epoch 278/350
57/57 [==============================] - 0s 858us/step - loss: 0.0867 - accuracy: 0.9528 - mae: 0.0867 - pearson_correlation: 0.7382 - euclidean_distance: 0.1396
Epoch 279/350
57/57 [==============================] - 0s 852us/step - loss: 0.0897 - accuracy: 0.9519 - mae: 0.0897 - pearson_correlation: 0.7333 - euclidean_distance: 0.1441
Epoch 280/350
57/57 [==============================] - 0s 850us/step - loss: 0.0911 - accuracy: 0.9511 - mae: 0.0911 - pearson_correlation: 0.7293 - euclidean_distance: 0.1465
Epoch 281/350
57/57 [==============================] - 0s 856us/step - loss: 0.0882 - accuracy: 0.9519 - mae: 0.0882 - pearson_correlation: 0.7336 - euclidean_distance: 0.1417
Epoch 282/350
57/57 [==============================] - 0s 846us/step - loss: 0.0900 - accuracy: 0.9528 - mae: 0.0900 - pearson_correlation: 0.7311 - euclidean_distance: 0.1442
Epoch 283/350
57/57 [==============================] - 0s 849us/step - loss: 0.0893 - accuracy: 0.9515 - mae: 0.0893 - pearson_correlation: 0.7326 - euclidean_distance: 0.1434
Epoch 284/350
57/57 [==============================] - 0s 858us/step - loss: 0.0885 - accuracy: 0.9519 - mae: 0.0885 - pearson_correlation: 0.7373 - euclidean_distance: 0.1418
Epoch 285/350
57/57 [==============================] - 0s 857us/step - loss: 0.0892 - accuracy: 0.9528 - mae: 0.0892 - pearson_correlation: 0.7368 - euclidean_distance: 0.1433
Epoch 286/350
57/57 [==============================] - 0s 856us/step - loss: 0.0875 - accuracy: 0.9502 - mae: 0.0875 - pearson_correlation: 0.7349 - euclidean_distance: 0.1409
Epoch 287/350
57/57 [==============================] - 0s 853us/step - loss: 0.0888 - accuracy: 0.9519 - mae: 0.0888 - pearson_correlation: 0.7401 - euclidean_distance: 0.1421
Epoch 288/350
57/57 [==============================] - 0s 860us/step - loss: 0.0880 - accuracy: 0.9541 - mae: 0.0880 - pearson_correlation: 0.7387 - euclidean_distance: 0.1416
Epoch 289/350
57/57 [==============================] - 0s 861us/step - loss: 0.0858 - accuracy: 0.9528 - mae: 0.0858 - pearson_correlation: 0.7429 - euclidean_distance: 0.1378
Epoch 290/350
57/57 [==============================] - 0s 847us/step - loss: 0.0873 - accuracy: 0.9519 - mae: 0.0873 - pearson_correlation: 0.7400 - euclidean_distance: 0.1403
Epoch 291/350
57/57 [==============================] - 0s 860us/step - loss: 0.0909 - accuracy: 0.9511 - mae: 0.0909 - pearson_correlation: 0.7335 - euclidean_distance: 0.1456
Epoch 292/350
57/57 [==============================] - 0s 857us/step - loss: 0.0865 - accuracy: 0.9502 - mae: 0.0865 - pearson_correlation: 0.7400 - euclidean_distance: 0.1390
Epoch 293/350
57/57 [==============================] - 0s 850us/step - loss: 0.0884 - accuracy: 0.9511 - mae: 0.0884 - pearson_correlation: 0.7371 - euclidean_distance: 0.1416
Epoch 294/350
57/57 [==============================] - 0s 858us/step - loss: 0.0874 - accuracy: 0.9524 - mae: 0.0874 - pearson_correlation: 0.7413 - euclidean_distance: 0.1401
Epoch 295/350
57/57 [==============================] - 0s 845us/step - loss: 0.0847 - accuracy: 0.9533 - mae: 0.0847 - pearson_correlation: 0.7451 - euclidean_distance: 0.1360
Epoch 296/350
57/57 [==============================] - 0s 911us/step - loss: 0.0854 - accuracy: 0.9528 - mae: 0.0854 - pearson_correlation: 0.7469 - euclidean_distance: 0.1376
Epoch 297/350
57/57 [==============================] - 0s 858us/step - loss: 0.0856 - accuracy: 0.9524 - mae: 0.0856 - pearson_correlation: 0.7428 - euclidean_distance: 0.1377
Epoch 298/350
57/57 [==============================] - 0s 848us/step - loss: 0.0874 - accuracy: 0.9511 - mae: 0.0874 - pearson_correlation: 0.7403 - euclidean_distance: 0.1401
Epoch 299/350
57/57 [==============================] - 0s 860us/step - loss: 0.0871 - accuracy: 0.9537 - mae: 0.0871 - pearson_correlation: 0.7387 - euclidean_distance: 0.1403
Epoch 300/350
57/57 [==============================] - 0s 850us/step - loss: 0.0870 - accuracy: 0.9515 - mae: 0.0870 - pearson_correlation: 0.7380 - euclidean_distance: 0.1397
Epoch 301/350
57/57 [==============================] - 0s 855us/step - loss: 0.0843 - accuracy: 0.9524 - mae: 0.0843 - pearson_correlation: 0.7488 - euclidean_distance: 0.1356
Epoch 302/350
57/57 [==============================] - 0s 847us/step - loss: 0.0865 - accuracy: 0.9533 - mae: 0.0865 - pearson_correlation: 0.7458 - euclidean_distance: 0.1392
Epoch 303/350
57/57 [==============================] - 0s 847us/step - loss: 0.0850 - accuracy: 0.9528 - mae: 0.0850 - pearson_correlation: 0.7411 - euclidean_distance: 0.1369
Epoch 304/350
57/57 [==============================] - 0s 848us/step - loss: 0.0842 - accuracy: 0.9524 - mae: 0.0842 - pearson_correlation: 0.7506 - euclidean_distance: 0.1353
Epoch 305/350
57/57 [==============================] - 0s 847us/step - loss: 0.0826 - accuracy: 0.9519 - mae: 0.0826 - pearson_correlation: 0.7496 - euclidean_distance: 0.1333
Epoch 306/350
57/57 [==============================] - 0s 852us/step - loss: 0.0850 - accuracy: 0.9533 - mae: 0.0850 - pearson_correlation: 0.7477 - euclidean_distance: 0.1367
Epoch 307/350
57/57 [==============================] - 0s 851us/step - loss: 0.0905 - accuracy: 0.9519 - mae: 0.0905 - pearson_correlation: 0.7347 - euclidean_distance: 0.1448
Epoch 308/350
57/57 [==============================] - 0s 844us/step - loss: 0.0836 - accuracy: 0.9528 - mae: 0.0836 - pearson_correlation: 0.7481 - euclidean_distance: 0.1348
Epoch 309/350
57/57 [==============================] - 0s 850us/step - loss: 0.0859 - accuracy: 0.9533 - mae: 0.0859 - pearson_correlation: 0.7443 - euclidean_distance: 0.1379
Epoch 310/350
57/57 [==============================] - 0s 861us/step - loss: 0.0867 - accuracy: 0.9537 - mae: 0.0867 - pearson_correlation: 0.7476 - euclidean_distance: 0.1388
Epoch 311/350
57/57 [==============================] - 0s 855us/step - loss: 0.0845 - accuracy: 0.9533 - mae: 0.0845 - pearson_correlation: 0.7491 - euclidean_distance: 0.1357
Epoch 312/350
57/57 [==============================] - 0s 846us/step - loss: 0.0841 - accuracy: 0.9537 - mae: 0.0841 - pearson_correlation: 0.7465 - euclidean_distance: 0.1352
Epoch 313/350
57/57 [==============================] - 0s 857us/step - loss: 0.0873 - accuracy: 0.9546 - mae: 0.0873 - pearson_correlation: 0.7470 - euclidean_distance: 0.1394
Epoch 314/350
57/57 [==============================] - 0s 843us/step - loss: 0.0852 - accuracy: 0.9559 - mae: 0.0852 - pearson_correlation: 0.7469 - euclidean_distance: 0.1367
Epoch 315/350
57/57 [==============================] - 0s 852us/step - loss: 0.0858 - accuracy: 0.9550 - mae: 0.0858 - pearson_correlation: 0.7505 - euclidean_distance: 0.1374
Epoch 316/350
57/57 [==============================] - 0s 850us/step - loss: 0.0843 - accuracy: 0.9528 - mae: 0.0843 - pearson_correlation: 0.7500 - euclidean_distance: 0.1355
Epoch 317/350
57/57 [==============================] - 0s 852us/step - loss: 0.0856 - accuracy: 0.9528 - mae: 0.0856 - pearson_correlation: 0.7468 - euclidean_distance: 0.1370
Epoch 318/350
57/57 [==============================] - 0s 844us/step - loss: 0.0833 - accuracy: 0.9546 - mae: 0.0833 - pearson_correlation: 0.7532 - euclidean_distance: 0.1339
Epoch 319/350
57/57 [==============================] - 0s 852us/step - loss: 0.0830 - accuracy: 0.9546 - mae: 0.0830 - pearson_correlation: 0.7521 - euclidean_distance: 0.1336
Epoch 320/350
57/57 [==============================] - 0s 848us/step - loss: 0.0851 - accuracy: 0.9537 - mae: 0.0851 - pearson_correlation: 0.7510 - euclidean_distance: 0.1367
Epoch 321/350
57/57 [==============================] - 0s 852us/step - loss: 0.0850 - accuracy: 0.9546 - mae: 0.0850 - pearson_correlation: 0.7479 - euclidean_distance: 0.1365
Epoch 322/350
57/57 [==============================] - 0s 847us/step - loss: 0.0842 - accuracy: 0.9546 - mae: 0.0842 - pearson_correlation: 0.7477 - euclidean_distance: 0.1351
Epoch 323/350
57/57 [==============================] - 0s 844us/step - loss: 0.0864 - accuracy: 0.9537 - mae: 0.0864 - pearson_correlation: 0.7429 - euclidean_distance: 0.1387
Epoch 324/350
57/57 [==============================] - 0s 837us/step - loss: 0.0833 - accuracy: 0.9537 - mae: 0.0833 - pearson_correlation: 0.7565 - euclidean_distance: 0.1336
Epoch 325/350
57/57 [==============================] - 0s 852us/step - loss: 0.0827 - accuracy: 0.9541 - mae: 0.0827 - pearson_correlation: 0.7555 - euclidean_distance: 0.1331
Epoch 326/350
57/57 [==============================] - 0s 878us/step - loss: 0.0817 - accuracy: 0.9555 - mae: 0.0817 - pearson_correlation: 0.7548 - euclidean_distance: 0.1319
Epoch 327/350
57/57 [==============================] - 0s 873us/step - loss: 0.0836 - accuracy: 0.9550 - mae: 0.0836 - pearson_correlation: 0.7518 - euclidean_distance: 0.1343
Epoch 328/350
57/57 [==============================] - 0s 866us/step - loss: 0.0834 - accuracy: 0.9533 - mae: 0.0834 - pearson_correlation: 0.7536 - euclidean_distance: 0.1339
Epoch 329/350
57/57 [==============================] - 0s 849us/step - loss: 0.0832 - accuracy: 0.9541 - mae: 0.0832 - pearson_correlation: 0.7528 - euclidean_distance: 0.1337
Epoch 330/350
57/57 [==============================] - 0s 854us/step - loss: 0.0819 - accuracy: 0.9550 - mae: 0.0819 - pearson_correlation: 0.7547 - euclidean_distance: 0.1322
Epoch 331/350
57/57 [==============================] - 0s 848us/step - loss: 0.0829 - accuracy: 0.9550 - mae: 0.0829 - pearson_correlation: 0.7552 - euclidean_distance: 0.1331
Epoch 332/350
57/57 [==============================] - 0s 849us/step - loss: 0.0843 - accuracy: 0.9555 - mae: 0.0843 - pearson_correlation: 0.7546 - euclidean_distance: 0.1351
Epoch 333/350
57/57 [==============================] - 0s 839us/step - loss: 0.0832 - accuracy: 0.9533 - mae: 0.0832 - pearson_correlation: 0.7540 - euclidean_distance: 0.1336
Epoch 334/350
57/57 [==============================] - 0s 865us/step - loss: 0.0834 - accuracy: 0.9537 - mae: 0.0834 - pearson_correlation: 0.7522 - euclidean_distance: 0.1339
Epoch 335/350
57/57 [==============================] - 0s 850us/step - loss: 0.0831 - accuracy: 0.9550 - mae: 0.0831 - pearson_correlation: 0.7585 - euclidean_distance: 0.1330
Epoch 336/350
57/57 [==============================] - 0s 847us/step - loss: 0.0817 - accuracy: 0.9546 - mae: 0.0817 - pearson_correlation: 0.7544 - euclidean_distance: 0.1312
Epoch 337/350
57/57 [==============================] - 0s 854us/step - loss: 0.0839 - accuracy: 0.9550 - mae: 0.0839 - pearson_correlation: 0.7559 - euclidean_distance: 0.1346
Epoch 338/350
57/57 [==============================] - 0s 859us/step - loss: 0.0823 - accuracy: 0.9550 - mae: 0.0823 - pearson_correlation: 0.7579 - euclidean_distance: 0.1323
Epoch 339/350
57/57 [==============================] - 0s 854us/step - loss: 0.0805 - accuracy: 0.9546 - mae: 0.0805 - pearson_correlation: 0.7573 - euclidean_distance: 0.1301
Epoch 340/350
57/57 [==============================] - 0s 843us/step - loss: 0.0803 - accuracy: 0.9541 - mae: 0.0803 - pearson_correlation: 0.7614 - euclidean_distance: 0.1288
Epoch 341/350
57/57 [==============================] - 0s 855us/step - loss: 0.0811 - accuracy: 0.9546 - mae: 0.0811 - pearson_correlation: 0.7623 - euclidean_distance: 0.1301
Epoch 342/350
57/57 [==============================] - 0s 856us/step - loss: 0.0818 - accuracy: 0.9550 - mae: 0.0818 - pearson_correlation: 0.7579 - euclidean_distance: 0.1315
Epoch 343/350
57/57 [==============================] - 0s 859us/step - loss: 0.0809 - accuracy: 0.9537 - mae: 0.0809 - pearson_correlation: 0.7622 - euclidean_distance: 0.1303
Epoch 344/350
57/57 [==============================] - 0s 859us/step - loss: 0.0825 - accuracy: 0.9550 - mae: 0.0825 - pearson_correlation: 0.7560 - euclidean_distance: 0.1327
Epoch 345/350
57/57 [==============================] - 0s 857us/step - loss: 0.0818 - accuracy: 0.9541 - mae: 0.0818 - pearson_correlation: 0.7598 - euclidean_distance: 0.1312
Epoch 346/350
57/57 [==============================] - 0s 845us/step - loss: 0.0796 - accuracy: 0.9555 - mae: 0.0796 - pearson_correlation: 0.7603 - euclidean_distance: 0.1279
Epoch 347/350
57/57 [==============================] - 0s 863us/step - loss: 0.0805 - accuracy: 0.9541 - mae: 0.0805 - pearson_correlation: 0.7560 - euclidean_distance: 0.1301
Epoch 348/350
57/57 [==============================] - 0s 853us/step - loss: 0.0804 - accuracy: 0.9541 - mae: 0.0804 - pearson_correlation: 0.7571 - euclidean_distance: 0.1295
Epoch 349/350
57/57 [==============================] - 0s 845us/step - loss: 0.0799 - accuracy: 0.9550 - mae: 0.0799 - pearson_correlation: 0.7641 - euclidean_distance: 0.1286
Epoch 350/350
57/57 [==============================] - 0s 840us/step - loss: 0.0794 - accuracy: 0.9555 - mae: 0.0794 - pearson_correlation: 0.7637 - euclidean_distance: 0.1280
29/29 [==============================] - 0s 513us/step
Epoch 1/100
46/46 [==============================] - 1s 964us/step - loss: 0.7254 - accuracy: 0.2386 - mae: 0.7254 - pearson_correlation: -0.4760 - euclidean_distance: 1.1774
Epoch 2/100
46/46 [==============================] - 0s 800us/step - loss: 0.7210 - accuracy: 0.2307 - mae: 0.7210 - pearson_correlation: -0.4816 - euclidean_distance: 1.1709
Epoch 3/100
46/46 [==============================] - 0s 879us/step - loss: 0.7193 - accuracy: 0.2404 - mae: 0.7193 - pearson_correlation: -0.4806 - euclidean_distance: 1.1694
Epoch 4/100
46/46 [==============================] - 0s 886us/step - loss: 0.7155 - accuracy: 0.2245 - mae: 0.7155 - pearson_correlation: -0.4916 - euclidean_distance: 1.1642
Epoch 5/100
46/46 [==============================] - 0s 887us/step - loss: 0.7113 - accuracy: 0.2316 - mae: 0.7113 - pearson_correlation: -0.4924 - euclidean_distance: 1.1584
Epoch 6/100
46/46 [==============================] - 0s 879us/step - loss: 0.7076 - accuracy: 0.2281 - mae: 0.7076 - pearson_correlation: -0.4985 - euclidean_distance: 1.1524
Epoch 7/100
46/46 [==============================] - 0s 879us/step - loss: 0.7059 - accuracy: 0.2267 - mae: 0.7059 - pearson_correlation: -0.4935 - euclidean_distance: 1.1515
Epoch 8/100
46/46 [==============================] - 0s 890us/step - loss: 0.7004 - accuracy: 0.2210 - mae: 0.7004 - pearson_correlation: -0.4978 - euclidean_distance: 1.1432
Epoch 9/100
46/46 [==============================] - 0s 883us/step - loss: 0.6967 - accuracy: 0.2148 - mae: 0.6967 - pearson_correlation: -0.5126 - euclidean_distance: 1.1400
Epoch 10/100
46/46 [==============================] - 0s 967us/step - loss: 0.6933 - accuracy: 0.2201 - mae: 0.6933 - pearson_correlation: -0.5100 - euclidean_distance: 1.1347
Epoch 11/100
46/46 [==============================] - 0s 883us/step - loss: 0.6907 - accuracy: 0.2078 - mae: 0.6907 - pearson_correlation: -0.5164 - euclidean_distance: 1.1313
Epoch 12/100
46/46 [==============================] - 0s 884us/step - loss: 0.6865 - accuracy: 0.2095 - mae: 0.6865 - pearson_correlation: -0.5151 - euclidean_distance: 1.1261
Epoch 13/100
46/46 [==============================] - 0s 888us/step - loss: 0.6832 - accuracy: 0.2144 - mae: 0.6832 - pearson_correlation: -0.5182 - euclidean_distance: 1.1208
Epoch 14/100
46/46 [==============================] - 0s 879us/step - loss: 0.6800 - accuracy: 0.1976 - mae: 0.6800 - pearson_correlation: -0.5257 - euclidean_distance: 1.1178
Epoch 15/100
46/46 [==============================] - 0s 886us/step - loss: 0.6765 - accuracy: 0.2016 - mae: 0.6765 - pearson_correlation: -0.5310 - euclidean_distance: 1.1131
Epoch 16/100
46/46 [==============================] - 0s 884us/step - loss: 0.6734 - accuracy: 0.1976 - mae: 0.6734 - pearson_correlation: -0.5251 - euclidean_distance: 1.1076
Epoch 17/100
46/46 [==============================] - 0s 889us/step - loss: 0.6702 - accuracy: 0.1923 - mae: 0.6702 - pearson_correlation: -0.5359 - euclidean_distance: 1.1043
Epoch 18/100
46/46 [==============================] - 0s 886us/step - loss: 0.6672 - accuracy: 0.1919 - mae: 0.6672 - pearson_correlation: -0.5340 - euclidean_distance: 1.1005
Epoch 19/100
46/46 [==============================] - 0s 886us/step - loss: 0.6628 - accuracy: 0.1861 - mae: 0.6628 - pearson_correlation: -0.5388 - euclidean_distance: 1.0951
Epoch 20/100
46/46 [==============================] - 0s 884us/step - loss: 0.6599 - accuracy: 0.1848 - mae: 0.6599 - pearson_correlation: -0.5406 - euclidean_distance: 1.0906
Epoch 21/100
46/46 [==============================] - 0s 879us/step - loss: 0.6565 - accuracy: 0.1853 - mae: 0.6565 - pearson_correlation: -0.5376 - euclidean_distance: 1.0859
Epoch 22/100
46/46 [==============================] - 0s 880us/step - loss: 0.6538 - accuracy: 0.1809 - mae: 0.6538 - pearson_correlation: -0.5560 - euclidean_distance: 1.0828
Epoch 23/100
46/46 [==============================] - 0s 885us/step - loss: 0.6500 - accuracy: 0.1729 - mae: 0.6500 - pearson_correlation: -0.5550 - euclidean_distance: 1.0771
Epoch 24/100
46/46 [==============================] - 0s 886us/step - loss: 0.6462 - accuracy: 0.1804 - mae: 0.6462 - pearson_correlation: -0.5560 - euclidean_distance: 1.0723
Epoch 25/100
46/46 [==============================] - 0s 891us/step - loss: 0.6427 - accuracy: 0.1663 - mae: 0.6427 - pearson_correlation: -0.5589 - euclidean_distance: 1.0680
Epoch 26/100
46/46 [==============================] - 0s 884us/step - loss: 0.6399 - accuracy: 0.1698 - mae: 0.6399 - pearson_correlation: -0.5617 - euclidean_distance: 1.0644
Epoch 27/100
46/46 [==============================] - 0s 885us/step - loss: 0.6365 - accuracy: 0.1650 - mae: 0.6365 - pearson_correlation: -0.5607 - euclidean_distance: 1.0581
Epoch 28/100
46/46 [==============================] - 0s 885us/step - loss: 0.6342 - accuracy: 0.1592 - mae: 0.6342 - pearson_correlation: -0.5619 - euclidean_distance: 1.0564
Epoch 29/100
46/46 [==============================] - 0s 880us/step - loss: 0.6313 - accuracy: 0.1712 - mae: 0.6313 - pearson_correlation: -0.5700 - euclidean_distance: 1.0527
Epoch 30/100
46/46 [==============================] - 0s 882us/step - loss: 0.6276 - accuracy: 0.1610 - mae: 0.6276 - pearson_correlation: -0.5739 - euclidean_distance: 1.0465
Epoch 31/100
46/46 [==============================] - 0s 881us/step - loss: 0.6240 - accuracy: 0.1606 - mae: 0.6240 - pearson_correlation: -0.5798 - euclidean_distance: 1.0418
Epoch 32/100
46/46 [==============================] - 0s 886us/step - loss: 0.6212 - accuracy: 0.1526 - mae: 0.6212 - pearson_correlation: -0.5774 - euclidean_distance: 1.0383
Epoch 33/100
46/46 [==============================] - 0s 890us/step - loss: 0.6175 - accuracy: 0.1584 - mae: 0.6175 - pearson_correlation: -0.5710 - euclidean_distance: 1.0318
Epoch 34/100
46/46 [==============================] - 0s 883us/step - loss: 0.6149 - accuracy: 0.1517 - mae: 0.6149 - pearson_correlation: -0.5790 - euclidean_distance: 1.0288
Epoch 35/100
46/46 [==============================] - 0s 884us/step - loss: 0.6117 - accuracy: 0.1487 - mae: 0.6117 - pearson_correlation: -0.5797 - euclidean_distance: 1.0245
Epoch 36/100
46/46 [==============================] - 0s 881us/step - loss: 0.6079 - accuracy: 0.1531 - mae: 0.6079 - pearson_correlation: -0.5829 - euclidean_distance: 1.0191
Epoch 37/100
46/46 [==============================] - 0s 881us/step - loss: 0.6043 - accuracy: 0.1478 - mae: 0.6043 - pearson_correlation: -0.5857 - euclidean_distance: 1.0144
Epoch 38/100
46/46 [==============================] - 0s 886us/step - loss: 0.6034 - accuracy: 0.1553 - mae: 0.6034 - pearson_correlation: -0.5833 - euclidean_distance: 1.0125
Epoch 39/100
46/46 [==============================] - 0s 882us/step - loss: 0.5992 - accuracy: 0.1531 - mae: 0.5992 - pearson_correlation: -0.5847 - euclidean_distance: 1.0058
Epoch 40/100
46/46 [==============================] - 0s 883us/step - loss: 0.5968 - accuracy: 0.1420 - mae: 0.5968 - pearson_correlation: -0.5867 - euclidean_distance: 1.0025
Epoch 41/100
46/46 [==============================] - 0s 879us/step - loss: 0.5930 - accuracy: 0.1451 - mae: 0.5930 - pearson_correlation: -0.5916 - euclidean_distance: 0.9975
Epoch 42/100
46/46 [==============================] - 0s 882us/step - loss: 0.5915 - accuracy: 0.1447 - mae: 0.5915 - pearson_correlation: -0.5897 - euclidean_distance: 0.9952
Epoch 43/100
46/46 [==============================] - 0s 877us/step - loss: 0.5875 - accuracy: 0.1456 - mae: 0.5875 - pearson_correlation: -0.5956 - euclidean_distance: 0.9900
Epoch 44/100
46/46 [==============================] - 0s 873us/step - loss: 0.5851 - accuracy: 0.1398 - mae: 0.5851 - pearson_correlation: -0.5922 - euclidean_distance: 0.9863
Epoch 45/100
46/46 [==============================] - 0s 882us/step - loss: 0.5807 - accuracy: 0.1337 - mae: 0.5807 - pearson_correlation: -0.6015 - euclidean_distance: 0.9803
Epoch 46/100
46/46 [==============================] - 0s 875us/step - loss: 0.5779 - accuracy: 0.1345 - mae: 0.5779 - pearson_correlation: -0.5988 - euclidean_distance: 0.9755
Epoch 47/100
46/46 [==============================] - 0s 881us/step - loss: 0.5765 - accuracy: 0.1359 - mae: 0.5765 - pearson_correlation: -0.6011 - euclidean_distance: 0.9742
Epoch 48/100
46/46 [==============================] - 0s 880us/step - loss: 0.5736 - accuracy: 0.1359 - mae: 0.5736 - pearson_correlation: -0.5986 - euclidean_distance: 0.9685
Epoch 49/100
46/46 [==============================] - 0s 885us/step - loss: 0.5708 - accuracy: 0.1292 - mae: 0.5708 - pearson_correlation: -0.6012 - euclidean_distance: 0.9650
Epoch 50/100
46/46 [==============================] - 0s 965us/step - loss: 0.5668 - accuracy: 0.1297 - mae: 0.5668 - pearson_correlation: -0.6074 - euclidean_distance: 0.9601
Epoch 51/100
46/46 [==============================] - 0s 979us/step - loss: 0.5650 - accuracy: 0.1315 - mae: 0.5650 - pearson_correlation: -0.6028 - euclidean_distance: 0.9552
Epoch 52/100
46/46 [==============================] - 0s 984us/step - loss: 0.5627 - accuracy: 0.1288 - mae: 0.5627 - pearson_correlation: -0.6027 - euclidean_distance: 0.9521
Epoch 53/100
46/46 [==============================] - 0s 982us/step - loss: 0.5587 - accuracy: 0.1292 - mae: 0.5587 - pearson_correlation: -0.6140 - euclidean_distance: 0.9477
Epoch 54/100
46/46 [==============================] - 0s 965us/step - loss: 0.5566 - accuracy: 0.1288 - mae: 0.5566 - pearson_correlation: -0.6103 - euclidean_distance: 0.9445
Epoch 55/100
46/46 [==============================] - 0s 975us/step - loss: 0.5526 - accuracy: 0.1240 - mae: 0.5526 - pearson_correlation: -0.6143 - euclidean_distance: 0.9382
Epoch 56/100
46/46 [==============================] - 0s 1ms/step - loss: 0.5503 - accuracy: 0.1297 - mae: 0.5503 - pearson_correlation: -0.6060 - euclidean_distance: 0.9342
Epoch 57/100
46/46 [==============================] - 0s 933us/step - loss: 0.5476 - accuracy: 0.1226 - mae: 0.5476 - pearson_correlation: -0.6103 - euclidean_distance: 0.9306
Epoch 58/100
46/46 [==============================] - 0s 956us/step - loss: 0.5449 - accuracy: 0.1262 - mae: 0.5449 - pearson_correlation: -0.6044 - euclidean_distance: 0.9260
Epoch 59/100
46/46 [==============================] - 0s 1ms/step - loss: 0.5423 - accuracy: 0.1195 - mae: 0.5423 - pearson_correlation: -0.6134 - euclidean_distance: 0.9234
Epoch 60/100
46/46 [==============================] - 0s 1ms/step - loss: 0.5405 - accuracy: 0.1165 - mae: 0.5405 - pearson_correlation: -0.6089 - euclidean_distance: 0.9194
Epoch 61/100
46/46 [==============================] - 0s 1ms/step - loss: 0.5360 - accuracy: 0.1151 - mae: 0.5360 - pearson_correlation: -0.6086 - euclidean_distance: 0.9136
Epoch 62/100
46/46 [==============================] - 0s 884us/step - loss: 0.5349 - accuracy: 0.1204 - mae: 0.5349 - pearson_correlation: -0.6054 - euclidean_distance: 0.9115
Epoch 63/100
46/46 [==============================] - 0s 883us/step - loss: 0.5308 - accuracy: 0.1142 - mae: 0.5308 - pearson_correlation: -0.6179 - euclidean_distance: 0.9052
Epoch 64/100
46/46 [==============================] - 0s 890us/step - loss: 0.5283 - accuracy: 0.1195 - mae: 0.5283 - pearson_correlation: -0.6133 - euclidean_distance: 0.9014
Epoch 65/100
46/46 [==============================] - 0s 882us/step - loss: 0.5256 - accuracy: 0.1120 - mae: 0.5256 - pearson_correlation: -0.6041 - euclidean_distance: 0.8969
Epoch 66/100
46/46 [==============================] - 0s 887us/step - loss: 0.5235 - accuracy: 0.1191 - mae: 0.5235 - pearson_correlation: -0.6082 - euclidean_distance: 0.8940
Epoch 67/100
46/46 [==============================] - 0s 890us/step - loss: 0.5208 - accuracy: 0.1142 - mae: 0.5208 - pearson_correlation: -0.6096 - euclidean_distance: 0.8887
Epoch 68/100
46/46 [==============================] - 0s 877us/step - loss: 0.5189 - accuracy: 0.1169 - mae: 0.5189 - pearson_correlation: -0.6138 - euclidean_distance: 0.8865
Epoch 69/100
46/46 [==============================] - 0s 886us/step - loss: 0.5171 - accuracy: 0.1138 - mae: 0.5171 - pearson_correlation: -0.6055 - euclidean_distance: 0.8835
Epoch 70/100
46/46 [==============================] - 0s 882us/step - loss: 0.5127 - accuracy: 0.1134 - mae: 0.5127 - pearson_correlation: -0.6046 - euclidean_distance: 0.8760
Epoch 71/100
46/46 [==============================] - 0s 883us/step - loss: 0.5091 - accuracy: 0.1173 - mae: 0.5091 - pearson_correlation: -0.6054 - euclidean_distance: 0.8713
Epoch 72/100
46/46 [==============================] - 0s 875us/step - loss: 0.5066 - accuracy: 0.1178 - mae: 0.5066 - pearson_correlation: -0.6041 - euclidean_distance: 0.8678
Epoch 73/100
46/46 [==============================] - 0s 879us/step - loss: 0.5048 - accuracy: 0.1200 - mae: 0.5048 - pearson_correlation: -0.5999 - euclidean_distance: 0.8635
Epoch 74/100
46/46 [==============================] - 0s 883us/step - loss: 0.5020 - accuracy: 0.1147 - mae: 0.5020 - pearson_correlation: -0.6007 - euclidean_distance: 0.8592
Epoch 75/100
46/46 [==============================] - 0s 886us/step - loss: 0.4991 - accuracy: 0.1178 - mae: 0.4991 - pearson_correlation: -0.5963 - euclidean_distance: 0.8552
Epoch 76/100
46/46 [==============================] - 0s 884us/step - loss: 0.4961 - accuracy: 0.1129 - mae: 0.4961 - pearson_correlation: -0.5979 - euclidean_distance: 0.8503
Epoch 77/100
46/46 [==============================] - 0s 882us/step - loss: 0.4933 - accuracy: 0.1204 - mae: 0.4933 - pearson_correlation: -0.5973 - euclidean_distance: 0.8458
Epoch 78/100
46/46 [==============================] - 0s 882us/step - loss: 0.4909 - accuracy: 0.1217 - mae: 0.4909 - pearson_correlation: -0.5957 - euclidean_distance: 0.8427
Epoch 79/100
46/46 [==============================] - 0s 885us/step - loss: 0.4887 - accuracy: 0.1169 - mae: 0.4887 - pearson_correlation: -0.5950 - euclidean_distance: 0.8392
Epoch 80/100
46/46 [==============================] - 0s 879us/step - loss: 0.4857 - accuracy: 0.1240 - mae: 0.4857 - pearson_correlation: -0.5898 - euclidean_distance: 0.8344
Epoch 81/100
46/46 [==============================] - 0s 881us/step - loss: 0.4821 - accuracy: 0.1231 - mae: 0.4821 - pearson_correlation: -0.5921 - euclidean_distance: 0.8292
Epoch 82/100
46/46 [==============================] - 0s 880us/step - loss: 0.4794 - accuracy: 0.1248 - mae: 0.4794 - pearson_correlation: -0.5865 - euclidean_distance: 0.8239
Epoch 83/100
46/46 [==============================] - 0s 878us/step - loss: 0.4775 - accuracy: 0.1200 - mae: 0.4775 - pearson_correlation: -0.5767 - euclidean_distance: 0.8195
Epoch 84/100
46/46 [==============================] - 0s 882us/step - loss: 0.4755 - accuracy: 0.1266 - mae: 0.4755 - pearson_correlation: -0.5783 - euclidean_distance: 0.8174
Epoch 85/100
46/46 [==============================] - 0s 880us/step - loss: 0.4719 - accuracy: 0.1270 - mae: 0.4719 - pearson_correlation: -0.5761 - euclidean_distance: 0.8114
Epoch 86/100
46/46 [==============================] - 0s 886us/step - loss: 0.4684 - accuracy: 0.1248 - mae: 0.4684 - pearson_correlation: -0.5737 - euclidean_distance: 0.8063
Epoch 87/100
46/46 [==============================] - 0s 888us/step - loss: 0.4656 - accuracy: 0.1354 - mae: 0.4656 - pearson_correlation: -0.5765 - euclidean_distance: 0.8021
Epoch 88/100
46/46 [==============================] - 0s 881us/step - loss: 0.4630 - accuracy: 0.1315 - mae: 0.4630 - pearson_correlation: -0.5692 - euclidean_distance: 0.7966
Epoch 89/100
46/46 [==============================] - 0s 883us/step - loss: 0.4602 - accuracy: 0.1367 - mae: 0.4602 - pearson_correlation: -0.5649 - euclidean_distance: 0.7933
Epoch 90/100
46/46 [==============================] - 0s 877us/step - loss: 0.4579 - accuracy: 0.1359 - mae: 0.4579 - pearson_correlation: -0.5621 - euclidean_distance: 0.7879
Epoch 91/100
46/46 [==============================] - 0s 883us/step - loss: 0.4556 - accuracy: 0.1398 - mae: 0.4556 - pearson_correlation: -0.5582 - euclidean_distance: 0.7855
Epoch 92/100
46/46 [==============================] - 0s 883us/step - loss: 0.4525 - accuracy: 0.1310 - mae: 0.4525 - pearson_correlation: -0.5508 - euclidean_distance: 0.7795
Epoch 93/100
46/46 [==============================] - 0s 882us/step - loss: 0.4491 - accuracy: 0.1460 - mae: 0.4491 - pearson_correlation: -0.5493 - euclidean_distance: 0.7738
Epoch 94/100
46/46 [==============================] - 0s 882us/step - loss: 0.4470 - accuracy: 0.1509 - mae: 0.4470 - pearson_correlation: -0.5472 - euclidean_distance: 0.7711
Epoch 95/100
46/46 [==============================] - 0s 887us/step - loss: 0.4443 - accuracy: 0.1434 - mae: 0.4443 - pearson_correlation: -0.5457 - euclidean_distance: 0.7662
Epoch 96/100
46/46 [==============================] - 0s 877us/step - loss: 0.4413 - accuracy: 0.1513 - mae: 0.4413 - pearson_correlation: -0.5381 - euclidean_distance: 0.7623
Epoch 97/100
46/46 [==============================] - 0s 878us/step - loss: 0.4377 - accuracy: 0.1606 - mae: 0.4377 - pearson_correlation: -0.5348 - euclidean_distance: 0.7561
Epoch 98/100
46/46 [==============================] - 0s 885us/step - loss: 0.4357 - accuracy: 0.1526 - mae: 0.4357 - pearson_correlation: -0.5249 - euclidean_distance: 0.7525
Epoch 99/100
46/46 [==============================] - 0s 887us/step - loss: 0.4324 - accuracy: 0.1579 - mae: 0.4324 - pearson_correlation: -0.5232 - euclidean_distance: 0.7478
Epoch 100/100
46/46 [==============================] - 0s 878us/step - loss: 0.4303 - accuracy: 0.1650 - mae: 0.4303 - pearson_correlation: -0.5162 - euclidean_distance: 0.7435
23/23 [==============================] - 0s 613us/step
Epoch 1/100
46/46 [==============================] - 1s 900us/step - loss: 0.6822 - accuracy: 0.8478 - mae: 0.6822 - pearson_correlation: 0.5396 - euclidean_distance: 0.9892
Epoch 2/100
46/46 [==============================] - 0s 871us/step - loss: 0.6784 - accuracy: 0.8438 - mae: 0.6784 - pearson_correlation: 0.5420 - euclidean_distance: 0.9838
Epoch 3/100
46/46 [==============================] - 0s 843us/step - loss: 0.6741 - accuracy: 0.8421 - mae: 0.6741 - pearson_correlation: 0.5439 - euclidean_distance: 0.9781
Epoch 4/100
46/46 [==============================] - 0s 892us/step - loss: 0.6702 - accuracy: 0.8469 - mae: 0.6702 - pearson_correlation: 0.5454 - euclidean_distance: 0.9724
Epoch 5/100
46/46 [==============================] - 0s 896us/step - loss: 0.6645 - accuracy: 0.8394 - mae: 0.6645 - pearson_correlation: 0.5451 - euclidean_distance: 0.9644
Epoch 6/100
46/46 [==============================] - 0s 890us/step - loss: 0.6608 - accuracy: 0.8527 - mae: 0.6608 - pearson_correlation: 0.5416 - euclidean_distance: 0.9592
Epoch 7/100
46/46 [==============================] - 0s 898us/step - loss: 0.6560 - accuracy: 0.8319 - mae: 0.6560 - pearson_correlation: 0.5488 - euclidean_distance: 0.9526
Epoch 8/100
46/46 [==============================] - 0s 890us/step - loss: 0.6509 - accuracy: 0.8403 - mae: 0.6509 - pearson_correlation: 0.5467 - euclidean_distance: 0.9456
Epoch 9/100
46/46 [==============================] - 0s 888us/step - loss: 0.6465 - accuracy: 0.8359 - mae: 0.6465 - pearson_correlation: 0.5475 - euclidean_distance: 0.9393
Epoch 10/100
46/46 [==============================] - 0s 889us/step - loss: 0.6409 - accuracy: 0.8408 - mae: 0.6409 - pearson_correlation: 0.5495 - euclidean_distance: 0.9314
Epoch 11/100
46/46 [==============================] - 0s 896us/step - loss: 0.6360 - accuracy: 0.8443 - mae: 0.6360 - pearson_correlation: 0.5523 - euclidean_distance: 0.9243
Epoch 12/100
46/46 [==============================] - 0s 893us/step - loss: 0.6308 - accuracy: 0.8381 - mae: 0.6308 - pearson_correlation: 0.5467 - euclidean_distance: 0.9173
Epoch 13/100
46/46 [==============================] - 0s 892us/step - loss: 0.6260 - accuracy: 0.8399 - mae: 0.6260 - pearson_correlation: 0.5486 - euclidean_distance: 0.9104
Epoch 14/100
46/46 [==============================] - 0s 892us/step - loss: 0.6202 - accuracy: 0.8328 - mae: 0.6202 - pearson_correlation: 0.5473 - euclidean_distance: 0.9024
Epoch 15/100
46/46 [==============================] - 0s 889us/step - loss: 0.6145 - accuracy: 0.8333 - mae: 0.6145 - pearson_correlation: 0.5465 - euclidean_distance: 0.8945
Epoch 16/100
46/46 [==============================] - 0s 891us/step - loss: 0.6093 - accuracy: 0.8341 - mae: 0.6093 - pearson_correlation: 0.5474 - euclidean_distance: 0.8874
Epoch 17/100
46/46 [==============================] - 0s 891us/step - loss: 0.6034 - accuracy: 0.8311 - mae: 0.6034 - pearson_correlation: 0.5526 - euclidean_distance: 0.8786
Epoch 18/100
46/46 [==============================] - 0s 892us/step - loss: 0.5979 - accuracy: 0.8372 - mae: 0.5979 - pearson_correlation: 0.5439 - euclidean_distance: 0.8716
Epoch 19/100
46/46 [==============================] - 0s 885us/step - loss: 0.5923 - accuracy: 0.8240 - mae: 0.5923 - pearson_correlation: 0.5459 - euclidean_distance: 0.8641
Epoch 20/100
46/46 [==============================] - 0s 895us/step - loss: 0.5866 - accuracy: 0.8324 - mae: 0.5866 - pearson_correlation: 0.5459 - euclidean_distance: 0.8558
Epoch 21/100
46/46 [==============================] - 0s 886us/step - loss: 0.5802 - accuracy: 0.8319 - mae: 0.5802 - pearson_correlation: 0.5431 - euclidean_distance: 0.8474
Epoch 22/100
46/46 [==============================] - 0s 889us/step - loss: 0.5750 - accuracy: 0.8337 - mae: 0.5750 - pearson_correlation: 0.5428 - euclidean_distance: 0.8400
Epoch 23/100
46/46 [==============================] - 0s 882us/step - loss: 0.5683 - accuracy: 0.8271 - mae: 0.5683 - pearson_correlation: 0.5374 - euclidean_distance: 0.8306
Epoch 24/100
46/46 [==============================] - 0s 887us/step - loss: 0.5628 - accuracy: 0.8275 - mae: 0.5628 - pearson_correlation: 0.5375 - euclidean_distance: 0.8230
Epoch 25/100
46/46 [==============================] - 0s 892us/step - loss: 0.5561 - accuracy: 0.8284 - mae: 0.5561 - pearson_correlation: 0.5408 - euclidean_distance: 0.8138
Epoch 26/100
46/46 [==============================] - 0s 889us/step - loss: 0.5490 - accuracy: 0.8240 - mae: 0.5490 - pearson_correlation: 0.5419 - euclidean_distance: 0.8039
Epoch 27/100
46/46 [==============================] - 0s 885us/step - loss: 0.5445 - accuracy: 0.8297 - mae: 0.5445 - pearson_correlation: 0.5346 - euclidean_distance: 0.7973
Epoch 28/100
46/46 [==============================] - 0s 889us/step - loss: 0.5375 - accuracy: 0.8288 - mae: 0.5375 - pearson_correlation: 0.5397 - euclidean_distance: 0.7879
Epoch 29/100
46/46 [==============================] - 0s 888us/step - loss: 0.5308 - accuracy: 0.8196 - mae: 0.5308 - pearson_correlation: 0.5350 - euclidean_distance: 0.7785
Epoch 30/100
46/46 [==============================] - 0s 885us/step - loss: 0.5237 - accuracy: 0.8222 - mae: 0.5237 - pearson_correlation: 0.5329 - euclidean_distance: 0.7689
Epoch 31/100
46/46 [==============================] - 0s 879us/step - loss: 0.5181 - accuracy: 0.8227 - mae: 0.5181 - pearson_correlation: 0.5308 - euclidean_distance: 0.7611
Epoch 32/100
46/46 [==============================] - 0s 888us/step - loss: 0.5108 - accuracy: 0.8227 - mae: 0.5108 - pearson_correlation: 0.5303 - euclidean_distance: 0.7515
Epoch 33/100
46/46 [==============================] - 0s 893us/step - loss: 0.5046 - accuracy: 0.8218 - mae: 0.5046 - pearson_correlation: 0.5309 - euclidean_distance: 0.7430
Epoch 34/100
46/46 [==============================] - 0s 886us/step - loss: 0.4954 - accuracy: 0.8213 - mae: 0.4954 - pearson_correlation: 0.5258 - euclidean_distance: 0.7300
Epoch 35/100
46/46 [==============================] - 0s 893us/step - loss: 0.4895 - accuracy: 0.8236 - mae: 0.4895 - pearson_correlation: 0.5283 - euclidean_distance: 0.7220
Epoch 36/100
46/46 [==============================] - 0s 881us/step - loss: 0.4820 - accuracy: 0.8222 - mae: 0.4820 - pearson_correlation: 0.5254 - euclidean_distance: 0.7120
Epoch 37/100
46/46 [==============================] - 0s 890us/step - loss: 0.4749 - accuracy: 0.8258 - mae: 0.4749 - pearson_correlation: 0.5259 - euclidean_distance: 0.7019
Epoch 38/100
46/46 [==============================] - 0s 886us/step - loss: 0.4678 - accuracy: 0.8178 - mae: 0.4678 - pearson_correlation: 0.5161 - euclidean_distance: 0.6928
Epoch 39/100
46/46 [==============================] - 0s 885us/step - loss: 0.4601 - accuracy: 0.8227 - mae: 0.4601 - pearson_correlation: 0.5237 - euclidean_distance: 0.6822
Epoch 40/100
46/46 [==============================] - 0s 895us/step - loss: 0.4525 - accuracy: 0.8200 - mae: 0.4525 - pearson_correlation: 0.5151 - euclidean_distance: 0.6720
Epoch 41/100
46/46 [==============================] - 0s 892us/step - loss: 0.4449 - accuracy: 0.8275 - mae: 0.4449 - pearson_correlation: 0.5118 - euclidean_distance: 0.6610
Epoch 42/100
46/46 [==============================] - 0s 889us/step - loss: 0.4371 - accuracy: 0.8262 - mae: 0.4371 - pearson_correlation: 0.5154 - euclidean_distance: 0.6504
Epoch 43/100
46/46 [==============================] - 0s 897us/step - loss: 0.4312 - accuracy: 0.8196 - mae: 0.4312 - pearson_correlation: 0.5117 - euclidean_distance: 0.6426
Epoch 44/100
46/46 [==============================] - 0s 887us/step - loss: 0.4225 - accuracy: 0.8271 - mae: 0.4225 - pearson_correlation: 0.4991 - euclidean_distance: 0.6309
Epoch 45/100
46/46 [==============================] - 0s 886us/step - loss: 0.4146 - accuracy: 0.8236 - mae: 0.4146 - pearson_correlation: 0.5070 - euclidean_distance: 0.6200
Epoch 46/100
46/46 [==============================] - 0s 889us/step - loss: 0.4092 - accuracy: 0.8258 - mae: 0.4092 - pearson_correlation: 0.5023 - euclidean_distance: 0.6124
Epoch 47/100
46/46 [==============================] - 0s 890us/step - loss: 0.3996 - accuracy: 0.8249 - mae: 0.3996 - pearson_correlation: 0.4971 - euclidean_distance: 0.5992
Epoch 48/100
46/46 [==============================] - 0s 886us/step - loss: 0.3926 - accuracy: 0.8249 - mae: 0.3926 - pearson_correlation: 0.4935 - euclidean_distance: 0.5901
Epoch 49/100
46/46 [==============================] - 0s 892us/step - loss: 0.3860 - accuracy: 0.8240 - mae: 0.3860 - pearson_correlation: 0.4910 - euclidean_distance: 0.5810
Epoch 50/100
46/46 [==============================] - 0s 881us/step - loss: 0.3798 - accuracy: 0.8244 - mae: 0.3798 - pearson_correlation: 0.4837 - euclidean_distance: 0.5723
Epoch 51/100
46/46 [==============================] - 0s 886us/step - loss: 0.3721 - accuracy: 0.8262 - mae: 0.3721 - pearson_correlation: 0.4861 - euclidean_distance: 0.5618
Epoch 52/100
46/46 [==============================] - 0s 888us/step - loss: 0.3656 - accuracy: 0.8169 - mae: 0.3656 - pearson_correlation: 0.4818 - euclidean_distance: 0.5525
Epoch 53/100
46/46 [==============================] - 0s 896us/step - loss: 0.3593 - accuracy: 0.8315 - mae: 0.3593 - pearson_correlation: 0.4840 - euclidean_distance: 0.5441
Epoch 54/100
46/46 [==============================] - 0s 884us/step - loss: 0.3518 - accuracy: 0.8355 - mae: 0.3518 - pearson_correlation: 0.4813 - euclidean_distance: 0.5330
Epoch 55/100
46/46 [==============================] - 0s 890us/step - loss: 0.3452 - accuracy: 0.8324 - mae: 0.3452 - pearson_correlation: 0.4744 - euclidean_distance: 0.5245
Epoch 56/100
46/46 [==============================] - 0s 889us/step - loss: 0.3396 - accuracy: 0.8244 - mae: 0.3396 - pearson_correlation: 0.4710 - euclidean_distance: 0.5163
Epoch 57/100
46/46 [==============================] - 0s 892us/step - loss: 0.3337 - accuracy: 0.8328 - mae: 0.3337 - pearson_correlation: 0.4734 - euclidean_distance: 0.5072
Epoch 58/100
46/46 [==============================] - 0s 889us/step - loss: 0.3271 - accuracy: 0.8284 - mae: 0.3271 - pearson_correlation: 0.4753 - euclidean_distance: 0.4983
Epoch 59/100
46/46 [==============================] - 0s 885us/step - loss: 0.3215 - accuracy: 0.8306 - mae: 0.3215 - pearson_correlation: 0.4694 - euclidean_distance: 0.4903
Epoch 60/100
46/46 [==============================] - 0s 886us/step - loss: 0.3180 - accuracy: 0.8381 - mae: 0.3180 - pearson_correlation: 0.4711 - euclidean_distance: 0.4849
Epoch 61/100
46/46 [==============================] - 0s 887us/step - loss: 0.3145 - accuracy: 0.8341 - mae: 0.3145 - pearson_correlation: 0.4639 - euclidean_distance: 0.4795
Epoch 62/100
46/46 [==============================] - 0s 879us/step - loss: 0.3082 - accuracy: 0.8346 - mae: 0.3082 - pearson_correlation: 0.4673 - euclidean_distance: 0.4706
Epoch 63/100
46/46 [==============================] - 0s 887us/step - loss: 0.3064 - accuracy: 0.8333 - mae: 0.3064 - pearson_correlation: 0.4718 - euclidean_distance: 0.4674
Epoch 64/100
46/46 [==============================] - 0s 885us/step - loss: 0.2994 - accuracy: 0.8368 - mae: 0.2994 - pearson_correlation: 0.4654 - euclidean_distance: 0.4580
Epoch 65/100
46/46 [==============================] - 0s 885us/step - loss: 0.2937 - accuracy: 0.8403 - mae: 0.2937 - pearson_correlation: 0.4659 - euclidean_distance: 0.4500
Epoch 66/100
46/46 [==============================] - 0s 883us/step - loss: 0.2915 - accuracy: 0.8421 - mae: 0.2915 - pearson_correlation: 0.4723 - euclidean_distance: 0.4461
Epoch 67/100
46/46 [==============================] - 0s 885us/step - loss: 0.2901 - accuracy: 0.8425 - mae: 0.2901 - pearson_correlation: 0.4664 - euclidean_distance: 0.4443
Epoch 68/100
46/46 [==============================] - 0s 881us/step - loss: 0.2855 - accuracy: 0.8372 - mae: 0.2855 - pearson_correlation: 0.4687 - euclidean_distance: 0.4370
Epoch 69/100
46/46 [==============================] - 0s 884us/step - loss: 0.2808 - accuracy: 0.8456 - mae: 0.2808 - pearson_correlation: 0.4706 - euclidean_distance: 0.4307
Epoch 70/100
46/46 [==============================] - 0s 879us/step - loss: 0.2798 - accuracy: 0.8518 - mae: 0.2798 - pearson_correlation: 0.4606 - euclidean_distance: 0.4284
Epoch 71/100
46/46 [==============================] - 0s 886us/step - loss: 0.2765 - accuracy: 0.8430 - mae: 0.2765 - pearson_correlation: 0.4673 - euclidean_distance: 0.4232
Epoch 72/100
46/46 [==============================] - 0s 884us/step - loss: 0.2728 - accuracy: 0.8496 - mae: 0.2728 - pearson_correlation: 0.4689 - euclidean_distance: 0.4177
Epoch 73/100
46/46 [==============================] - 0s 881us/step - loss: 0.2686 - accuracy: 0.8505 - mae: 0.2686 - pearson_correlation: 0.4686 - euclidean_distance: 0.4118
Epoch 74/100
46/46 [==============================] - 0s 882us/step - loss: 0.2639 - accuracy: 0.8465 - mae: 0.2639 - pearson_correlation: 0.4681 - euclidean_distance: 0.4053
Epoch 75/100
46/46 [==============================] - 0s 887us/step - loss: 0.2616 - accuracy: 0.8522 - mae: 0.2616 - pearson_correlation: 0.4699 - euclidean_distance: 0.4015
Epoch 76/100
46/46 [==============================] - 0s 896us/step - loss: 0.2606 - accuracy: 0.8540 - mae: 0.2606 - pearson_correlation: 0.4722 - euclidean_distance: 0.3997
Epoch 77/100
46/46 [==============================] - 0s 896us/step - loss: 0.2562 - accuracy: 0.8536 - mae: 0.2562 - pearson_correlation: 0.4731 - euclidean_distance: 0.3936
Epoch 78/100
46/46 [==============================] - 0s 910us/step - loss: 0.2528 - accuracy: 0.8518 - mae: 0.2528 - pearson_correlation: 0.4735 - euclidean_distance: 0.3885
Epoch 79/100
46/46 [==============================] - 0s 904us/step - loss: 0.2501 - accuracy: 0.8536 - mae: 0.2501 - pearson_correlation: 0.4759 - euclidean_distance: 0.3849
Epoch 80/100
46/46 [==============================] - 0s 880us/step - loss: 0.2500 - accuracy: 0.8549 - mae: 0.2500 - pearson_correlation: 0.4727 - euclidean_distance: 0.3839
Epoch 81/100
46/46 [==============================] - 0s 884us/step - loss: 0.2454 - accuracy: 0.8562 - mae: 0.2454 - pearson_correlation: 0.4702 - euclidean_distance: 0.3783
Epoch 82/100
46/46 [==============================] - 0s 887us/step - loss: 0.2430 - accuracy: 0.8566 - mae: 0.2430 - pearson_correlation: 0.4780 - euclidean_distance: 0.3736
Epoch 83/100
46/46 [==============================] - 0s 887us/step - loss: 0.2385 - accuracy: 0.8566 - mae: 0.2385 - pearson_correlation: 0.4752 - euclidean_distance: 0.3678
Epoch 84/100
46/46 [==============================] - 0s 889us/step - loss: 0.2397 - accuracy: 0.8641 - mae: 0.2397 - pearson_correlation: 0.4771 - euclidean_distance: 0.3685
Epoch 85/100
46/46 [==============================] - 0s 879us/step - loss: 0.2338 - accuracy: 0.8606 - mae: 0.2338 - pearson_correlation: 0.4807 - euclidean_distance: 0.3597
Epoch 86/100
46/46 [==============================] - 0s 884us/step - loss: 0.2322 - accuracy: 0.8610 - mae: 0.2322 - pearson_correlation: 0.4782 - euclidean_distance: 0.3582
Epoch 87/100
46/46 [==============================] - 0s 903us/step - loss: 0.2280 - accuracy: 0.8606 - mae: 0.2280 - pearson_correlation: 0.4856 - euclidean_distance: 0.3520
Epoch 88/100
46/46 [==============================] - 0s 890us/step - loss: 0.2268 - accuracy: 0.8690 - mae: 0.2268 - pearson_correlation: 0.4804 - euclidean_distance: 0.3498
Epoch 89/100
46/46 [==============================] - 0s 879us/step - loss: 0.2235 - accuracy: 0.8650 - mae: 0.2235 - pearson_correlation: 0.4878 - euclidean_distance: 0.3454
Epoch 90/100
46/46 [==============================] - 0s 883us/step - loss: 0.2203 - accuracy: 0.8685 - mae: 0.2203 - pearson_correlation: 0.4908 - euclidean_distance: 0.3405
Epoch 91/100
46/46 [==============================] - 0s 882us/step - loss: 0.2175 - accuracy: 0.8650 - mae: 0.2175 - pearson_correlation: 0.4923 - euclidean_distance: 0.3368
Epoch 92/100
46/46 [==============================] - 0s 888us/step - loss: 0.2160 - accuracy: 0.8743 - mae: 0.2160 - pearson_correlation: 0.4948 - euclidean_distance: 0.3342
Epoch 93/100
46/46 [==============================] - 0s 887us/step - loss: 0.2165 - accuracy: 0.8756 - mae: 0.2165 - pearson_correlation: 0.4911 - euclidean_distance: 0.3353
Epoch 94/100
46/46 [==============================] - 0s 877us/step - loss: 0.2117 - accuracy: 0.8734 - mae: 0.2117 - pearson_correlation: 0.5004 - euclidean_distance: 0.3284
Epoch 95/100
46/46 [==============================] - 0s 885us/step - loss: 0.2112 - accuracy: 0.8800 - mae: 0.2112 - pearson_correlation: 0.4929 - euclidean_distance: 0.3272
Epoch 96/100
46/46 [==============================] - 0s 884us/step - loss: 0.2093 - accuracy: 0.8791 - mae: 0.2093 - pearson_correlation: 0.4978 - euclidean_distance: 0.3237
Epoch 97/100
46/46 [==============================] - 0s 882us/step - loss: 0.2058 - accuracy: 0.8866 - mae: 0.2058 - pearson_correlation: 0.4957 - euclidean_distance: 0.3199
Epoch 98/100
46/46 [==============================] - 0s 887us/step - loss: 0.2033 - accuracy: 0.8858 - mae: 0.2033 - pearson_correlation: 0.5028 - euclidean_distance: 0.3158
Epoch 99/100
46/46 [==============================] - 0s 883us/step - loss: 0.2019 - accuracy: 0.8760 - mae: 0.2019 - pearson_correlation: 0.5001 - euclidean_distance: 0.3147
Epoch 100/100
46/46 [==============================] - 0s 883us/step - loss: 0.1994 - accuracy: 0.8915 - mae: 0.1994 - pearson_correlation: 0.5046 - euclidean_distance: 0.3104
23/23 [==============================] - 0s 504us/step
Epoch 1/100
46/46 [==============================] - 1s 910us/step - loss: 0.8276 - accuracy: 0.2209 - mae: 0.8276 - pearson_correlation: -0.2573 - euclidean_distance: 1.2209
Epoch 2/100
46/46 [==============================] - 0s 853us/step - loss: 0.8224 - accuracy: 0.2262 - mae: 0.8224 - pearson_correlation: -0.2605 - euclidean_distance: 1.2138
Epoch 3/100
46/46 [==============================] - 0s 884us/step - loss: 0.8184 - accuracy: 0.2257 - mae: 0.8184 - pearson_correlation: -0.2711 - euclidean_distance: 1.2086
Epoch 4/100
46/46 [==============================] - 0s 911us/step - loss: 0.8130 - accuracy: 0.2222 - mae: 0.8130 - pearson_correlation: -0.2711 - euclidean_distance: 1.2012
Epoch 5/100
46/46 [==============================] - 0s 905us/step - loss: 0.8083 - accuracy: 0.2253 - mae: 0.8083 - pearson_correlation: -0.2784 - euclidean_distance: 1.1951
Epoch 6/100
46/46 [==============================] - 0s 902us/step - loss: 0.8037 - accuracy: 0.2147 - mae: 0.8037 - pearson_correlation: -0.2753 - euclidean_distance: 1.1888
Epoch 7/100
46/46 [==============================] - 0s 905us/step - loss: 0.7985 - accuracy: 0.2134 - mae: 0.7985 - pearson_correlation: -0.2933 - euclidean_distance: 1.1828
Epoch 8/100
46/46 [==============================] - 0s 898us/step - loss: 0.7937 - accuracy: 0.2037 - mae: 0.7937 - pearson_correlation: -0.2972 - euclidean_distance: 1.1762
Epoch 9/100
46/46 [==============================] - 0s 901us/step - loss: 0.7904 - accuracy: 0.2121 - mae: 0.7904 - pearson_correlation: -0.2995 - euclidean_distance: 1.1719
Epoch 10/100
46/46 [==============================] - 0s 891us/step - loss: 0.7852 - accuracy: 0.2028 - mae: 0.7852 - pearson_correlation: -0.3056 - euclidean_distance: 1.1651
Epoch 11/100
46/46 [==============================] - 0s 900us/step - loss: 0.7803 - accuracy: 0.2019 - mae: 0.7803 - pearson_correlation: -0.3070 - euclidean_distance: 1.1585
Epoch 12/100
46/46 [==============================] - 0s 909us/step - loss: 0.7740 - accuracy: 0.2077 - mae: 0.7740 - pearson_correlation: -0.3215 - euclidean_distance: 1.1502
Epoch 13/100
46/46 [==============================] - 0s 899us/step - loss: 0.7699 - accuracy: 0.1944 - mae: 0.7699 - pearson_correlation: -0.3256 - euclidean_distance: 1.1452
Epoch 14/100
46/46 [==============================] - 0s 904us/step - loss: 0.7655 - accuracy: 0.1953 - mae: 0.7655 - pearson_correlation: -0.3336 - euclidean_distance: 1.1396
Epoch 15/100
46/46 [==============================] - 0s 898us/step - loss: 0.7608 - accuracy: 0.1869 - mae: 0.7608 - pearson_correlation: -0.3328 - euclidean_distance: 1.1334
Epoch 16/100
46/46 [==============================] - 0s 901us/step - loss: 0.7571 - accuracy: 0.1847 - mae: 0.7571 - pearson_correlation: -0.3501 - euclidean_distance: 1.1284
Epoch 17/100
46/46 [==============================] - 0s 905us/step - loss: 0.7530 - accuracy: 0.1843 - mae: 0.7530 - pearson_correlation: -0.3460 - euclidean_distance: 1.1232
Epoch 18/100
46/46 [==============================] - 0s 901us/step - loss: 0.7483 - accuracy: 0.1803 - mae: 0.7483 - pearson_correlation: -0.3423 - euclidean_distance: 1.1172
Epoch 19/100
46/46 [==============================] - 0s 897us/step - loss: 0.7437 - accuracy: 0.1825 - mae: 0.7437 - pearson_correlation: -0.3542 - euclidean_distance: 1.1109
Epoch 20/100
46/46 [==============================] - 0s 901us/step - loss: 0.7399 - accuracy: 0.1781 - mae: 0.7399 - pearson_correlation: -0.3520 - euclidean_distance: 1.1057
Epoch 21/100
46/46 [==============================] - 0s 893us/step - loss: 0.7351 - accuracy: 0.1768 - mae: 0.7351 - pearson_correlation: -0.3682 - euclidean_distance: 1.1000
Epoch 22/100
46/46 [==============================] - 0s 910us/step - loss: 0.7300 - accuracy: 0.1733 - mae: 0.7300 - pearson_correlation: -0.3725 - euclidean_distance: 1.0936
Epoch 23/100
46/46 [==============================] - 0s 892us/step - loss: 0.7266 - accuracy: 0.1671 - mae: 0.7266 - pearson_correlation: -0.3796 - euclidean_distance: 1.0891
Epoch 24/100
46/46 [==============================] - 0s 897us/step - loss: 0.7222 - accuracy: 0.1645 - mae: 0.7222 - pearson_correlation: -0.3813 - euclidean_distance: 1.0835
Epoch 25/100
46/46 [==============================] - 0s 894us/step - loss: 0.7180 - accuracy: 0.1759 - mae: 0.7180 - pearson_correlation: -0.3821 - euclidean_distance: 1.0776
Epoch 26/100
46/46 [==============================] - 0s 896us/step - loss: 0.7130 - accuracy: 0.1640 - mae: 0.7130 - pearson_correlation: -0.4040 - euclidean_distance: 1.0714
Epoch 27/100
46/46 [==============================] - 0s 895us/step - loss: 0.7097 - accuracy: 0.1614 - mae: 0.7097 - pearson_correlation: -0.3903 - euclidean_distance: 1.0671
Epoch 28/100
46/46 [==============================] - 0s 904us/step - loss: 0.7062 - accuracy: 0.1596 - mae: 0.7062 - pearson_correlation: -0.4013 - euclidean_distance: 1.0626
Epoch 29/100
46/46 [==============================] - 0s 901us/step - loss: 0.7017 - accuracy: 0.1561 - mae: 0.7017 - pearson_correlation: -0.4092 - euclidean_distance: 1.0570
Epoch 30/100
46/46 [==============================] - 0s 905us/step - loss: 0.6973 - accuracy: 0.1526 - mae: 0.6973 - pearson_correlation: -0.4095 - euclidean_distance: 1.0512
Epoch 31/100
46/46 [==============================] - 0s 905us/step - loss: 0.6933 - accuracy: 0.1561 - mae: 0.6933 - pearson_correlation: -0.4198 - euclidean_distance: 1.0461
Epoch 32/100
46/46 [==============================] - 0s 906us/step - loss: 0.6898 - accuracy: 0.1530 - mae: 0.6898 - pearson_correlation: -0.4211 - euclidean_distance: 1.0417
Epoch 33/100
46/46 [==============================] - 0s 905us/step - loss: 0.6856 - accuracy: 0.1534 - mae: 0.6856 - pearson_correlation: -0.4258 - euclidean_distance: 1.0358
Epoch 34/100
46/46 [==============================] - 0s 909us/step - loss: 0.6825 - accuracy: 0.1473 - mae: 0.6825 - pearson_correlation: -0.4373 - euclidean_distance: 1.0323
Epoch 35/100
46/46 [==============================] - 0s 906us/step - loss: 0.6788 - accuracy: 0.1534 - mae: 0.6788 - pearson_correlation: -0.4333 - euclidean_distance: 1.0269
Epoch 36/100
46/46 [==============================] - 0s 895us/step - loss: 0.6747 - accuracy: 0.1504 - mae: 0.6747 - pearson_correlation: -0.4479 - euclidean_distance: 1.0221
Epoch 37/100
46/46 [==============================] - 0s 904us/step - loss: 0.6707 - accuracy: 0.1437 - mae: 0.6707 - pearson_correlation: -0.4437 - euclidean_distance: 1.0162
Epoch 38/100
46/46 [==============================] - 0s 901us/step - loss: 0.6668 - accuracy: 0.1420 - mae: 0.6668 - pearson_correlation: -0.4531 - euclidean_distance: 1.0117
Epoch 39/100
46/46 [==============================] - 0s 897us/step - loss: 0.6638 - accuracy: 0.1437 - mae: 0.6638 - pearson_correlation: -0.4536 - euclidean_distance: 1.0079
Epoch 40/100
46/46 [==============================] - 0s 898us/step - loss: 0.6604 - accuracy: 0.1459 - mae: 0.6604 - pearson_correlation: -0.4528 - euclidean_distance: 1.0034
Epoch 41/100
46/46 [==============================] - 0s 892us/step - loss: 0.6568 - accuracy: 0.1481 - mae: 0.6568 - pearson_correlation: -0.4583 - euclidean_distance: 0.9986
Epoch 42/100
46/46 [==============================] - 0s 906us/step - loss: 0.6525 - accuracy: 0.1393 - mae: 0.6525 - pearson_correlation: -0.4685 - euclidean_distance: 0.9933
Epoch 43/100
46/46 [==============================] - 0s 902us/step - loss: 0.6499 - accuracy: 0.1442 - mae: 0.6499 - pearson_correlation: -0.4645 - euclidean_distance: 0.9893
Epoch 44/100
46/46 [==============================] - 0s 901us/step - loss: 0.6464 - accuracy: 0.1398 - mae: 0.6464 - pearson_correlation: -0.4749 - euclidean_distance: 0.9856
Epoch 45/100
46/46 [==============================] - 0s 896us/step - loss: 0.6430 - accuracy: 0.1446 - mae: 0.6430 - pearson_correlation: -0.4755 - euclidean_distance: 0.9804
Epoch 46/100
46/46 [==============================] - 0s 897us/step - loss: 0.6394 - accuracy: 0.1349 - mae: 0.6394 - pearson_correlation: -0.4881 - euclidean_distance: 0.9767
Epoch 47/100
46/46 [==============================] - 0s 903us/step - loss: 0.6361 - accuracy: 0.1433 - mae: 0.6361 - pearson_correlation: -0.4855 - euclidean_distance: 0.9718
Epoch 48/100
46/46 [==============================] - 0s 899us/step - loss: 0.6331 - accuracy: 0.1389 - mae: 0.6331 - pearson_correlation: -0.4944 - euclidean_distance: 0.9686
Epoch 49/100
46/46 [==============================] - 0s 898us/step - loss: 0.6301 - accuracy: 0.1420 - mae: 0.6301 - pearson_correlation: -0.4993 - euclidean_distance: 0.9644
Epoch 50/100
46/46 [==============================] - 0s 892us/step - loss: 0.6270 - accuracy: 0.1429 - mae: 0.6270 - pearson_correlation: -0.4943 - euclidean_distance: 0.9606
Epoch 51/100
46/46 [==============================] - 0s 900us/step - loss: 0.6232 - accuracy: 0.1468 - mae: 0.6232 - pearson_correlation: -0.4998 - euclidean_distance: 0.9557
Epoch 52/100
46/46 [==============================] - 0s 897us/step - loss: 0.6203 - accuracy: 0.1415 - mae: 0.6203 - pearson_correlation: -0.5049 - euclidean_distance: 0.9516
Epoch 53/100
46/46 [==============================] - 0s 896us/step - loss: 0.6168 - accuracy: 0.1437 - mae: 0.6168 - pearson_correlation: -0.5076 - euclidean_distance: 0.9470
Epoch 54/100
46/46 [==============================] - 0s 895us/step - loss: 0.6144 - accuracy: 0.1459 - mae: 0.6144 - pearson_correlation: -0.5114 - euclidean_distance: 0.9443
Epoch 55/100
46/46 [==============================] - 0s 884us/step - loss: 0.6111 - accuracy: 0.1407 - mae: 0.6111 - pearson_correlation: -0.5168 - euclidean_distance: 0.9405
Epoch 56/100
46/46 [==============================] - 0s 898us/step - loss: 0.6084 - accuracy: 0.1424 - mae: 0.6084 - pearson_correlation: -0.5234 - euclidean_distance: 0.9365
Epoch 57/100
46/46 [==============================] - 0s 892us/step - loss: 0.6059 - accuracy: 0.1473 - mae: 0.6059 - pearson_correlation: -0.5243 - euclidean_distance: 0.9336
Epoch 58/100
46/46 [==============================] - 0s 894us/step - loss: 0.6020 - accuracy: 0.1464 - mae: 0.6020 - pearson_correlation: -0.5297 - euclidean_distance: 0.9284
Epoch 59/100
46/46 [==============================] - 0s 901us/step - loss: 0.6003 - accuracy: 0.1384 - mae: 0.6003 - pearson_correlation: -0.5270 - euclidean_distance: 0.9262
Epoch 60/100
46/46 [==============================] - 0s 896us/step - loss: 0.5964 - accuracy: 0.1402 - mae: 0.5964 - pearson_correlation: -0.5342 - euclidean_distance: 0.9220
Epoch 61/100
46/46 [==============================] - 0s 900us/step - loss: 0.5941 - accuracy: 0.1367 - mae: 0.5941 - pearson_correlation: -0.5382 - euclidean_distance: 0.9189
Epoch 62/100
46/46 [==============================] - 0s 883us/step - loss: 0.5913 - accuracy: 0.1407 - mae: 0.5913 - pearson_correlation: -0.5375 - euclidean_distance: 0.9157
Epoch 63/100
46/46 [==============================] - 0s 902us/step - loss: 0.5882 - accuracy: 0.1424 - mae: 0.5882 - pearson_correlation: -0.5454 - euclidean_distance: 0.9111
Epoch 64/100
46/46 [==============================] - 0s 897us/step - loss: 0.5859 - accuracy: 0.1402 - mae: 0.5859 - pearson_correlation: -0.5506 - euclidean_distance: 0.9090
Epoch 65/100
46/46 [==============================] - 0s 903us/step - loss: 0.5831 - accuracy: 0.1407 - mae: 0.5831 - pearson_correlation: -0.5491 - euclidean_distance: 0.9051
Epoch 66/100
46/46 [==============================] - 0s 893us/step - loss: 0.5807 - accuracy: 0.1451 - mae: 0.5807 - pearson_correlation: -0.5480 - euclidean_distance: 0.9021
Epoch 67/100
46/46 [==============================] - 0s 888us/step - loss: 0.5776 - accuracy: 0.1433 - mae: 0.5776 - pearson_correlation: -0.5614 - euclidean_distance: 0.8984
Epoch 68/100
46/46 [==============================] - 0s 896us/step - loss: 0.5753 - accuracy: 0.1468 - mae: 0.5753 - pearson_correlation: -0.5545 - euclidean_distance: 0.8950
Epoch 69/100
46/46 [==============================] - 0s 889us/step - loss: 0.5727 - accuracy: 0.1477 - mae: 0.5727 - pearson_correlation: -0.5612 - euclidean_distance: 0.8924
Epoch 70/100
46/46 [==============================] - 0s 894us/step - loss: 0.5695 - accuracy: 0.1481 - mae: 0.5695 - pearson_correlation: -0.5619 - euclidean_distance: 0.8879
Epoch 71/100
46/46 [==============================] - 0s 891us/step - loss: 0.5668 - accuracy: 0.1407 - mae: 0.5668 - pearson_correlation: -0.5687 - euclidean_distance: 0.8849
Epoch 72/100
46/46 [==============================] - 0s 903us/step - loss: 0.5641 - accuracy: 0.1437 - mae: 0.5641 - pearson_correlation: -0.5745 - euclidean_distance: 0.8816
Epoch 73/100
46/46 [==============================] - 0s 898us/step - loss: 0.5627 - accuracy: 0.1534 - mae: 0.5627 - pearson_correlation: -0.5598 - euclidean_distance: 0.8794
Epoch 74/100
46/46 [==============================] - 0s 904us/step - loss: 0.5601 - accuracy: 0.1442 - mae: 0.5601 - pearson_correlation: -0.5755 - euclidean_distance: 0.8767
Epoch 75/100
46/46 [==============================] - 0s 904us/step - loss: 0.5572 - accuracy: 0.1437 - mae: 0.5572 - pearson_correlation: -0.5751 - euclidean_distance: 0.8730
Epoch 76/100
46/46 [==============================] - 0s 895us/step - loss: 0.5548 - accuracy: 0.1380 - mae: 0.5548 - pearson_correlation: -0.5808 - euclidean_distance: 0.8696
Epoch 77/100
46/46 [==============================] - 0s 890us/step - loss: 0.5522 - accuracy: 0.1389 - mae: 0.5522 - pearson_correlation: -0.5787 - euclidean_distance: 0.8672
Epoch 78/100
46/46 [==============================] - 0s 902us/step - loss: 0.5497 - accuracy: 0.1486 - mae: 0.5497 - pearson_correlation: -0.5805 - euclidean_distance: 0.8640
Epoch 79/100
46/46 [==============================] - 0s 902us/step - loss: 0.5476 - accuracy: 0.1420 - mae: 0.5476 - pearson_correlation: -0.5782 - euclidean_distance: 0.8609
Epoch 80/100
46/46 [==============================] - 0s 889us/step - loss: 0.5454 - accuracy: 0.1451 - mae: 0.5454 - pearson_correlation: -0.5830 - euclidean_distance: 0.8588
Epoch 81/100
46/46 [==============================] - 0s 894us/step - loss: 0.5426 - accuracy: 0.1477 - mae: 0.5426 - pearson_correlation: -0.5852 - euclidean_distance: 0.8554
Epoch 82/100
46/46 [==============================] - 0s 893us/step - loss: 0.5405 - accuracy: 0.1459 - mae: 0.5405 - pearson_correlation: -0.5906 - euclidean_distance: 0.8531
Epoch 83/100
46/46 [==============================] - 0s 904us/step - loss: 0.5377 - accuracy: 0.1402 - mae: 0.5377 - pearson_correlation: -0.5944 - euclidean_distance: 0.8498
Epoch 84/100
46/46 [==============================] - 0s 903us/step - loss: 0.5356 - accuracy: 0.1411 - mae: 0.5356 - pearson_correlation: -0.5943 - euclidean_distance: 0.8471
Epoch 85/100
46/46 [==============================] - 0s 895us/step - loss: 0.5334 - accuracy: 0.1380 - mae: 0.5334 - pearson_correlation: -0.5889 - euclidean_distance: 0.8445
Epoch 86/100
46/46 [==============================] - 0s 892us/step - loss: 0.5309 - accuracy: 0.1411 - mae: 0.5309 - pearson_correlation: -0.5996 - euclidean_distance: 0.8414
Epoch 87/100
46/46 [==============================] - 0s 897us/step - loss: 0.5288 - accuracy: 0.1323 - mae: 0.5288 - pearson_correlation: -0.6015 - euclidean_distance: 0.8391
Epoch 88/100
46/46 [==============================] - 0s 893us/step - loss: 0.5267 - accuracy: 0.1367 - mae: 0.5267 - pearson_correlation: -0.5976 - euclidean_distance: 0.8360
Epoch 89/100
46/46 [==============================] - 0s 896us/step - loss: 0.5242 - accuracy: 0.1336 - mae: 0.5242 - pearson_correlation: -0.6088 - euclidean_distance: 0.8336
Epoch 90/100
46/46 [==============================] - 0s 893us/step - loss: 0.5219 - accuracy: 0.1354 - mae: 0.5219 - pearson_correlation: -0.6066 - euclidean_distance: 0.8310
Epoch 91/100
46/46 [==============================] - 0s 895us/step - loss: 0.5198 - accuracy: 0.1354 - mae: 0.5198 - pearson_correlation: -0.6041 - euclidean_distance: 0.8283
Epoch 92/100
46/46 [==============================] - 0s 901us/step - loss: 0.5177 - accuracy: 0.1362 - mae: 0.5177 - pearson_correlation: -0.6134 - euclidean_distance: 0.8260
Epoch 93/100
46/46 [==============================] - 0s 894us/step - loss: 0.5148 - accuracy: 0.1314 - mae: 0.5148 - pearson_correlation: -0.6141 - euclidean_distance: 0.8225
Epoch 94/100
46/46 [==============================] - 0s 895us/step - loss: 0.5126 - accuracy: 0.1433 - mae: 0.5126 - pearson_correlation: -0.6120 - euclidean_distance: 0.8201
Epoch 95/100
46/46 [==============================] - 0s 901us/step - loss: 0.5101 - accuracy: 0.1358 - mae: 0.5101 - pearson_correlation: -0.6047 - euclidean_distance: 0.8168
Epoch 96/100
46/46 [==============================] - 0s 894us/step - loss: 0.5083 - accuracy: 0.1376 - mae: 0.5083 - pearson_correlation: -0.6072 - euclidean_distance: 0.8139
Epoch 97/100
46/46 [==============================] - 0s 899us/step - loss: 0.5057 - accuracy: 0.1336 - mae: 0.5057 - pearson_correlation: -0.6142 - euclidean_distance: 0.8123
Epoch 98/100
46/46 [==============================] - 0s 901us/step - loss: 0.5042 - accuracy: 0.1314 - mae: 0.5042 - pearson_correlation: -0.6127 - euclidean_distance: 0.8099
Epoch 99/100
46/46 [==============================] - 0s 904us/step - loss: 0.5016 - accuracy: 0.1358 - mae: 0.5016 - pearson_correlation: -0.6085 - euclidean_distance: 0.8067
Epoch 100/100
46/46 [==============================] - 0s 894us/step - loss: 0.4993 - accuracy: 0.1358 - mae: 0.4993 - pearson_correlation: -0.6129 - euclidean_distance: 0.8040
23/23 [==============================] - 0s 534us/step
Epoch 1/150
46/46 [==============================] - 1s 923us/step - loss: 0.7054 - accuracy: 0.0446 - mae: 0.7054 - pearson_correlation: -0.7047 - euclidean_distance: 1.0923
Epoch 2/150
46/46 [==============================] - 0s 820us/step - loss: 0.6988 - accuracy: 0.0441 - mae: 0.6988 - pearson_correlation: -0.7076 - euclidean_distance: 1.0826
Epoch 3/150
46/46 [==============================] - 0s 866us/step - loss: 0.6954 - accuracy: 0.0441 - mae: 0.6954 - pearson_correlation: -0.7070 - euclidean_distance: 1.0782
Epoch 4/150
46/46 [==============================] - 0s 890us/step - loss: 0.6885 - accuracy: 0.0450 - mae: 0.6885 - pearson_correlation: -0.7064 - euclidean_distance: 1.0698
Epoch 5/150
46/46 [==============================] - 0s 890us/step - loss: 0.6823 - accuracy: 0.0459 - mae: 0.6823 - pearson_correlation: -0.7028 - euclidean_distance: 1.0614
Epoch 6/150
46/46 [==============================] - 0s 895us/step - loss: 0.6787 - accuracy: 0.0463 - mae: 0.6787 - pearson_correlation: -0.7072 - euclidean_distance: 1.0550
Epoch 7/150
46/46 [==============================] - 0s 888us/step - loss: 0.6721 - accuracy: 0.0468 - mae: 0.6721 - pearson_correlation: -0.7052 - euclidean_distance: 1.0488
Epoch 8/150
46/46 [==============================] - 0s 887us/step - loss: 0.6665 - accuracy: 0.0459 - mae: 0.6665 - pearson_correlation: -0.7070 - euclidean_distance: 1.0409
Epoch 9/150
46/46 [==============================] - 0s 888us/step - loss: 0.6597 - accuracy: 0.0441 - mae: 0.6597 - pearson_correlation: -0.7088 - euclidean_distance: 1.0313
Epoch 10/150
46/46 [==============================] - 0s 886us/step - loss: 0.6544 - accuracy: 0.0463 - mae: 0.6544 - pearson_correlation: -0.7044 - euclidean_distance: 1.0247
Epoch 11/150
46/46 [==============================] - 0s 887us/step - loss: 0.6475 - accuracy: 0.0463 - mae: 0.6475 - pearson_correlation: -0.7051 - euclidean_distance: 1.0160
Epoch 12/150
46/46 [==============================] - 0s 891us/step - loss: 0.6433 - accuracy: 0.0454 - mae: 0.6433 - pearson_correlation: -0.7056 - euclidean_distance: 1.0095
Epoch 13/150
46/46 [==============================] - 0s 890us/step - loss: 0.6367 - accuracy: 0.0472 - mae: 0.6367 - pearson_correlation: -0.7075 - euclidean_distance: 1.0021
Epoch 14/150
46/46 [==============================] - 0s 885us/step - loss: 0.6320 - accuracy: 0.0454 - mae: 0.6320 - pearson_correlation: -0.7066 - euclidean_distance: 0.9955
Epoch 15/150
46/46 [==============================] - 0s 888us/step - loss: 0.6264 - accuracy: 0.0441 - mae: 0.6264 - pearson_correlation: -0.7019 - euclidean_distance: 0.9887
Epoch 16/150
46/46 [==============================] - 0s 884us/step - loss: 0.6201 - accuracy: 0.0463 - mae: 0.6201 - pearson_correlation: -0.7091 - euclidean_distance: 0.9801
Epoch 17/150
46/46 [==============================] - 0s 896us/step - loss: 0.6162 - accuracy: 0.0450 - mae: 0.6162 - pearson_correlation: -0.7043 - euclidean_distance: 0.9744
Epoch 18/150
46/46 [==============================] - 0s 887us/step - loss: 0.6084 - accuracy: 0.0450 - mae: 0.6084 - pearson_correlation: -0.7098 - euclidean_distance: 0.9643
Epoch 19/150
46/46 [==============================] - 0s 885us/step - loss: 0.6022 - accuracy: 0.0468 - mae: 0.6022 - pearson_correlation: -0.7044 - euclidean_distance: 0.9565
Epoch 20/150
46/46 [==============================] - 0s 883us/step - loss: 0.5973 - accuracy: 0.0454 - mae: 0.5973 - pearson_correlation: -0.7059 - euclidean_distance: 0.9496
Epoch 21/150
46/46 [==============================] - 0s 889us/step - loss: 0.5925 - accuracy: 0.0454 - mae: 0.5925 - pearson_correlation: -0.7030 - euclidean_distance: 0.9435
Epoch 22/150
46/46 [==============================] - 0s 884us/step - loss: 0.5881 - accuracy: 0.0472 - mae: 0.5881 - pearson_correlation: -0.7109 - euclidean_distance: 0.9371
Epoch 23/150
46/46 [==============================] - 0s 889us/step - loss: 0.5816 - accuracy: 0.0485 - mae: 0.5816 - pearson_correlation: -0.7036 - euclidean_distance: 0.9298
Epoch 24/150
46/46 [==============================] - 0s 878us/step - loss: 0.5778 - accuracy: 0.0472 - mae: 0.5778 - pearson_correlation: -0.7064 - euclidean_distance: 0.9235
Epoch 25/150
46/46 [==============================] - 0s 887us/step - loss: 0.5714 - accuracy: 0.0463 - mae: 0.5714 - pearson_correlation: -0.7062 - euclidean_distance: 0.9158
Epoch 26/150
46/46 [==============================] - 0s 887us/step - loss: 0.5667 - accuracy: 0.0490 - mae: 0.5667 - pearson_correlation: -0.7057 - euclidean_distance: 0.9092
Epoch 27/150
46/46 [==============================] - 0s 883us/step - loss: 0.5604 - accuracy: 0.0459 - mae: 0.5604 - pearson_correlation: -0.7052 - euclidean_distance: 0.9006
Epoch 28/150
46/46 [==============================] - 0s 882us/step - loss: 0.5567 - accuracy: 0.0503 - mae: 0.5567 - pearson_correlation: -0.7043 - euclidean_distance: 0.8966
Epoch 29/150
46/46 [==============================] - 0s 888us/step - loss: 0.5516 - accuracy: 0.0454 - mae: 0.5516 - pearson_correlation: -0.7073 - euclidean_distance: 0.8899
Epoch 30/150
46/46 [==============================] - 0s 884us/step - loss: 0.5454 - accuracy: 0.0476 - mae: 0.5454 - pearson_correlation: -0.7024 - euclidean_distance: 0.8822
Epoch 31/150
46/46 [==============================] - 0s 884us/step - loss: 0.5401 - accuracy: 0.0534 - mae: 0.5401 - pearson_correlation: -0.7041 - euclidean_distance: 0.8752
Epoch 32/150
46/46 [==============================] - 0s 884us/step - loss: 0.5343 - accuracy: 0.0468 - mae: 0.5343 - pearson_correlation: -0.7037 - euclidean_distance: 0.8683
Epoch 33/150
46/46 [==============================] - 0s 886us/step - loss: 0.5319 - accuracy: 0.0490 - mae: 0.5319 - pearson_correlation: -0.7080 - euclidean_distance: 0.8635
Epoch 34/150
46/46 [==============================] - 0s 888us/step - loss: 0.5267 - accuracy: 0.0490 - mae: 0.5267 - pearson_correlation: -0.7029 - euclidean_distance: 0.8565
Epoch 35/150
46/46 [==============================] - 0s 883us/step - loss: 0.5222 - accuracy: 0.0498 - mae: 0.5222 - pearson_correlation: -0.7058 - euclidean_distance: 0.8509
Epoch 36/150
46/46 [==============================] - 0s 885us/step - loss: 0.5177 - accuracy: 0.0521 - mae: 0.5177 - pearson_correlation: -0.6992 - euclidean_distance: 0.8442
Epoch 37/150
46/46 [==============================] - 0s 888us/step - loss: 0.5119 - accuracy: 0.0516 - mae: 0.5119 - pearson_correlation: -0.7045 - euclidean_distance: 0.8378
Epoch 38/150
46/46 [==============================] - 0s 886us/step - loss: 0.5084 - accuracy: 0.0512 - mae: 0.5084 - pearson_correlation: -0.7031 - euclidean_distance: 0.8322
Epoch 39/150
46/46 [==============================] - 0s 888us/step - loss: 0.5027 - accuracy: 0.0507 - mae: 0.5027 - pearson_correlation: -0.7008 - euclidean_distance: 0.8253
Epoch 40/150
46/46 [==============================] - 0s 882us/step - loss: 0.4993 - accuracy: 0.0516 - mae: 0.4993 - pearson_correlation: -0.7047 - euclidean_distance: 0.8214
Epoch 41/150
46/46 [==============================] - 0s 889us/step - loss: 0.4947 - accuracy: 0.0538 - mae: 0.4947 - pearson_correlation: -0.7067 - euclidean_distance: 0.8148
Epoch 42/150
46/46 [==============================] - 0s 884us/step - loss: 0.4900 - accuracy: 0.0534 - mae: 0.4900 - pearson_correlation: -0.7030 - euclidean_distance: 0.8087
Epoch 43/150
46/46 [==============================] - 0s 886us/step - loss: 0.4860 - accuracy: 0.0498 - mae: 0.4860 - pearson_correlation: -0.7004 - euclidean_distance: 0.8028
Epoch 44/150
46/46 [==============================] - 0s 871us/step - loss: 0.4825 - accuracy: 0.0507 - mae: 0.4825 - pearson_correlation: -0.7033 - euclidean_distance: 0.7982
Epoch 45/150
46/46 [==============================] - 0s 893us/step - loss: 0.4780 - accuracy: 0.0521 - mae: 0.4780 - pearson_correlation: -0.7016 - euclidean_distance: 0.7929
Epoch 46/150
46/46 [==============================] - 0s 886us/step - loss: 0.4746 - accuracy: 0.0543 - mae: 0.4746 - pearson_correlation: -0.6980 - euclidean_distance: 0.7879
Epoch 47/150
46/46 [==============================] - 0s 880us/step - loss: 0.4714 - accuracy: 0.0560 - mae: 0.4714 - pearson_correlation: -0.6985 - euclidean_distance: 0.7829
Epoch 48/150
46/46 [==============================] - 0s 881us/step - loss: 0.4667 - accuracy: 0.0534 - mae: 0.4667 - pearson_correlation: -0.6993 - euclidean_distance: 0.7774
Epoch 49/150
46/46 [==============================] - 0s 880us/step - loss: 0.4639 - accuracy: 0.0525 - mae: 0.4639 - pearson_correlation: -0.6935 - euclidean_distance: 0.7735
Epoch 50/150
46/46 [==============================] - 0s 884us/step - loss: 0.4598 - accuracy: 0.0512 - mae: 0.4598 - pearson_correlation: -0.7010 - euclidean_distance: 0.7669
Epoch 51/150
46/46 [==============================] - 0s 881us/step - loss: 0.4567 - accuracy: 0.0512 - mae: 0.4567 - pearson_correlation: -0.6989 - euclidean_distance: 0.7638
Epoch 52/150
46/46 [==============================] - 0s 884us/step - loss: 0.4536 - accuracy: 0.0529 - mae: 0.4536 - pearson_correlation: -0.6945 - euclidean_distance: 0.7586
Epoch 53/150
46/46 [==============================] - 0s 885us/step - loss: 0.4515 - accuracy: 0.0556 - mae: 0.4515 - pearson_correlation: -0.6942 - euclidean_distance: 0.7563
Epoch 54/150
46/46 [==============================] - 0s 885us/step - loss: 0.4467 - accuracy: 0.0587 - mae: 0.4467 - pearson_correlation: -0.6945 - euclidean_distance: 0.7501
Epoch 55/150
46/46 [==============================] - 0s 881us/step - loss: 0.4437 - accuracy: 0.0547 - mae: 0.4437 - pearson_correlation: -0.6910 - euclidean_distance: 0.7463
Epoch 56/150
46/46 [==============================] - 0s 881us/step - loss: 0.4411 - accuracy: 0.0551 - mae: 0.4411 - pearson_correlation: -0.6902 - euclidean_distance: 0.7423
Epoch 57/150
46/46 [==============================] - 0s 884us/step - loss: 0.4393 - accuracy: 0.0582 - mae: 0.4393 - pearson_correlation: -0.6879 - euclidean_distance: 0.7392
Epoch 58/150
46/46 [==============================] - 0s 888us/step - loss: 0.4367 - accuracy: 0.0560 - mae: 0.4367 - pearson_correlation: -0.6913 - euclidean_distance: 0.7340
Epoch 59/150
46/46 [==============================] - 0s 886us/step - loss: 0.4330 - accuracy: 0.0538 - mae: 0.4330 - pearson_correlation: -0.6880 - euclidean_distance: 0.7307
Epoch 60/150
46/46 [==============================] - 0s 884us/step - loss: 0.4291 - accuracy: 0.0538 - mae: 0.4291 - pearson_correlation: -0.6882 - euclidean_distance: 0.7251
Epoch 61/150
46/46 [==============================] - 0s 888us/step - loss: 0.4264 - accuracy: 0.0543 - mae: 0.4264 - pearson_correlation: -0.6839 - euclidean_distance: 0.7221
Epoch 62/150
46/46 [==============================] - 0s 892us/step - loss: 0.4234 - accuracy: 0.0551 - mae: 0.4234 - pearson_correlation: -0.6817 - euclidean_distance: 0.7176
Epoch 63/150
46/46 [==============================] - 0s 886us/step - loss: 0.4226 - accuracy: 0.0565 - mae: 0.4226 - pearson_correlation: -0.6824 - euclidean_distance: 0.7156
Epoch 64/150
46/46 [==============================] - 0s 885us/step - loss: 0.4189 - accuracy: 0.0565 - mae: 0.4189 - pearson_correlation: -0.6839 - euclidean_distance: 0.7108
Epoch 65/150
46/46 [==============================] - 0s 885us/step - loss: 0.4169 - accuracy: 0.0578 - mae: 0.4169 - pearson_correlation: -0.6820 - euclidean_distance: 0.7071
Epoch 66/150
46/46 [==============================] - 0s 882us/step - loss: 0.4141 - accuracy: 0.0560 - mae: 0.4141 - pearson_correlation: -0.6804 - euclidean_distance: 0.7045
Epoch 67/150
46/46 [==============================] - 0s 876us/step - loss: 0.4116 - accuracy: 0.0582 - mae: 0.4116 - pearson_correlation: -0.6780 - euclidean_distance: 0.7009
Epoch 68/150
46/46 [==============================] - 0s 874us/step - loss: 0.4086 - accuracy: 0.0547 - mae: 0.4086 - pearson_correlation: -0.6765 - euclidean_distance: 0.6967
Epoch 69/150
46/46 [==============================] - 0s 879us/step - loss: 0.4065 - accuracy: 0.0609 - mae: 0.4065 - pearson_correlation: -0.6742 - euclidean_distance: 0.6928
Epoch 70/150
46/46 [==============================] - 0s 882us/step - loss: 0.4045 - accuracy: 0.0596 - mae: 0.4045 - pearson_correlation: -0.6721 - euclidean_distance: 0.6897
Epoch 71/150
46/46 [==============================] - 0s 883us/step - loss: 0.4018 - accuracy: 0.0648 - mae: 0.4018 - pearson_correlation: -0.6634 - euclidean_distance: 0.6865
Epoch 72/150
46/46 [==============================] - 0s 885us/step - loss: 0.3990 - accuracy: 0.0613 - mae: 0.3990 - pearson_correlation: -0.6615 - euclidean_distance: 0.6825
Epoch 73/150
46/46 [==============================] - 0s 885us/step - loss: 0.3977 - accuracy: 0.0662 - mae: 0.3977 - pearson_correlation: -0.6621 - euclidean_distance: 0.6795
Epoch 74/150
46/46 [==============================] - 0s 885us/step - loss: 0.3955 - accuracy: 0.0626 - mae: 0.3955 - pearson_correlation: -0.6625 - euclidean_distance: 0.6755
Epoch 75/150
46/46 [==============================] - 0s 872us/step - loss: 0.3922 - accuracy: 0.0622 - mae: 0.3922 - pearson_correlation: -0.6622 - euclidean_distance: 0.6723
Epoch 76/150
46/46 [==============================] - 0s 887us/step - loss: 0.3909 - accuracy: 0.0609 - mae: 0.3909 - pearson_correlation: -0.6606 - euclidean_distance: 0.6695
Epoch 77/150
46/46 [==============================] - 0s 935us/step - loss: 0.3884 - accuracy: 0.0626 - mae: 0.3884 - pearson_correlation: -0.6576 - euclidean_distance: 0.6657
Epoch 78/150
46/46 [==============================] - 0s 990us/step - loss: 0.3859 - accuracy: 0.0622 - mae: 0.3859 - pearson_correlation: -0.6543 - euclidean_distance: 0.6618
Epoch 79/150
46/46 [==============================] - 0s 1ms/step - loss: 0.3843 - accuracy: 0.0653 - mae: 0.3843 - pearson_correlation: -0.6557 - euclidean_distance: 0.6589
Epoch 80/150
46/46 [==============================] - 0s 935us/step - loss: 0.3814 - accuracy: 0.0631 - mae: 0.3814 - pearson_correlation: -0.6567 - euclidean_distance: 0.6552
Epoch 81/150
46/46 [==============================] - 0s 982us/step - loss: 0.3796 - accuracy: 0.0688 - mae: 0.3796 - pearson_correlation: -0.6493 - euclidean_distance: 0.6526
Epoch 82/150
46/46 [==============================] - 0s 1ms/step - loss: 0.3769 - accuracy: 0.0609 - mae: 0.3769 - pearson_correlation: -0.6523 - euclidean_distance: 0.6488
Epoch 83/150
46/46 [==============================] - 0s 1ms/step - loss: 0.3756 - accuracy: 0.0622 - mae: 0.3756 - pearson_correlation: -0.6499 - euclidean_distance: 0.6463
Epoch 84/150
46/46 [==============================] - 0s 943us/step - loss: 0.3731 - accuracy: 0.0635 - mae: 0.3731 - pearson_correlation: -0.6432 - euclidean_distance: 0.6426
Epoch 85/150
46/46 [==============================] - 0s 972us/step - loss: 0.3703 - accuracy: 0.0648 - mae: 0.3703 - pearson_correlation: -0.6477 - euclidean_distance: 0.6399
Epoch 86/150
46/46 [==============================] - 0s 1ms/step - loss: 0.3699 - accuracy: 0.0675 - mae: 0.3699 - pearson_correlation: -0.6376 - euclidean_distance: 0.6361
Epoch 87/150
46/46 [==============================] - 0s 1ms/step - loss: 0.3669 - accuracy: 0.0670 - mae: 0.3669 - pearson_correlation: -0.6375 - euclidean_distance: 0.6322
Epoch 88/150
46/46 [==============================] - 0s 1ms/step - loss: 0.3665 - accuracy: 0.0745 - mae: 0.3665 - pearson_correlation: -0.6366 - euclidean_distance: 0.6312
Epoch 89/150
46/46 [==============================] - 0s 901us/step - loss: 0.3625 - accuracy: 0.0723 - mae: 0.3625 - pearson_correlation: -0.6327 - euclidean_distance: 0.6266
Epoch 90/150
46/46 [==============================] - 0s 882us/step - loss: 0.3619 - accuracy: 0.0776 - mae: 0.3619 - pearson_correlation: -0.6329 - euclidean_distance: 0.6240
Epoch 91/150
46/46 [==============================] - 0s 888us/step - loss: 0.3604 - accuracy: 0.0865 - mae: 0.3604 - pearson_correlation: -0.6190 - euclidean_distance: 0.6207
Epoch 92/150
46/46 [==============================] - 0s 883us/step - loss: 0.3587 - accuracy: 0.0860 - mae: 0.3587 - pearson_correlation: -0.6202 - euclidean_distance: 0.6180
Epoch 93/150
46/46 [==============================] - 0s 886us/step - loss: 0.3567 - accuracy: 0.0851 - mae: 0.3567 - pearson_correlation: -0.6212 - euclidean_distance: 0.6156
Epoch 94/150
46/46 [==============================] - 0s 877us/step - loss: 0.3538 - accuracy: 0.0878 - mae: 0.3538 - pearson_correlation: -0.6186 - euclidean_distance: 0.6115
Epoch 95/150
46/46 [==============================] - 0s 886us/step - loss: 0.3528 - accuracy: 0.0847 - mae: 0.3528 - pearson_correlation: -0.6155 - euclidean_distance: 0.6091
Epoch 96/150
46/46 [==============================] - 0s 883us/step - loss: 0.3510 - accuracy: 0.0891 - mae: 0.3510 - pearson_correlation: -0.6111 - euclidean_distance: 0.6064
Epoch 97/150
46/46 [==============================] - 0s 887us/step - loss: 0.3491 - accuracy: 0.0900 - mae: 0.3491 - pearson_correlation: -0.6087 - euclidean_distance: 0.6033
Epoch 98/150
46/46 [==============================] - 0s 885us/step - loss: 0.3471 - accuracy: 0.1006 - mae: 0.3471 - pearson_correlation: -0.6024 - euclidean_distance: 0.5995
Epoch 99/150
46/46 [==============================] - 0s 889us/step - loss: 0.3466 - accuracy: 0.0962 - mae: 0.3466 - pearson_correlation: -0.5998 - euclidean_distance: 0.5973
Epoch 100/150
46/46 [==============================] - 0s 883us/step - loss: 0.3422 - accuracy: 0.0988 - mae: 0.3422 - pearson_correlation: -0.6032 - euclidean_distance: 0.5927
Epoch 101/150
46/46 [==============================] - 0s 883us/step - loss: 0.3404 - accuracy: 0.0975 - mae: 0.3404 - pearson_correlation: -0.5944 - euclidean_distance: 0.5902
Epoch 102/150
46/46 [==============================] - 0s 884us/step - loss: 0.3384 - accuracy: 0.1072 - mae: 0.3384 - pearson_correlation: -0.5919 - euclidean_distance: 0.5858
Epoch 103/150
46/46 [==============================] - 0s 889us/step - loss: 0.3377 - accuracy: 0.1072 - mae: 0.3377 - pearson_correlation: -0.5878 - euclidean_distance: 0.5842
Epoch 104/150
46/46 [==============================] - 0s 883us/step - loss: 0.3347 - accuracy: 0.1125 - mae: 0.3347 - pearson_correlation: -0.5887 - euclidean_distance: 0.5795
Epoch 105/150
46/46 [==============================] - 0s 888us/step - loss: 0.3339 - accuracy: 0.1098 - mae: 0.3339 - pearson_correlation: -0.5894 - euclidean_distance: 0.5785
Epoch 106/150
46/46 [==============================] - 0s 887us/step - loss: 0.3307 - accuracy: 0.1204 - mae: 0.3307 - pearson_correlation: -0.5789 - euclidean_distance: 0.5736
Epoch 107/150
46/46 [==============================] - 0s 887us/step - loss: 0.3298 - accuracy: 0.1248 - mae: 0.3298 - pearson_correlation: -0.5722 - euclidean_distance: 0.5716
Epoch 108/150
46/46 [==============================] - 0s 885us/step - loss: 0.3285 - accuracy: 0.1292 - mae: 0.3285 - pearson_correlation: -0.5645 - euclidean_distance: 0.5677
Epoch 109/150
46/46 [==============================] - 0s 879us/step - loss: 0.3270 - accuracy: 0.1284 - mae: 0.3270 - pearson_correlation: -0.5618 - euclidean_distance: 0.5650
Epoch 110/150
46/46 [==============================] - 0s 904us/step - loss: 0.3250 - accuracy: 0.1363 - mae: 0.3250 - pearson_correlation: -0.5496 - euclidean_distance: 0.5623
Epoch 111/150
46/46 [==============================] - 0s 881us/step - loss: 0.3218 - accuracy: 0.1372 - mae: 0.3218 - pearson_correlation: -0.5503 - euclidean_distance: 0.5573
Epoch 112/150
46/46 [==============================] - 0s 888us/step - loss: 0.3193 - accuracy: 0.1403 - mae: 0.3193 - pearson_correlation: -0.5378 - euclidean_distance: 0.5539
Epoch 113/150
46/46 [==============================] - 0s 888us/step - loss: 0.3196 - accuracy: 0.1425 - mae: 0.3196 - pearson_correlation: -0.5255 - euclidean_distance: 0.5522
Epoch 114/150
46/46 [==============================] - 0s 883us/step - loss: 0.3155 - accuracy: 0.1487 - mae: 0.3155 - pearson_correlation: -0.5132 - euclidean_distance: 0.5468
Epoch 115/150
46/46 [==============================] - 0s 882us/step - loss: 0.3150 - accuracy: 0.1513 - mae: 0.3150 - pearson_correlation: -0.5161 - euclidean_distance: 0.5452
Epoch 116/150
46/46 [==============================] - 0s 884us/step - loss: 0.3125 - accuracy: 0.1495 - mae: 0.3125 - pearson_correlation: -0.5202 - euclidean_distance: 0.5406
Epoch 117/150
46/46 [==============================] - 0s 888us/step - loss: 0.3102 - accuracy: 0.1592 - mae: 0.3102 - pearson_correlation: -0.5077 - euclidean_distance: 0.5382
Epoch 118/150
46/46 [==============================] - 0s 881us/step - loss: 0.3081 - accuracy: 0.1500 - mae: 0.3081 - pearson_correlation: -0.4973 - euclidean_distance: 0.5342
Epoch 119/150
46/46 [==============================] - 0s 884us/step - loss: 0.3071 - accuracy: 0.1654 - mae: 0.3071 - pearson_correlation: -0.4871 - euclidean_distance: 0.5314
Epoch 120/150
46/46 [==============================] - 0s 882us/step - loss: 0.3048 - accuracy: 0.1698 - mae: 0.3048 - pearson_correlation: -0.4821 - euclidean_distance: 0.5274
Epoch 121/150
46/46 [==============================] - 0s 881us/step - loss: 0.3017 - accuracy: 0.1703 - mae: 0.3017 - pearson_correlation: -0.4773 - euclidean_distance: 0.5236
Epoch 122/150
46/46 [==============================] - 0s 887us/step - loss: 0.3020 - accuracy: 0.1800 - mae: 0.3020 - pearson_correlation: -0.4506 - euclidean_distance: 0.5213
Epoch 123/150
46/46 [==============================] - 0s 893us/step - loss: 0.2973 - accuracy: 0.1751 - mae: 0.2973 - pearson_correlation: -0.4610 - euclidean_distance: 0.5155
Epoch 124/150
46/46 [==============================] - 0s 886us/step - loss: 0.2979 - accuracy: 0.1923 - mae: 0.2979 - pearson_correlation: -0.4445 - euclidean_distance: 0.5149
Epoch 125/150
46/46 [==============================] - 0s 888us/step - loss: 0.2936 - accuracy: 0.2007 - mae: 0.2936 - pearson_correlation: -0.4402 - euclidean_distance: 0.5091
Epoch 126/150
46/46 [==============================] - 0s 890us/step - loss: 0.2929 - accuracy: 0.2038 - mae: 0.2929 - pearson_correlation: -0.4325 - euclidean_distance: 0.5061
Epoch 127/150
46/46 [==============================] - 0s 884us/step - loss: 0.2904 - accuracy: 0.2179 - mae: 0.2904 - pearson_correlation: -0.4255 - euclidean_distance: 0.5025
Epoch 128/150
46/46 [==============================] - 0s 885us/step - loss: 0.2888 - accuracy: 0.2170 - mae: 0.2888 - pearson_correlation: -0.4212 - euclidean_distance: 0.4990
Epoch 129/150
46/46 [==============================] - 0s 887us/step - loss: 0.2857 - accuracy: 0.2382 - mae: 0.2857 - pearson_correlation: -0.4003 - euclidean_distance: 0.4948
Epoch 130/150
46/46 [==============================] - 0s 885us/step - loss: 0.2849 - accuracy: 0.2431 - mae: 0.2849 - pearson_correlation: -0.3853 - euclidean_distance: 0.4923
Epoch 131/150
46/46 [==============================] - 0s 892us/step - loss: 0.2839 - accuracy: 0.2576 - mae: 0.2839 - pearson_correlation: -0.3757 - euclidean_distance: 0.4889
Epoch 132/150
46/46 [==============================] - 0s 889us/step - loss: 0.2803 - accuracy: 0.2567 - mae: 0.2803 - pearson_correlation: -0.3688 - euclidean_distance: 0.4849
Epoch 133/150
46/46 [==============================] - 0s 883us/step - loss: 0.2798 - accuracy: 0.2735 - mae: 0.2798 - pearson_correlation: -0.3594 - euclidean_distance: 0.4826
Epoch 134/150
46/46 [==============================] - 0s 901us/step - loss: 0.2772 - accuracy: 0.2863 - mae: 0.2772 - pearson_correlation: -0.3411 - euclidean_distance: 0.4783
Epoch 135/150
46/46 [==============================] - 0s 879us/step - loss: 0.2746 - accuracy: 0.2889 - mae: 0.2746 - pearson_correlation: -0.3359 - euclidean_distance: 0.4743
Epoch 136/150
46/46 [==============================] - 0s 882us/step - loss: 0.2727 - accuracy: 0.3000 - mae: 0.2727 - pearson_correlation: -0.3237 - euclidean_distance: 0.4714
Epoch 137/150
46/46 [==============================] - 0s 882us/step - loss: 0.2714 - accuracy: 0.2947 - mae: 0.2714 - pearson_correlation: -0.3191 - euclidean_distance: 0.4687
Epoch 138/150
46/46 [==============================] - 0s 877us/step - loss: 0.2700 - accuracy: 0.2973 - mae: 0.2700 - pearson_correlation: -0.3046 - euclidean_distance: 0.4652
Epoch 139/150
46/46 [==============================] - 0s 884us/step - loss: 0.2679 - accuracy: 0.3158 - mae: 0.2679 - pearson_correlation: -0.2900 - euclidean_distance: 0.4614
Epoch 140/150
46/46 [==============================] - 0s 882us/step - loss: 0.2644 - accuracy: 0.3189 - mae: 0.2644 - pearson_correlation: -0.2776 - euclidean_distance: 0.4567
Epoch 141/150
46/46 [==============================] - 0s 885us/step - loss: 0.2637 - accuracy: 0.3247 - mae: 0.2637 - pearson_correlation: -0.2578 - euclidean_distance: 0.4537
Epoch 142/150
46/46 [==============================] - 0s 882us/step - loss: 0.2609 - accuracy: 0.3317 - mae: 0.2609 - pearson_correlation: -0.2592 - euclidean_distance: 0.4501
Epoch 143/150
46/46 [==============================] - 0s 884us/step - loss: 0.2591 - accuracy: 0.3357 - mae: 0.2591 - pearson_correlation: -0.2457 - euclidean_distance: 0.4463
Epoch 144/150
46/46 [==============================] - 0s 886us/step - loss: 0.2575 - accuracy: 0.3414 - mae: 0.2575 - pearson_correlation: -0.2266 - euclidean_distance: 0.4433
Epoch 145/150
46/46 [==============================] - 0s 883us/step - loss: 0.2559 - accuracy: 0.3542 - mae: 0.2559 - pearson_correlation: -0.2085 - euclidean_distance: 0.4393
Epoch 146/150
46/46 [==============================] - 0s 883us/step - loss: 0.2553 - accuracy: 0.3533 - mae: 0.2553 - pearson_correlation: -0.2055 - euclidean_distance: 0.4381
Epoch 147/150
46/46 [==============================] - 0s 890us/step - loss: 0.2509 - accuracy: 0.3705 - mae: 0.2509 - pearson_correlation: -0.1949 - euclidean_distance: 0.4318
Epoch 148/150
46/46 [==============================] - 0s 883us/step - loss: 0.2487 - accuracy: 0.3701 - mae: 0.2487 - pearson_correlation: -0.1844 - euclidean_distance: 0.4288
Epoch 149/150
46/46 [==============================] - 0s 878us/step - loss: 0.2481 - accuracy: 0.3772 - mae: 0.2481 - pearson_correlation: -0.1681 - euclidean_distance: 0.4262
Epoch 150/150
46/46 [==============================] - 0s 886us/step - loss: 0.2435 - accuracy: 0.3758 - mae: 0.2435 - pearson_correlation: -0.1578 - euclidean_distance: 0.4198
23/23 [==============================] - 0s 490us/step
Epoch 1/150
46/46 [==============================] - 1s 906us/step - loss: 0.6402 - accuracy: 0.5554 - mae: 0.6402 - pearson_correlation: 0.1073 - euclidean_distance: 0.9446
Epoch 2/150
46/46 [==============================] - 0s 825us/step - loss: 0.6371 - accuracy: 0.5518 - mae: 0.6371 - pearson_correlation: 0.1044 - euclidean_distance: 0.9405
Epoch 3/150
46/46 [==============================] - 0s 877us/step - loss: 0.6350 - accuracy: 0.5598 - mae: 0.6350 - pearson_correlation: 0.1112 - euclidean_distance: 0.9374
Epoch 4/150
46/46 [==============================] - 0s 897us/step - loss: 0.6322 - accuracy: 0.5549 - mae: 0.6322 - pearson_correlation: 0.1077 - euclidean_distance: 0.9339
Epoch 5/150
46/46 [==============================] - 0s 892us/step - loss: 0.6299 - accuracy: 0.5492 - mae: 0.6299 - pearson_correlation: 0.1056 - euclidean_distance: 0.9305
Epoch 6/150
46/46 [==============================] - 0s 896us/step - loss: 0.6267 - accuracy: 0.5576 - mae: 0.6267 - pearson_correlation: 0.1148 - euclidean_distance: 0.9259
Epoch 7/150
46/46 [==============================] - 0s 898us/step - loss: 0.6232 - accuracy: 0.5659 - mae: 0.6232 - pearson_correlation: 0.1148 - euclidean_distance: 0.9211
Epoch 8/150
46/46 [==============================] - 0s 892us/step - loss: 0.6204 - accuracy: 0.5717 - mae: 0.6204 - pearson_correlation: 0.1139 - euclidean_distance: 0.9173
Epoch 9/150
46/46 [==============================] - 0s 906us/step - loss: 0.6177 - accuracy: 0.5580 - mae: 0.6177 - pearson_correlation: 0.1081 - euclidean_distance: 0.9137
Epoch 10/150
46/46 [==============================] - 0s 897us/step - loss: 0.6148 - accuracy: 0.5717 - mae: 0.6148 - pearson_correlation: 0.1165 - euclidean_distance: 0.9097
Epoch 11/150
46/46 [==============================] - 0s 894us/step - loss: 0.6107 - accuracy: 0.5708 - mae: 0.6107 - pearson_correlation: 0.1158 - euclidean_distance: 0.9040
Epoch 12/150
46/46 [==============================] - 0s 897us/step - loss: 0.6083 - accuracy: 0.5730 - mae: 0.6083 - pearson_correlation: 0.1185 - euclidean_distance: 0.9006
Epoch 13/150
46/46 [==============================] - 0s 892us/step - loss: 0.6048 - accuracy: 0.5721 - mae: 0.6048 - pearson_correlation: 0.1111 - euclidean_distance: 0.8962
Epoch 14/150
46/46 [==============================] - 0s 890us/step - loss: 0.6023 - accuracy: 0.5708 - mae: 0.6023 - pearson_correlation: 0.1177 - euclidean_distance: 0.8924
Epoch 15/150
46/46 [==============================] - 0s 894us/step - loss: 0.5992 - accuracy: 0.5682 - mae: 0.5992 - pearson_correlation: 0.1135 - euclidean_distance: 0.8886
Epoch 16/150
46/46 [==============================] - 0s 905us/step - loss: 0.5955 - accuracy: 0.5831 - mae: 0.5955 - pearson_correlation: 0.1181 - euclidean_distance: 0.8832
Epoch 17/150
46/46 [==============================] - 0s 896us/step - loss: 0.5929 - accuracy: 0.5704 - mae: 0.5929 - pearson_correlation: 0.1172 - euclidean_distance: 0.8797
Epoch 18/150
46/46 [==============================] - 0s 898us/step - loss: 0.5901 - accuracy: 0.5792 - mae: 0.5901 - pearson_correlation: 0.1169 - euclidean_distance: 0.8760
Epoch 19/150
46/46 [==============================] - 0s 895us/step - loss: 0.5872 - accuracy: 0.5840 - mae: 0.5872 - pearson_correlation: 0.1255 - euclidean_distance: 0.8717
Epoch 20/150
46/46 [==============================] - 0s 888us/step - loss: 0.5842 - accuracy: 0.5854 - mae: 0.5842 - pearson_correlation: 0.1182 - euclidean_distance: 0.8681
Epoch 21/150
46/46 [==============================] - 0s 902us/step - loss: 0.5808 - accuracy: 0.5862 - mae: 0.5808 - pearson_correlation: 0.1215 - euclidean_distance: 0.8631
Epoch 22/150
46/46 [==============================] - 0s 901us/step - loss: 0.5779 - accuracy: 0.5730 - mae: 0.5779 - pearson_correlation: 0.1100 - euclidean_distance: 0.8599
Epoch 23/150
46/46 [==============================] - 0s 896us/step - loss: 0.5750 - accuracy: 0.5836 - mae: 0.5750 - pearson_correlation: 0.1232 - euclidean_distance: 0.8555
Epoch 24/150
46/46 [==============================] - 0s 891us/step - loss: 0.5712 - accuracy: 0.5854 - mae: 0.5712 - pearson_correlation: 0.1168 - euclidean_distance: 0.8505
Epoch 25/150
46/46 [==============================] - 0s 892us/step - loss: 0.5685 - accuracy: 0.5809 - mae: 0.5685 - pearson_correlation: 0.1187 - euclidean_distance: 0.8470
Epoch 26/150
46/46 [==============================] - 0s 895us/step - loss: 0.5660 - accuracy: 0.5787 - mae: 0.5660 - pearson_correlation: 0.1154 - euclidean_distance: 0.8436
Epoch 27/150
46/46 [==============================] - 0s 892us/step - loss: 0.5620 - accuracy: 0.5867 - mae: 0.5620 - pearson_correlation: 0.1105 - euclidean_distance: 0.8383
Epoch 28/150
46/46 [==============================] - 0s 888us/step - loss: 0.5586 - accuracy: 0.5805 - mae: 0.5586 - pearson_correlation: 0.1100 - euclidean_distance: 0.8339
Epoch 29/150
46/46 [==============================] - 0s 899us/step - loss: 0.5558 - accuracy: 0.5730 - mae: 0.5558 - pearson_correlation: 0.1014 - euclidean_distance: 0.8306
Epoch 30/150
46/46 [==============================] - 0s 900us/step - loss: 0.5522 - accuracy: 0.5792 - mae: 0.5522 - pearson_correlation: 0.1160 - euclidean_distance: 0.8251
Epoch 31/150
46/46 [==============================] - 0s 887us/step - loss: 0.5494 - accuracy: 0.5743 - mae: 0.5494 - pearson_correlation: 0.1080 - euclidean_distance: 0.8218
Epoch 32/150
46/46 [==============================] - 0s 891us/step - loss: 0.5460 - accuracy: 0.5831 - mae: 0.5460 - pearson_correlation: 0.1086 - euclidean_distance: 0.8172
Epoch 33/150
46/46 [==============================] - 0s 894us/step - loss: 0.5440 - accuracy: 0.5783 - mae: 0.5440 - pearson_correlation: 0.1012 - euclidean_distance: 0.8146
Epoch 34/150
46/46 [==============================] - 0s 900us/step - loss: 0.5402 - accuracy: 0.5642 - mae: 0.5402 - pearson_correlation: 0.1137 - euclidean_distance: 0.8097
Epoch 35/150
46/46 [==============================] - 0s 899us/step - loss: 0.5379 - accuracy: 0.5646 - mae: 0.5379 - pearson_correlation: 0.0988 - euclidean_distance: 0.8072
Epoch 36/150
46/46 [==============================] - 0s 889us/step - loss: 0.5340 - accuracy: 0.5748 - mae: 0.5340 - pearson_correlation: 0.0995 - euclidean_distance: 0.8019
Epoch 37/150
46/46 [==============================] - 0s 896us/step - loss: 0.5306 - accuracy: 0.5699 - mae: 0.5306 - pearson_correlation: 0.0997 - euclidean_distance: 0.7974
Epoch 38/150
46/46 [==============================] - 0s 897us/step - loss: 0.5273 - accuracy: 0.5845 - mae: 0.5273 - pearson_correlation: 0.1030 - euclidean_distance: 0.7928
Epoch 39/150
46/46 [==============================] - 0s 888us/step - loss: 0.5258 - accuracy: 0.5664 - mae: 0.5258 - pearson_correlation: 0.0981 - euclidean_distance: 0.7913
Epoch 40/150
46/46 [==============================] - 0s 903us/step - loss: 0.5217 - accuracy: 0.5761 - mae: 0.5217 - pearson_correlation: 0.1013 - euclidean_distance: 0.7855
Epoch 41/150
46/46 [==============================] - 0s 898us/step - loss: 0.5185 - accuracy: 0.5682 - mae: 0.5185 - pearson_correlation: 0.0985 - euclidean_distance: 0.7817
Epoch 42/150
46/46 [==============================] - 0s 892us/step - loss: 0.5151 - accuracy: 0.5743 - mae: 0.5151 - pearson_correlation: 0.0988 - euclidean_distance: 0.7772
Epoch 43/150
46/46 [==============================] - 0s 894us/step - loss: 0.5128 - accuracy: 0.5743 - mae: 0.5128 - pearson_correlation: 0.0923 - euclidean_distance: 0.7738
Epoch 44/150
46/46 [==============================] - 0s 892us/step - loss: 0.5098 - accuracy: 0.5571 - mae: 0.5098 - pearson_correlation: 0.0815 - euclidean_distance: 0.7706
Epoch 45/150
46/46 [==============================] - 0s 890us/step - loss: 0.5069 - accuracy: 0.5620 - mae: 0.5069 - pearson_correlation: 0.0880 - euclidean_distance: 0.7663
Epoch 46/150
46/46 [==============================] - 0s 893us/step - loss: 0.5033 - accuracy: 0.5637 - mae: 0.5033 - pearson_correlation: 0.0842 - euclidean_distance: 0.7617
Epoch 47/150
46/46 [==============================] - 0s 889us/step - loss: 0.5000 - accuracy: 0.5505 - mae: 0.5000 - pearson_correlation: 0.0845 - euclidean_distance: 0.7576
Epoch 48/150
46/46 [==============================] - 0s 892us/step - loss: 0.4977 - accuracy: 0.5571 - mae: 0.4977 - pearson_correlation: 0.0862 - euclidean_distance: 0.7546
Epoch 49/150
46/46 [==============================] - 0s 891us/step - loss: 0.4948 - accuracy: 0.5523 - mae: 0.4948 - pearson_correlation: 0.0772 - euclidean_distance: 0.7509
Epoch 50/150
46/46 [==============================] - 0s 891us/step - loss: 0.4918 - accuracy: 0.5571 - mae: 0.4918 - pearson_correlation: 0.0819 - euclidean_distance: 0.7466
Epoch 51/150
46/46 [==============================] - 0s 885us/step - loss: 0.4898 - accuracy: 0.5479 - mae: 0.4898 - pearson_correlation: 0.0730 - euclidean_distance: 0.7443
Epoch 52/150
46/46 [==============================] - 0s 892us/step - loss: 0.4858 - accuracy: 0.5514 - mae: 0.4858 - pearson_correlation: 0.0722 - euclidean_distance: 0.7389
Epoch 53/150
46/46 [==============================] - 0s 885us/step - loss: 0.4834 - accuracy: 0.5430 - mae: 0.4834 - pearson_correlation: 0.0794 - euclidean_distance: 0.7354
Epoch 54/150
46/46 [==============================] - 0s 893us/step - loss: 0.4809 - accuracy: 0.5527 - mae: 0.4809 - pearson_correlation: 0.0624 - euclidean_distance: 0.7324
Epoch 55/150
46/46 [==============================] - 0s 890us/step - loss: 0.4777 - accuracy: 0.5465 - mae: 0.4777 - pearson_correlation: 0.0661 - euclidean_distance: 0.7283
Epoch 56/150
46/46 [==============================] - 0s 894us/step - loss: 0.4746 - accuracy: 0.5461 - mae: 0.4746 - pearson_correlation: 0.0708 - euclidean_distance: 0.7240
Epoch 57/150
46/46 [==============================] - 0s 891us/step - loss: 0.4720 - accuracy: 0.5412 - mae: 0.4720 - pearson_correlation: 0.0607 - euclidean_distance: 0.7209
Epoch 58/150
46/46 [==============================] - 0s 895us/step - loss: 0.4686 - accuracy: 0.5470 - mae: 0.4686 - pearson_correlation: 0.0620 - euclidean_distance: 0.7159
Epoch 59/150
46/46 [==============================] - 0s 887us/step - loss: 0.4662 - accuracy: 0.5386 - mae: 0.4662 - pearson_correlation: 0.0607 - euclidean_distance: 0.7127
Epoch 60/150
46/46 [==============================] - 0s 892us/step - loss: 0.4628 - accuracy: 0.5377 - mae: 0.4628 - pearson_correlation: 0.0599 - euclidean_distance: 0.7086
Epoch 61/150
46/46 [==============================] - 0s 892us/step - loss: 0.4592 - accuracy: 0.5342 - mae: 0.4592 - pearson_correlation: 0.0585 - euclidean_distance: 0.7040
Epoch 62/150
46/46 [==============================] - 0s 895us/step - loss: 0.4570 - accuracy: 0.5408 - mae: 0.4570 - pearson_correlation: 0.0566 - euclidean_distance: 0.7007
Epoch 63/150
46/46 [==============================] - 0s 897us/step - loss: 0.4538 - accuracy: 0.5351 - mae: 0.4538 - pearson_correlation: 0.0560 - euclidean_distance: 0.6971
Epoch 64/150
46/46 [==============================] - 0s 896us/step - loss: 0.4504 - accuracy: 0.5311 - mae: 0.4504 - pearson_correlation: 0.0502 - euclidean_distance: 0.6925
Epoch 65/150
46/46 [==============================] - 0s 893us/step - loss: 0.4472 - accuracy: 0.5218 - mae: 0.4472 - pearson_correlation: 0.0473 - euclidean_distance: 0.6884
Epoch 66/150
46/46 [==============================] - 0s 892us/step - loss: 0.4449 - accuracy: 0.5276 - mae: 0.4449 - pearson_correlation: 0.0455 - euclidean_distance: 0.6851
Epoch 67/150
46/46 [==============================] - 0s 895us/step - loss: 0.4422 - accuracy: 0.5337 - mae: 0.4422 - pearson_correlation: 0.0424 - euclidean_distance: 0.6820
Epoch 68/150
46/46 [==============================] - 0s 886us/step - loss: 0.4387 - accuracy: 0.5187 - mae: 0.4387 - pearson_correlation: 0.0363 - euclidean_distance: 0.6778
Epoch 69/150
46/46 [==============================] - 0s 883us/step - loss: 0.4362 - accuracy: 0.5262 - mae: 0.4362 - pearson_correlation: 0.0351 - euclidean_distance: 0.6741
Epoch 70/150
46/46 [==============================] - 0s 892us/step - loss: 0.4326 - accuracy: 0.5174 - mae: 0.4326 - pearson_correlation: 0.0367 - euclidean_distance: 0.6696
Epoch 71/150
46/46 [==============================] - 0s 895us/step - loss: 0.4286 - accuracy: 0.5112 - mae: 0.4286 - pearson_correlation: 0.0221 - euclidean_distance: 0.6649
Epoch 72/150
46/46 [==============================] - 0s 890us/step - loss: 0.4261 - accuracy: 0.5046 - mae: 0.4261 - pearson_correlation: 0.0275 - euclidean_distance: 0.6615
Epoch 73/150
46/46 [==============================] - 0s 892us/step - loss: 0.4233 - accuracy: 0.5029 - mae: 0.4233 - pearson_correlation: 0.0219 - euclidean_distance: 0.6584
Epoch 74/150
46/46 [==============================] - 0s 889us/step - loss: 0.4186 - accuracy: 0.5073 - mae: 0.4186 - pearson_correlation: 0.0226 - euclidean_distance: 0.6525
Epoch 75/150
46/46 [==============================] - 0s 897us/step - loss: 0.4159 - accuracy: 0.4932 - mae: 0.4159 - pearson_correlation: 0.0147 - euclidean_distance: 0.6488
Epoch 76/150
46/46 [==============================] - 0s 891us/step - loss: 0.4147 - accuracy: 0.4932 - mae: 0.4147 - pearson_correlation: 0.0110 - euclidean_distance: 0.6471
Epoch 77/150
46/46 [==============================] - 0s 891us/step - loss: 0.4104 - accuracy: 0.4888 - mae: 0.4104 - pearson_correlation: 0.0100 - euclidean_distance: 0.6417
Epoch 78/150
46/46 [==============================] - 0s 892us/step - loss: 0.4073 - accuracy: 0.4883 - mae: 0.4073 - pearson_correlation: 0.0064 - euclidean_distance: 0.6380
Epoch 79/150
46/46 [==============================] - 0s 892us/step - loss: 0.4042 - accuracy: 0.4839 - mae: 0.4042 - pearson_correlation: 0.0019 - euclidean_distance: 0.6338
Epoch 80/150
46/46 [==============================] - 0s 890us/step - loss: 0.4003 - accuracy: 0.4724 - mae: 0.4003 - pearson_correlation: -0.0076 - euclidean_distance: 0.6297
Epoch 81/150
46/46 [==============================] - 0s 889us/step - loss: 0.3988 - accuracy: 0.4773 - mae: 0.3988 - pearson_correlation: -0.0053 - euclidean_distance: 0.6272
Epoch 82/150
46/46 [==============================] - 0s 894us/step - loss: 0.3947 - accuracy: 0.4720 - mae: 0.3947 - pearson_correlation: -0.0061 - euclidean_distance: 0.6219
Epoch 83/150
46/46 [==============================] - 0s 884us/step - loss: 0.3911 - accuracy: 0.4645 - mae: 0.3911 - pearson_correlation: -0.0120 - euclidean_distance: 0.6174
Epoch 84/150
46/46 [==============================] - 0s 891us/step - loss: 0.3890 - accuracy: 0.4623 - mae: 0.3890 - pearson_correlation: -0.0163 - euclidean_distance: 0.6144
Epoch 85/150
46/46 [==============================] - 0s 889us/step - loss: 0.3870 - accuracy: 0.4592 - mae: 0.3870 - pearson_correlation: -0.0186 - euclidean_distance: 0.6115
Epoch 86/150
46/46 [==============================] - 0s 894us/step - loss: 0.3832 - accuracy: 0.4543 - mae: 0.3832 - pearson_correlation: -0.0116 - euclidean_distance: 0.6066
Epoch 87/150
46/46 [==============================] - 0s 894us/step - loss: 0.3808 - accuracy: 0.4561 - mae: 0.3808 - pearson_correlation: -0.0170 - euclidean_distance: 0.6031
Epoch 88/150
46/46 [==============================] - 0s 893us/step - loss: 0.3778 - accuracy: 0.4482 - mae: 0.3778 - pearson_correlation: -0.0209 - euclidean_distance: 0.5993
Epoch 89/150
46/46 [==============================] - 0s 893us/step - loss: 0.3756 - accuracy: 0.4504 - mae: 0.3756 - pearson_correlation: -0.0212 - euclidean_distance: 0.5964
Epoch 90/150
46/46 [==============================] - 0s 894us/step - loss: 0.3726 - accuracy: 0.4636 - mae: 0.3726 - pearson_correlation: -0.0256 - euclidean_distance: 0.5921
Epoch 91/150
46/46 [==============================] - 0s 893us/step - loss: 0.3700 - accuracy: 0.4508 - mae: 0.3700 - pearson_correlation: -0.0235 - euclidean_distance: 0.5885
Epoch 92/150
46/46 [==============================] - 0s 888us/step - loss: 0.3669 - accuracy: 0.4473 - mae: 0.3669 - pearson_correlation: -0.0250 - euclidean_distance: 0.5840
Epoch 93/150
46/46 [==============================] - 0s 888us/step - loss: 0.3646 - accuracy: 0.4592 - mae: 0.3646 - pearson_correlation: -0.0257 - euclidean_distance: 0.5808
Epoch 94/150
46/46 [==============================] - 0s 890us/step - loss: 0.3613 - accuracy: 0.4455 - mae: 0.3613 - pearson_correlation: -0.0305 - euclidean_distance: 0.5768
Epoch 95/150
46/46 [==============================] - 0s 891us/step - loss: 0.3587 - accuracy: 0.4627 - mae: 0.3587 - pearson_correlation: -0.0221 - euclidean_distance: 0.5726
Epoch 96/150
46/46 [==============================] - 0s 887us/step - loss: 0.3566 - accuracy: 0.4521 - mae: 0.3566 - pearson_correlation: -0.0200 - euclidean_distance: 0.5692
Epoch 97/150
46/46 [==============================] - 0s 890us/step - loss: 0.3545 - accuracy: 0.4636 - mae: 0.3545 - pearson_correlation: -0.0163 - euclidean_distance: 0.5662
Epoch 98/150
46/46 [==============================] - 0s 889us/step - loss: 0.3517 - accuracy: 0.4495 - mae: 0.3517 - pearson_correlation: -0.0230 - euclidean_distance: 0.5626
Epoch 99/150
46/46 [==============================] - 0s 896us/step - loss: 0.3497 - accuracy: 0.4601 - mae: 0.3497 - pearson_correlation: -0.0180 - euclidean_distance: 0.5590
Epoch 100/150
46/46 [==============================] - 0s 880us/step - loss: 0.3465 - accuracy: 0.4592 - mae: 0.3465 - pearson_correlation: -0.0279 - euclidean_distance: 0.5549
Epoch 101/150
46/46 [==============================] - 0s 885us/step - loss: 0.3447 - accuracy: 0.4632 - mae: 0.3447 - pearson_correlation: -0.0164 - euclidean_distance: 0.5513
Epoch 102/150
46/46 [==============================] - 0s 888us/step - loss: 0.3417 - accuracy: 0.4579 - mae: 0.3417 - pearson_correlation: -0.0190 - euclidean_distance: 0.5476
Epoch 103/150
46/46 [==============================] - 0s 887us/step - loss: 0.3394 - accuracy: 0.4618 - mae: 0.3394 - pearson_correlation: -0.0144 - euclidean_distance: 0.5443
Epoch 104/150
46/46 [==============================] - 0s 888us/step - loss: 0.3370 - accuracy: 0.4614 - mae: 0.3370 - pearson_correlation: -0.0132 - euclidean_distance: 0.5408
Epoch 105/150
46/46 [==============================] - 0s 884us/step - loss: 0.3348 - accuracy: 0.4711 - mae: 0.3348 - pearson_correlation: -0.0104 - euclidean_distance: 0.5370
Epoch 106/150
46/46 [==============================] - 0s 888us/step - loss: 0.3321 - accuracy: 0.4680 - mae: 0.3321 - pearson_correlation: -0.0148 - euclidean_distance: 0.5333
Epoch 107/150
46/46 [==============================] - 0s 886us/step - loss: 0.3298 - accuracy: 0.4685 - mae: 0.3298 - pearson_correlation: -0.0135 - euclidean_distance: 0.5305
Epoch 108/150
46/46 [==============================] - 0s 888us/step - loss: 0.3280 - accuracy: 0.4738 - mae: 0.3280 - pearson_correlation: -0.0050 - euclidean_distance: 0.5264
Epoch 109/150
46/46 [==============================] - 0s 885us/step - loss: 0.3254 - accuracy: 0.4746 - mae: 0.3254 - pearson_correlation: -0.0057 - euclidean_distance: 0.5232
Epoch 110/150
46/46 [==============================] - 0s 892us/step - loss: 0.3234 - accuracy: 0.4720 - mae: 0.3234 - pearson_correlation: -0.0071 - euclidean_distance: 0.5198
Epoch 111/150
46/46 [==============================] - 0s 898us/step - loss: 0.3203 - accuracy: 0.4839 - mae: 0.3203 - pearson_correlation: -0.0024 - euclidean_distance: 0.5155
Epoch 112/150
46/46 [==============================] - 0s 892us/step - loss: 0.3177 - accuracy: 0.4826 - mae: 0.3177 - pearson_correlation: 0.0057 - euclidean_distance: 0.5113
Epoch 113/150
46/46 [==============================] - 0s 889us/step - loss: 0.3159 - accuracy: 0.4764 - mae: 0.3159 - pearson_correlation: 0.0025 - euclidean_distance: 0.5085
Epoch 114/150
46/46 [==============================] - 0s 952us/step - loss: 0.3130 - accuracy: 0.4790 - mae: 0.3130 - pearson_correlation: 0.0130 - euclidean_distance: 0.5044
Epoch 115/150
46/46 [==============================] - 0s 901us/step - loss: 0.3123 - accuracy: 0.4786 - mae: 0.3123 - pearson_correlation: 0.0071 - euclidean_distance: 0.5033
Epoch 116/150
46/46 [==============================] - 0s 880us/step - loss: 0.3091 - accuracy: 0.4958 - mae: 0.3091 - pearson_correlation: 0.0085 - euclidean_distance: 0.4988
Epoch 117/150
46/46 [==============================] - 0s 884us/step - loss: 0.3063 - accuracy: 0.4883 - mae: 0.3063 - pearson_correlation: 0.0186 - euclidean_distance: 0.4944
Epoch 118/150
46/46 [==============================] - 0s 894us/step - loss: 0.3028 - accuracy: 0.5002 - mae: 0.3028 - pearson_correlation: 0.0126 - euclidean_distance: 0.4902
Epoch 119/150
46/46 [==============================] - 0s 889us/step - loss: 0.3018 - accuracy: 0.5042 - mae: 0.3018 - pearson_correlation: 0.0218 - euclidean_distance: 0.4873
Epoch 120/150
46/46 [==============================] - 0s 893us/step - loss: 0.2996 - accuracy: 0.5095 - mae: 0.2996 - pearson_correlation: 0.0315 - euclidean_distance: 0.4844
Epoch 121/150
46/46 [==============================] - 0s 893us/step - loss: 0.2972 - accuracy: 0.5157 - mae: 0.2972 - pearson_correlation: 0.0270 - euclidean_distance: 0.4798
Epoch 122/150
46/46 [==============================] - 0s 887us/step - loss: 0.2961 - accuracy: 0.5174 - mae: 0.2961 - pearson_correlation: 0.0323 - euclidean_distance: 0.4784
Epoch 123/150
46/46 [==============================] - 0s 892us/step - loss: 0.2923 - accuracy: 0.5077 - mae: 0.2923 - pearson_correlation: 0.0339 - euclidean_distance: 0.4734
Epoch 124/150
46/46 [==============================] - 0s 889us/step - loss: 0.2908 - accuracy: 0.5262 - mae: 0.2908 - pearson_correlation: 0.0393 - euclidean_distance: 0.4702
Epoch 125/150
46/46 [==============================] - 0s 893us/step - loss: 0.2888 - accuracy: 0.5307 - mae: 0.2888 - pearson_correlation: 0.0393 - euclidean_distance: 0.4667
Epoch 126/150
46/46 [==============================] - 0s 887us/step - loss: 0.2859 - accuracy: 0.5457 - mae: 0.2859 - pearson_correlation: 0.0518 - euclidean_distance: 0.4627
Epoch 127/150
46/46 [==============================] - 0s 884us/step - loss: 0.2841 - accuracy: 0.5457 - mae: 0.2841 - pearson_correlation: 0.0575 - euclidean_distance: 0.4597
Epoch 128/150
46/46 [==============================] - 0s 891us/step - loss: 0.2823 - accuracy: 0.5465 - mae: 0.2823 - pearson_correlation: 0.0599 - euclidean_distance: 0.4572
Epoch 129/150
46/46 [==============================] - 0s 884us/step - loss: 0.2797 - accuracy: 0.5567 - mae: 0.2797 - pearson_correlation: 0.0714 - euclidean_distance: 0.4526
Epoch 130/150
46/46 [==============================] - 0s 890us/step - loss: 0.2777 - accuracy: 0.5593 - mae: 0.2777 - pearson_correlation: 0.0745 - euclidean_distance: 0.4488
Epoch 131/150
46/46 [==============================] - 0s 893us/step - loss: 0.2756 - accuracy: 0.5677 - mae: 0.2756 - pearson_correlation: 0.0803 - euclidean_distance: 0.4458
Epoch 132/150
46/46 [==============================] - 0s 884us/step - loss: 0.2743 - accuracy: 0.5664 - mae: 0.2743 - pearson_correlation: 0.0766 - euclidean_distance: 0.4440
Epoch 133/150
46/46 [==============================] - 0s 883us/step - loss: 0.2708 - accuracy: 0.5792 - mae: 0.2708 - pearson_correlation: 0.0825 - euclidean_distance: 0.4386
Epoch 134/150
46/46 [==============================] - 0s 887us/step - loss: 0.2694 - accuracy: 0.5765 - mae: 0.2694 - pearson_correlation: 0.0855 - euclidean_distance: 0.4363
Epoch 135/150
46/46 [==============================] - 0s 881us/step - loss: 0.2661 - accuracy: 0.5973 - mae: 0.2661 - pearson_correlation: 0.1022 - euclidean_distance: 0.4312
Epoch 136/150
46/46 [==============================] - 0s 888us/step - loss: 0.2647 - accuracy: 0.5924 - mae: 0.2647 - pearson_correlation: 0.1009 - euclidean_distance: 0.4288
Epoch 137/150
46/46 [==============================] - 0s 887us/step - loss: 0.2633 - accuracy: 0.5898 - mae: 0.2633 - pearson_correlation: 0.1072 - euclidean_distance: 0.4264
Epoch 138/150
46/46 [==============================] - 0s 890us/step - loss: 0.2607 - accuracy: 0.6004 - mae: 0.2607 - pearson_correlation: 0.1163 - euclidean_distance: 0.4227
Epoch 139/150
46/46 [==============================] - 0s 886us/step - loss: 0.2590 - accuracy: 0.6026 - mae: 0.2590 - pearson_correlation: 0.1187 - euclidean_distance: 0.4195
Epoch 140/150
46/46 [==============================] - 0s 889us/step - loss: 0.2556 - accuracy: 0.6101 - mae: 0.2556 - pearson_correlation: 0.1254 - euclidean_distance: 0.4147
Epoch 141/150
46/46 [==============================] - 0s 886us/step - loss: 0.2546 - accuracy: 0.6079 - mae: 0.2546 - pearson_correlation: 0.1335 - euclidean_distance: 0.4127
Epoch 142/150
46/46 [==============================] - 0s 968us/step - loss: 0.2522 - accuracy: 0.6140 - mae: 0.2522 - pearson_correlation: 0.1390 - euclidean_distance: 0.4089
Epoch 143/150
46/46 [==============================] - 0s 891us/step - loss: 0.2505 - accuracy: 0.6167 - mae: 0.2505 - pearson_correlation: 0.1438 - euclidean_distance: 0.4064
Epoch 144/150
46/46 [==============================] - 0s 889us/step - loss: 0.2492 - accuracy: 0.6145 - mae: 0.2492 - pearson_correlation: 0.1448 - euclidean_distance: 0.4028
Epoch 145/150
46/46 [==============================] - 0s 881us/step - loss: 0.2455 - accuracy: 0.6330 - mae: 0.2455 - pearson_correlation: 0.1555 - euclidean_distance: 0.3985
Epoch 146/150
46/46 [==============================] - 0s 889us/step - loss: 0.2444 - accuracy: 0.6281 - mae: 0.2444 - pearson_correlation: 0.1627 - euclidean_distance: 0.3956
Epoch 147/150
46/46 [==============================] - 0s 890us/step - loss: 0.2439 - accuracy: 0.6418 - mae: 0.2439 - pearson_correlation: 0.1612 - euclidean_distance: 0.3944
Epoch 148/150
46/46 [==============================] - 0s 882us/step - loss: 0.2412 - accuracy: 0.6383 - mae: 0.2412 - pearson_correlation: 0.1744 - euclidean_distance: 0.3912
Epoch 149/150
46/46 [==============================] - 0s 887us/step - loss: 0.2387 - accuracy: 0.6387 - mae: 0.2387 - pearson_correlation: 0.1761 - euclidean_distance: 0.3871
Epoch 150/150
46/46 [==============================] - 0s 905us/step - loss: 0.2356 - accuracy: 0.6449 - mae: 0.2356 - pearson_correlation: 0.1850 - euclidean_distance: 0.3824
23/23 [==============================] - 0s 546us/step
Epoch 1/150
46/46 [==============================] - 1s 888us/step - loss: 0.8317 - accuracy: 0.0551 - mae: 0.8317 - pearson_correlation: -0.6627 - euclidean_distance: 1.3402
Epoch 2/150
46/46 [==============================] - 0s 860us/step - loss: 0.8283 - accuracy: 0.0538 - mae: 0.8283 - pearson_correlation: -0.6609 - euclidean_distance: 1.3351
Epoch 3/150
46/46 [==============================] - 0s 880us/step - loss: 0.8224 - accuracy: 0.0547 - mae: 0.8224 - pearson_correlation: -0.6653 - euclidean_distance: 1.3274
Epoch 4/150
46/46 [==============================] - 0s 894us/step - loss: 0.8188 - accuracy: 0.0556 - mae: 0.8188 - pearson_correlation: -0.6672 - euclidean_distance: 1.3220
Epoch 5/150
46/46 [==============================] - 0s 889us/step - loss: 0.8141 - accuracy: 0.0556 - mae: 0.8141 - pearson_correlation: -0.6695 - euclidean_distance: 1.3155
Epoch 6/150
46/46 [==============================] - 0s 890us/step - loss: 0.8109 - accuracy: 0.0556 - mae: 0.8109 - pearson_correlation: -0.6745 - euclidean_distance: 1.3115
Epoch 7/150
46/46 [==============================] - 0s 892us/step - loss: 0.8070 - accuracy: 0.0556 - mae: 0.8070 - pearson_correlation: -0.6639 - euclidean_distance: 1.3050
Epoch 8/150
46/46 [==============================] - 0s 890us/step - loss: 0.8027 - accuracy: 0.0542 - mae: 0.8027 - pearson_correlation: -0.6723 - euclidean_distance: 1.3000
Epoch 9/150
46/46 [==============================] - 0s 900us/step - loss: 0.7975 - accuracy: 0.0564 - mae: 0.7975 - pearson_correlation: -0.6709 - euclidean_distance: 1.2920
Epoch 10/150
46/46 [==============================] - 0s 897us/step - loss: 0.7934 - accuracy: 0.0551 - mae: 0.7934 - pearson_correlation: -0.6744 - euclidean_distance: 1.2869
Epoch 11/150
46/46 [==============================] - 0s 893us/step - loss: 0.7889 - accuracy: 0.0578 - mae: 0.7889 - pearson_correlation: -0.6747 - euclidean_distance: 1.2801
Epoch 12/150
46/46 [==============================] - 0s 892us/step - loss: 0.7851 - accuracy: 0.0582 - mae: 0.7851 - pearson_correlation: -0.6760 - euclidean_distance: 1.2746
Epoch 13/150
46/46 [==============================] - 0s 887us/step - loss: 0.7807 - accuracy: 0.0542 - mae: 0.7807 - pearson_correlation: -0.6775 - euclidean_distance: 1.2689
Epoch 14/150
46/46 [==============================] - 0s 895us/step - loss: 0.7756 - accuracy: 0.0547 - mae: 0.7756 - pearson_correlation: -0.6779 - euclidean_distance: 1.2614
Epoch 15/150
46/46 [==============================] - 0s 888us/step - loss: 0.7721 - accuracy: 0.0608 - mae: 0.7721 - pearson_correlation: -0.6726 - euclidean_distance: 1.2563
Epoch 16/150
46/46 [==============================] - 0s 893us/step - loss: 0.7680 - accuracy: 0.0569 - mae: 0.7680 - pearson_correlation: -0.6806 - euclidean_distance: 1.2509
Epoch 17/150
46/46 [==============================] - 0s 890us/step - loss: 0.7627 - accuracy: 0.0551 - mae: 0.7627 - pearson_correlation: -0.6842 - euclidean_distance: 1.2441
Epoch 18/150
46/46 [==============================] - 0s 894us/step - loss: 0.7585 - accuracy: 0.0564 - mae: 0.7585 - pearson_correlation: -0.6780 - euclidean_distance: 1.2376
Epoch 19/150
46/46 [==============================] - 0s 894us/step - loss: 0.7545 - accuracy: 0.0542 - mae: 0.7545 - pearson_correlation: -0.6847 - euclidean_distance: 1.2325
Epoch 20/150
46/46 [==============================] - 0s 884us/step - loss: 0.7509 - accuracy: 0.0551 - mae: 0.7509 - pearson_correlation: -0.6853 - euclidean_distance: 1.2277
Epoch 21/150
46/46 [==============================] - 0s 896us/step - loss: 0.7462 - accuracy: 0.0529 - mae: 0.7462 - pearson_correlation: -0.6852 - euclidean_distance: 1.2208
Epoch 22/150
46/46 [==============================] - 0s 890us/step - loss: 0.7431 - accuracy: 0.0551 - mae: 0.7431 - pearson_correlation: -0.6831 - euclidean_distance: 1.2163
Epoch 23/150
46/46 [==============================] - 0s 896us/step - loss: 0.7383 - accuracy: 0.0564 - mae: 0.7383 - pearson_correlation: -0.6797 - euclidean_distance: 1.2097
Epoch 24/150
46/46 [==============================] - 0s 893us/step - loss: 0.7333 - accuracy: 0.0560 - mae: 0.7333 - pearson_correlation: -0.6835 - euclidean_distance: 1.2031
Epoch 25/150
46/46 [==============================] - 0s 890us/step - loss: 0.7303 - accuracy: 0.0547 - mae: 0.7303 - pearson_correlation: -0.6878 - euclidean_distance: 1.1989
Epoch 26/150
46/46 [==============================] - 0s 888us/step - loss: 0.7259 - accuracy: 0.0542 - mae: 0.7259 - pearson_correlation: -0.6885 - euclidean_distance: 1.1929
Epoch 27/150
46/46 [==============================] - 0s 896us/step - loss: 0.7217 - accuracy: 0.0538 - mae: 0.7217 - pearson_correlation: -0.6903 - euclidean_distance: 1.1874
Epoch 28/150
46/46 [==============================] - 0s 892us/step - loss: 0.7173 - accuracy: 0.0542 - mae: 0.7173 - pearson_correlation: -0.6893 - euclidean_distance: 1.1810
Epoch 29/150
46/46 [==============================] - 0s 892us/step - loss: 0.7141 - accuracy: 0.0525 - mae: 0.7141 - pearson_correlation: -0.6893 - euclidean_distance: 1.1771
Epoch 30/150
46/46 [==============================] - 0s 891us/step - loss: 0.7094 - accuracy: 0.0534 - mae: 0.7094 - pearson_correlation: -0.6932 - euclidean_distance: 1.1708
Epoch 31/150
46/46 [==============================] - 0s 893us/step - loss: 0.7062 - accuracy: 0.0556 - mae: 0.7062 - pearson_correlation: -0.6932 - euclidean_distance: 1.1662
Epoch 32/150
46/46 [==============================] - 0s 890us/step - loss: 0.7016 - accuracy: 0.0538 - mae: 0.7016 - pearson_correlation: -0.6920 - euclidean_distance: 1.1600
Epoch 33/150
46/46 [==============================] - 0s 891us/step - loss: 0.6980 - accuracy: 0.0547 - mae: 0.6980 - pearson_correlation: -0.6901 - euclidean_distance: 1.1555
Epoch 34/150
46/46 [==============================] - 0s 886us/step - loss: 0.6938 - accuracy: 0.0525 - mae: 0.6938 - pearson_correlation: -0.6953 - euclidean_distance: 1.1490
Epoch 35/150
46/46 [==============================] - 0s 890us/step - loss: 0.6901 - accuracy: 0.0560 - mae: 0.6901 - pearson_correlation: -0.6956 - euclidean_distance: 1.1448
Epoch 36/150
46/46 [==============================] - 0s 900us/step - loss: 0.6857 - accuracy: 0.0525 - mae: 0.6857 - pearson_correlation: -0.6929 - euclidean_distance: 1.1380
Epoch 37/150
46/46 [==============================] - 0s 886us/step - loss: 0.6821 - accuracy: 0.0507 - mae: 0.6821 - pearson_correlation: -0.6937 - euclidean_distance: 1.1336
Epoch 38/150
46/46 [==============================] - 0s 893us/step - loss: 0.6785 - accuracy: 0.0498 - mae: 0.6785 - pearson_correlation: -0.6971 - euclidean_distance: 1.1285
Epoch 39/150
46/46 [==============================] - 0s 892us/step - loss: 0.6750 - accuracy: 0.0525 - mae: 0.6750 - pearson_correlation: -0.6993 - euclidean_distance: 1.1239
Epoch 40/150
46/46 [==============================] - 0s 896us/step - loss: 0.6714 - accuracy: 0.0547 - mae: 0.6714 - pearson_correlation: -0.6956 - euclidean_distance: 1.1186
Epoch 41/150
46/46 [==============================] - 0s 895us/step - loss: 0.6676 - accuracy: 0.0595 - mae: 0.6676 - pearson_correlation: -0.6968 - euclidean_distance: 1.1129
Epoch 42/150
46/46 [==============================] - 0s 896us/step - loss: 0.6643 - accuracy: 0.0516 - mae: 0.6643 - pearson_correlation: -0.6952 - euclidean_distance: 1.1088
Epoch 43/150
46/46 [==============================] - 0s 887us/step - loss: 0.6608 - accuracy: 0.0534 - mae: 0.6608 - pearson_correlation: -0.7000 - euclidean_distance: 1.1046
Epoch 44/150
46/46 [==============================] - 0s 889us/step - loss: 0.6572 - accuracy: 0.0498 - mae: 0.6572 - pearson_correlation: -0.7007 - euclidean_distance: 1.1000
Epoch 45/150
46/46 [==============================] - 0s 893us/step - loss: 0.6536 - accuracy: 0.0516 - mae: 0.6536 - pearson_correlation: -0.7022 - euclidean_distance: 1.0945
Epoch 46/150
46/46 [==============================] - 0s 886us/step - loss: 0.6496 - accuracy: 0.0525 - mae: 0.6496 - pearson_correlation: -0.7036 - euclidean_distance: 1.0891
Epoch 47/150
46/46 [==============================] - 0s 892us/step - loss: 0.6465 - accuracy: 0.0503 - mae: 0.6465 - pearson_correlation: -0.7021 - euclidean_distance: 1.0850
Epoch 48/150
46/46 [==============================] - 0s 891us/step - loss: 0.6434 - accuracy: 0.0516 - mae: 0.6434 - pearson_correlation: -0.7057 - euclidean_distance: 1.0802
Epoch 49/150
46/46 [==============================] - 0s 889us/step - loss: 0.6403 - accuracy: 0.0538 - mae: 0.6403 - pearson_correlation: -0.7030 - euclidean_distance: 1.0760
Epoch 50/150
46/46 [==============================] - 0s 895us/step - loss: 0.6370 - accuracy: 0.0516 - mae: 0.6370 - pearson_correlation: -0.7043 - euclidean_distance: 1.0708
Epoch 51/150
46/46 [==============================] - 0s 887us/step - loss: 0.6336 - accuracy: 0.0520 - mae: 0.6336 - pearson_correlation: -0.7061 - euclidean_distance: 1.0669
Epoch 52/150
46/46 [==============================] - 0s 897us/step - loss: 0.6308 - accuracy: 0.0494 - mae: 0.6308 - pearson_correlation: -0.7037 - euclidean_distance: 1.0626
Epoch 53/150
46/46 [==============================] - 0s 884us/step - loss: 0.6272 - accuracy: 0.0511 - mae: 0.6272 - pearson_correlation: -0.7088 - euclidean_distance: 1.0572
Epoch 54/150
46/46 [==============================] - 0s 889us/step - loss: 0.6241 - accuracy: 0.0494 - mae: 0.6241 - pearson_correlation: -0.7065 - euclidean_distance: 1.0528
Epoch 55/150
46/46 [==============================] - 0s 894us/step - loss: 0.6211 - accuracy: 0.0485 - mae: 0.6211 - pearson_correlation: -0.7079 - euclidean_distance: 1.0481
Epoch 56/150
46/46 [==============================] - 0s 890us/step - loss: 0.6178 - accuracy: 0.0516 - mae: 0.6178 - pearson_correlation: -0.7105 - euclidean_distance: 1.0435
Epoch 57/150
46/46 [==============================] - 0s 892us/step - loss: 0.6146 - accuracy: 0.0498 - mae: 0.6146 - pearson_correlation: -0.7082 - euclidean_distance: 1.0394
Epoch 58/150
46/46 [==============================] - 0s 890us/step - loss: 0.6116 - accuracy: 0.0485 - mae: 0.6116 - pearson_correlation: -0.7081 - euclidean_distance: 1.0354
Epoch 59/150
46/46 [==============================] - 0s 894us/step - loss: 0.6084 - accuracy: 0.0498 - mae: 0.6084 - pearson_correlation: -0.7103 - euclidean_distance: 1.0307
Epoch 60/150
46/46 [==============================] - 0s 889us/step - loss: 0.6054 - accuracy: 0.0498 - mae: 0.6054 - pearson_correlation: -0.7112 - euclidean_distance: 1.0260
Epoch 61/150
46/46 [==============================] - 0s 889us/step - loss: 0.6025 - accuracy: 0.0498 - mae: 0.6025 - pearson_correlation: -0.7109 - euclidean_distance: 1.0227
Epoch 62/150
46/46 [==============================] - 0s 894us/step - loss: 0.6004 - accuracy: 0.0489 - mae: 0.6004 - pearson_correlation: -0.7164 - euclidean_distance: 1.0184
Epoch 63/150
46/46 [==============================] - 0s 889us/step - loss: 0.5973 - accuracy: 0.0472 - mae: 0.5973 - pearson_correlation: -0.7126 - euclidean_distance: 1.0142
Epoch 64/150
46/46 [==============================] - 0s 904us/step - loss: 0.5940 - accuracy: 0.0494 - mae: 0.5940 - pearson_correlation: -0.7114 - euclidean_distance: 1.0100
Epoch 65/150
46/46 [==============================] - 0s 890us/step - loss: 0.5914 - accuracy: 0.0472 - mae: 0.5914 - pearson_correlation: -0.7125 - euclidean_distance: 1.0056
Epoch 66/150
46/46 [==============================] - 0s 876us/step - loss: 0.5884 - accuracy: 0.0476 - mae: 0.5884 - pearson_correlation: -0.7105 - euclidean_distance: 1.0017
Epoch 67/150
46/46 [==============================] - 0s 877us/step - loss: 0.5855 - accuracy: 0.0481 - mae: 0.5855 - pearson_correlation: -0.7167 - euclidean_distance: 0.9981
Epoch 68/150
46/46 [==============================] - 0s 875us/step - loss: 0.5829 - accuracy: 0.0481 - mae: 0.5829 - pearson_correlation: -0.7146 - euclidean_distance: 0.9938
Epoch 69/150
46/46 [==============================] - 0s 886us/step - loss: 0.5805 - accuracy: 0.0503 - mae: 0.5805 - pearson_correlation: -0.7145 - euclidean_distance: 0.9898
Epoch 70/150
46/46 [==============================] - 0s 887us/step - loss: 0.5778 - accuracy: 0.0476 - mae: 0.5778 - pearson_correlation: -0.7151 - euclidean_distance: 0.9862
Epoch 71/150
46/46 [==============================] - 0s 889us/step - loss: 0.5754 - accuracy: 0.0459 - mae: 0.5754 - pearson_correlation: -0.7175 - euclidean_distance: 0.9830
Epoch 72/150
46/46 [==============================] - 0s 887us/step - loss: 0.5732 - accuracy: 0.0507 - mae: 0.5732 - pearson_correlation: -0.7203 - euclidean_distance: 0.9799
Epoch 73/150
46/46 [==============================] - 0s 894us/step - loss: 0.5704 - accuracy: 0.0459 - mae: 0.5704 - pearson_correlation: -0.7205 - euclidean_distance: 0.9758
Epoch 74/150
46/46 [==============================] - 0s 890us/step - loss: 0.5678 - accuracy: 0.0494 - mae: 0.5678 - pearson_correlation: -0.7203 - euclidean_distance: 0.9717
Epoch 75/150
46/46 [==============================] - 0s 890us/step - loss: 0.5648 - accuracy: 0.0459 - mae: 0.5648 - pearson_correlation: -0.7196 - euclidean_distance: 0.9676
Epoch 76/150
46/46 [==============================] - 0s 887us/step - loss: 0.5626 - accuracy: 0.0454 - mae: 0.5626 - pearson_correlation: -0.7226 - euclidean_distance: 0.9648
Epoch 77/150
46/46 [==============================] - 0s 894us/step - loss: 0.5599 - accuracy: 0.0485 - mae: 0.5599 - pearson_correlation: -0.7250 - euclidean_distance: 0.9609
Epoch 78/150
46/46 [==============================] - 0s 891us/step - loss: 0.5584 - accuracy: 0.0467 - mae: 0.5584 - pearson_correlation: -0.7216 - euclidean_distance: 0.9574
Epoch 79/150
46/46 [==============================] - 0s 886us/step - loss: 0.5553 - accuracy: 0.0481 - mae: 0.5553 - pearson_correlation: -0.7199 - euclidean_distance: 0.9543
Epoch 80/150
46/46 [==============================] - 0s 888us/step - loss: 0.5528 - accuracy: 0.0454 - mae: 0.5528 - pearson_correlation: -0.7260 - euclidean_distance: 0.9506
Epoch 81/150
46/46 [==============================] - 0s 884us/step - loss: 0.5510 - accuracy: 0.0441 - mae: 0.5510 - pearson_correlation: -0.7226 - euclidean_distance: 0.9480
Epoch 82/150
46/46 [==============================] - 0s 890us/step - loss: 0.5483 - accuracy: 0.0445 - mae: 0.5483 - pearson_correlation: -0.7271 - euclidean_distance: 0.9441
Epoch 83/150
46/46 [==============================] - 0s 892us/step - loss: 0.5457 - accuracy: 0.0463 - mae: 0.5457 - pearson_correlation: -0.7254 - euclidean_distance: 0.9399
Epoch 84/150
46/46 [==============================] - 0s 894us/step - loss: 0.5436 - accuracy: 0.0467 - mae: 0.5436 - pearson_correlation: -0.7262 - euclidean_distance: 0.9373
Epoch 85/150
46/46 [==============================] - 0s 887us/step - loss: 0.5423 - accuracy: 0.0459 - mae: 0.5423 - pearson_correlation: -0.7227 - euclidean_distance: 0.9341
Epoch 86/150
46/46 [==============================] - 0s 892us/step - loss: 0.5394 - accuracy: 0.0459 - mae: 0.5394 - pearson_correlation: -0.7234 - euclidean_distance: 0.9307
Epoch 87/150
46/46 [==============================] - 0s 891us/step - loss: 0.5367 - accuracy: 0.0472 - mae: 0.5367 - pearson_correlation: -0.7265 - euclidean_distance: 0.9275
Epoch 88/150
46/46 [==============================] - 0s 894us/step - loss: 0.5350 - accuracy: 0.0450 - mae: 0.5350 - pearson_correlation: -0.7274 - euclidean_distance: 0.9240
Epoch 89/150
46/46 [==============================] - 0s 893us/step - loss: 0.5321 - accuracy: 0.0450 - mae: 0.5321 - pearson_correlation: -0.7237 - euclidean_distance: 0.9209
Epoch 90/150
46/46 [==============================] - 0s 894us/step - loss: 0.5300 - accuracy: 0.0454 - mae: 0.5300 - pearson_correlation: -0.7300 - euclidean_distance: 0.9175
Epoch 91/150
46/46 [==============================] - 0s 886us/step - loss: 0.5277 - accuracy: 0.0459 - mae: 0.5277 - pearson_correlation: -0.7312 - euclidean_distance: 0.9132
Epoch 92/150
46/46 [==============================] - 0s 886us/step - loss: 0.5256 - accuracy: 0.0463 - mae: 0.5256 - pearson_correlation: -0.7249 - euclidean_distance: 0.9111
Epoch 93/150
46/46 [==============================] - 0s 894us/step - loss: 0.5234 - accuracy: 0.0450 - mae: 0.5234 - pearson_correlation: -0.7287 - euclidean_distance: 0.9082
Epoch 94/150
46/46 [==============================] - 0s 892us/step - loss: 0.5219 - accuracy: 0.0454 - mae: 0.5219 - pearson_correlation: -0.7216 - euclidean_distance: 0.9054
Epoch 95/150
46/46 [==============================] - 0s 895us/step - loss: 0.5190 - accuracy: 0.0454 - mae: 0.5190 - pearson_correlation: -0.7283 - euclidean_distance: 0.9012
Epoch 96/150
46/46 [==============================] - 0s 895us/step - loss: 0.5167 - accuracy: 0.0445 - mae: 0.5167 - pearson_correlation: -0.7278 - euclidean_distance: 0.8977
Epoch 97/150
46/46 [==============================] - 0s 888us/step - loss: 0.5141 - accuracy: 0.0476 - mae: 0.5141 - pearson_correlation: -0.7311 - euclidean_distance: 0.8948
Epoch 98/150
46/46 [==============================] - 0s 882us/step - loss: 0.5128 - accuracy: 0.0459 - mae: 0.5128 - pearson_correlation: -0.7317 - euclidean_distance: 0.8914
Epoch 99/150
46/46 [==============================] - 0s 887us/step - loss: 0.5094 - accuracy: 0.0454 - mae: 0.5094 - pearson_correlation: -0.7309 - euclidean_distance: 0.8876
Epoch 100/150
46/46 [==============================] - 0s 889us/step - loss: 0.5083 - accuracy: 0.0454 - mae: 0.5083 - pearson_correlation: -0.7307 - euclidean_distance: 0.8847
Epoch 101/150
46/46 [==============================] - 0s 884us/step - loss: 0.5065 - accuracy: 0.0450 - mae: 0.5065 - pearson_correlation: -0.7305 - euclidean_distance: 0.8822
Epoch 102/150
46/46 [==============================] - 0s 890us/step - loss: 0.5035 - accuracy: 0.0441 - mae: 0.5035 - pearson_correlation: -0.7320 - euclidean_distance: 0.8783
Epoch 103/150
46/46 [==============================] - 0s 884us/step - loss: 0.5011 - accuracy: 0.0459 - mae: 0.5011 - pearson_correlation: -0.7340 - euclidean_distance: 0.8751
Epoch 104/150
46/46 [==============================] - 0s 887us/step - loss: 0.4995 - accuracy: 0.0472 - mae: 0.4995 - pearson_correlation: -0.7284 - euclidean_distance: 0.8723
Epoch 105/150
46/46 [==============================] - 0s 888us/step - loss: 0.4975 - accuracy: 0.0450 - mae: 0.4975 - pearson_correlation: -0.7357 - euclidean_distance: 0.8698
Epoch 106/150
46/46 [==============================] - 0s 894us/step - loss: 0.4956 - accuracy: 0.0459 - mae: 0.4956 - pearson_correlation: -0.7331 - euclidean_distance: 0.8659
Epoch 107/150
46/46 [==============================] - 0s 886us/step - loss: 0.4934 - accuracy: 0.0454 - mae: 0.4934 - pearson_correlation: -0.7347 - euclidean_distance: 0.8627
Epoch 108/150
46/46 [==============================] - 0s 888us/step - loss: 0.4903 - accuracy: 0.0459 - mae: 0.4903 - pearson_correlation: -0.7337 - euclidean_distance: 0.8595
Epoch 109/150
46/46 [==============================] - 0s 889us/step - loss: 0.4894 - accuracy: 0.0454 - mae: 0.4894 - pearson_correlation: -0.7349 - euclidean_distance: 0.8563
Epoch 110/150
46/46 [==============================] - 0s 892us/step - loss: 0.4867 - accuracy: 0.0450 - mae: 0.4867 - pearson_correlation: -0.7387 - euclidean_distance: 0.8534
Epoch 111/150
46/46 [==============================] - 0s 894us/step - loss: 0.4855 - accuracy: 0.0454 - mae: 0.4855 - pearson_correlation: -0.7355 - euclidean_distance: 0.8511
Epoch 112/150
46/46 [==============================] - 0s 887us/step - loss: 0.4835 - accuracy: 0.0445 - mae: 0.4835 - pearson_correlation: -0.7364 - euclidean_distance: 0.8480
Epoch 113/150
46/46 [==============================] - 0s 891us/step - loss: 0.4810 - accuracy: 0.0450 - mae: 0.4810 - pearson_correlation: -0.7352 - euclidean_distance: 0.8446
Epoch 114/150
46/46 [==============================] - 0s 890us/step - loss: 0.4783 - accuracy: 0.0445 - mae: 0.4783 - pearson_correlation: -0.7370 - euclidean_distance: 0.8403
Epoch 115/150
46/46 [==============================] - 0s 892us/step - loss: 0.4767 - accuracy: 0.0445 - mae: 0.4767 - pearson_correlation: -0.7376 - euclidean_distance: 0.8385
Epoch 116/150
46/46 [==============================] - 0s 897us/step - loss: 0.4749 - accuracy: 0.0454 - mae: 0.4749 - pearson_correlation: -0.7378 - euclidean_distance: 0.8353
Epoch 117/150
46/46 [==============================] - 0s 886us/step - loss: 0.4728 - accuracy: 0.0450 - mae: 0.4728 - pearson_correlation: -0.7364 - euclidean_distance: 0.8317
Epoch 118/150
46/46 [==============================] - 0s 891us/step - loss: 0.4712 - accuracy: 0.0450 - mae: 0.4712 - pearson_correlation: -0.7393 - euclidean_distance: 0.8289
Epoch 119/150
46/46 [==============================] - 0s 916us/step - loss: 0.4689 - accuracy: 0.0454 - mae: 0.4689 - pearson_correlation: -0.7388 - euclidean_distance: 0.8258
Epoch 120/150
46/46 [==============================] - 0s 992us/step - loss: 0.4668 - accuracy: 0.0450 - mae: 0.4668 - pearson_correlation: -0.7415 - euclidean_distance: 0.8226
Epoch 121/150
46/46 [==============================] - 0s 1ms/step - loss: 0.4652 - accuracy: 0.0476 - mae: 0.4652 - pearson_correlation: -0.7357 - euclidean_distance: 0.8197
Epoch 122/150
46/46 [==============================] - 0s 987us/step - loss: 0.4623 - accuracy: 0.0459 - mae: 0.4623 - pearson_correlation: -0.7425 - euclidean_distance: 0.8169
Epoch 123/150
46/46 [==============================] - 0s 973us/step - loss: 0.4608 - accuracy: 0.0459 - mae: 0.4608 - pearson_correlation: -0.7347 - euclidean_distance: 0.8132
Epoch 124/150
46/46 [==============================] - 0s 996us/step - loss: 0.4593 - accuracy: 0.0450 - mae: 0.4593 - pearson_correlation: -0.7420 - euclidean_distance: 0.8109
Epoch 125/150
46/46 [==============================] - 0s 1ms/step - loss: 0.4570 - accuracy: 0.0450 - mae: 0.4570 - pearson_correlation: -0.7424 - euclidean_distance: 0.8076
Epoch 126/150
46/46 [==============================] - 0s 1ms/step - loss: 0.4550 - accuracy: 0.0445 - mae: 0.4550 - pearson_correlation: -0.7380 - euclidean_distance: 0.8041
Epoch 127/150
46/46 [==============================] - 0s 1ms/step - loss: 0.4533 - accuracy: 0.0445 - mae: 0.4533 - pearson_correlation: -0.7385 - euclidean_distance: 0.8017
Epoch 128/150
46/46 [==============================] - 0s 982us/step - loss: 0.4514 - accuracy: 0.0441 - mae: 0.4514 - pearson_correlation: -0.7399 - euclidean_distance: 0.7986
Epoch 129/150
46/46 [==============================] - 0s 1ms/step - loss: 0.4487 - accuracy: 0.0445 - mae: 0.4487 - pearson_correlation: -0.7416 - euclidean_distance: 0.7950
Epoch 130/150
46/46 [==============================] - 0s 1ms/step - loss: 0.4474 - accuracy: 0.0441 - mae: 0.4474 - pearson_correlation: -0.7418 - euclidean_distance: 0.7922
Epoch 131/150
46/46 [==============================] - 0s 942us/step - loss: 0.4452 - accuracy: 0.0454 - mae: 0.4452 - pearson_correlation: -0.7419 - euclidean_distance: 0.7889
Epoch 132/150
46/46 [==============================] - 0s 897us/step - loss: 0.4433 - accuracy: 0.0450 - mae: 0.4433 - pearson_correlation: -0.7461 - euclidean_distance: 0.7867
Epoch 133/150
46/46 [==============================] - 0s 905us/step - loss: 0.4415 - accuracy: 0.0467 - mae: 0.4415 - pearson_correlation: -0.7452 - euclidean_distance: 0.7833
Epoch 134/150
46/46 [==============================] - 0s 896us/step - loss: 0.4395 - accuracy: 0.0450 - mae: 0.4395 - pearson_correlation: -0.7400 - euclidean_distance: 0.7808
Epoch 135/150
46/46 [==============================] - 0s 893us/step - loss: 0.4377 - accuracy: 0.0441 - mae: 0.4377 - pearson_correlation: -0.7398 - euclidean_distance: 0.7775
Epoch 136/150
46/46 [==============================] - 0s 900us/step - loss: 0.4354 - accuracy: 0.0454 - mae: 0.4354 - pearson_correlation: -0.7408 - euclidean_distance: 0.7741
Epoch 137/150
46/46 [==============================] - 0s 889us/step - loss: 0.4336 - accuracy: 0.0441 - mae: 0.4336 - pearson_correlation: -0.7468 - euclidean_distance: 0.7712
Epoch 138/150
46/46 [==============================] - 0s 891us/step - loss: 0.4318 - accuracy: 0.0445 - mae: 0.4318 - pearson_correlation: -0.7420 - euclidean_distance: 0.7685
Epoch 139/150
46/46 [==============================] - 0s 891us/step - loss: 0.4306 - accuracy: 0.0459 - mae: 0.4306 - pearson_correlation: -0.7391 - euclidean_distance: 0.7661
Epoch 140/150
46/46 [==============================] - 0s 891us/step - loss: 0.4286 - accuracy: 0.0459 - mae: 0.4286 - pearson_correlation: -0.7422 - euclidean_distance: 0.7626
Epoch 141/150
46/46 [==============================] - 0s 896us/step - loss: 0.4270 - accuracy: 0.0445 - mae: 0.4270 - pearson_correlation: -0.7418 - euclidean_distance: 0.7599
Epoch 142/150
46/46 [==============================] - 0s 885us/step - loss: 0.4257 - accuracy: 0.0450 - mae: 0.4257 - pearson_correlation: -0.7332 - euclidean_distance: 0.7580
Epoch 143/150
46/46 [==============================] - 0s 890us/step - loss: 0.4227 - accuracy: 0.0445 - mae: 0.4227 - pearson_correlation: -0.7404 - euclidean_distance: 0.7538
Epoch 144/150
46/46 [==============================] - 0s 890us/step - loss: 0.4209 - accuracy: 0.0445 - mae: 0.4209 - pearson_correlation: -0.7460 - euclidean_distance: 0.7517
Epoch 145/150
46/46 [==============================] - 0s 893us/step - loss: 0.4188 - accuracy: 0.0454 - mae: 0.4188 - pearson_correlation: -0.7411 - euclidean_distance: 0.7483
Epoch 146/150
46/46 [==============================] - 0s 885us/step - loss: 0.4176 - accuracy: 0.0459 - mae: 0.4176 - pearson_correlation: -0.7420 - euclidean_distance: 0.7457
Epoch 147/150
46/46 [==============================] - 0s 883us/step - loss: 0.4162 - accuracy: 0.0445 - mae: 0.4162 - pearson_correlation: -0.7363 - euclidean_distance: 0.7426
Epoch 148/150
46/46 [==============================] - 0s 892us/step - loss: 0.4144 - accuracy: 0.0445 - mae: 0.4144 - pearson_correlation: -0.7379 - euclidean_distance: 0.7399
Epoch 149/150
46/46 [==============================] - 0s 891us/step - loss: 0.4130 - accuracy: 0.0441 - mae: 0.4130 - pearson_correlation: -0.7366 - euclidean_distance: 0.7373
Epoch 150/150
46/46 [==============================] - 0s 894us/step - loss: 0.4114 - accuracy: 0.0445 - mae: 0.4114 - pearson_correlation: -0.7380 - euclidean_distance: 0.7347
23/23 [==============================] - 0s 507us/step
Epoch 1/200
46/46 [==============================] - 1s 1ms/step - loss: 0.3891 - accuracy: 0.8871 - mae: 0.3891 - pearson_correlation: 0.5835 - euclidean_distance: 0.5832
Epoch 2/200
46/46 [==============================] - 0s 856us/step - loss: 0.3841 - accuracy: 0.8884 - mae: 0.3841 - pearson_correlation: 0.5878 - euclidean_distance: 0.5769
Epoch 3/200
46/46 [==============================] - 0s 871us/step - loss: 0.3794 - accuracy: 0.8880 - mae: 0.3794 - pearson_correlation: 0.5910 - euclidean_distance: 0.5707
Epoch 4/200
46/46 [==============================] - 0s 890us/step - loss: 0.3777 - accuracy: 0.8950 - mae: 0.3777 - pearson_correlation: 0.5906 - euclidean_distance: 0.5676
Epoch 5/200
46/46 [==============================] - 0s 890us/step - loss: 0.3745 - accuracy: 0.9025 - mae: 0.3745 - pearson_correlation: 0.5966 - euclidean_distance: 0.5623
Epoch 6/200
46/46 [==============================] - 0s 889us/step - loss: 0.3690 - accuracy: 0.9043 - mae: 0.3690 - pearson_correlation: 0.5989 - euclidean_distance: 0.5558
Epoch 7/200
46/46 [==============================] - 0s 895us/step - loss: 0.3667 - accuracy: 0.9043 - mae: 0.3667 - pearson_correlation: 0.5957 - euclidean_distance: 0.5521
Epoch 8/200
46/46 [==============================] - 0s 899us/step - loss: 0.3622 - accuracy: 0.9074 - mae: 0.3622 - pearson_correlation: 0.6030 - euclidean_distance: 0.5453
Epoch 9/200
46/46 [==============================] - 0s 895us/step - loss: 0.3577 - accuracy: 0.9091 - mae: 0.3577 - pearson_correlation: 0.6080 - euclidean_distance: 0.5389
Epoch 10/200
46/46 [==============================] - 0s 882us/step - loss: 0.3555 - accuracy: 0.9105 - mae: 0.3555 - pearson_correlation: 0.6057 - euclidean_distance: 0.5366
Epoch 11/200
46/46 [==============================] - 0s 893us/step - loss: 0.3502 - accuracy: 0.9162 - mae: 0.3502 - pearson_correlation: 0.6137 - euclidean_distance: 0.5296
Epoch 12/200
46/46 [==============================] - 0s 888us/step - loss: 0.3472 - accuracy: 0.9162 - mae: 0.3472 - pearson_correlation: 0.6143 - euclidean_distance: 0.5250
Epoch 13/200
46/46 [==============================] - 0s 887us/step - loss: 0.3424 - accuracy: 0.9193 - mae: 0.3424 - pearson_correlation: 0.6214 - euclidean_distance: 0.5180
Epoch 14/200
46/46 [==============================] - 0s 889us/step - loss: 0.3388 - accuracy: 0.9171 - mae: 0.3388 - pearson_correlation: 0.6162 - euclidean_distance: 0.5124
Epoch 15/200
46/46 [==============================] - 0s 895us/step - loss: 0.3337 - accuracy: 0.9263 - mae: 0.3337 - pearson_correlation: 0.6190 - euclidean_distance: 0.5057
Epoch 16/200
46/46 [==============================] - 0s 908us/step - loss: 0.3301 - accuracy: 0.9219 - mae: 0.3301 - pearson_correlation: 0.6307 - euclidean_distance: 0.5003
Epoch 17/200
46/46 [==============================] - 0s 882us/step - loss: 0.3269 - accuracy: 0.9241 - mae: 0.3269 - pearson_correlation: 0.6289 - euclidean_distance: 0.4956
Epoch 18/200
46/46 [==============================] - 0s 893us/step - loss: 0.3239 - accuracy: 0.9321 - mae: 0.3239 - pearson_correlation: 0.6300 - euclidean_distance: 0.4913
Epoch 19/200
46/46 [==============================] - 0s 884us/step - loss: 0.3189 - accuracy: 0.9307 - mae: 0.3189 - pearson_correlation: 0.6342 - euclidean_distance: 0.4843
Epoch 20/200
46/46 [==============================] - 0s 891us/step - loss: 0.3172 - accuracy: 0.9277 - mae: 0.3172 - pearson_correlation: 0.6386 - euclidean_distance: 0.4803
Epoch 21/200
46/46 [==============================] - 0s 889us/step - loss: 0.3116 - accuracy: 0.9321 - mae: 0.3116 - pearson_correlation: 0.6379 - euclidean_distance: 0.4735
Epoch 22/200
46/46 [==============================] - 0s 904us/step - loss: 0.3065 - accuracy: 0.9303 - mae: 0.3065 - pearson_correlation: 0.6433 - euclidean_distance: 0.4664
Epoch 23/200
46/46 [==============================] - 0s 887us/step - loss: 0.3039 - accuracy: 0.9347 - mae: 0.3039 - pearson_correlation: 0.6424 - euclidean_distance: 0.4624
Epoch 24/200
46/46 [==============================] - 0s 890us/step - loss: 0.2981 - accuracy: 0.9338 - mae: 0.2981 - pearson_correlation: 0.6482 - euclidean_distance: 0.4547
Epoch 25/200
46/46 [==============================] - 0s 896us/step - loss: 0.2971 - accuracy: 0.9352 - mae: 0.2971 - pearson_correlation: 0.6447 - euclidean_distance: 0.4517
Epoch 26/200
46/46 [==============================] - 0s 889us/step - loss: 0.2921 - accuracy: 0.9347 - mae: 0.2921 - pearson_correlation: 0.6512 - euclidean_distance: 0.4459
Epoch 27/200
46/46 [==============================] - 0s 883us/step - loss: 0.2885 - accuracy: 0.9347 - mae: 0.2885 - pearson_correlation: 0.6500 - euclidean_distance: 0.4403
Epoch 28/200
46/46 [==============================] - 0s 887us/step - loss: 0.2860 - accuracy: 0.9396 - mae: 0.2860 - pearson_correlation: 0.6494 - euclidean_distance: 0.4357
Epoch 29/200
46/46 [==============================] - 0s 892us/step - loss: 0.2808 - accuracy: 0.9369 - mae: 0.2808 - pearson_correlation: 0.6523 - euclidean_distance: 0.4280
Epoch 30/200
46/46 [==============================] - 0s 891us/step - loss: 0.2758 - accuracy: 0.9369 - mae: 0.2758 - pearson_correlation: 0.6553 - euclidean_distance: 0.4215
Epoch 31/200
46/46 [==============================] - 0s 889us/step - loss: 0.2740 - accuracy: 0.9369 - mae: 0.2740 - pearson_correlation: 0.6535 - euclidean_distance: 0.4183
Epoch 32/200
46/46 [==============================] - 0s 893us/step - loss: 0.2698 - accuracy: 0.9347 - mae: 0.2698 - pearson_correlation: 0.6510 - euclidean_distance: 0.4124
Epoch 33/200
46/46 [==============================] - 0s 892us/step - loss: 0.2649 - accuracy: 0.9387 - mae: 0.2649 - pearson_correlation: 0.6572 - euclidean_distance: 0.4061
Epoch 34/200
46/46 [==============================] - 0s 890us/step - loss: 0.2621 - accuracy: 0.9387 - mae: 0.2621 - pearson_correlation: 0.6559 - euclidean_distance: 0.4018
Epoch 35/200
46/46 [==============================] - 0s 890us/step - loss: 0.2573 - accuracy: 0.9391 - mae: 0.2573 - pearson_correlation: 0.6537 - euclidean_distance: 0.3953
Epoch 36/200
46/46 [==============================] - 0s 888us/step - loss: 0.2531 - accuracy: 0.9387 - mae: 0.2531 - pearson_correlation: 0.6556 - euclidean_distance: 0.3886
Epoch 37/200
46/46 [==============================] - 0s 899us/step - loss: 0.2501 - accuracy: 0.9387 - mae: 0.2501 - pearson_correlation: 0.6584 - euclidean_distance: 0.3837
Epoch 38/200
46/46 [==============================] - 0s 886us/step - loss: 0.2460 - accuracy: 0.9387 - mae: 0.2460 - pearson_correlation: 0.6575 - euclidean_distance: 0.3776
Epoch 39/200
46/46 [==============================] - 0s 894us/step - loss: 0.2434 - accuracy: 0.9387 - mae: 0.2434 - pearson_correlation: 0.6639 - euclidean_distance: 0.3733
Epoch 40/200
46/46 [==============================] - 0s 886us/step - loss: 0.2411 - accuracy: 0.9400 - mae: 0.2411 - pearson_correlation: 0.6635 - euclidean_distance: 0.3703
Epoch 41/200
46/46 [==============================] - 0s 887us/step - loss: 0.2359 - accuracy: 0.9391 - mae: 0.2359 - pearson_correlation: 0.6617 - euclidean_distance: 0.3621
Epoch 42/200
46/46 [==============================] - 0s 889us/step - loss: 0.2306 - accuracy: 0.9338 - mae: 0.2306 - pearson_correlation: 0.6593 - euclidean_distance: 0.3554
Epoch 43/200
46/46 [==============================] - 0s 892us/step - loss: 0.2280 - accuracy: 0.9404 - mae: 0.2280 - pearson_correlation: 0.6598 - euclidean_distance: 0.3514
Epoch 44/200
46/46 [==============================] - 0s 883us/step - loss: 0.2257 - accuracy: 0.9409 - mae: 0.2257 - pearson_correlation: 0.6501 - euclidean_distance: 0.3481
Epoch 45/200
46/46 [==============================] - 0s 889us/step - loss: 0.2233 - accuracy: 0.9378 - mae: 0.2233 - pearson_correlation: 0.6540 - euclidean_distance: 0.3439
Epoch 46/200
46/46 [==============================] - 0s 887us/step - loss: 0.2155 - accuracy: 0.9369 - mae: 0.2155 - pearson_correlation: 0.6614 - euclidean_distance: 0.3333
Epoch 47/200
46/46 [==============================] - 0s 887us/step - loss: 0.2135 - accuracy: 0.9374 - mae: 0.2135 - pearson_correlation: 0.6588 - euclidean_distance: 0.3308
Epoch 48/200
46/46 [==============================] - 0s 888us/step - loss: 0.2105 - accuracy: 0.9378 - mae: 0.2105 - pearson_correlation: 0.6588 - euclidean_distance: 0.3261
Epoch 49/200
46/46 [==============================] - 0s 896us/step - loss: 0.2055 - accuracy: 0.9338 - mae: 0.2055 - pearson_correlation: 0.6615 - euclidean_distance: 0.3186
Epoch 50/200
46/46 [==============================] - 0s 887us/step - loss: 0.2023 - accuracy: 0.9391 - mae: 0.2023 - pearson_correlation: 0.6558 - euclidean_distance: 0.3137
Epoch 51/200
46/46 [==============================] - 0s 888us/step - loss: 0.2007 - accuracy: 0.9396 - mae: 0.2007 - pearson_correlation: 0.6586 - euclidean_distance: 0.3121
Epoch 52/200
46/46 [==============================] - 0s 884us/step - loss: 0.1954 - accuracy: 0.9321 - mae: 0.1954 - pearson_correlation: 0.6591 - euclidean_distance: 0.3039
Epoch 53/200
46/46 [==============================] - 0s 903us/step - loss: 0.1943 - accuracy: 0.9378 - mae: 0.1943 - pearson_correlation: 0.6517 - euclidean_distance: 0.3024
Epoch 54/200
46/46 [==============================] - 0s 907us/step - loss: 0.1904 - accuracy: 0.9382 - mae: 0.1904 - pearson_correlation: 0.6547 - euclidean_distance: 0.2976
Epoch 55/200
46/46 [==============================] - 0s 897us/step - loss: 0.1873 - accuracy: 0.9352 - mae: 0.1873 - pearson_correlation: 0.6571 - euclidean_distance: 0.2927
Epoch 56/200
46/46 [==============================] - 0s 888us/step - loss: 0.1853 - accuracy: 0.9321 - mae: 0.1853 - pearson_correlation: 0.6489 - euclidean_distance: 0.2891
Epoch 57/200
46/46 [==============================] - 0s 888us/step - loss: 0.1816 - accuracy: 0.9352 - mae: 0.1816 - pearson_correlation: 0.6548 - euclidean_distance: 0.2839
Epoch 58/200
46/46 [==============================] - 0s 890us/step - loss: 0.1794 - accuracy: 0.9338 - mae: 0.1794 - pearson_correlation: 0.6565 - euclidean_distance: 0.2811
Epoch 59/200
46/46 [==============================] - 0s 887us/step - loss: 0.1784 - accuracy: 0.9347 - mae: 0.1784 - pearson_correlation: 0.6489 - euclidean_distance: 0.2788
Epoch 60/200
46/46 [==============================] - 0s 888us/step - loss: 0.1746 - accuracy: 0.9338 - mae: 0.1746 - pearson_correlation: 0.6505 - euclidean_distance: 0.2741
Epoch 61/200
46/46 [==============================] - 0s 887us/step - loss: 0.1722 - accuracy: 0.9365 - mae: 0.1722 - pearson_correlation: 0.6506 - euclidean_distance: 0.2705
Epoch 62/200
46/46 [==============================] - 0s 898us/step - loss: 0.1708 - accuracy: 0.9356 - mae: 0.1708 - pearson_correlation: 0.6486 - euclidean_distance: 0.2677
Epoch 63/200
46/46 [==============================] - 0s 879us/step - loss: 0.1682 - accuracy: 0.9338 - mae: 0.1682 - pearson_correlation: 0.6447 - euclidean_distance: 0.2651
Epoch 64/200
46/46 [==============================] - 0s 880us/step - loss: 0.1663 - accuracy: 0.9303 - mae: 0.1663 - pearson_correlation: 0.6443 - euclidean_distance: 0.2627
Epoch 65/200
46/46 [==============================] - 0s 892us/step - loss: 0.1629 - accuracy: 0.9356 - mae: 0.1629 - pearson_correlation: 0.6507 - euclidean_distance: 0.2570
Epoch 66/200
46/46 [==============================] - 0s 890us/step - loss: 0.1630 - accuracy: 0.9312 - mae: 0.1630 - pearson_correlation: 0.6468 - euclidean_distance: 0.2570
Epoch 67/200
46/46 [==============================] - 0s 885us/step - loss: 0.1599 - accuracy: 0.9330 - mae: 0.1599 - pearson_correlation: 0.6467 - euclidean_distance: 0.2531
Epoch 68/200
46/46 [==============================] - 0s 891us/step - loss: 0.1570 - accuracy: 0.9325 - mae: 0.1570 - pearson_correlation: 0.6519 - euclidean_distance: 0.2479
Epoch 69/200
46/46 [==============================] - 0s 886us/step - loss: 0.1538 - accuracy: 0.9330 - mae: 0.1538 - pearson_correlation: 0.6523 - euclidean_distance: 0.2437
Epoch 70/200
46/46 [==============================] - 0s 888us/step - loss: 0.1541 - accuracy: 0.9347 - mae: 0.1541 - pearson_correlation: 0.6493 - euclidean_distance: 0.2444
Epoch 71/200
46/46 [==============================] - 0s 888us/step - loss: 0.1524 - accuracy: 0.9360 - mae: 0.1524 - pearson_correlation: 0.6426 - euclidean_distance: 0.2412
Epoch 72/200
46/46 [==============================] - 0s 892us/step - loss: 0.1499 - accuracy: 0.9365 - mae: 0.1499 - pearson_correlation: 0.6498 - euclidean_distance: 0.2375
Epoch 73/200
46/46 [==============================] - 0s 890us/step - loss: 0.1490 - accuracy: 0.9321 - mae: 0.1490 - pearson_correlation: 0.6454 - euclidean_distance: 0.2367
Epoch 74/200
46/46 [==============================] - 0s 890us/step - loss: 0.1468 - accuracy: 0.9378 - mae: 0.1468 - pearson_correlation: 0.6519 - euclidean_distance: 0.2330
Epoch 75/200
46/46 [==============================] - 0s 896us/step - loss: 0.1455 - accuracy: 0.9316 - mae: 0.1455 - pearson_correlation: 0.6503 - euclidean_distance: 0.2306
Epoch 76/200
46/46 [==============================] - 0s 894us/step - loss: 0.1477 - accuracy: 0.9325 - mae: 0.1477 - pearson_correlation: 0.6457 - euclidean_distance: 0.2342
Epoch 77/200
46/46 [==============================] - 0s 890us/step - loss: 0.1435 - accuracy: 0.9352 - mae: 0.1435 - pearson_correlation: 0.6544 - euclidean_distance: 0.2278
Epoch 78/200
46/46 [==============================] - 0s 908us/step - loss: 0.1421 - accuracy: 0.9334 - mae: 0.1421 - pearson_correlation: 0.6515 - euclidean_distance: 0.2260
Epoch 79/200
46/46 [==============================] - 0s 886us/step - loss: 0.1436 - accuracy: 0.9330 - mae: 0.1436 - pearson_correlation: 0.6399 - euclidean_distance: 0.2276
Epoch 80/200
46/46 [==============================] - 0s 886us/step - loss: 0.1406 - accuracy: 0.9334 - mae: 0.1406 - pearson_correlation: 0.6493 - euclidean_distance: 0.2237
Epoch 81/200
46/46 [==============================] - 0s 893us/step - loss: 0.1388 - accuracy: 0.9347 - mae: 0.1388 - pearson_correlation: 0.6447 - euclidean_distance: 0.2206
Epoch 82/200
46/46 [==============================] - 0s 890us/step - loss: 0.1401 - accuracy: 0.9334 - mae: 0.1401 - pearson_correlation: 0.6474 - euclidean_distance: 0.2227
Epoch 83/200
46/46 [==============================] - 0s 891us/step - loss: 0.1395 - accuracy: 0.9334 - mae: 0.1395 - pearson_correlation: 0.6456 - euclidean_distance: 0.2209
Epoch 84/200
46/46 [==============================] - 0s 889us/step - loss: 0.1359 - accuracy: 0.9378 - mae: 0.1359 - pearson_correlation: 0.6541 - euclidean_distance: 0.2168
Epoch 85/200
46/46 [==============================] - 0s 883us/step - loss: 0.1364 - accuracy: 0.9352 - mae: 0.1364 - pearson_correlation: 0.6511 - euclidean_distance: 0.2163
Epoch 86/200
46/46 [==============================] - 0s 889us/step - loss: 0.1363 - accuracy: 0.9294 - mae: 0.1363 - pearson_correlation: 0.6462 - euclidean_distance: 0.2172
Epoch 87/200
46/46 [==============================] - 0s 888us/step - loss: 0.1336 - accuracy: 0.9374 - mae: 0.1336 - pearson_correlation: 0.6543 - euclidean_distance: 0.2126
Epoch 88/200
46/46 [==============================] - 0s 889us/step - loss: 0.1318 - accuracy: 0.9356 - mae: 0.1318 - pearson_correlation: 0.6530 - euclidean_distance: 0.2096
Epoch 89/200
46/46 [==============================] - 0s 890us/step - loss: 0.1351 - accuracy: 0.9382 - mae: 0.1351 - pearson_correlation: 0.6418 - euclidean_distance: 0.2158
Epoch 90/200
46/46 [==============================] - 0s 889us/step - loss: 0.1320 - accuracy: 0.9360 - mae: 0.1320 - pearson_correlation: 0.6544 - euclidean_distance: 0.2094
Epoch 91/200
46/46 [==============================] - 0s 887us/step - loss: 0.1315 - accuracy: 0.9369 - mae: 0.1315 - pearson_correlation: 0.6486 - euclidean_distance: 0.2090
Epoch 92/200
46/46 [==============================] - 0s 888us/step - loss: 0.1307 - accuracy: 0.9387 - mae: 0.1307 - pearson_correlation: 0.6466 - euclidean_distance: 0.2085
Epoch 93/200
46/46 [==============================] - 0s 888us/step - loss: 0.1310 - accuracy: 0.9369 - mae: 0.1310 - pearson_correlation: 0.6494 - euclidean_distance: 0.2088
Epoch 94/200
46/46 [==============================] - 0s 886us/step - loss: 0.1275 - accuracy: 0.9391 - mae: 0.1275 - pearson_correlation: 0.6571 - euclidean_distance: 0.2031
Epoch 95/200
46/46 [==============================] - 0s 886us/step - loss: 0.1292 - accuracy: 0.9418 - mae: 0.1292 - pearson_correlation: 0.6570 - euclidean_distance: 0.2062
Epoch 96/200
46/46 [==============================] - 0s 884us/step - loss: 0.1260 - accuracy: 0.9400 - mae: 0.1260 - pearson_correlation: 0.6585 - euclidean_distance: 0.2013
Epoch 97/200
46/46 [==============================] - 0s 884us/step - loss: 0.1269 - accuracy: 0.9391 - mae: 0.1269 - pearson_correlation: 0.6557 - euclidean_distance: 0.2024
Epoch 98/200
46/46 [==============================] - 0s 891us/step - loss: 0.1269 - accuracy: 0.9400 - mae: 0.1269 - pearson_correlation: 0.6550 - euclidean_distance: 0.2022
Epoch 99/200
46/46 [==============================] - 0s 887us/step - loss: 0.1282 - accuracy: 0.9369 - mae: 0.1282 - pearson_correlation: 0.6507 - euclidean_distance: 0.2040
Epoch 100/200
46/46 [==============================] - 0s 891us/step - loss: 0.1248 - accuracy: 0.9427 - mae: 0.1248 - pearson_correlation: 0.6564 - euclidean_distance: 0.1995
Epoch 101/200
46/46 [==============================] - 0s 887us/step - loss: 0.1254 - accuracy: 0.9427 - mae: 0.1254 - pearson_correlation: 0.6573 - euclidean_distance: 0.2002
Epoch 102/200
46/46 [==============================] - 0s 889us/step - loss: 0.1237 - accuracy: 0.9404 - mae: 0.1237 - pearson_correlation: 0.6519 - euclidean_distance: 0.1977
Epoch 103/200
46/46 [==============================] - 0s 887us/step - loss: 0.1235 - accuracy: 0.9418 - mae: 0.1235 - pearson_correlation: 0.6579 - euclidean_distance: 0.1968
Epoch 104/200
46/46 [==============================] - 0s 890us/step - loss: 0.1251 - accuracy: 0.9418 - mae: 0.1251 - pearson_correlation: 0.6482 - euclidean_distance: 0.2008
Epoch 105/200
46/46 [==============================] - 0s 886us/step - loss: 0.1225 - accuracy: 0.9418 - mae: 0.1225 - pearson_correlation: 0.6579 - euclidean_distance: 0.1958
Epoch 106/200
46/46 [==============================] - 0s 887us/step - loss: 0.1224 - accuracy: 0.9427 - mae: 0.1224 - pearson_correlation: 0.6546 - euclidean_distance: 0.1956
Epoch 107/200
46/46 [==============================] - 0s 886us/step - loss: 0.1229 - accuracy: 0.9422 - mae: 0.1229 - pearson_correlation: 0.6639 - euclidean_distance: 0.1958
Epoch 108/200
46/46 [==============================] - 0s 890us/step - loss: 0.1206 - accuracy: 0.9457 - mae: 0.1206 - pearson_correlation: 0.6636 - euclidean_distance: 0.1927
Epoch 109/200
46/46 [==============================] - 0s 887us/step - loss: 0.1220 - accuracy: 0.9453 - mae: 0.1220 - pearson_correlation: 0.6625 - euclidean_distance: 0.1951
Epoch 110/200
46/46 [==============================] - 0s 898us/step - loss: 0.1197 - accuracy: 0.9453 - mae: 0.1197 - pearson_correlation: 0.6694 - euclidean_distance: 0.1909
Epoch 111/200
46/46 [==============================] - 0s 892us/step - loss: 0.1193 - accuracy: 0.9453 - mae: 0.1193 - pearson_correlation: 0.6671 - euclidean_distance: 0.1900
Epoch 112/200
46/46 [==============================] - 0s 887us/step - loss: 0.1194 - accuracy: 0.9453 - mae: 0.1194 - pearson_correlation: 0.6664 - euclidean_distance: 0.1917
Epoch 113/200
46/46 [==============================] - 0s 893us/step - loss: 0.1186 - accuracy: 0.9462 - mae: 0.1186 - pearson_correlation: 0.6676 - euclidean_distance: 0.1898
Epoch 114/200
46/46 [==============================] - 0s 890us/step - loss: 0.1205 - accuracy: 0.9453 - mae: 0.1205 - pearson_correlation: 0.6620 - euclidean_distance: 0.1929
Epoch 115/200
46/46 [==============================] - 0s 889us/step - loss: 0.1184 - accuracy: 0.9466 - mae: 0.1184 - pearson_correlation: 0.6664 - euclidean_distance: 0.1898
Epoch 116/200
46/46 [==============================] - 0s 889us/step - loss: 0.1165 - accuracy: 0.9457 - mae: 0.1165 - pearson_correlation: 0.6717 - euclidean_distance: 0.1875
Epoch 117/200
46/46 [==============================] - 0s 888us/step - loss: 0.1192 - accuracy: 0.9444 - mae: 0.1192 - pearson_correlation: 0.6645 - euclidean_distance: 0.1906
Epoch 118/200
46/46 [==============================] - 0s 887us/step - loss: 0.1190 - accuracy: 0.9462 - mae: 0.1190 - pearson_correlation: 0.6659 - euclidean_distance: 0.1903
Epoch 119/200
46/46 [==============================] - 0s 889us/step - loss: 0.1177 - accuracy: 0.9453 - mae: 0.1177 - pearson_correlation: 0.6682 - euclidean_distance: 0.1882
Epoch 120/200
46/46 [==============================] - 0s 894us/step - loss: 0.1169 - accuracy: 0.9471 - mae: 0.1169 - pearson_correlation: 0.6631 - euclidean_distance: 0.1871
Epoch 121/200
46/46 [==============================] - 0s 890us/step - loss: 0.1168 - accuracy: 0.9462 - mae: 0.1168 - pearson_correlation: 0.6680 - euclidean_distance: 0.1878
Epoch 122/200
46/46 [==============================] - 0s 887us/step - loss: 0.1163 - accuracy: 0.9475 - mae: 0.1163 - pearson_correlation: 0.6693 - euclidean_distance: 0.1861
Epoch 123/200
46/46 [==============================] - 0s 898us/step - loss: 0.1169 - accuracy: 0.9506 - mae: 0.1169 - pearson_correlation: 0.6648 - euclidean_distance: 0.1878
Epoch 124/200
46/46 [==============================] - 0s 890us/step - loss: 0.1157 - accuracy: 0.9457 - mae: 0.1157 - pearson_correlation: 0.6667 - euclidean_distance: 0.1858
Epoch 125/200
46/46 [==============================] - 0s 890us/step - loss: 0.1153 - accuracy: 0.9484 - mae: 0.1153 - pearson_correlation: 0.6677 - euclidean_distance: 0.1850
Epoch 126/200
46/46 [==============================] - 0s 890us/step - loss: 0.1162 - accuracy: 0.9484 - mae: 0.1162 - pearson_correlation: 0.6731 - euclidean_distance: 0.1864
Epoch 127/200
46/46 [==============================] - 0s 885us/step - loss: 0.1130 - accuracy: 0.9466 - mae: 0.1130 - pearson_correlation: 0.6816 - euclidean_distance: 0.1811
Epoch 128/200
46/46 [==============================] - 0s 890us/step - loss: 0.1146 - accuracy: 0.9479 - mae: 0.1146 - pearson_correlation: 0.6710 - euclidean_distance: 0.1839
Epoch 129/200
46/46 [==============================] - 0s 889us/step - loss: 0.1130 - accuracy: 0.9493 - mae: 0.1130 - pearson_correlation: 0.6711 - euclidean_distance: 0.1815
Epoch 130/200
46/46 [==============================] - 0s 891us/step - loss: 0.1131 - accuracy: 0.9493 - mae: 0.1131 - pearson_correlation: 0.6723 - euclidean_distance: 0.1821
Epoch 131/200
46/46 [==============================] - 0s 889us/step - loss: 0.1139 - accuracy: 0.9479 - mae: 0.1139 - pearson_correlation: 0.6693 - euclidean_distance: 0.1831
Epoch 132/200
46/46 [==============================] - 0s 888us/step - loss: 0.1139 - accuracy: 0.9493 - mae: 0.1139 - pearson_correlation: 0.6697 - euclidean_distance: 0.1829
Epoch 133/200
46/46 [==============================] - 0s 898us/step - loss: 0.1129 - accuracy: 0.9488 - mae: 0.1129 - pearson_correlation: 0.6790 - euclidean_distance: 0.1819
Epoch 134/200
46/46 [==============================] - 0s 889us/step - loss: 0.1132 - accuracy: 0.9506 - mae: 0.1132 - pearson_correlation: 0.6685 - euclidean_distance: 0.1818
Epoch 135/200
46/46 [==============================] - 0s 889us/step - loss: 0.1120 - accuracy: 0.9457 - mae: 0.1120 - pearson_correlation: 0.6784 - euclidean_distance: 0.1796
Epoch 136/200
46/46 [==============================] - 0s 882us/step - loss: 0.1134 - accuracy: 0.9479 - mae: 0.1134 - pearson_correlation: 0.6747 - euclidean_distance: 0.1824
Epoch 137/200
46/46 [==============================] - 0s 892us/step - loss: 0.1123 - accuracy: 0.9510 - mae: 0.1123 - pearson_correlation: 0.6811 - euclidean_distance: 0.1802
Epoch 138/200
46/46 [==============================] - 0s 887us/step - loss: 0.1122 - accuracy: 0.9524 - mae: 0.1122 - pearson_correlation: 0.6854 - euclidean_distance: 0.1799
Epoch 139/200
46/46 [==============================] - 0s 884us/step - loss: 0.1122 - accuracy: 0.9510 - mae: 0.1122 - pearson_correlation: 0.6810 - euclidean_distance: 0.1800
Epoch 140/200
46/46 [==============================] - 0s 901us/step - loss: 0.1112 - accuracy: 0.9497 - mae: 0.1112 - pearson_correlation: 0.6795 - euclidean_distance: 0.1785
Epoch 141/200
46/46 [==============================] - 0s 893us/step - loss: 0.1125 - accuracy: 0.9502 - mae: 0.1125 - pearson_correlation: 0.6759 - euclidean_distance: 0.1805
Epoch 142/200
46/46 [==============================] - 0s 888us/step - loss: 0.1107 - accuracy: 0.9488 - mae: 0.1107 - pearson_correlation: 0.6778 - euclidean_distance: 0.1782
Epoch 143/200
46/46 [==============================] - 0s 889us/step - loss: 0.1109 - accuracy: 0.9488 - mae: 0.1109 - pearson_correlation: 0.6881 - euclidean_distance: 0.1780
Epoch 144/200
46/46 [==============================] - 0s 887us/step - loss: 0.1112 - accuracy: 0.9502 - mae: 0.1112 - pearson_correlation: 0.6836 - euclidean_distance: 0.1785
Epoch 145/200
46/46 [==============================] - 0s 892us/step - loss: 0.1108 - accuracy: 0.9506 - mae: 0.1108 - pearson_correlation: 0.6829 - euclidean_distance: 0.1784
Epoch 146/200
46/46 [==============================] - 0s 890us/step - loss: 0.1108 - accuracy: 0.9524 - mae: 0.1108 - pearson_correlation: 0.6831 - euclidean_distance: 0.1781
Epoch 147/200
46/46 [==============================] - 0s 887us/step - loss: 0.1132 - accuracy: 0.9497 - mae: 0.1132 - pearson_correlation: 0.6730 - euclidean_distance: 0.1826
Epoch 148/200
46/46 [==============================] - 0s 888us/step - loss: 0.1064 - accuracy: 0.9524 - mae: 0.1064 - pearson_correlation: 0.6969 - euclidean_distance: 0.1707
Epoch 149/200
46/46 [==============================] - 0s 891us/step - loss: 0.1095 - accuracy: 0.9502 - mae: 0.1095 - pearson_correlation: 0.6886 - euclidean_distance: 0.1758
Epoch 150/200
46/46 [==============================] - 0s 890us/step - loss: 0.1093 - accuracy: 0.9519 - mae: 0.1093 - pearson_correlation: 0.6869 - euclidean_distance: 0.1756
Epoch 151/200
46/46 [==============================] - 0s 884us/step - loss: 0.1087 - accuracy: 0.9519 - mae: 0.1087 - pearson_correlation: 0.6881 - euclidean_distance: 0.1750
Epoch 152/200
46/46 [==============================] - 0s 884us/step - loss: 0.1076 - accuracy: 0.9502 - mae: 0.1076 - pearson_correlation: 0.6924 - euclidean_distance: 0.1731
Epoch 153/200
46/46 [==============================] - 0s 897us/step - loss: 0.1080 - accuracy: 0.9519 - mae: 0.1080 - pearson_correlation: 0.6870 - euclidean_distance: 0.1734
Epoch 154/200
46/46 [==============================] - 0s 884us/step - loss: 0.1077 - accuracy: 0.9519 - mae: 0.1077 - pearson_correlation: 0.6875 - euclidean_distance: 0.1728
Epoch 155/200
46/46 [==============================] - 0s 893us/step - loss: 0.1075 - accuracy: 0.9515 - mae: 0.1075 - pearson_correlation: 0.6833 - euclidean_distance: 0.1737
Epoch 156/200
46/46 [==============================] - 0s 877us/step - loss: 0.1078 - accuracy: 0.9519 - mae: 0.1078 - pearson_correlation: 0.6902 - euclidean_distance: 0.1739
Epoch 157/200
46/46 [==============================] - 0s 896us/step - loss: 0.1091 - accuracy: 0.9506 - mae: 0.1091 - pearson_correlation: 0.6908 - euclidean_distance: 0.1755
Epoch 158/200
46/46 [==============================] - 0s 887us/step - loss: 0.1052 - accuracy: 0.9528 - mae: 0.1052 - pearson_correlation: 0.6954 - euclidean_distance: 0.1690
Epoch 159/200
46/46 [==============================] - 0s 884us/step - loss: 0.1061 - accuracy: 0.9515 - mae: 0.1061 - pearson_correlation: 0.6940 - euclidean_distance: 0.1704
Epoch 160/200
46/46 [==============================] - 0s 889us/step - loss: 0.1067 - accuracy: 0.9537 - mae: 0.1067 - pearson_correlation: 0.6890 - euclidean_distance: 0.1716
Epoch 161/200
46/46 [==============================] - 0s 885us/step - loss: 0.1075 - accuracy: 0.9510 - mae: 0.1075 - pearson_correlation: 0.6857 - euclidean_distance: 0.1731
Epoch 162/200
46/46 [==============================] - 0s 888us/step - loss: 0.1075 - accuracy: 0.9497 - mae: 0.1075 - pearson_correlation: 0.6919 - euclidean_distance: 0.1733
Epoch 163/200
46/46 [==============================] - 0s 892us/step - loss: 0.1055 - accuracy: 0.9524 - mae: 0.1055 - pearson_correlation: 0.6957 - euclidean_distance: 0.1695
Epoch 164/200
46/46 [==============================] - 0s 892us/step - loss: 0.1087 - accuracy: 0.9532 - mae: 0.1087 - pearson_correlation: 0.6923 - euclidean_distance: 0.1745
Epoch 165/200
46/46 [==============================] - 0s 893us/step - loss: 0.1072 - accuracy: 0.9537 - mae: 0.1072 - pearson_correlation: 0.6921 - euclidean_distance: 0.1724
Epoch 166/200
46/46 [==============================] - 0s 893us/step - loss: 0.1063 - accuracy: 0.9524 - mae: 0.1063 - pearson_correlation: 0.6976 - euclidean_distance: 0.1712
Epoch 167/200
46/46 [==============================] - 0s 893us/step - loss: 0.1051 - accuracy: 0.9524 - mae: 0.1051 - pearson_correlation: 0.6930 - euclidean_distance: 0.1694
Epoch 168/200
46/46 [==============================] - 0s 879us/step - loss: 0.1058 - accuracy: 0.9537 - mae: 0.1058 - pearson_correlation: 0.6982 - euclidean_distance: 0.1699
Epoch 169/200
46/46 [==============================] - 0s 886us/step - loss: 0.1078 - accuracy: 0.9515 - mae: 0.1078 - pearson_correlation: 0.6874 - euclidean_distance: 0.1738
Epoch 170/200
46/46 [==============================] - 0s 884us/step - loss: 0.1046 - accuracy: 0.9519 - mae: 0.1046 - pearson_correlation: 0.6986 - euclidean_distance: 0.1680
Epoch 171/200
46/46 [==============================] - 0s 889us/step - loss: 0.1054 - accuracy: 0.9515 - mae: 0.1054 - pearson_correlation: 0.6955 - euclidean_distance: 0.1693
Epoch 172/200
46/46 [==============================] - 0s 888us/step - loss: 0.1046 - accuracy: 0.9519 - mae: 0.1046 - pearson_correlation: 0.6988 - euclidean_distance: 0.1680
Epoch 173/200
46/46 [==============================] - 0s 892us/step - loss: 0.1050 - accuracy: 0.9528 - mae: 0.1050 - pearson_correlation: 0.7038 - euclidean_distance: 0.1689
Epoch 174/200
46/46 [==============================] - 0s 890us/step - loss: 0.1034 - accuracy: 0.9519 - mae: 0.1034 - pearson_correlation: 0.6993 - euclidean_distance: 0.1671
Epoch 175/200
46/46 [==============================] - 0s 893us/step - loss: 0.1060 - accuracy: 0.9524 - mae: 0.1060 - pearson_correlation: 0.6944 - euclidean_distance: 0.1712
Epoch 176/200
46/46 [==============================] - 0s 888us/step - loss: 0.1044 - accuracy: 0.9537 - mae: 0.1044 - pearson_correlation: 0.6980 - euclidean_distance: 0.1679
Epoch 177/200
46/46 [==============================] - 0s 887us/step - loss: 0.1027 - accuracy: 0.9537 - mae: 0.1027 - pearson_correlation: 0.7060 - euclidean_distance: 0.1659
Epoch 178/200
46/46 [==============================] - 0s 890us/step - loss: 0.1047 - accuracy: 0.9541 - mae: 0.1047 - pearson_correlation: 0.7007 - euclidean_distance: 0.1685
Epoch 179/200
46/46 [==============================] - 0s 892us/step - loss: 0.1023 - accuracy: 0.9524 - mae: 0.1023 - pearson_correlation: 0.7029 - euclidean_distance: 0.1650
Epoch 180/200
46/46 [==============================] - 0s 888us/step - loss: 0.1020 - accuracy: 0.9541 - mae: 0.1020 - pearson_correlation: 0.7071 - euclidean_distance: 0.1636
Epoch 181/200
46/46 [==============================] - 0s 900us/step - loss: 0.1021 - accuracy: 0.9519 - mae: 0.1021 - pearson_correlation: 0.7100 - euclidean_distance: 0.1642
Epoch 182/200
46/46 [==============================] - 0s 887us/step - loss: 0.1055 - accuracy: 0.9524 - mae: 0.1055 - pearson_correlation: 0.6977 - euclidean_distance: 0.1702
Epoch 183/200
46/46 [==============================] - 0s 887us/step - loss: 0.1028 - accuracy: 0.9532 - mae: 0.1028 - pearson_correlation: 0.7049 - euclidean_distance: 0.1649
Epoch 184/200
46/46 [==============================] - 0s 885us/step - loss: 0.1040 - accuracy: 0.9524 - mae: 0.1040 - pearson_correlation: 0.6995 - euclidean_distance: 0.1676
Epoch 185/200
46/46 [==============================] - 0s 889us/step - loss: 0.1013 - accuracy: 0.9541 - mae: 0.1013 - pearson_correlation: 0.7097 - euclidean_distance: 0.1628
Epoch 186/200
46/46 [==============================] - 0s 888us/step - loss: 0.1019 - accuracy: 0.9524 - mae: 0.1019 - pearson_correlation: 0.7059 - euclidean_distance: 0.1644
Epoch 187/200
46/46 [==============================] - 0s 888us/step - loss: 0.1035 - accuracy: 0.9528 - mae: 0.1035 - pearson_correlation: 0.7068 - euclidean_distance: 0.1664
Epoch 188/200
46/46 [==============================] - 0s 885us/step - loss: 0.1008 - accuracy: 0.9532 - mae: 0.1008 - pearson_correlation: 0.7099 - euclidean_distance: 0.1622
Epoch 189/200
46/46 [==============================] - 0s 884us/step - loss: 0.1036 - accuracy: 0.9532 - mae: 0.1036 - pearson_correlation: 0.7025 - euclidean_distance: 0.1678
Epoch 190/200
46/46 [==============================] - 0s 879us/step - loss: 0.1045 - accuracy: 0.9524 - mae: 0.1045 - pearson_correlation: 0.7005 - euclidean_distance: 0.1683
Epoch 191/200
46/46 [==============================] - 0s 884us/step - loss: 0.1030 - accuracy: 0.9537 - mae: 0.1030 - pearson_correlation: 0.7076 - euclidean_distance: 0.1656
Epoch 192/200
46/46 [==============================] - 0s 883us/step - loss: 0.1034 - accuracy: 0.9541 - mae: 0.1034 - pearson_correlation: 0.7022 - euclidean_distance: 0.1668
Epoch 193/200
46/46 [==============================] - 0s 881us/step - loss: 0.1019 - accuracy: 0.9541 - mae: 0.1019 - pearson_correlation: 0.7045 - euclidean_distance: 0.1642
Epoch 194/200
46/46 [==============================] - 0s 886us/step - loss: 0.1017 - accuracy: 0.9550 - mae: 0.1017 - pearson_correlation: 0.7086 - euclidean_distance: 0.1634
Epoch 195/200
46/46 [==============================] - 0s 888us/step - loss: 0.1001 - accuracy: 0.9528 - mae: 0.1001 - pearson_correlation: 0.7124 - euclidean_distance: 0.1614
Epoch 196/200
46/46 [==============================] - 0s 887us/step - loss: 0.1025 - accuracy: 0.9550 - mae: 0.1025 - pearson_correlation: 0.7025 - euclidean_distance: 0.1650
Epoch 197/200
46/46 [==============================] - 0s 889us/step - loss: 0.0994 - accuracy: 0.9541 - mae: 0.0994 - pearson_correlation: 0.7160 - euclidean_distance: 0.1601
Epoch 198/200
46/46 [==============================] - 0s 883us/step - loss: 0.1022 - accuracy: 0.9541 - mae: 0.1022 - pearson_correlation: 0.7099 - euclidean_distance: 0.1650
Epoch 199/200
46/46 [==============================] - 0s 881us/step - loss: 0.1016 - accuracy: 0.9537 - mae: 0.1016 - pearson_correlation: 0.7164 - euclidean_distance: 0.1633
Epoch 200/200
46/46 [==============================] - 0s 887us/step - loss: 0.1028 - accuracy: 0.9550 - mae: 0.1028 - pearson_correlation: 0.7095 - euclidean_distance: 0.1654
23/23 [==============================] - 0s 479us/step
Epoch 1/200
46/46 [==============================] - 1s 889us/step - loss: 0.4558 - accuracy: 0.1570 - mae: 0.4558 - pearson_correlation: -0.4347 - euclidean_distance: 0.7343
Epoch 2/200
46/46 [==============================] - 0s 861us/step - loss: 0.4537 - accuracy: 0.1614 - mae: 0.4537 - pearson_correlation: -0.4379 - euclidean_distance: 0.7326
Epoch 3/200
46/46 [==============================] - 0s 876us/step - loss: 0.4508 - accuracy: 0.1539 - mae: 0.4508 - pearson_correlation: -0.4359 - euclidean_distance: 0.7287
Epoch 4/200
46/46 [==============================] - 0s 886us/step - loss: 0.4503 - accuracy: 0.1606 - mae: 0.4503 - pearson_correlation: -0.4375 - euclidean_distance: 0.7274
Epoch 5/200
46/46 [==============================] - 0s 885us/step - loss: 0.4472 - accuracy: 0.1592 - mae: 0.4472 - pearson_correlation: -0.4363 - euclidean_distance: 0.7256
Epoch 6/200
46/46 [==============================] - 0s 886us/step - loss: 0.4454 - accuracy: 0.1553 - mae: 0.4454 - pearson_correlation: -0.4316 - euclidean_distance: 0.7221
Epoch 7/200
46/46 [==============================] - 0s 893us/step - loss: 0.4438 - accuracy: 0.1588 - mae: 0.4438 - pearson_correlation: -0.4333 - euclidean_distance: 0.7195
Epoch 8/200
46/46 [==============================] - 0s 861us/step - loss: 0.4412 - accuracy: 0.1522 - mae: 0.4412 - pearson_correlation: -0.4387 - euclidean_distance: 0.7171
Epoch 9/200
46/46 [==============================] - 0s 880us/step - loss: 0.4393 - accuracy: 0.1570 - mae: 0.4393 - pearson_correlation: -0.4381 - euclidean_distance: 0.7147
Epoch 10/200
46/46 [==============================] - 0s 887us/step - loss: 0.4358 - accuracy: 0.1517 - mae: 0.4358 - pearson_correlation: -0.4436 - euclidean_distance: 0.7112
Epoch 11/200
46/46 [==============================] - 0s 884us/step - loss: 0.4340 - accuracy: 0.1606 - mae: 0.4340 - pearson_correlation: -0.4375 - euclidean_distance: 0.7082
Epoch 12/200
46/46 [==============================] - 0s 884us/step - loss: 0.4309 - accuracy: 0.1579 - mae: 0.4309 - pearson_correlation: -0.4404 - euclidean_distance: 0.7046
Epoch 13/200
46/46 [==============================] - 0s 899us/step - loss: 0.4292 - accuracy: 0.1539 - mae: 0.4292 - pearson_correlation: -0.4313 - euclidean_distance: 0.7017
Epoch 14/200
46/46 [==============================] - 0s 881us/step - loss: 0.4260 - accuracy: 0.1641 - mae: 0.4260 - pearson_correlation: -0.4321 - euclidean_distance: 0.6979
Epoch 15/200
46/46 [==============================] - 0s 882us/step - loss: 0.4240 - accuracy: 0.1606 - mae: 0.4240 - pearson_correlation: -0.4351 - euclidean_distance: 0.6961
Epoch 16/200
46/46 [==============================] - 0s 892us/step - loss: 0.4216 - accuracy: 0.1597 - mae: 0.4216 - pearson_correlation: -0.4339 - euclidean_distance: 0.6924
Epoch 17/200
46/46 [==============================] - 0s 886us/step - loss: 0.4194 - accuracy: 0.1588 - mae: 0.4194 - pearson_correlation: -0.4275 - euclidean_distance: 0.6891
Epoch 18/200
46/46 [==============================] - 0s 884us/step - loss: 0.4162 - accuracy: 0.1562 - mae: 0.4162 - pearson_correlation: -0.4242 - euclidean_distance: 0.6854
Epoch 19/200
46/46 [==============================] - 0s 890us/step - loss: 0.4143 - accuracy: 0.1663 - mae: 0.4143 - pearson_correlation: -0.4239 - euclidean_distance: 0.6824
Epoch 20/200
46/46 [==============================] - 0s 883us/step - loss: 0.4116 - accuracy: 0.1592 - mae: 0.4116 - pearson_correlation: -0.4322 - euclidean_distance: 0.6798
Epoch 21/200
46/46 [==============================] - 0s 880us/step - loss: 0.4098 - accuracy: 0.1667 - mae: 0.4098 - pearson_correlation: -0.4242 - euclidean_distance: 0.6759
Epoch 22/200
46/46 [==============================] - 0s 890us/step - loss: 0.4066 - accuracy: 0.1676 - mae: 0.4066 - pearson_correlation: -0.4225 - euclidean_distance: 0.6726
Epoch 23/200
46/46 [==============================] - 0s 889us/step - loss: 0.4058 - accuracy: 0.1663 - mae: 0.4058 - pearson_correlation: -0.4249 - euclidean_distance: 0.6707
Epoch 24/200
46/46 [==============================] - 0s 878us/step - loss: 0.4024 - accuracy: 0.1689 - mae: 0.4024 - pearson_correlation: -0.4155 - euclidean_distance: 0.6660
Epoch 25/200
46/46 [==============================] - 0s 887us/step - loss: 0.4011 - accuracy: 0.1716 - mae: 0.4011 - pearson_correlation: -0.4110 - euclidean_distance: 0.6632
Epoch 26/200
46/46 [==============================] - 0s 884us/step - loss: 0.3984 - accuracy: 0.1747 - mae: 0.3984 - pearson_correlation: -0.4146 - euclidean_distance: 0.6594
Epoch 27/200
46/46 [==============================] - 0s 883us/step - loss: 0.3961 - accuracy: 0.1773 - mae: 0.3961 - pearson_correlation: -0.4091 - euclidean_distance: 0.6557
Epoch 28/200
46/46 [==============================] - 0s 884us/step - loss: 0.3925 - accuracy: 0.1826 - mae: 0.3925 - pearson_correlation: -0.4006 - euclidean_distance: 0.6508
Epoch 29/200
46/46 [==============================] - 0s 883us/step - loss: 0.3910 - accuracy: 0.1822 - mae: 0.3910 - pearson_correlation: -0.3959 - euclidean_distance: 0.6475
Epoch 30/200
46/46 [==============================] - 0s 883us/step - loss: 0.3885 - accuracy: 0.1919 - mae: 0.3885 - pearson_correlation: -0.3907 - euclidean_distance: 0.6444
Epoch 31/200
46/46 [==============================] - 0s 888us/step - loss: 0.3871 - accuracy: 0.1844 - mae: 0.3871 - pearson_correlation: -0.3909 - euclidean_distance: 0.6411
Epoch 32/200
46/46 [==============================] - 0s 886us/step - loss: 0.3834 - accuracy: 0.1884 - mae: 0.3834 - pearson_correlation: -0.3817 - euclidean_distance: 0.6361
Epoch 33/200
46/46 [==============================] - 0s 883us/step - loss: 0.3815 - accuracy: 0.1879 - mae: 0.3815 - pearson_correlation: -0.3813 - euclidean_distance: 0.6333
Epoch 34/200
46/46 [==============================] - 0s 884us/step - loss: 0.3800 - accuracy: 0.1928 - mae: 0.3800 - pearson_correlation: -0.3707 - euclidean_distance: 0.6309
Epoch 35/200
46/46 [==============================] - 0s 891us/step - loss: 0.3777 - accuracy: 0.1959 - mae: 0.3777 - pearson_correlation: -0.3674 - euclidean_distance: 0.6264
Epoch 36/200
46/46 [==============================] - 0s 888us/step - loss: 0.3747 - accuracy: 0.2056 - mae: 0.3747 - pearson_correlation: -0.3588 - euclidean_distance: 0.6222
Epoch 37/200
46/46 [==============================] - 0s 899us/step - loss: 0.3727 - accuracy: 0.2003 - mae: 0.3727 - pearson_correlation: -0.3587 - euclidean_distance: 0.6189
Epoch 38/200
46/46 [==============================] - 0s 874us/step - loss: 0.3698 - accuracy: 0.2148 - mae: 0.3698 - pearson_correlation: -0.3482 - euclidean_distance: 0.6141
Epoch 39/200
46/46 [==============================] - 0s 887us/step - loss: 0.3690 - accuracy: 0.2161 - mae: 0.3690 - pearson_correlation: -0.3424 - euclidean_distance: 0.6123
Epoch 40/200
46/46 [==============================] - 0s 890us/step - loss: 0.3649 - accuracy: 0.2179 - mae: 0.3649 - pearson_correlation: -0.3351 - euclidean_distance: 0.6057
Epoch 41/200
46/46 [==============================] - 0s 879us/step - loss: 0.3625 - accuracy: 0.2197 - mae: 0.3625 - pearson_correlation: -0.3325 - euclidean_distance: 0.6024
Epoch 42/200
46/46 [==============================] - 0s 885us/step - loss: 0.3605 - accuracy: 0.2219 - mae: 0.3605 - pearson_correlation: -0.3186 - euclidean_distance: 0.5992
Epoch 43/200
46/46 [==============================] - 0s 881us/step - loss: 0.3590 - accuracy: 0.2272 - mae: 0.3590 - pearson_correlation: -0.3159 - euclidean_distance: 0.5957
Epoch 44/200
46/46 [==============================] - 0s 882us/step - loss: 0.3563 - accuracy: 0.2369 - mae: 0.3563 - pearson_correlation: -0.3068 - euclidean_distance: 0.5909
Epoch 45/200
46/46 [==============================] - 0s 885us/step - loss: 0.3532 - accuracy: 0.2422 - mae: 0.3532 - pearson_correlation: -0.2976 - euclidean_distance: 0.5864
Epoch 46/200
46/46 [==============================] - 0s 890us/step - loss: 0.3503 - accuracy: 0.2492 - mae: 0.3503 - pearson_correlation: -0.2916 - euclidean_distance: 0.5817
Epoch 47/200
46/46 [==============================] - 0s 884us/step - loss: 0.3476 - accuracy: 0.2519 - mae: 0.3476 - pearson_correlation: -0.2809 - euclidean_distance: 0.5788
Epoch 48/200
46/46 [==============================] - 0s 881us/step - loss: 0.3462 - accuracy: 0.2638 - mae: 0.3462 - pearson_correlation: -0.2768 - euclidean_distance: 0.5743
Epoch 49/200
46/46 [==============================] - 0s 887us/step - loss: 0.3425 - accuracy: 0.2757 - mae: 0.3425 - pearson_correlation: -0.2739 - euclidean_distance: 0.5690
Epoch 50/200
46/46 [==============================] - 0s 881us/step - loss: 0.3402 - accuracy: 0.2911 - mae: 0.3402 - pearson_correlation: -0.2580 - euclidean_distance: 0.5651
Epoch 51/200
46/46 [==============================] - 0s 879us/step - loss: 0.3381 - accuracy: 0.3044 - mae: 0.3381 - pearson_correlation: -0.2495 - euclidean_distance: 0.5612
Epoch 52/200
46/46 [==============================] - 0s 889us/step - loss: 0.3361 - accuracy: 0.3123 - mae: 0.3361 - pearson_correlation: -0.2427 - euclidean_distance: 0.5570
Epoch 53/200
46/46 [==============================] - 0s 883us/step - loss: 0.3338 - accuracy: 0.3207 - mae: 0.3338 - pearson_correlation: -0.2348 - euclidean_distance: 0.5533
Epoch 54/200
46/46 [==============================] - 0s 884us/step - loss: 0.3293 - accuracy: 0.3463 - mae: 0.3293 - pearson_correlation: -0.2250 - euclidean_distance: 0.5478
Epoch 55/200
46/46 [==============================] - 0s 886us/step - loss: 0.3269 - accuracy: 0.3692 - mae: 0.3269 - pearson_correlation: -0.2073 - euclidean_distance: 0.5425
Epoch 56/200
46/46 [==============================] - 0s 883us/step - loss: 0.3247 - accuracy: 0.3798 - mae: 0.3247 - pearson_correlation: -0.2050 - euclidean_distance: 0.5393
Epoch 57/200
46/46 [==============================] - 0s 889us/step - loss: 0.3221 - accuracy: 0.3798 - mae: 0.3221 - pearson_correlation: -0.1983 - euclidean_distance: 0.5351
Epoch 58/200
46/46 [==============================] - 0s 892us/step - loss: 0.3203 - accuracy: 0.3961 - mae: 0.3203 - pearson_correlation: -0.1865 - euclidean_distance: 0.5306
Epoch 59/200
46/46 [==============================] - 0s 881us/step - loss: 0.3174 - accuracy: 0.4094 - mae: 0.3174 - pearson_correlation: -0.1777 - euclidean_distance: 0.5266
Epoch 60/200
46/46 [==============================] - 0s 887us/step - loss: 0.3141 - accuracy: 0.4292 - mae: 0.3141 - pearson_correlation: -0.1650 - euclidean_distance: 0.5214
Epoch 61/200
46/46 [==============================] - 0s 885us/step - loss: 0.3087 - accuracy: 0.4393 - mae: 0.3087 - pearson_correlation: -0.1511 - euclidean_distance: 0.5141
Epoch 62/200
46/46 [==============================] - 0s 886us/step - loss: 0.3095 - accuracy: 0.4301 - mae: 0.3095 - pearson_correlation: -0.1446 - euclidean_distance: 0.5133
Epoch 63/200
46/46 [==============================] - 0s 889us/step - loss: 0.3066 - accuracy: 0.4367 - mae: 0.3066 - pearson_correlation: -0.1356 - euclidean_distance: 0.5088
Epoch 64/200
46/46 [==============================] - 0s 887us/step - loss: 0.3027 - accuracy: 0.4508 - mae: 0.3027 - pearson_correlation: -0.1211 - euclidean_distance: 0.5019
Epoch 65/200
46/46 [==============================] - 0s 880us/step - loss: 0.3002 - accuracy: 0.4707 - mae: 0.3002 - pearson_correlation: -0.1101 - euclidean_distance: 0.4981
Epoch 66/200
46/46 [==============================] - 0s 887us/step - loss: 0.2998 - accuracy: 0.4663 - mae: 0.2998 - pearson_correlation: -0.0991 - euclidean_distance: 0.4969
Epoch 67/200
46/46 [==============================] - 0s 882us/step - loss: 0.2965 - accuracy: 0.4835 - mae: 0.2965 - pearson_correlation: -0.0874 - euclidean_distance: 0.4918
Epoch 68/200
46/46 [==============================] - 0s 887us/step - loss: 0.2944 - accuracy: 0.4760 - mae: 0.2944 - pearson_correlation: -0.0772 - euclidean_distance: 0.4876
Epoch 69/200
46/46 [==============================] - 0s 887us/step - loss: 0.2892 - accuracy: 0.5011 - mae: 0.2892 - pearson_correlation: -0.0695 - euclidean_distance: 0.4797
Epoch 70/200
46/46 [==============================] - 0s 884us/step - loss: 0.2876 - accuracy: 0.4993 - mae: 0.2876 - pearson_correlation: -0.0556 - euclidean_distance: 0.4776
Epoch 71/200
46/46 [==============================] - 0s 880us/step - loss: 0.2834 - accuracy: 0.5064 - mae: 0.2834 - pearson_correlation: -0.0459 - euclidean_distance: 0.4696
Epoch 72/200
46/46 [==============================] - 0s 886us/step - loss: 0.2821 - accuracy: 0.5227 - mae: 0.2821 - pearson_correlation: -0.0353 - euclidean_distance: 0.4668
Epoch 73/200
46/46 [==============================] - 0s 881us/step - loss: 0.2787 - accuracy: 0.5152 - mae: 0.2787 - pearson_correlation: -0.0190 - euclidean_distance: 0.4616
Epoch 74/200
46/46 [==============================] - 0s 889us/step - loss: 0.2779 - accuracy: 0.5285 - mae: 0.2779 - pearson_correlation: -0.0110 - euclidean_distance: 0.4598
Epoch 75/200
46/46 [==============================] - 0s 928us/step - loss: 0.2742 - accuracy: 0.5404 - mae: 0.2742 - pearson_correlation: 0.0036 - euclidean_distance: 0.4532
Epoch 76/200
46/46 [==============================] - 0s 894us/step - loss: 0.2732 - accuracy: 0.5373 - mae: 0.2732 - pearson_correlation: 0.0059 - euclidean_distance: 0.4526
Epoch 77/200
46/46 [==============================] - 0s 885us/step - loss: 0.2716 - accuracy: 0.5487 - mae: 0.2716 - pearson_correlation: 0.0175 - euclidean_distance: 0.4488
Epoch 78/200
46/46 [==============================] - 0s 887us/step - loss: 0.2681 - accuracy: 0.5461 - mae: 0.2681 - pearson_correlation: 0.0252 - euclidean_distance: 0.4436
Epoch 79/200
46/46 [==============================] - 0s 877us/step - loss: 0.2659 - accuracy: 0.5527 - mae: 0.2659 - pearson_correlation: 0.0389 - euclidean_distance: 0.4402
Epoch 80/200
46/46 [==============================] - 0s 885us/step - loss: 0.2619 - accuracy: 0.5659 - mae: 0.2619 - pearson_correlation: 0.0592 - euclidean_distance: 0.4340
Epoch 81/200
46/46 [==============================] - 0s 886us/step - loss: 0.2624 - accuracy: 0.5668 - mae: 0.2624 - pearson_correlation: 0.0641 - euclidean_distance: 0.4343
Epoch 82/200
46/46 [==============================] - 0s 881us/step - loss: 0.2577 - accuracy: 0.5651 - mae: 0.2577 - pearson_correlation: 0.0728 - euclidean_distance: 0.4260
Epoch 83/200
46/46 [==============================] - 0s 886us/step - loss: 0.2550 - accuracy: 0.5721 - mae: 0.2550 - pearson_correlation: 0.0775 - euclidean_distance: 0.4218
Epoch 84/200
46/46 [==============================] - 0s 883us/step - loss: 0.2543 - accuracy: 0.5796 - mae: 0.2543 - pearson_correlation: 0.0905 - euclidean_distance: 0.4201
Epoch 85/200
46/46 [==============================] - 0s 878us/step - loss: 0.2537 - accuracy: 0.5779 - mae: 0.2537 - pearson_correlation: 0.0989 - euclidean_distance: 0.4183
Epoch 86/200
46/46 [==============================] - 0s 873us/step - loss: 0.2511 - accuracy: 0.5849 - mae: 0.2511 - pearson_correlation: 0.1149 - euclidean_distance: 0.4138
Epoch 87/200
46/46 [==============================] - 0s 905us/step - loss: 0.2481 - accuracy: 0.5880 - mae: 0.2481 - pearson_correlation: 0.1106 - euclidean_distance: 0.4106
Epoch 88/200
46/46 [==============================] - 0s 883us/step - loss: 0.2447 - accuracy: 0.5929 - mae: 0.2447 - pearson_correlation: 0.1302 - euclidean_distance: 0.4050
Epoch 89/200
46/46 [==============================] - 0s 882us/step - loss: 0.2440 - accuracy: 0.5898 - mae: 0.2440 - pearson_correlation: 0.1314 - euclidean_distance: 0.4029
Epoch 90/200
46/46 [==============================] - 0s 884us/step - loss: 0.2447 - accuracy: 0.6034 - mae: 0.2447 - pearson_correlation: 0.1403 - euclidean_distance: 0.4038
Epoch 91/200
46/46 [==============================] - 0s 886us/step - loss: 0.2411 - accuracy: 0.6008 - mae: 0.2411 - pearson_correlation: 0.1491 - euclidean_distance: 0.3985
Epoch 92/200
46/46 [==============================] - 0s 878us/step - loss: 0.2394 - accuracy: 0.6109 - mae: 0.2394 - pearson_correlation: 0.1595 - euclidean_distance: 0.3945
Epoch 93/200
46/46 [==============================] - 0s 889us/step - loss: 0.2402 - accuracy: 0.6048 - mae: 0.2402 - pearson_correlation: 0.1645 - euclidean_distance: 0.3961
Epoch 94/200
46/46 [==============================] - 0s 885us/step - loss: 0.2386 - accuracy: 0.6136 - mae: 0.2386 - pearson_correlation: 0.1682 - euclidean_distance: 0.3926
Epoch 95/200
46/46 [==============================] - 0s 881us/step - loss: 0.2352 - accuracy: 0.6140 - mae: 0.2352 - pearson_correlation: 0.1877 - euclidean_distance: 0.3875
Epoch 96/200
46/46 [==============================] - 0s 880us/step - loss: 0.2353 - accuracy: 0.6228 - mae: 0.2353 - pearson_correlation: 0.1881 - euclidean_distance: 0.3872
Epoch 97/200
46/46 [==============================] - 0s 876us/step - loss: 0.2315 - accuracy: 0.6246 - mae: 0.2315 - pearson_correlation: 0.2022 - euclidean_distance: 0.3816
Epoch 98/200
46/46 [==============================] - 0s 886us/step - loss: 0.2317 - accuracy: 0.6264 - mae: 0.2317 - pearson_correlation: 0.2071 - euclidean_distance: 0.3812
Epoch 99/200
46/46 [==============================] - 0s 884us/step - loss: 0.2298 - accuracy: 0.6361 - mae: 0.2298 - pearson_correlation: 0.2058 - euclidean_distance: 0.3790
Epoch 100/200
46/46 [==============================] - 0s 879us/step - loss: 0.2235 - accuracy: 0.6295 - mae: 0.2235 - pearson_correlation: 0.2172 - euclidean_distance: 0.3694
Epoch 101/200
46/46 [==============================] - 0s 881us/step - loss: 0.2236 - accuracy: 0.6423 - mae: 0.2236 - pearson_correlation: 0.2291 - euclidean_distance: 0.3687
Epoch 102/200
46/46 [==============================] - 0s 887us/step - loss: 0.2232 - accuracy: 0.6414 - mae: 0.2232 - pearson_correlation: 0.2308 - euclidean_distance: 0.3681
Epoch 103/200
46/46 [==============================] - 0s 886us/step - loss: 0.2256 - accuracy: 0.6568 - mae: 0.2256 - pearson_correlation: 0.2408 - euclidean_distance: 0.3708
Epoch 104/200
46/46 [==============================] - 0s 886us/step - loss: 0.2206 - accuracy: 0.6506 - mae: 0.2206 - pearson_correlation: 0.2450 - euclidean_distance: 0.3633
Epoch 105/200
46/46 [==============================] - 0s 887us/step - loss: 0.2201 - accuracy: 0.6551 - mae: 0.2201 - pearson_correlation: 0.2455 - euclidean_distance: 0.3624
Epoch 106/200
46/46 [==============================] - 0s 882us/step - loss: 0.2201 - accuracy: 0.6524 - mae: 0.2201 - pearson_correlation: 0.2557 - euclidean_distance: 0.3620
Epoch 107/200
46/46 [==============================] - 0s 885us/step - loss: 0.2137 - accuracy: 0.6568 - mae: 0.2137 - pearson_correlation: 0.2663 - euclidean_distance: 0.3516
Epoch 108/200
46/46 [==============================] - 0s 886us/step - loss: 0.2200 - accuracy: 0.6696 - mae: 0.2200 - pearson_correlation: 0.2787 - euclidean_distance: 0.3602
Epoch 109/200
46/46 [==============================] - 0s 879us/step - loss: 0.2148 - accuracy: 0.6678 - mae: 0.2148 - pearson_correlation: 0.2727 - euclidean_distance: 0.3528
Epoch 110/200
46/46 [==============================] - 0s 890us/step - loss: 0.2131 - accuracy: 0.6758 - mae: 0.2131 - pearson_correlation: 0.2878 - euclidean_distance: 0.3502
Epoch 111/200
46/46 [==============================] - 0s 911us/step - loss: 0.2099 - accuracy: 0.6846 - mae: 0.2099 - pearson_correlation: 0.2896 - euclidean_distance: 0.3452
Epoch 112/200
46/46 [==============================] - 0s 923us/step - loss: 0.2078 - accuracy: 0.6850 - mae: 0.2078 - pearson_correlation: 0.3076 - euclidean_distance: 0.3420
Epoch 113/200
46/46 [==============================] - 0s 995us/step - loss: 0.2094 - accuracy: 0.6908 - mae: 0.2094 - pearson_correlation: 0.3056 - euclidean_distance: 0.3437
Epoch 114/200
46/46 [==============================] - 0s 988us/step - loss: 0.2088 - accuracy: 0.6780 - mae: 0.2088 - pearson_correlation: 0.3043 - euclidean_distance: 0.3428
Epoch 115/200
46/46 [==============================] - 0s 965us/step - loss: 0.2051 - accuracy: 0.6987 - mae: 0.2051 - pearson_correlation: 0.3180 - euclidean_distance: 0.3371
Epoch 116/200
46/46 [==============================] - 0s 971us/step - loss: 0.2044 - accuracy: 0.6970 - mae: 0.2044 - pearson_correlation: 0.3194 - euclidean_distance: 0.3352
Epoch 117/200
46/46 [==============================] - 0s 970us/step - loss: 0.2081 - accuracy: 0.6952 - mae: 0.2081 - pearson_correlation: 0.3211 - euclidean_distance: 0.3405
Epoch 118/200
46/46 [==============================] - 0s 998us/step - loss: 0.2008 - accuracy: 0.7049 - mae: 0.2008 - pearson_correlation: 0.3356 - euclidean_distance: 0.3301
Epoch 119/200
46/46 [==============================] - 0s 1ms/step - loss: 0.2033 - accuracy: 0.7049 - mae: 0.2033 - pearson_correlation: 0.3372 - euclidean_distance: 0.3336
Epoch 120/200
46/46 [==============================] - 0s 979us/step - loss: 0.2003 - accuracy: 0.7155 - mae: 0.2003 - pearson_correlation: 0.3474 - euclidean_distance: 0.3281
Epoch 121/200
46/46 [==============================] - 0s 1000us/step - loss: 0.1982 - accuracy: 0.7203 - mae: 0.1982 - pearson_correlation: 0.3478 - euclidean_distance: 0.3253
Epoch 122/200
46/46 [==============================] - 0s 1ms/step - loss: 0.2010 - accuracy: 0.7270 - mae: 0.2010 - pearson_correlation: 0.3475 - euclidean_distance: 0.3290
Epoch 123/200
46/46 [==============================] - 0s 1ms/step - loss: 0.1952 - accuracy: 0.7247 - mae: 0.1952 - pearson_correlation: 0.3610 - euclidean_distance: 0.3202
Epoch 124/200
46/46 [==============================] - 0s 978us/step - loss: 0.1943 - accuracy: 0.7296 - mae: 0.1943 - pearson_correlation: 0.3639 - euclidean_distance: 0.3180
Epoch 125/200
46/46 [==============================] - 0s 885us/step - loss: 0.1951 - accuracy: 0.7331 - mae: 0.1951 - pearson_correlation: 0.3708 - euclidean_distance: 0.3187
Epoch 126/200
46/46 [==============================] - 0s 884us/step - loss: 0.1931 - accuracy: 0.7309 - mae: 0.1931 - pearson_correlation: 0.3736 - euclidean_distance: 0.3167
Epoch 127/200
46/46 [==============================] - 0s 894us/step - loss: 0.1895 - accuracy: 0.7309 - mae: 0.1895 - pearson_correlation: 0.3807 - euclidean_distance: 0.3116
Epoch 128/200
46/46 [==============================] - 0s 888us/step - loss: 0.1892 - accuracy: 0.7446 - mae: 0.1892 - pearson_correlation: 0.3927 - euclidean_distance: 0.3102
Epoch 129/200
46/46 [==============================] - 0s 889us/step - loss: 0.1923 - accuracy: 0.7437 - mae: 0.1923 - pearson_correlation: 0.3885 - euclidean_distance: 0.3130
Epoch 130/200
46/46 [==============================] - 0s 886us/step - loss: 0.1845 - accuracy: 0.7552 - mae: 0.1845 - pearson_correlation: 0.4008 - euclidean_distance: 0.3026
Epoch 131/200
46/46 [==============================] - 0s 884us/step - loss: 0.1860 - accuracy: 0.7565 - mae: 0.1860 - pearson_correlation: 0.4029 - euclidean_distance: 0.3043
Epoch 132/200
46/46 [==============================] - 0s 896us/step - loss: 0.1855 - accuracy: 0.7574 - mae: 0.1855 - pearson_correlation: 0.4120 - euclidean_distance: 0.3037
Epoch 133/200
46/46 [==============================] - 0s 880us/step - loss: 0.1833 - accuracy: 0.7561 - mae: 0.1833 - pearson_correlation: 0.4176 - euclidean_distance: 0.3004
Epoch 134/200
46/46 [==============================] - 0s 882us/step - loss: 0.1829 - accuracy: 0.7644 - mae: 0.1829 - pearson_correlation: 0.4248 - euclidean_distance: 0.2994
Epoch 135/200
46/46 [==============================] - 0s 921us/step - loss: 0.1824 - accuracy: 0.7649 - mae: 0.1824 - pearson_correlation: 0.4231 - euclidean_distance: 0.2985
Epoch 136/200
46/46 [==============================] - 0s 969us/step - loss: 0.1778 - accuracy: 0.7702 - mae: 0.1778 - pearson_correlation: 0.4335 - euclidean_distance: 0.2911
Epoch 137/200
46/46 [==============================] - 0s 891us/step - loss: 0.1775 - accuracy: 0.7706 - mae: 0.1775 - pearson_correlation: 0.4378 - euclidean_distance: 0.2912
Epoch 138/200
46/46 [==============================] - 0s 902us/step - loss: 0.1779 - accuracy: 0.7777 - mae: 0.1779 - pearson_correlation: 0.4436 - euclidean_distance: 0.2916
Epoch 139/200
46/46 [==============================] - 0s 899us/step - loss: 0.1788 - accuracy: 0.7843 - mae: 0.1788 - pearson_correlation: 0.4447 - euclidean_distance: 0.2920
Epoch 140/200
46/46 [==============================] - 0s 883us/step - loss: 0.1746 - accuracy: 0.7887 - mae: 0.1746 - pearson_correlation: 0.4439 - euclidean_distance: 0.2858
Epoch 141/200
46/46 [==============================] - 0s 892us/step - loss: 0.1734 - accuracy: 0.7843 - mae: 0.1734 - pearson_correlation: 0.4541 - euclidean_distance: 0.2847
Epoch 142/200
46/46 [==============================] - 0s 883us/step - loss: 0.1756 - accuracy: 0.7869 - mae: 0.1756 - pearson_correlation: 0.4560 - euclidean_distance: 0.2873
Epoch 143/200
46/46 [==============================] - 0s 884us/step - loss: 0.1731 - accuracy: 0.7883 - mae: 0.1731 - pearson_correlation: 0.4667 - euclidean_distance: 0.2826
Epoch 144/200
46/46 [==============================] - 0s 887us/step - loss: 0.1682 - accuracy: 0.7856 - mae: 0.1682 - pearson_correlation: 0.4675 - euclidean_distance: 0.2770
Epoch 145/200
46/46 [==============================] - 0s 888us/step - loss: 0.1737 - accuracy: 0.7927 - mae: 0.1737 - pearson_correlation: 0.4724 - euclidean_distance: 0.2835
Epoch 146/200
46/46 [==============================] - 0s 885us/step - loss: 0.1667 - accuracy: 0.7936 - mae: 0.1667 - pearson_correlation: 0.4727 - euclidean_distance: 0.2738
Epoch 147/200
46/46 [==============================] - 0s 883us/step - loss: 0.1683 - accuracy: 0.8024 - mae: 0.1683 - pearson_correlation: 0.4768 - euclidean_distance: 0.2765
Epoch 148/200
46/46 [==============================] - 0s 886us/step - loss: 0.1672 - accuracy: 0.7931 - mae: 0.1672 - pearson_correlation: 0.4849 - euclidean_distance: 0.2734
Epoch 149/200
46/46 [==============================] - 0s 882us/step - loss: 0.1643 - accuracy: 0.7949 - mae: 0.1643 - pearson_correlation: 0.4872 - euclidean_distance: 0.2705
Epoch 150/200
46/46 [==============================] - 0s 888us/step - loss: 0.1636 - accuracy: 0.8037 - mae: 0.1636 - pearson_correlation: 0.4952 - euclidean_distance: 0.2681
Epoch 151/200
46/46 [==============================] - 0s 891us/step - loss: 0.1637 - accuracy: 0.8068 - mae: 0.1637 - pearson_correlation: 0.4896 - euclidean_distance: 0.2686
Epoch 152/200
46/46 [==============================] - 0s 877us/step - loss: 0.1597 - accuracy: 0.8064 - mae: 0.1597 - pearson_correlation: 0.5011 - euclidean_distance: 0.2620
Epoch 153/200
46/46 [==============================] - 0s 881us/step - loss: 0.1621 - accuracy: 0.8108 - mae: 0.1621 - pearson_correlation: 0.4998 - euclidean_distance: 0.2657
Epoch 154/200
46/46 [==============================] - 0s 886us/step - loss: 0.1602 - accuracy: 0.8072 - mae: 0.1602 - pearson_correlation: 0.5063 - euclidean_distance: 0.2635
Epoch 155/200
46/46 [==============================] - 0s 883us/step - loss: 0.1602 - accuracy: 0.8213 - mae: 0.1602 - pearson_correlation: 0.5070 - euclidean_distance: 0.2618
Epoch 156/200
46/46 [==============================] - 0s 895us/step - loss: 0.1600 - accuracy: 0.8169 - mae: 0.1600 - pearson_correlation: 0.5133 - euclidean_distance: 0.2627
Epoch 157/200
46/46 [==============================] - 0s 888us/step - loss: 0.1571 - accuracy: 0.8244 - mae: 0.1571 - pearson_correlation: 0.5150 - euclidean_distance: 0.2577
Epoch 158/200
46/46 [==============================] - 0s 879us/step - loss: 0.1563 - accuracy: 0.8191 - mae: 0.1563 - pearson_correlation: 0.5163 - euclidean_distance: 0.2569
Epoch 159/200
46/46 [==============================] - 0s 882us/step - loss: 0.1532 - accuracy: 0.8236 - mae: 0.1532 - pearson_correlation: 0.5225 - euclidean_distance: 0.2518
Epoch 160/200
46/46 [==============================] - 0s 886us/step - loss: 0.1533 - accuracy: 0.8319 - mae: 0.1533 - pearson_correlation: 0.5293 - euclidean_distance: 0.2520
Epoch 161/200
46/46 [==============================] - 0s 879us/step - loss: 0.1545 - accuracy: 0.8244 - mae: 0.1545 - pearson_correlation: 0.5276 - euclidean_distance: 0.2535
Epoch 162/200
46/46 [==============================] - 0s 894us/step - loss: 0.1488 - accuracy: 0.8372 - mae: 0.1488 - pearson_correlation: 0.5473 - euclidean_distance: 0.2446
Epoch 163/200
46/46 [==============================] - 0s 884us/step - loss: 0.1532 - accuracy: 0.8377 - mae: 0.1532 - pearson_correlation: 0.5396 - euclidean_distance: 0.2505
Epoch 164/200
46/46 [==============================] - 0s 884us/step - loss: 0.1530 - accuracy: 0.8408 - mae: 0.1530 - pearson_correlation: 0.5397 - euclidean_distance: 0.2493
Epoch 165/200
46/46 [==============================] - 0s 891us/step - loss: 0.1498 - accuracy: 0.8430 - mae: 0.1498 - pearson_correlation: 0.5463 - euclidean_distance: 0.2450
Epoch 166/200
46/46 [==============================] - 0s 886us/step - loss: 0.1497 - accuracy: 0.8447 - mae: 0.1497 - pearson_correlation: 0.5426 - euclidean_distance: 0.2457
Epoch 167/200
46/46 [==============================] - 0s 887us/step - loss: 0.1470 - accuracy: 0.8474 - mae: 0.1470 - pearson_correlation: 0.5465 - euclidean_distance: 0.2417
Epoch 168/200
46/46 [==============================] - 0s 887us/step - loss: 0.1472 - accuracy: 0.8500 - mae: 0.1472 - pearson_correlation: 0.5503 - euclidean_distance: 0.2411
Epoch 169/200
46/46 [==============================] - 0s 884us/step - loss: 0.1438 - accuracy: 0.8527 - mae: 0.1438 - pearson_correlation: 0.5593 - euclidean_distance: 0.2361
Epoch 170/200
46/46 [==============================] - 0s 888us/step - loss: 0.1484 - accuracy: 0.8474 - mae: 0.1484 - pearson_correlation: 0.5575 - euclidean_distance: 0.2422
Epoch 171/200
46/46 [==============================] - 0s 887us/step - loss: 0.1438 - accuracy: 0.8536 - mae: 0.1438 - pearson_correlation: 0.5641 - euclidean_distance: 0.2358
Epoch 172/200
46/46 [==============================] - 0s 883us/step - loss: 0.1457 - accuracy: 0.8549 - mae: 0.1457 - pearson_correlation: 0.5563 - euclidean_distance: 0.2388
Epoch 173/200
46/46 [==============================] - 0s 887us/step - loss: 0.1441 - accuracy: 0.8668 - mae: 0.1441 - pearson_correlation: 0.5681 - euclidean_distance: 0.2360
Epoch 174/200
46/46 [==============================] - 0s 888us/step - loss: 0.1411 - accuracy: 0.8619 - mae: 0.1411 - pearson_correlation: 0.5731 - euclidean_distance: 0.2318
Epoch 175/200
46/46 [==============================] - 0s 894us/step - loss: 0.1425 - accuracy: 0.8646 - mae: 0.1425 - pearson_correlation: 0.5731 - euclidean_distance: 0.2328
Epoch 176/200
46/46 [==============================] - 0s 893us/step - loss: 0.1438 - accuracy: 0.8659 - mae: 0.1438 - pearson_correlation: 0.5706 - euclidean_distance: 0.2352
Epoch 177/200
46/46 [==============================] - 0s 888us/step - loss: 0.1392 - accuracy: 0.8677 - mae: 0.1392 - pearson_correlation: 0.5788 - euclidean_distance: 0.2280
Epoch 178/200
46/46 [==============================] - 0s 878us/step - loss: 0.1389 - accuracy: 0.8738 - mae: 0.1389 - pearson_correlation: 0.5813 - euclidean_distance: 0.2271
Epoch 179/200
46/46 [==============================] - 0s 881us/step - loss: 0.1373 - accuracy: 0.8703 - mae: 0.1373 - pearson_correlation: 0.5819 - euclidean_distance: 0.2252
Epoch 180/200
46/46 [==============================] - 0s 890us/step - loss: 0.1395 - accuracy: 0.8694 - mae: 0.1395 - pearson_correlation: 0.5826 - euclidean_distance: 0.2286
Epoch 181/200
46/46 [==============================] - 0s 879us/step - loss: 0.1424 - accuracy: 0.8738 - mae: 0.1424 - pearson_correlation: 0.5721 - euclidean_distance: 0.2325
Epoch 182/200
46/46 [==============================] - 0s 885us/step - loss: 0.1378 - accuracy: 0.8840 - mae: 0.1378 - pearson_correlation: 0.5836 - euclidean_distance: 0.2252
Epoch 183/200
46/46 [==============================] - 0s 887us/step - loss: 0.1367 - accuracy: 0.8853 - mae: 0.1367 - pearson_correlation: 0.5868 - euclidean_distance: 0.2237
Epoch 184/200
46/46 [==============================] - 0s 886us/step - loss: 0.1322 - accuracy: 0.8835 - mae: 0.1322 - pearson_correlation: 0.5967 - euclidean_distance: 0.2173
Epoch 185/200
46/46 [==============================] - 0s 882us/step - loss: 0.1353 - accuracy: 0.8915 - mae: 0.1353 - pearson_correlation: 0.5939 - euclidean_distance: 0.2206
Epoch 186/200
46/46 [==============================] - 0s 884us/step - loss: 0.1344 - accuracy: 0.8880 - mae: 0.1344 - pearson_correlation: 0.5949 - euclidean_distance: 0.2198
Epoch 187/200
46/46 [==============================] - 0s 888us/step - loss: 0.1332 - accuracy: 0.8849 - mae: 0.1332 - pearson_correlation: 0.5990 - euclidean_distance: 0.2181
Epoch 188/200
46/46 [==============================] - 0s 887us/step - loss: 0.1324 - accuracy: 0.8888 - mae: 0.1324 - pearson_correlation: 0.5996 - euclidean_distance: 0.2162
Epoch 189/200
46/46 [==============================] - 0s 880us/step - loss: 0.1310 - accuracy: 0.8933 - mae: 0.1310 - pearson_correlation: 0.6085 - euclidean_distance: 0.2145
Epoch 190/200
46/46 [==============================] - 0s 885us/step - loss: 0.1320 - accuracy: 0.8959 - mae: 0.1320 - pearson_correlation: 0.5993 - euclidean_distance: 0.2160
Epoch 191/200
46/46 [==============================] - 0s 885us/step - loss: 0.1299 - accuracy: 0.8968 - mae: 0.1299 - pearson_correlation: 0.6087 - euclidean_distance: 0.2124
Epoch 192/200
46/46 [==============================] - 0s 883us/step - loss: 0.1301 - accuracy: 0.8963 - mae: 0.1301 - pearson_correlation: 0.6128 - euclidean_distance: 0.2118
Epoch 193/200
46/46 [==============================] - 0s 884us/step - loss: 0.1314 - accuracy: 0.9034 - mae: 0.1314 - pearson_correlation: 0.6094 - euclidean_distance: 0.2143
Epoch 194/200
46/46 [==============================] - 0s 881us/step - loss: 0.1320 - accuracy: 0.9034 - mae: 0.1320 - pearson_correlation: 0.6073 - euclidean_distance: 0.2153
Epoch 195/200
46/46 [==============================] - 0s 887us/step - loss: 0.1299 - accuracy: 0.9030 - mae: 0.1299 - pearson_correlation: 0.6118 - euclidean_distance: 0.2120
Epoch 196/200
46/46 [==============================] - 0s 889us/step - loss: 0.1273 - accuracy: 0.9065 - mae: 0.1273 - pearson_correlation: 0.6135 - euclidean_distance: 0.2082
Epoch 197/200
46/46 [==============================] - 0s 883us/step - loss: 0.1260 - accuracy: 0.9016 - mae: 0.1260 - pearson_correlation: 0.6185 - euclidean_distance: 0.2066
Epoch 198/200
46/46 [==============================] - 0s 889us/step - loss: 0.1244 - accuracy: 0.9065 - mae: 0.1244 - pearson_correlation: 0.6251 - euclidean_distance: 0.2036
Epoch 199/200
46/46 [==============================] - 0s 896us/step - loss: 0.1247 - accuracy: 0.9135 - mae: 0.1247 - pearson_correlation: 0.6179 - euclidean_distance: 0.2043
Epoch 200/200
46/46 [==============================] - 0s 880us/step - loss: 0.1227 - accuracy: 0.9082 - mae: 0.1227 - pearson_correlation: 0.6307 - euclidean_distance: 0.2007
23/23 [==============================] - 0s 528us/step
Epoch 1/200
46/46 [==============================] - 1s 923us/step - loss: 0.6351 - accuracy: 0.8677 - mae: 0.6351 - pearson_correlation: 0.4988 - euclidean_distance: 0.9179
Epoch 2/200
46/46 [==============================] - 0s 829us/step - loss: 0.6323 - accuracy: 0.8739 - mae: 0.6323 - pearson_correlation: 0.4991 - euclidean_distance: 0.9136
Epoch 3/200
46/46 [==============================] - 0s 882us/step - loss: 0.6293 - accuracy: 0.8721 - mae: 0.6293 - pearson_correlation: 0.5024 - euclidean_distance: 0.9094
Epoch 4/200
46/46 [==============================] - 0s 881us/step - loss: 0.6263 - accuracy: 0.8748 - mae: 0.6263 - pearson_correlation: 0.4971 - euclidean_distance: 0.9058
Epoch 5/200
46/46 [==============================] - 0s 893us/step - loss: 0.6240 - accuracy: 0.8717 - mae: 0.6240 - pearson_correlation: 0.5003 - euclidean_distance: 0.9022
Epoch 6/200
46/46 [==============================] - 0s 893us/step - loss: 0.6207 - accuracy: 0.8796 - mae: 0.6207 - pearson_correlation: 0.4971 - euclidean_distance: 0.8977
Epoch 7/200
46/46 [==============================] - 0s 889us/step - loss: 0.6183 - accuracy: 0.8743 - mae: 0.6183 - pearson_correlation: 0.4956 - euclidean_distance: 0.8941
Epoch 8/200
46/46 [==============================] - 0s 893us/step - loss: 0.6146 - accuracy: 0.8739 - mae: 0.6146 - pearson_correlation: 0.4932 - euclidean_distance: 0.8892
Epoch 9/200
46/46 [==============================] - 0s 891us/step - loss: 0.6120 - accuracy: 0.8765 - mae: 0.6120 - pearson_correlation: 0.4997 - euclidean_distance: 0.8853
Epoch 10/200
46/46 [==============================] - 0s 897us/step - loss: 0.6093 - accuracy: 0.8796 - mae: 0.6093 - pearson_correlation: 0.5007 - euclidean_distance: 0.8813
Epoch 11/200
46/46 [==============================] - 0s 886us/step - loss: 0.6060 - accuracy: 0.8787 - mae: 0.6060 - pearson_correlation: 0.4910 - euclidean_distance: 0.8770
Epoch 12/200
46/46 [==============================] - 0s 907us/step - loss: 0.6015 - accuracy: 0.8810 - mae: 0.6015 - pearson_correlation: 0.4913 - euclidean_distance: 0.8709
Epoch 13/200
46/46 [==============================] - 0s 902us/step - loss: 0.6002 - accuracy: 0.8761 - mae: 0.6002 - pearson_correlation: 0.4949 - euclidean_distance: 0.8688
Epoch 14/200
46/46 [==============================] - 0s 889us/step - loss: 0.5971 - accuracy: 0.8832 - mae: 0.5971 - pearson_correlation: 0.4875 - euclidean_distance: 0.8645
Epoch 15/200
46/46 [==============================] - 0s 895us/step - loss: 0.5931 - accuracy: 0.8858 - mae: 0.5931 - pearson_correlation: 0.4903 - euclidean_distance: 0.8591
Epoch 16/200
46/46 [==============================] - 0s 893us/step - loss: 0.5901 - accuracy: 0.8836 - mae: 0.5901 - pearson_correlation: 0.4950 - euclidean_distance: 0.8546
Epoch 17/200
46/46 [==============================] - 0s 890us/step - loss: 0.5868 - accuracy: 0.8862 - mae: 0.5868 - pearson_correlation: 0.4922 - euclidean_distance: 0.8500
Epoch 18/200
46/46 [==============================] - 0s 889us/step - loss: 0.5833 - accuracy: 0.8787 - mae: 0.5833 - pearson_correlation: 0.4933 - euclidean_distance: 0.8450
Epoch 19/200
46/46 [==============================] - 0s 890us/step - loss: 0.5793 - accuracy: 0.8805 - mae: 0.5793 - pearson_correlation: 0.4931 - euclidean_distance: 0.8395
Epoch 20/200
46/46 [==============================] - 0s 889us/step - loss: 0.5775 - accuracy: 0.8810 - mae: 0.5775 - pearson_correlation: 0.4985 - euclidean_distance: 0.8370
Epoch 21/200
46/46 [==============================] - 0s 892us/step - loss: 0.5734 - accuracy: 0.8902 - mae: 0.5734 - pearson_correlation: 0.4899 - euclidean_distance: 0.8311
Epoch 22/200
46/46 [==============================] - 0s 891us/step - loss: 0.5702 - accuracy: 0.8832 - mae: 0.5702 - pearson_correlation: 0.4939 - euclidean_distance: 0.8268
Epoch 23/200
46/46 [==============================] - 0s 893us/step - loss: 0.5661 - accuracy: 0.8840 - mae: 0.5661 - pearson_correlation: 0.4884 - euclidean_distance: 0.8213
Epoch 24/200
46/46 [==============================] - 0s 886us/step - loss: 0.5630 - accuracy: 0.8823 - mae: 0.5630 - pearson_correlation: 0.4872 - euclidean_distance: 0.8166
Epoch 25/200
46/46 [==============================] - 0s 890us/step - loss: 0.5591 - accuracy: 0.8832 - mae: 0.5591 - pearson_correlation: 0.4854 - euclidean_distance: 0.8114
Epoch 26/200
46/46 [==============================] - 0s 887us/step - loss: 0.5557 - accuracy: 0.8814 - mae: 0.5557 - pearson_correlation: 0.4842 - euclidean_distance: 0.8068
Epoch 27/200
46/46 [==============================] - 0s 883us/step - loss: 0.5513 - accuracy: 0.8858 - mae: 0.5513 - pearson_correlation: 0.4884 - euclidean_distance: 0.8004
Epoch 28/200
46/46 [==============================] - 0s 886us/step - loss: 0.5484 - accuracy: 0.8902 - mae: 0.5484 - pearson_correlation: 0.4866 - euclidean_distance: 0.7960
Epoch 29/200
46/46 [==============================] - 0s 891us/step - loss: 0.5439 - accuracy: 0.8832 - mae: 0.5439 - pearson_correlation: 0.4843 - euclidean_distance: 0.7901
Epoch 30/200
46/46 [==============================] - 0s 889us/step - loss: 0.5408 - accuracy: 0.8858 - mae: 0.5408 - pearson_correlation: 0.4866 - euclidean_distance: 0.7859
Epoch 31/200
46/46 [==============================] - 0s 896us/step - loss: 0.5369 - accuracy: 0.8823 - mae: 0.5369 - pearson_correlation: 0.4836 - euclidean_distance: 0.7802
Epoch 32/200
46/46 [==============================] - 0s 887us/step - loss: 0.5329 - accuracy: 0.8933 - mae: 0.5329 - pearson_correlation: 0.4911 - euclidean_distance: 0.7742
Epoch 33/200
46/46 [==============================] - 0s 884us/step - loss: 0.5292 - accuracy: 0.8884 - mae: 0.5292 - pearson_correlation: 0.4812 - euclidean_distance: 0.7695
Epoch 34/200
46/46 [==============================] - 0s 878us/step - loss: 0.5256 - accuracy: 0.8889 - mae: 0.5256 - pearson_correlation: 0.4829 - euclidean_distance: 0.7645
Epoch 35/200
46/46 [==============================] - 0s 888us/step - loss: 0.5215 - accuracy: 0.8893 - mae: 0.5215 - pearson_correlation: 0.4823 - euclidean_distance: 0.7589
Epoch 36/200
46/46 [==============================] - 0s 881us/step - loss: 0.5171 - accuracy: 0.8840 - mae: 0.5171 - pearson_correlation: 0.4835 - euclidean_distance: 0.7527
Epoch 37/200
46/46 [==============================] - 0s 887us/step - loss: 0.5132 - accuracy: 0.8884 - mae: 0.5132 - pearson_correlation: 0.4854 - euclidean_distance: 0.7472
Epoch 38/200
46/46 [==============================] - 0s 889us/step - loss: 0.5086 - accuracy: 0.8880 - mae: 0.5086 - pearson_correlation: 0.4773 - euclidean_distance: 0.7408
Epoch 39/200
46/46 [==============================] - 0s 881us/step - loss: 0.5049 - accuracy: 0.8889 - mae: 0.5049 - pearson_correlation: 0.4775 - euclidean_distance: 0.7357
Epoch 40/200
46/46 [==============================] - 0s 877us/step - loss: 0.5008 - accuracy: 0.8924 - mae: 0.5008 - pearson_correlation: 0.4808 - euclidean_distance: 0.7297
Epoch 41/200
46/46 [==============================] - 0s 894us/step - loss: 0.4965 - accuracy: 0.8898 - mae: 0.4965 - pearson_correlation: 0.4812 - euclidean_distance: 0.7239
Epoch 42/200
46/46 [==============================] - 0s 885us/step - loss: 0.4921 - accuracy: 0.8959 - mae: 0.4921 - pearson_correlation: 0.4800 - euclidean_distance: 0.7176
Epoch 43/200
46/46 [==============================] - 0s 892us/step - loss: 0.4882 - accuracy: 0.8898 - mae: 0.4882 - pearson_correlation: 0.4789 - euclidean_distance: 0.7122
Epoch 44/200
46/46 [==============================] - 0s 884us/step - loss: 0.4836 - accuracy: 0.8884 - mae: 0.4836 - pearson_correlation: 0.4812 - euclidean_distance: 0.7060
Epoch 45/200
46/46 [==============================] - 0s 888us/step - loss: 0.4786 - accuracy: 0.8937 - mae: 0.4786 - pearson_correlation: 0.4811 - euclidean_distance: 0.6990
Epoch 46/200
46/46 [==============================] - 0s 883us/step - loss: 0.4750 - accuracy: 0.8907 - mae: 0.4750 - pearson_correlation: 0.4735 - euclidean_distance: 0.6940
Epoch 47/200
46/46 [==============================] - 0s 884us/step - loss: 0.4710 - accuracy: 0.8937 - mae: 0.4710 - pearson_correlation: 0.4819 - euclidean_distance: 0.6883
Epoch 48/200
46/46 [==============================] - 0s 889us/step - loss: 0.4654 - accuracy: 0.8968 - mae: 0.4654 - pearson_correlation: 0.4806 - euclidean_distance: 0.6808
Epoch 49/200
46/46 [==============================] - 0s 890us/step - loss: 0.4596 - accuracy: 0.8902 - mae: 0.4596 - pearson_correlation: 0.4818 - euclidean_distance: 0.6728
Epoch 50/200
46/46 [==============================] - 0s 887us/step - loss: 0.4560 - accuracy: 0.9012 - mae: 0.4560 - pearson_correlation: 0.4823 - euclidean_distance: 0.6671
Epoch 51/200
46/46 [==============================] - 0s 889us/step - loss: 0.4514 - accuracy: 0.8959 - mae: 0.4514 - pearson_correlation: 0.4817 - euclidean_distance: 0.6610
Epoch 52/200
46/46 [==============================] - 0s 888us/step - loss: 0.4468 - accuracy: 0.8933 - mae: 0.4468 - pearson_correlation: 0.4809 - euclidean_distance: 0.6550
Epoch 53/200
46/46 [==============================] - 0s 891us/step - loss: 0.4423 - accuracy: 0.8920 - mae: 0.4423 - pearson_correlation: 0.4816 - euclidean_distance: 0.6489
Epoch 54/200
46/46 [==============================] - 0s 880us/step - loss: 0.4378 - accuracy: 0.8951 - mae: 0.4378 - pearson_correlation: 0.4792 - euclidean_distance: 0.6423
Epoch 55/200
46/46 [==============================] - 0s 895us/step - loss: 0.4318 - accuracy: 0.8981 - mae: 0.4318 - pearson_correlation: 0.4869 - euclidean_distance: 0.6337
Epoch 56/200
46/46 [==============================] - 0s 881us/step - loss: 0.4275 - accuracy: 0.9008 - mae: 0.4275 - pearson_correlation: 0.4770 - euclidean_distance: 0.6280
Epoch 57/200
46/46 [==============================] - 0s 877us/step - loss: 0.4231 - accuracy: 0.9017 - mae: 0.4231 - pearson_correlation: 0.4805 - euclidean_distance: 0.6218
Epoch 58/200
46/46 [==============================] - 0s 878us/step - loss: 0.4181 - accuracy: 0.8977 - mae: 0.4181 - pearson_correlation: 0.4849 - euclidean_distance: 0.6150
Epoch 59/200
46/46 [==============================] - 0s 888us/step - loss: 0.4118 - accuracy: 0.9056 - mae: 0.4118 - pearson_correlation: 0.4857 - euclidean_distance: 0.6064
Epoch 60/200
46/46 [==============================] - 0s 901us/step - loss: 0.4072 - accuracy: 0.8995 - mae: 0.4072 - pearson_correlation: 0.4812 - euclidean_distance: 0.5997
Epoch 61/200
46/46 [==============================] - 0s 890us/step - loss: 0.4024 - accuracy: 0.8986 - mae: 0.4024 - pearson_correlation: 0.4818 - euclidean_distance: 0.5933
Epoch 62/200
46/46 [==============================] - 0s 894us/step - loss: 0.3978 - accuracy: 0.9039 - mae: 0.3978 - pearson_correlation: 0.4821 - euclidean_distance: 0.5866
Epoch 63/200
46/46 [==============================] - 0s 887us/step - loss: 0.3922 - accuracy: 0.9070 - mae: 0.3922 - pearson_correlation: 0.4842 - euclidean_distance: 0.5791
Epoch 64/200
46/46 [==============================] - 0s 896us/step - loss: 0.3863 - accuracy: 0.9078 - mae: 0.3863 - pearson_correlation: 0.4871 - euclidean_distance: 0.5705
Epoch 65/200
46/46 [==============================] - 0s 886us/step - loss: 0.3815 - accuracy: 0.9017 - mae: 0.3815 - pearson_correlation: 0.4860 - euclidean_distance: 0.5639
Epoch 66/200
46/46 [==============================] - 0s 889us/step - loss: 0.3770 - accuracy: 0.9052 - mae: 0.3770 - pearson_correlation: 0.4868 - euclidean_distance: 0.5577
Epoch 67/200
46/46 [==============================] - 0s 883us/step - loss: 0.3706 - accuracy: 0.9061 - mae: 0.3706 - pearson_correlation: 0.4829 - euclidean_distance: 0.5492
Epoch 68/200
46/46 [==============================] - 0s 890us/step - loss: 0.3655 - accuracy: 0.9026 - mae: 0.3655 - pearson_correlation: 0.4881 - euclidean_distance: 0.5417
Epoch 69/200
46/46 [==============================] - 0s 883us/step - loss: 0.3598 - accuracy: 0.9101 - mae: 0.3598 - pearson_correlation: 0.4900 - euclidean_distance: 0.5343
Epoch 70/200
46/46 [==============================] - 0s 884us/step - loss: 0.3560 - accuracy: 0.9123 - mae: 0.3560 - pearson_correlation: 0.4964 - euclidean_distance: 0.5284
Epoch 71/200
46/46 [==============================] - 0s 885us/step - loss: 0.3490 - accuracy: 0.9096 - mae: 0.3490 - pearson_correlation: 0.4910 - euclidean_distance: 0.5189
Epoch 72/200
46/46 [==============================] - 0s 900us/step - loss: 0.3441 - accuracy: 0.9127 - mae: 0.3441 - pearson_correlation: 0.4940 - euclidean_distance: 0.5121
Epoch 73/200
46/46 [==============================] - 0s 895us/step - loss: 0.3385 - accuracy: 0.9061 - mae: 0.3385 - pearson_correlation: 0.4901 - euclidean_distance: 0.5046
Epoch 74/200
46/46 [==============================] - 0s 890us/step - loss: 0.3341 - accuracy: 0.9101 - mae: 0.3341 - pearson_correlation: 0.4893 - euclidean_distance: 0.4978
Epoch 75/200
46/46 [==============================] - 0s 893us/step - loss: 0.3290 - accuracy: 0.9096 - mae: 0.3290 - pearson_correlation: 0.4875 - euclidean_distance: 0.4908
Epoch 76/200
46/46 [==============================] - 0s 888us/step - loss: 0.3225 - accuracy: 0.9114 - mae: 0.3225 - pearson_correlation: 0.4942 - euclidean_distance: 0.4818
Epoch 77/200
46/46 [==============================] - 0s 890us/step - loss: 0.3183 - accuracy: 0.9153 - mae: 0.3183 - pearson_correlation: 0.4947 - euclidean_distance: 0.4758
Epoch 78/200
46/46 [==============================] - 0s 890us/step - loss: 0.3118 - accuracy: 0.9087 - mae: 0.3118 - pearson_correlation: 0.4976 - euclidean_distance: 0.4671
Epoch 79/200
46/46 [==============================] - 0s 887us/step - loss: 0.3070 - accuracy: 0.9145 - mae: 0.3070 - pearson_correlation: 0.4998 - euclidean_distance: 0.4598
Epoch 80/200
46/46 [==============================] - 0s 896us/step - loss: 0.3025 - accuracy: 0.9158 - mae: 0.3025 - pearson_correlation: 0.4969 - euclidean_distance: 0.4541
Epoch 81/200
46/46 [==============================] - 0s 892us/step - loss: 0.2970 - accuracy: 0.9162 - mae: 0.2970 - pearson_correlation: 0.4978 - euclidean_distance: 0.4455
Epoch 82/200
46/46 [==============================] - 0s 942us/step - loss: 0.2922 - accuracy: 0.9184 - mae: 0.2922 - pearson_correlation: 0.4987 - euclidean_distance: 0.4392
Epoch 83/200
46/46 [==============================] - 0s 908us/step - loss: 0.2866 - accuracy: 0.9189 - mae: 0.2866 - pearson_correlation: 0.5046 - euclidean_distance: 0.4313
Epoch 84/200
46/46 [==============================] - 0s 882us/step - loss: 0.2826 - accuracy: 0.9255 - mae: 0.2826 - pearson_correlation: 0.5061 - euclidean_distance: 0.4253
Epoch 85/200
46/46 [==============================] - 0s 883us/step - loss: 0.2766 - accuracy: 0.9242 - mae: 0.2766 - pearson_correlation: 0.5084 - euclidean_distance: 0.4167
Epoch 86/200
46/46 [==============================] - 0s 892us/step - loss: 0.2719 - accuracy: 0.9255 - mae: 0.2719 - pearson_correlation: 0.5020 - euclidean_distance: 0.4103
Epoch 87/200
46/46 [==============================] - 0s 896us/step - loss: 0.2667 - accuracy: 0.9268 - mae: 0.2667 - pearson_correlation: 0.5136 - euclidean_distance: 0.4026
Epoch 88/200
46/46 [==============================] - 0s 892us/step - loss: 0.2630 - accuracy: 0.9237 - mae: 0.2630 - pearson_correlation: 0.5083 - euclidean_distance: 0.3974
Epoch 89/200
46/46 [==============================] - 0s 885us/step - loss: 0.2585 - accuracy: 0.9255 - mae: 0.2585 - pearson_correlation: 0.5191 - euclidean_distance: 0.3908
Epoch 90/200
46/46 [==============================] - 0s 895us/step - loss: 0.2553 - accuracy: 0.9220 - mae: 0.2553 - pearson_correlation: 0.5166 - euclidean_distance: 0.3862
Epoch 91/200
46/46 [==============================] - 0s 885us/step - loss: 0.2501 - accuracy: 0.9237 - mae: 0.2501 - pearson_correlation: 0.5172 - euclidean_distance: 0.3786
Epoch 92/200
46/46 [==============================] - 0s 901us/step - loss: 0.2452 - accuracy: 0.9286 - mae: 0.2452 - pearson_correlation: 0.5237 - euclidean_distance: 0.3722
Epoch 93/200
46/46 [==============================] - 0s 909us/step - loss: 0.2407 - accuracy: 0.9312 - mae: 0.2407 - pearson_correlation: 0.5239 - euclidean_distance: 0.3655
Epoch 94/200
46/46 [==============================] - 0s 955us/step - loss: 0.2395 - accuracy: 0.9299 - mae: 0.2395 - pearson_correlation: 0.5260 - euclidean_distance: 0.3640
Epoch 95/200
46/46 [==============================] - 0s 897us/step - loss: 0.2345 - accuracy: 0.9343 - mae: 0.2345 - pearson_correlation: 0.5274 - euclidean_distance: 0.3570
Epoch 96/200
46/46 [==============================] - 0s 900us/step - loss: 0.2315 - accuracy: 0.9343 - mae: 0.2315 - pearson_correlation: 0.5276 - euclidean_distance: 0.3522
Epoch 97/200
46/46 [==============================] - 0s 897us/step - loss: 0.2285 - accuracy: 0.9374 - mae: 0.2285 - pearson_correlation: 0.5382 - euclidean_distance: 0.3483
Epoch 98/200
46/46 [==============================] - 0s 891us/step - loss: 0.2270 - accuracy: 0.9383 - mae: 0.2270 - pearson_correlation: 0.5362 - euclidean_distance: 0.3460
Epoch 99/200
46/46 [==============================] - 0s 893us/step - loss: 0.2215 - accuracy: 0.9392 - mae: 0.2215 - pearson_correlation: 0.5382 - euclidean_distance: 0.3382
Epoch 100/200
46/46 [==============================] - 0s 893us/step - loss: 0.2195 - accuracy: 0.9414 - mae: 0.2195 - pearson_correlation: 0.5473 - euclidean_distance: 0.3352
Epoch 101/200
46/46 [==============================] - 0s 903us/step - loss: 0.2153 - accuracy: 0.9431 - mae: 0.2153 - pearson_correlation: 0.5493 - euclidean_distance: 0.3292
Epoch 102/200
46/46 [==============================] - 0s 886us/step - loss: 0.2128 - accuracy: 0.9431 - mae: 0.2128 - pearson_correlation: 0.5534 - euclidean_distance: 0.3255
Epoch 103/200
46/46 [==============================] - 0s 891us/step - loss: 0.2100 - accuracy: 0.9440 - mae: 0.2100 - pearson_correlation: 0.5528 - euclidean_distance: 0.3218
Epoch 104/200
46/46 [==============================] - 0s 894us/step - loss: 0.2083 - accuracy: 0.9436 - mae: 0.2083 - pearson_correlation: 0.5554 - euclidean_distance: 0.3197
Epoch 105/200
46/46 [==============================] - 0s 891us/step - loss: 0.2046 - accuracy: 0.9453 - mae: 0.2046 - pearson_correlation: 0.5604 - euclidean_distance: 0.3147
Epoch 106/200
46/46 [==============================] - 0s 892us/step - loss: 0.2036 - accuracy: 0.9462 - mae: 0.2036 - pearson_correlation: 0.5622 - euclidean_distance: 0.3124
Epoch 107/200
46/46 [==============================] - 0s 883us/step - loss: 0.2003 - accuracy: 0.9489 - mae: 0.2003 - pearson_correlation: 0.5686 - euclidean_distance: 0.3072
Epoch 108/200
46/46 [==============================] - 0s 892us/step - loss: 0.2008 - accuracy: 0.9466 - mae: 0.2008 - pearson_correlation: 0.5636 - euclidean_distance: 0.3089
Epoch 109/200
46/46 [==============================] - 0s 887us/step - loss: 0.1974 - accuracy: 0.9466 - mae: 0.1974 - pearson_correlation: 0.5726 - euclidean_distance: 0.3040
Epoch 110/200
46/46 [==============================] - 0s 896us/step - loss: 0.1955 - accuracy: 0.9506 - mae: 0.1955 - pearson_correlation: 0.5731 - euclidean_distance: 0.3017
Epoch 111/200
46/46 [==============================] - 0s 893us/step - loss: 0.1927 - accuracy: 0.9497 - mae: 0.1927 - pearson_correlation: 0.5759 - euclidean_distance: 0.2968
Epoch 112/200
46/46 [==============================] - 0s 890us/step - loss: 0.1896 - accuracy: 0.9484 - mae: 0.1896 - pearson_correlation: 0.5800 - euclidean_distance: 0.2930
Epoch 113/200
46/46 [==============================] - 0s 892us/step - loss: 0.1916 - accuracy: 0.9497 - mae: 0.1916 - pearson_correlation: 0.5737 - euclidean_distance: 0.2958
Epoch 114/200
46/46 [==============================] - 0s 887us/step - loss: 0.1871 - accuracy: 0.9506 - mae: 0.1871 - pearson_correlation: 0.5835 - euclidean_distance: 0.2894
Epoch 115/200
46/46 [==============================] - 0s 896us/step - loss: 0.1884 - accuracy: 0.9493 - mae: 0.1884 - pearson_correlation: 0.5838 - euclidean_distance: 0.2911
Epoch 116/200
46/46 [==============================] - 0s 885us/step - loss: 0.1844 - accuracy: 0.9502 - mae: 0.1844 - pearson_correlation: 0.5872 - euclidean_distance: 0.2853
Epoch 117/200
46/46 [==============================] - 0s 890us/step - loss: 0.1825 - accuracy: 0.9537 - mae: 0.1825 - pearson_correlation: 0.5926 - euclidean_distance: 0.2830
Epoch 118/200
46/46 [==============================] - 0s 885us/step - loss: 0.1816 - accuracy: 0.9537 - mae: 0.1816 - pearson_correlation: 0.5909 - euclidean_distance: 0.2816
Epoch 119/200
46/46 [==============================] - 0s 887us/step - loss: 0.1792 - accuracy: 0.9541 - mae: 0.1792 - pearson_correlation: 0.5964 - euclidean_distance: 0.2779
Epoch 120/200
46/46 [==============================] - 0s 888us/step - loss: 0.1781 - accuracy: 0.9519 - mae: 0.1781 - pearson_correlation: 0.5977 - euclidean_distance: 0.2764
Epoch 121/200
46/46 [==============================] - 0s 889us/step - loss: 0.1790 - accuracy: 0.9533 - mae: 0.1790 - pearson_correlation: 0.5959 - euclidean_distance: 0.2779
Epoch 122/200
46/46 [==============================] - 0s 885us/step - loss: 0.1766 - accuracy: 0.9533 - mae: 0.1766 - pearson_correlation: 0.5980 - euclidean_distance: 0.2749
Epoch 123/200
46/46 [==============================] - 0s 887us/step - loss: 0.1753 - accuracy: 0.9541 - mae: 0.1753 - pearson_correlation: 0.6015 - euclidean_distance: 0.2722
Epoch 124/200
46/46 [==============================] - 0s 884us/step - loss: 0.1733 - accuracy: 0.9541 - mae: 0.1733 - pearson_correlation: 0.6011 - euclidean_distance: 0.2700
Epoch 125/200
46/46 [==============================] - 0s 886us/step - loss: 0.1728 - accuracy: 0.9537 - mae: 0.1728 - pearson_correlation: 0.6099 - euclidean_distance: 0.2687
Epoch 126/200
46/46 [==============================] - 0s 885us/step - loss: 0.1708 - accuracy: 0.9550 - mae: 0.1708 - pearson_correlation: 0.6068 - euclidean_distance: 0.2658
Epoch 127/200
46/46 [==============================] - 0s 887us/step - loss: 0.1710 - accuracy: 0.9546 - mae: 0.1710 - pearson_correlation: 0.6077 - euclidean_distance: 0.2657
Epoch 128/200
46/46 [==============================] - 0s 888us/step - loss: 0.1697 - accuracy: 0.9541 - mae: 0.1697 - pearson_correlation: 0.6103 - euclidean_distance: 0.2646
Epoch 129/200
46/46 [==============================] - 0s 879us/step - loss: 0.1667 - accuracy: 0.9555 - mae: 0.1667 - pearson_correlation: 0.6182 - euclidean_distance: 0.2600
Epoch 130/200
46/46 [==============================] - 0s 898us/step - loss: 0.1673 - accuracy: 0.9537 - mae: 0.1673 - pearson_correlation: 0.6112 - euclidean_distance: 0.2614
Epoch 131/200
46/46 [==============================] - 0s 881us/step - loss: 0.1636 - accuracy: 0.9533 - mae: 0.1636 - pearson_correlation: 0.6261 - euclidean_distance: 0.2553
Epoch 132/200
46/46 [==============================] - 0s 880us/step - loss: 0.1644 - accuracy: 0.9546 - mae: 0.1644 - pearson_correlation: 0.6208 - euclidean_distance: 0.2560
Epoch 133/200
46/46 [==============================] - 0s 882us/step - loss: 0.1644 - accuracy: 0.9555 - mae: 0.1644 - pearson_correlation: 0.6225 - euclidean_distance: 0.2568
Epoch 134/200
46/46 [==============================] - 0s 884us/step - loss: 0.1642 - accuracy: 0.9528 - mae: 0.1642 - pearson_correlation: 0.6258 - euclidean_distance: 0.2564
Epoch 135/200
46/46 [==============================] - 0s 885us/step - loss: 0.1608 - accuracy: 0.9533 - mae: 0.1608 - pearson_correlation: 0.6287 - euclidean_distance: 0.2515
Epoch 136/200
46/46 [==============================] - 0s 882us/step - loss: 0.1580 - accuracy: 0.9541 - mae: 0.1580 - pearson_correlation: 0.6332 - euclidean_distance: 0.2472
Epoch 137/200
46/46 [==============================] - 0s 899us/step - loss: 0.1608 - accuracy: 0.9546 - mae: 0.1608 - pearson_correlation: 0.6232 - euclidean_distance: 0.2514
Epoch 138/200
46/46 [==============================] - 0s 881us/step - loss: 0.1605 - accuracy: 0.9555 - mae: 0.1605 - pearson_correlation: 0.6298 - euclidean_distance: 0.2500
Epoch 139/200
46/46 [==============================] - 0s 887us/step - loss: 0.1583 - accuracy: 0.9555 - mae: 0.1583 - pearson_correlation: 0.6327 - euclidean_distance: 0.2476
Epoch 140/200
46/46 [==============================] - 0s 894us/step - loss: 0.1559 - accuracy: 0.9537 - mae: 0.1559 - pearson_correlation: 0.6373 - euclidean_distance: 0.2437
Epoch 141/200
46/46 [==============================] - 0s 877us/step - loss: 0.1546 - accuracy: 0.9546 - mae: 0.1546 - pearson_correlation: 0.6379 - euclidean_distance: 0.2418
Epoch 142/200
46/46 [==============================] - 0s 885us/step - loss: 0.1539 - accuracy: 0.9550 - mae: 0.1539 - pearson_correlation: 0.6434 - euclidean_distance: 0.2411
Epoch 143/200
46/46 [==============================] - 0s 889us/step - loss: 0.1551 - accuracy: 0.9555 - mae: 0.1551 - pearson_correlation: 0.6356 - euclidean_distance: 0.2431
Epoch 144/200
46/46 [==============================] - 0s 876us/step - loss: 0.1519 - accuracy: 0.9559 - mae: 0.1519 - pearson_correlation: 0.6438 - euclidean_distance: 0.2378
Epoch 145/200
46/46 [==============================] - 0s 886us/step - loss: 0.1528 - accuracy: 0.9555 - mae: 0.1528 - pearson_correlation: 0.6409 - euclidean_distance: 0.2392
Epoch 146/200
46/46 [==============================] - 0s 872us/step - loss: 0.1531 - accuracy: 0.9550 - mae: 0.1531 - pearson_correlation: 0.6432 - euclidean_distance: 0.2396
Epoch 147/200
46/46 [==============================] - 0s 904us/step - loss: 0.1505 - accuracy: 0.9550 - mae: 0.1505 - pearson_correlation: 0.6413 - euclidean_distance: 0.2361
Epoch 148/200
46/46 [==============================] - 0s 887us/step - loss: 0.1492 - accuracy: 0.9546 - mae: 0.1492 - pearson_correlation: 0.6454 - euclidean_distance: 0.2340
Epoch 149/200
46/46 [==============================] - 0s 887us/step - loss: 0.1504 - accuracy: 0.9537 - mae: 0.1504 - pearson_correlation: 0.6489 - euclidean_distance: 0.2357
Epoch 150/200
46/46 [==============================] - 0s 879us/step - loss: 0.1471 - accuracy: 0.9555 - mae: 0.1471 - pearson_correlation: 0.6497 - euclidean_distance: 0.2309
Epoch 151/200
46/46 [==============================] - 0s 882us/step - loss: 0.1456 - accuracy: 0.9550 - mae: 0.1456 - pearson_correlation: 0.6516 - euclidean_distance: 0.2293
Epoch 152/200
46/46 [==============================] - 0s 887us/step - loss: 0.1467 - accuracy: 0.9559 - mae: 0.1467 - pearson_correlation: 0.6507 - euclidean_distance: 0.2305
Epoch 153/200
46/46 [==============================] - 0s 884us/step - loss: 0.1447 - accuracy: 0.9546 - mae: 0.1447 - pearson_correlation: 0.6595 - euclidean_distance: 0.2277
Epoch 154/200
46/46 [==============================] - 0s 895us/step - loss: 0.1434 - accuracy: 0.9559 - mae: 0.1434 - pearson_correlation: 0.6569 - euclidean_distance: 0.2258
Epoch 155/200
46/46 [==============================] - 0s 895us/step - loss: 0.1453 - accuracy: 0.9546 - mae: 0.1453 - pearson_correlation: 0.6534 - euclidean_distance: 0.2278
Epoch 156/200
46/46 [==============================] - 0s 884us/step - loss: 0.1432 - accuracy: 0.9555 - mae: 0.1432 - pearson_correlation: 0.6591 - euclidean_distance: 0.2245
Epoch 157/200
46/46 [==============================] - 0s 896us/step - loss: 0.1426 - accuracy: 0.9555 - mae: 0.1426 - pearson_correlation: 0.6640 - euclidean_distance: 0.2241
Epoch 158/200
46/46 [==============================] - 0s 885us/step - loss: 0.1424 - accuracy: 0.9546 - mae: 0.1424 - pearson_correlation: 0.6600 - euclidean_distance: 0.2234
Epoch 159/200
46/46 [==============================] - 0s 893us/step - loss: 0.1404 - accuracy: 0.9555 - mae: 0.1404 - pearson_correlation: 0.6670 - euclidean_distance: 0.2205
Epoch 160/200
46/46 [==============================] - 0s 886us/step - loss: 0.1411 - accuracy: 0.9555 - mae: 0.1411 - pearson_correlation: 0.6640 - euclidean_distance: 0.2220
Epoch 161/200
46/46 [==============================] - 0s 895us/step - loss: 0.1385 - accuracy: 0.9550 - mae: 0.1385 - pearson_correlation: 0.6689 - euclidean_distance: 0.2178
Epoch 162/200
46/46 [==============================] - 0s 886us/step - loss: 0.1384 - accuracy: 0.9546 - mae: 0.1384 - pearson_correlation: 0.6709 - euclidean_distance: 0.2175
Epoch 163/200
46/46 [==============================] - 0s 882us/step - loss: 0.1364 - accuracy: 0.9555 - mae: 0.1364 - pearson_correlation: 0.6707 - euclidean_distance: 0.2147
Epoch 164/200
46/46 [==============================] - 0s 885us/step - loss: 0.1370 - accuracy: 0.9555 - mae: 0.1370 - pearson_correlation: 0.6730 - euclidean_distance: 0.2155
Epoch 165/200
46/46 [==============================] - 0s 893us/step - loss: 0.1364 - accuracy: 0.9550 - mae: 0.1364 - pearson_correlation: 0.6732 - euclidean_distance: 0.2145
Epoch 166/200
46/46 [==============================] - 0s 882us/step - loss: 0.1366 - accuracy: 0.9546 - mae: 0.1366 - pearson_correlation: 0.6715 - euclidean_distance: 0.2151
Epoch 167/200
46/46 [==============================] - 0s 892us/step - loss: 0.1343 - accuracy: 0.9559 - mae: 0.1343 - pearson_correlation: 0.6735 - euclidean_distance: 0.2118
Epoch 168/200
46/46 [==============================] - 0s 879us/step - loss: 0.1330 - accuracy: 0.9555 - mae: 0.1330 - pearson_correlation: 0.6778 - euclidean_distance: 0.2099
Epoch 169/200
46/46 [==============================] - 0s 882us/step - loss: 0.1322 - accuracy: 0.9559 - mae: 0.1322 - pearson_correlation: 0.6780 - euclidean_distance: 0.2083
Epoch 170/200
46/46 [==============================] - 0s 872us/step - loss: 0.1316 - accuracy: 0.9555 - mae: 0.1316 - pearson_correlation: 0.6804 - euclidean_distance: 0.2075
Epoch 171/200
46/46 [==============================] - 0s 877us/step - loss: 0.1333 - accuracy: 0.9537 - mae: 0.1333 - pearson_correlation: 0.6733 - euclidean_distance: 0.2095
Epoch 172/200
46/46 [==============================] - 0s 867us/step - loss: 0.1318 - accuracy: 0.9555 - mae: 0.1318 - pearson_correlation: 0.6766 - euclidean_distance: 0.2080
Epoch 173/200
46/46 [==============================] - 0s 893us/step - loss: 0.1305 - accuracy: 0.9555 - mae: 0.1305 - pearson_correlation: 0.6823 - euclidean_distance: 0.2060
Epoch 174/200
46/46 [==============================] - 0s 888us/step - loss: 0.1271 - accuracy: 0.9559 - mae: 0.1271 - pearson_correlation: 0.6872 - euclidean_distance: 0.2006
Epoch 175/200
46/46 [==============================] - 0s 880us/step - loss: 0.1274 - accuracy: 0.9555 - mae: 0.1274 - pearson_correlation: 0.6866 - euclidean_distance: 0.2012
Epoch 176/200
46/46 [==============================] - 0s 882us/step - loss: 0.1281 - accuracy: 0.9550 - mae: 0.1281 - pearson_correlation: 0.6880 - euclidean_distance: 0.2024
Epoch 177/200
46/46 [==============================] - 0s 888us/step - loss: 0.1271 - accuracy: 0.9550 - mae: 0.1271 - pearson_correlation: 0.6839 - euclidean_distance: 0.2005
Epoch 178/200
46/46 [==============================] - 0s 896us/step - loss: 0.1240 - accuracy: 0.9559 - mae: 0.1240 - pearson_correlation: 0.6907 - euclidean_distance: 0.1963
Epoch 179/200
46/46 [==============================] - 0s 882us/step - loss: 0.1273 - accuracy: 0.9550 - mae: 0.1273 - pearson_correlation: 0.6822 - euclidean_distance: 0.2012
Epoch 180/200
46/46 [==============================] - 0s 887us/step - loss: 0.1256 - accuracy: 0.9559 - mae: 0.1256 - pearson_correlation: 0.6904 - euclidean_distance: 0.1985
Epoch 181/200
46/46 [==============================] - 0s 884us/step - loss: 0.1262 - accuracy: 0.9555 - mae: 0.1262 - pearson_correlation: 0.6895 - euclidean_distance: 0.1993
Epoch 182/200
46/46 [==============================] - 0s 891us/step - loss: 0.1245 - accuracy: 0.9559 - mae: 0.1245 - pearson_correlation: 0.6980 - euclidean_distance: 0.1969
Epoch 183/200
46/46 [==============================] - 0s 880us/step - loss: 0.1225 - accuracy: 0.9559 - mae: 0.1225 - pearson_correlation: 0.6953 - euclidean_distance: 0.1937
Epoch 184/200
46/46 [==============================] - 0s 882us/step - loss: 0.1229 - accuracy: 0.9555 - mae: 0.1229 - pearson_correlation: 0.6968 - euclidean_distance: 0.1945
Epoch 185/200
46/46 [==============================] - 0s 884us/step - loss: 0.1242 - accuracy: 0.9537 - mae: 0.1242 - pearson_correlation: 0.6877 - euclidean_distance: 0.1963
Epoch 186/200
46/46 [==============================] - 0s 883us/step - loss: 0.1221 - accuracy: 0.9559 - mae: 0.1221 - pearson_correlation: 0.6972 - euclidean_distance: 0.1931
Epoch 187/200
46/46 [==============================] - 0s 886us/step - loss: 0.1201 - accuracy: 0.9559 - mae: 0.1201 - pearson_correlation: 0.7031 - euclidean_distance: 0.1898
Epoch 188/200
46/46 [==============================] - 0s 885us/step - loss: 0.1196 - accuracy: 0.9555 - mae: 0.1196 - pearson_correlation: 0.7040 - euclidean_distance: 0.1892
Epoch 189/200
46/46 [==============================] - 0s 891us/step - loss: 0.1188 - accuracy: 0.9555 - mae: 0.1188 - pearson_correlation: 0.7021 - euclidean_distance: 0.1882
Epoch 190/200
46/46 [==============================] - 0s 887us/step - loss: 0.1188 - accuracy: 0.9559 - mae: 0.1188 - pearson_correlation: 0.7010 - euclidean_distance: 0.1884
Epoch 191/200
46/46 [==============================] - 0s 887us/step - loss: 0.1177 - accuracy: 0.9559 - mae: 0.1177 - pearson_correlation: 0.7050 - euclidean_distance: 0.1866
Epoch 192/200
46/46 [==============================] - 0s 879us/step - loss: 0.1178 - accuracy: 0.9546 - mae: 0.1178 - pearson_correlation: 0.7022 - euclidean_distance: 0.1871
Epoch 193/200
46/46 [==============================] - 0s 876us/step - loss: 0.1178 - accuracy: 0.9555 - mae: 0.1178 - pearson_correlation: 0.7072 - euclidean_distance: 0.1862
Epoch 194/200
46/46 [==============================] - 0s 877us/step - loss: 0.1176 - accuracy: 0.9559 - mae: 0.1176 - pearson_correlation: 0.7037 - euclidean_distance: 0.1863
Epoch 195/200
46/46 [==============================] - 0s 890us/step - loss: 0.1163 - accuracy: 0.9559 - mae: 0.1163 - pearson_correlation: 0.7073 - euclidean_distance: 0.1846
Epoch 196/200
46/46 [==============================] - 0s 883us/step - loss: 0.1150 - accuracy: 0.9559 - mae: 0.1150 - pearson_correlation: 0.7086 - euclidean_distance: 0.1824
Epoch 197/200
46/46 [==============================] - 0s 884us/step - loss: 0.1129 - accuracy: 0.9559 - mae: 0.1129 - pearson_correlation: 0.7107 - euclidean_distance: 0.1792
Epoch 198/200
46/46 [==============================] - 0s 892us/step - loss: 0.1163 - accuracy: 0.9559 - mae: 0.1163 - pearson_correlation: 0.7061 - euclidean_distance: 0.1842
Epoch 199/200
46/46 [==============================] - 0s 889us/step - loss: 0.1141 - accuracy: 0.9559 - mae: 0.1141 - pearson_correlation: 0.7104 - euclidean_distance: 0.1809
Epoch 200/200
46/46 [==============================] - 0s 881us/step - loss: 0.1131 - accuracy: 0.9559 - mae: 0.1131 - pearson_correlation: 0.7092 - euclidean_distance: 0.1794
23/23 [==============================] - 0s 495us/step
Epoch 1/250
46/46 [==============================] - 1s 948us/step - loss: 0.8132 - accuracy: 0.0543 - mae: 0.8132 - pearson_correlation: -0.6903 - euclidean_distance: 1.3677
Epoch 2/250
46/46 [==============================] - 0s 822us/step - loss: 0.8100 - accuracy: 0.0565 - mae: 0.8100 - pearson_correlation: -0.6909 - euclidean_distance: 1.3623
Epoch 3/250
46/46 [==============================] - 0s 885us/step - loss: 0.8067 - accuracy: 0.0569 - mae: 0.8067 - pearson_correlation: -0.6907 - euclidean_distance: 1.3561
Epoch 4/250
46/46 [==============================] - 0s 893us/step - loss: 0.8033 - accuracy: 0.0582 - mae: 0.8033 - pearson_correlation: -0.6891 - euclidean_distance: 1.3504
Epoch 5/250
46/46 [==============================] - 0s 895us/step - loss: 0.7989 - accuracy: 0.0618 - mae: 0.7989 - pearson_correlation: -0.6895 - euclidean_distance: 1.3425
Epoch 6/250
46/46 [==============================] - 0s 913us/step - loss: 0.7950 - accuracy: 0.0596 - mae: 0.7950 - pearson_correlation: -0.6872 - euclidean_distance: 1.3356
Epoch 7/250
46/46 [==============================] - 0s 890us/step - loss: 0.7908 - accuracy: 0.0631 - mae: 0.7908 - pearson_correlation: -0.6879 - euclidean_distance: 1.3278
Epoch 8/250
46/46 [==============================] - 0s 895us/step - loss: 0.7882 - accuracy: 0.0609 - mae: 0.7882 - pearson_correlation: -0.6915 - euclidean_distance: 1.3226
Epoch 9/250
46/46 [==============================] - 0s 901us/step - loss: 0.7839 - accuracy: 0.0648 - mae: 0.7839 - pearson_correlation: -0.6867 - euclidean_distance: 1.3153
Epoch 10/250
46/46 [==============================] - 0s 911us/step - loss: 0.7798 - accuracy: 0.0648 - mae: 0.7798 - pearson_correlation: -0.6804 - euclidean_distance: 1.3071
Epoch 11/250
46/46 [==============================] - 0s 908us/step - loss: 0.7756 - accuracy: 0.0657 - mae: 0.7756 - pearson_correlation: -0.6835 - euclidean_distance: 1.3002
Epoch 12/250
46/46 [==============================] - 0s 897us/step - loss: 0.7713 - accuracy: 0.0662 - mae: 0.7713 - pearson_correlation: -0.6854 - euclidean_distance: 1.2924
Epoch 13/250
46/46 [==============================] - 0s 898us/step - loss: 0.7674 - accuracy: 0.0715 - mae: 0.7674 - pearson_correlation: -0.6800 - euclidean_distance: 1.2850
Epoch 14/250
46/46 [==============================] - 0s 900us/step - loss: 0.7628 - accuracy: 0.0701 - mae: 0.7628 - pearson_correlation: -0.6810 - euclidean_distance: 1.2776
Epoch 15/250
46/46 [==============================] - 0s 901us/step - loss: 0.7586 - accuracy: 0.0719 - mae: 0.7586 - pearson_correlation: -0.6792 - euclidean_distance: 1.2699
Epoch 16/250
46/46 [==============================] - 0s 899us/step - loss: 0.7539 - accuracy: 0.0745 - mae: 0.7539 - pearson_correlation: -0.6738 - euclidean_distance: 1.2614
Epoch 17/250
46/46 [==============================] - 0s 892us/step - loss: 0.7501 - accuracy: 0.0745 - mae: 0.7501 - pearson_correlation: -0.6771 - euclidean_distance: 1.2552
Epoch 18/250
46/46 [==============================] - 0s 888us/step - loss: 0.7463 - accuracy: 0.0706 - mae: 0.7463 - pearson_correlation: -0.6777 - euclidean_distance: 1.2480
Epoch 19/250
46/46 [==============================] - 0s 896us/step - loss: 0.7413 - accuracy: 0.0763 - mae: 0.7413 - pearson_correlation: -0.6730 - euclidean_distance: 1.2389
Epoch 20/250
46/46 [==============================] - 0s 889us/step - loss: 0.7378 - accuracy: 0.0790 - mae: 0.7378 - pearson_correlation: -0.6682 - euclidean_distance: 1.2323
Epoch 21/250
46/46 [==============================] - 0s 898us/step - loss: 0.7333 - accuracy: 0.0794 - mae: 0.7333 - pearson_correlation: -0.6724 - euclidean_distance: 1.2240
Epoch 22/250
46/46 [==============================] - 0s 891us/step - loss: 0.7284 - accuracy: 0.0798 - mae: 0.7284 - pearson_correlation: -0.6698 - euclidean_distance: 1.2159
Epoch 23/250
46/46 [==============================] - 0s 894us/step - loss: 0.7245 - accuracy: 0.0803 - mae: 0.7245 - pearson_correlation: -0.6711 - euclidean_distance: 1.2090
Epoch 24/250
46/46 [==============================] - 0s 890us/step - loss: 0.7198 - accuracy: 0.0891 - mae: 0.7198 - pearson_correlation: -0.6660 - euclidean_distance: 1.2002
Epoch 25/250
46/46 [==============================] - 0s 891us/step - loss: 0.7152 - accuracy: 0.0865 - mae: 0.7152 - pearson_correlation: -0.6693 - euclidean_distance: 1.1929
Epoch 26/250
46/46 [==============================] - 0s 898us/step - loss: 0.7110 - accuracy: 0.0865 - mae: 0.7110 - pearson_correlation: -0.6642 - euclidean_distance: 1.1863
Epoch 27/250
46/46 [==============================] - 0s 901us/step - loss: 0.7077 - accuracy: 0.0860 - mae: 0.7077 - pearson_correlation: -0.6620 - euclidean_distance: 1.1789
Epoch 28/250
46/46 [==============================] - 0s 890us/step - loss: 0.7024 - accuracy: 0.0913 - mae: 0.7024 - pearson_correlation: -0.6604 - euclidean_distance: 1.1696
Epoch 29/250
46/46 [==============================] - 0s 896us/step - loss: 0.6985 - accuracy: 0.0904 - mae: 0.6985 - pearson_correlation: -0.6596 - euclidean_distance: 1.1635
Epoch 30/250
46/46 [==============================] - 0s 898us/step - loss: 0.6939 - accuracy: 0.0926 - mae: 0.6939 - pearson_correlation: -0.6611 - euclidean_distance: 1.1555
Epoch 31/250
46/46 [==============================] - 0s 896us/step - loss: 0.6898 - accuracy: 0.0913 - mae: 0.6898 - pearson_correlation: -0.6579 - euclidean_distance: 1.1477
Epoch 32/250
46/46 [==============================] - 0s 893us/step - loss: 0.6840 - accuracy: 0.0948 - mae: 0.6840 - pearson_correlation: -0.6515 - euclidean_distance: 1.1378
Epoch 33/250
46/46 [==============================] - 0s 901us/step - loss: 0.6808 - accuracy: 0.0962 - mae: 0.6808 - pearson_correlation: -0.6499 - euclidean_distance: 1.1321
Epoch 34/250
46/46 [==============================] - 0s 903us/step - loss: 0.6761 - accuracy: 0.1028 - mae: 0.6761 - pearson_correlation: -0.6489 - euclidean_distance: 1.1241
Epoch 35/250
46/46 [==============================] - 0s 893us/step - loss: 0.6716 - accuracy: 0.1010 - mae: 0.6716 - pearson_correlation: -0.6459 - euclidean_distance: 1.1161
Epoch 36/250
46/46 [==============================] - 0s 896us/step - loss: 0.6672 - accuracy: 0.1010 - mae: 0.6672 - pearson_correlation: -0.6416 - euclidean_distance: 1.1082
Epoch 37/250
46/46 [==============================] - 0s 899us/step - loss: 0.6627 - accuracy: 0.1023 - mae: 0.6627 - pearson_correlation: -0.6464 - euclidean_distance: 1.1003
Epoch 38/250
46/46 [==============================] - 0s 897us/step - loss: 0.6593 - accuracy: 0.1063 - mae: 0.6593 - pearson_correlation: -0.6366 - euclidean_distance: 1.0947
Epoch 39/250
46/46 [==============================] - 0s 894us/step - loss: 0.6550 - accuracy: 0.1032 - mae: 0.6550 - pearson_correlation: -0.6388 - euclidean_distance: 1.0872
Epoch 40/250
46/46 [==============================] - 0s 896us/step - loss: 0.6507 - accuracy: 0.1067 - mae: 0.6507 - pearson_correlation: -0.6389 - euclidean_distance: 1.0804
Epoch 41/250
46/46 [==============================] - 0s 897us/step - loss: 0.6465 - accuracy: 0.1098 - mae: 0.6465 - pearson_correlation: -0.6293 - euclidean_distance: 1.0729
Epoch 42/250
46/46 [==============================] - 0s 893us/step - loss: 0.6416 - accuracy: 0.1103 - mae: 0.6416 - pearson_correlation: -0.6321 - euclidean_distance: 1.0646
Epoch 43/250
46/46 [==============================] - 0s 892us/step - loss: 0.6377 - accuracy: 0.1120 - mae: 0.6377 - pearson_correlation: -0.6296 - euclidean_distance: 1.0579
Epoch 44/250
46/46 [==============================] - 0s 896us/step - loss: 0.6340 - accuracy: 0.1134 - mae: 0.6340 - pearson_correlation: -0.6249 - euclidean_distance: 1.0511
Epoch 45/250
46/46 [==============================] - 0s 897us/step - loss: 0.6289 - accuracy: 0.1178 - mae: 0.6289 - pearson_correlation: -0.6248 - euclidean_distance: 1.0428
Epoch 46/250
46/46 [==============================] - 0s 886us/step - loss: 0.6252 - accuracy: 0.1165 - mae: 0.6252 - pearson_correlation: -0.6206 - euclidean_distance: 1.0361
Epoch 47/250
46/46 [==============================] - 0s 891us/step - loss: 0.6203 - accuracy: 0.1240 - mae: 0.6203 - pearson_correlation: -0.6145 - euclidean_distance: 1.0285
Epoch 48/250
46/46 [==============================] - 0s 890us/step - loss: 0.6157 - accuracy: 0.1266 - mae: 0.6157 - pearson_correlation: -0.6117 - euclidean_distance: 1.0208
Epoch 49/250
46/46 [==============================] - 0s 889us/step - loss: 0.6120 - accuracy: 0.1244 - mae: 0.6120 - pearson_correlation: -0.6100 - euclidean_distance: 1.0140
Epoch 50/250
46/46 [==============================] - 0s 897us/step - loss: 0.6077 - accuracy: 0.1266 - mae: 0.6077 - pearson_correlation: -0.6065 - euclidean_distance: 1.0070
Epoch 51/250
46/46 [==============================] - 0s 903us/step - loss: 0.6040 - accuracy: 0.1306 - mae: 0.6040 - pearson_correlation: -0.6037 - euclidean_distance: 1.0000
Epoch 52/250
46/46 [==============================] - 0s 899us/step - loss: 0.5999 - accuracy: 0.1301 - mae: 0.5999 - pearson_correlation: -0.5996 - euclidean_distance: 0.9922
Epoch 53/250
46/46 [==============================] - 0s 896us/step - loss: 0.5957 - accuracy: 0.1403 - mae: 0.5957 - pearson_correlation: -0.5940 - euclidean_distance: 0.9855
Epoch 54/250
46/46 [==============================] - 0s 909us/step - loss: 0.5902 - accuracy: 0.1407 - mae: 0.5902 - pearson_correlation: -0.5972 - euclidean_distance: 0.9778
Epoch 55/250
46/46 [==============================] - 0s 930us/step - loss: 0.5868 - accuracy: 0.1420 - mae: 0.5868 - pearson_correlation: -0.5931 - euclidean_distance: 0.9716
Epoch 56/250
46/46 [==============================] - 0s 947us/step - loss: 0.5827 - accuracy: 0.1442 - mae: 0.5827 - pearson_correlation: -0.5867 - euclidean_distance: 0.9644
Epoch 57/250
46/46 [==============================] - 0s 930us/step - loss: 0.5782 - accuracy: 0.1513 - mae: 0.5782 - pearson_correlation: -0.5812 - euclidean_distance: 0.9569
Epoch 58/250
46/46 [==============================] - 0s 901us/step - loss: 0.5741 - accuracy: 0.1566 - mae: 0.5741 - pearson_correlation: -0.5787 - euclidean_distance: 0.9495
Epoch 59/250
46/46 [==============================] - 0s 949us/step - loss: 0.5698 - accuracy: 0.1610 - mae: 0.5698 - pearson_correlation: -0.5714 - euclidean_distance: 0.9423
Epoch 60/250
46/46 [==============================] - 0s 978us/step - loss: 0.5654 - accuracy: 0.1650 - mae: 0.5654 - pearson_correlation: -0.5683 - euclidean_distance: 0.9352
Epoch 61/250
46/46 [==============================] - 0s 975us/step - loss: 0.5604 - accuracy: 0.1667 - mae: 0.5604 - pearson_correlation: -0.5645 - euclidean_distance: 0.9267
Epoch 62/250
46/46 [==============================] - 0s 1ms/step - loss: 0.5572 - accuracy: 0.1760 - mae: 0.5572 - pearson_correlation: -0.5567 - euclidean_distance: 0.9211
Epoch 63/250
46/46 [==============================] - 0s 997us/step - loss: 0.5527 - accuracy: 0.1813 - mae: 0.5527 - pearson_correlation: -0.5495 - euclidean_distance: 0.9146
Epoch 64/250
46/46 [==============================] - 0s 968us/step - loss: 0.5484 - accuracy: 0.1826 - mae: 0.5484 - pearson_correlation: -0.5526 - euclidean_distance: 0.9075
Epoch 65/250
46/46 [==============================] - 0s 1ms/step - loss: 0.5444 - accuracy: 0.1839 - mae: 0.5444 - pearson_correlation: -0.5491 - euclidean_distance: 0.9006
Epoch 66/250
46/46 [==============================] - 0s 1ms/step - loss: 0.5400 - accuracy: 0.1906 - mae: 0.5400 - pearson_correlation: -0.5402 - euclidean_distance: 0.8926
Epoch 67/250
46/46 [==============================] - 0s 1ms/step - loss: 0.5358 - accuracy: 0.1967 - mae: 0.5358 - pearson_correlation: -0.5336 - euclidean_distance: 0.8860
Epoch 68/250
46/46 [==============================] - 0s 913us/step - loss: 0.5309 - accuracy: 0.2029 - mae: 0.5309 - pearson_correlation: -0.5295 - euclidean_distance: 0.8778
Epoch 69/250
46/46 [==============================] - 0s 909us/step - loss: 0.5267 - accuracy: 0.2135 - mae: 0.5267 - pearson_correlation: -0.5225 - euclidean_distance: 0.8705
Epoch 70/250
46/46 [==============================] - 0s 908us/step - loss: 0.5231 - accuracy: 0.2161 - mae: 0.5231 - pearson_correlation: -0.5144 - euclidean_distance: 0.8645
Epoch 71/250
46/46 [==============================] - 0s 898us/step - loss: 0.5185 - accuracy: 0.2153 - mae: 0.5185 - pearson_correlation: -0.5102 - euclidean_distance: 0.8570
Epoch 72/250
46/46 [==============================] - 0s 909us/step - loss: 0.5137 - accuracy: 0.2267 - mae: 0.5137 - pearson_correlation: -0.5046 - euclidean_distance: 0.8493
Epoch 73/250
46/46 [==============================] - 0s 895us/step - loss: 0.5092 - accuracy: 0.2356 - mae: 0.5092 - pearson_correlation: -0.4989 - euclidean_distance: 0.8422
Epoch 74/250
46/46 [==============================] - 0s 900us/step - loss: 0.5045 - accuracy: 0.2422 - mae: 0.5045 - pearson_correlation: -0.4886 - euclidean_distance: 0.8334
Epoch 75/250
46/46 [==============================] - 0s 896us/step - loss: 0.5006 - accuracy: 0.2303 - mae: 0.5006 - pearson_correlation: -0.4812 - euclidean_distance: 0.8274
Epoch 76/250
46/46 [==============================] - 0s 896us/step - loss: 0.4958 - accuracy: 0.2506 - mae: 0.4958 - pearson_correlation: -0.4724 - euclidean_distance: 0.8197
Epoch 77/250
46/46 [==============================] - 0s 903us/step - loss: 0.4906 - accuracy: 0.2528 - mae: 0.4906 - pearson_correlation: -0.4710 - euclidean_distance: 0.8113
Epoch 78/250
46/46 [==============================] - 0s 900us/step - loss: 0.4866 - accuracy: 0.2581 - mae: 0.4866 - pearson_correlation: -0.4573 - euclidean_distance: 0.8041
Epoch 79/250
46/46 [==============================] - 0s 899us/step - loss: 0.4816 - accuracy: 0.2594 - mae: 0.4816 - pearson_correlation: -0.4523 - euclidean_distance: 0.7963
Epoch 80/250
46/46 [==============================] - 0s 898us/step - loss: 0.4767 - accuracy: 0.2744 - mae: 0.4767 - pearson_correlation: -0.4374 - euclidean_distance: 0.7883
Epoch 81/250
46/46 [==============================] - 0s 896us/step - loss: 0.4727 - accuracy: 0.2647 - mae: 0.4727 - pearson_correlation: -0.4355 - euclidean_distance: 0.7816
Epoch 82/250
46/46 [==============================] - 0s 894us/step - loss: 0.4680 - accuracy: 0.2761 - mae: 0.4680 - pearson_correlation: -0.4205 - euclidean_distance: 0.7739
Epoch 83/250
46/46 [==============================] - 0s 898us/step - loss: 0.4637 - accuracy: 0.2836 - mae: 0.4637 - pearson_correlation: -0.4156 - euclidean_distance: 0.7658
Epoch 84/250
46/46 [==============================] - 0s 898us/step - loss: 0.4586 - accuracy: 0.2819 - mae: 0.4586 - pearson_correlation: -0.4051 - euclidean_distance: 0.7587
Epoch 85/250
46/46 [==============================] - 0s 894us/step - loss: 0.4540 - accuracy: 0.2836 - mae: 0.4540 - pearson_correlation: -0.3941 - euclidean_distance: 0.7509
Epoch 86/250
46/46 [==============================] - 0s 893us/step - loss: 0.4486 - accuracy: 0.2911 - mae: 0.4486 - pearson_correlation: -0.3869 - euclidean_distance: 0.7425
Epoch 87/250
46/46 [==============================] - 0s 896us/step - loss: 0.4439 - accuracy: 0.2925 - mae: 0.4439 - pearson_correlation: -0.3717 - euclidean_distance: 0.7345
Epoch 88/250
46/46 [==============================] - 0s 892us/step - loss: 0.4403 - accuracy: 0.3044 - mae: 0.4403 - pearson_correlation: -0.3667 - euclidean_distance: 0.7276
Epoch 89/250
46/46 [==============================] - 0s 936us/step - loss: 0.4350 - accuracy: 0.3026 - mae: 0.4350 - pearson_correlation: -0.3517 - euclidean_distance: 0.7191
Epoch 90/250
46/46 [==============================] - 0s 946us/step - loss: 0.4308 - accuracy: 0.3061 - mae: 0.4308 - pearson_correlation: -0.3369 - euclidean_distance: 0.7116
Epoch 91/250
46/46 [==============================] - 0s 928us/step - loss: 0.4255 - accuracy: 0.3136 - mae: 0.4255 - pearson_correlation: -0.3251 - euclidean_distance: 0.7027
Epoch 92/250
46/46 [==============================] - 0s 905us/step - loss: 0.4209 - accuracy: 0.3150 - mae: 0.4209 - pearson_correlation: -0.3132 - euclidean_distance: 0.6958
Epoch 93/250
46/46 [==============================] - 0s 894us/step - loss: 0.4165 - accuracy: 0.3216 - mae: 0.4165 - pearson_correlation: -0.3015 - euclidean_distance: 0.6880
Epoch 94/250
46/46 [==============================] - 0s 903us/step - loss: 0.4104 - accuracy: 0.3291 - mae: 0.4104 - pearson_correlation: -0.2907 - euclidean_distance: 0.6788
Epoch 95/250
46/46 [==============================] - 0s 904us/step - loss: 0.4061 - accuracy: 0.3361 - mae: 0.4061 - pearson_correlation: -0.2666 - euclidean_distance: 0.6703
Epoch 96/250
46/46 [==============================] - 0s 901us/step - loss: 0.4008 - accuracy: 0.3485 - mae: 0.4008 - pearson_correlation: -0.2567 - euclidean_distance: 0.6619
Epoch 97/250
46/46 [==============================] - 0s 895us/step - loss: 0.3965 - accuracy: 0.3423 - mae: 0.3965 - pearson_correlation: -0.2456 - euclidean_distance: 0.6541
Epoch 98/250
46/46 [==============================] - 0s 898us/step - loss: 0.3917 - accuracy: 0.3520 - mae: 0.3917 - pearson_correlation: -0.2308 - euclidean_distance: 0.6459
Epoch 99/250
46/46 [==============================] - 0s 897us/step - loss: 0.3863 - accuracy: 0.3586 - mae: 0.3863 - pearson_correlation: -0.2116 - euclidean_distance: 0.6367
Epoch 100/250
46/46 [==============================] - 0s 893us/step - loss: 0.3817 - accuracy: 0.3749 - mae: 0.3817 - pearson_correlation: -0.1894 - euclidean_distance: 0.6284
Epoch 101/250
46/46 [==============================] - 0s 897us/step - loss: 0.3763 - accuracy: 0.3749 - mae: 0.3763 - pearson_correlation: -0.1804 - euclidean_distance: 0.6202
Epoch 102/250
46/46 [==============================] - 0s 958us/step - loss: 0.3717 - accuracy: 0.3824 - mae: 0.3717 - pearson_correlation: -0.1611 - euclidean_distance: 0.6119
Epoch 103/250
46/46 [==============================] - 0s 919us/step - loss: 0.3671 - accuracy: 0.3935 - mae: 0.3671 - pearson_correlation: -0.1448 - euclidean_distance: 0.6039
Epoch 104/250
46/46 [==============================] - 0s 917us/step - loss: 0.3617 - accuracy: 0.4111 - mae: 0.3617 - pearson_correlation: -0.1235 - euclidean_distance: 0.5942
Epoch 105/250
46/46 [==============================] - 0s 904us/step - loss: 0.3563 - accuracy: 0.4151 - mae: 0.3563 - pearson_correlation: -0.1092 - euclidean_distance: 0.5856
Epoch 106/250
46/46 [==============================] - 0s 890us/step - loss: 0.3507 - accuracy: 0.4217 - mae: 0.3507 - pearson_correlation: -0.0912 - euclidean_distance: 0.5767
Epoch 107/250
46/46 [==============================] - 0s 899us/step - loss: 0.3462 - accuracy: 0.4314 - mae: 0.3462 - pearson_correlation: -0.0719 - euclidean_distance: 0.5685
Epoch 108/250
46/46 [==============================] - 0s 893us/step - loss: 0.3413 - accuracy: 0.4385 - mae: 0.3413 - pearson_correlation: -0.0479 - euclidean_distance: 0.5595
Epoch 109/250
46/46 [==============================] - 0s 892us/step - loss: 0.3367 - accuracy: 0.4446 - mae: 0.3367 - pearson_correlation: -0.0349 - euclidean_distance: 0.5520
Epoch 110/250
46/46 [==============================] - 0s 895us/step - loss: 0.3317 - accuracy: 0.4698 - mae: 0.3317 - pearson_correlation: -0.0083 - euclidean_distance: 0.5423
Epoch 111/250
46/46 [==============================] - 0s 904us/step - loss: 0.3264 - accuracy: 0.4707 - mae: 0.3264 - pearson_correlation: 0.0061 - euclidean_distance: 0.5337
Epoch 112/250
46/46 [==============================] - 0s 943us/step - loss: 0.3225 - accuracy: 0.4861 - mae: 0.3225 - pearson_correlation: 0.0149 - euclidean_distance: 0.5265
Epoch 113/250
46/46 [==============================] - 0s 899us/step - loss: 0.3168 - accuracy: 0.4958 - mae: 0.3168 - pearson_correlation: 0.0365 - euclidean_distance: 0.5177
Epoch 114/250
46/46 [==============================] - 0s 899us/step - loss: 0.3118 - accuracy: 0.5077 - mae: 0.3118 - pearson_correlation: 0.0649 - euclidean_distance: 0.5091
Epoch 115/250
46/46 [==============================] - 0s 898us/step - loss: 0.3077 - accuracy: 0.5157 - mae: 0.3077 - pearson_correlation: 0.0729 - euclidean_distance: 0.5012
Epoch 116/250
46/46 [==============================] - 0s 890us/step - loss: 0.3034 - accuracy: 0.5249 - mae: 0.3034 - pearson_correlation: 0.0904 - euclidean_distance: 0.4944
Epoch 117/250
46/46 [==============================] - 0s 897us/step - loss: 0.2998 - accuracy: 0.5492 - mae: 0.2998 - pearson_correlation: 0.0999 - euclidean_distance: 0.4867
Epoch 118/250
46/46 [==============================] - 0s 892us/step - loss: 0.2932 - accuracy: 0.5549 - mae: 0.2932 - pearson_correlation: 0.1229 - euclidean_distance: 0.4771
Epoch 119/250
46/46 [==============================] - 0s 900us/step - loss: 0.2906 - accuracy: 0.5757 - mae: 0.2906 - pearson_correlation: 0.1375 - euclidean_distance: 0.4715
Epoch 120/250
46/46 [==============================] - 0s 904us/step - loss: 0.2874 - accuracy: 0.5757 - mae: 0.2874 - pearson_correlation: 0.1441 - euclidean_distance: 0.4660
Epoch 121/250
46/46 [==============================] - 0s 900us/step - loss: 0.2811 - accuracy: 0.5973 - mae: 0.2811 - pearson_correlation: 0.1741 - euclidean_distance: 0.4561
Epoch 122/250
46/46 [==============================] - 0s 894us/step - loss: 0.2772 - accuracy: 0.6105 - mae: 0.2772 - pearson_correlation: 0.1824 - euclidean_distance: 0.4496
Epoch 123/250
46/46 [==============================] - 0s 898us/step - loss: 0.2746 - accuracy: 0.6299 - mae: 0.2746 - pearson_correlation: 0.1956 - euclidean_distance: 0.4434
Epoch 124/250
46/46 [==============================] - 0s 891us/step - loss: 0.2699 - accuracy: 0.6308 - mae: 0.2699 - pearson_correlation: 0.2056 - euclidean_distance: 0.4365
Epoch 125/250
46/46 [==============================] - 0s 901us/step - loss: 0.2683 - accuracy: 0.6431 - mae: 0.2683 - pearson_correlation: 0.2174 - euclidean_distance: 0.4332
Epoch 126/250
46/46 [==============================] - 0s 894us/step - loss: 0.2633 - accuracy: 0.6661 - mae: 0.2633 - pearson_correlation: 0.2385 - euclidean_distance: 0.4242
Epoch 127/250
46/46 [==============================] - 0s 891us/step - loss: 0.2585 - accuracy: 0.6842 - mae: 0.2585 - pearson_correlation: 0.2528 - euclidean_distance: 0.4163
Epoch 128/250
46/46 [==============================] - 0s 896us/step - loss: 0.2550 - accuracy: 0.6864 - mae: 0.2550 - pearson_correlation: 0.2634 - euclidean_distance: 0.4106
Epoch 129/250
46/46 [==============================] - 0s 888us/step - loss: 0.2530 - accuracy: 0.6970 - mae: 0.2530 - pearson_correlation: 0.2710 - euclidean_distance: 0.4071
Epoch 130/250
46/46 [==============================] - 0s 892us/step - loss: 0.2496 - accuracy: 0.7031 - mae: 0.2496 - pearson_correlation: 0.2861 - euclidean_distance: 0.4002
Epoch 131/250
46/46 [==============================] - 0s 893us/step - loss: 0.2475 - accuracy: 0.7234 - mae: 0.2475 - pearson_correlation: 0.2953 - euclidean_distance: 0.3968
Epoch 132/250
46/46 [==============================] - 0s 889us/step - loss: 0.2436 - accuracy: 0.7093 - mae: 0.2436 - pearson_correlation: 0.3056 - euclidean_distance: 0.3909
Epoch 133/250
46/46 [==============================] - 0s 890us/step - loss: 0.2416 - accuracy: 0.7212 - mae: 0.2416 - pearson_correlation: 0.3147 - euclidean_distance: 0.3866
Epoch 134/250
46/46 [==============================] - 0s 882us/step - loss: 0.2392 - accuracy: 0.7442 - mae: 0.2392 - pearson_correlation: 0.3204 - euclidean_distance: 0.3830
Epoch 135/250
46/46 [==============================] - 0s 890us/step - loss: 0.2356 - accuracy: 0.7393 - mae: 0.2356 - pearson_correlation: 0.3361 - euclidean_distance: 0.3767
Epoch 136/250
46/46 [==============================] - 0s 890us/step - loss: 0.2341 - accuracy: 0.7468 - mae: 0.2341 - pearson_correlation: 0.3479 - euclidean_distance: 0.3742
Epoch 137/250
46/46 [==============================] - 0s 888us/step - loss: 0.2304 - accuracy: 0.7530 - mae: 0.2304 - pearson_correlation: 0.3518 - euclidean_distance: 0.3672
Epoch 138/250
46/46 [==============================] - 0s 899us/step - loss: 0.2296 - accuracy: 0.7614 - mae: 0.2296 - pearson_correlation: 0.3589 - euclidean_distance: 0.3656
Epoch 139/250
46/46 [==============================] - 0s 889us/step - loss: 0.2264 - accuracy: 0.7715 - mae: 0.2264 - pearson_correlation: 0.3706 - euclidean_distance: 0.3603
Epoch 140/250
46/46 [==============================] - 0s 890us/step - loss: 0.2235 - accuracy: 0.7808 - mae: 0.2235 - pearson_correlation: 0.3842 - euclidean_distance: 0.3551
Epoch 141/250
46/46 [==============================] - 0s 898us/step - loss: 0.2223 - accuracy: 0.7830 - mae: 0.2223 - pearson_correlation: 0.3837 - euclidean_distance: 0.3532
Epoch 142/250
46/46 [==============================] - 0s 890us/step - loss: 0.2196 - accuracy: 0.7821 - mae: 0.2196 - pearson_correlation: 0.3945 - euclidean_distance: 0.3485
Epoch 143/250
46/46 [==============================] - 0s 892us/step - loss: 0.2177 - accuracy: 0.7861 - mae: 0.2177 - pearson_correlation: 0.3996 - euclidean_distance: 0.3455
Epoch 144/250
46/46 [==============================] - 0s 888us/step - loss: 0.2154 - accuracy: 0.7975 - mae: 0.2154 - pearson_correlation: 0.4086 - euclidean_distance: 0.3417
Epoch 145/250
46/46 [==============================] - 0s 892us/step - loss: 0.2133 - accuracy: 0.8059 - mae: 0.2133 - pearson_correlation: 0.4136 - euclidean_distance: 0.3377
Epoch 146/250
46/46 [==============================] - 0s 890us/step - loss: 0.2104 - accuracy: 0.8103 - mae: 0.2104 - pearson_correlation: 0.4275 - euclidean_distance: 0.3324
Epoch 147/250
46/46 [==============================] - 0s 889us/step - loss: 0.2087 - accuracy: 0.8187 - mae: 0.2087 - pearson_correlation: 0.4287 - euclidean_distance: 0.3299
Epoch 148/250
46/46 [==============================] - 0s 889us/step - loss: 0.2072 - accuracy: 0.8130 - mae: 0.2072 - pearson_correlation: 0.4367 - euclidean_distance: 0.3281
Epoch 149/250
46/46 [==============================] - 0s 898us/step - loss: 0.2040 - accuracy: 0.8253 - mae: 0.2040 - pearson_correlation: 0.4514 - euclidean_distance: 0.3225
Epoch 150/250
46/46 [==============================] - 0s 903us/step - loss: 0.2032 - accuracy: 0.8355 - mae: 0.2032 - pearson_correlation: 0.4470 - euclidean_distance: 0.3213
Epoch 151/250
46/46 [==============================] - 0s 894us/step - loss: 0.2008 - accuracy: 0.8399 - mae: 0.2008 - pearson_correlation: 0.4587 - euclidean_distance: 0.3170
Epoch 152/250
46/46 [==============================] - 0s 893us/step - loss: 0.1996 - accuracy: 0.8394 - mae: 0.1996 - pearson_correlation: 0.4633 - euclidean_distance: 0.3152
Epoch 153/250
46/46 [==============================] - 0s 894us/step - loss: 0.1953 - accuracy: 0.8522 - mae: 0.1953 - pearson_correlation: 0.4751 - euclidean_distance: 0.3076
Epoch 154/250
46/46 [==============================] - 0s 891us/step - loss: 0.1956 - accuracy: 0.8505 - mae: 0.1956 - pearson_correlation: 0.4729 - euclidean_distance: 0.3083
Epoch 155/250
46/46 [==============================] - 0s 894us/step - loss: 0.1940 - accuracy: 0.8558 - mae: 0.1940 - pearson_correlation: 0.4804 - euclidean_distance: 0.3050
Epoch 156/250
46/46 [==============================] - 0s 889us/step - loss: 0.1938 - accuracy: 0.8549 - mae: 0.1938 - pearson_correlation: 0.4808 - euclidean_distance: 0.3053
Epoch 157/250
46/46 [==============================] - 0s 888us/step - loss: 0.1896 - accuracy: 0.8668 - mae: 0.1896 - pearson_correlation: 0.4957 - euclidean_distance: 0.2974
Epoch 158/250
46/46 [==============================] - 0s 894us/step - loss: 0.1885 - accuracy: 0.8734 - mae: 0.1885 - pearson_correlation: 0.5006 - euclidean_distance: 0.2966
Epoch 159/250
46/46 [==============================] - 0s 896us/step - loss: 0.1866 - accuracy: 0.8752 - mae: 0.1866 - pearson_correlation: 0.5095 - euclidean_distance: 0.2925
Epoch 160/250
46/46 [==============================] - 0s 890us/step - loss: 0.1858 - accuracy: 0.8778 - mae: 0.1858 - pearson_correlation: 0.5132 - euclidean_distance: 0.2914
Epoch 161/250
46/46 [==============================] - 0s 891us/step - loss: 0.1825 - accuracy: 0.8840 - mae: 0.1825 - pearson_correlation: 0.5215 - euclidean_distance: 0.2866
Epoch 162/250
46/46 [==============================] - 0s 891us/step - loss: 0.1820 - accuracy: 0.8853 - mae: 0.1820 - pearson_correlation: 0.5181 - euclidean_distance: 0.2860
Epoch 163/250
46/46 [==============================] - 0s 890us/step - loss: 0.1796 - accuracy: 0.8866 - mae: 0.1796 - pearson_correlation: 0.5262 - euclidean_distance: 0.2820
Epoch 164/250
46/46 [==============================] - 0s 890us/step - loss: 0.1768 - accuracy: 0.8902 - mae: 0.1768 - pearson_correlation: 0.5346 - euclidean_distance: 0.2781
Epoch 165/250
46/46 [==============================] - 0s 883us/step - loss: 0.1756 - accuracy: 0.8924 - mae: 0.1756 - pearson_correlation: 0.5394 - euclidean_distance: 0.2757
Epoch 166/250
46/46 [==============================] - 0s 892us/step - loss: 0.1748 - accuracy: 0.8933 - mae: 0.1748 - pearson_correlation: 0.5376 - euclidean_distance: 0.2740
Epoch 167/250
46/46 [==============================] - 0s 892us/step - loss: 0.1728 - accuracy: 0.8972 - mae: 0.1728 - pearson_correlation: 0.5471 - euclidean_distance: 0.2713
Epoch 168/250
46/46 [==============================] - 0s 894us/step - loss: 0.1708 - accuracy: 0.8963 - mae: 0.1708 - pearson_correlation: 0.5551 - euclidean_distance: 0.2680
Epoch 169/250
46/46 [==============================] - 0s 893us/step - loss: 0.1693 - accuracy: 0.9016 - mae: 0.1693 - pearson_correlation: 0.5546 - euclidean_distance: 0.2658
Epoch 170/250
46/46 [==============================] - 0s 894us/step - loss: 0.1673 - accuracy: 0.9047 - mae: 0.1673 - pearson_correlation: 0.5657 - euclidean_distance: 0.2626
Epoch 171/250
46/46 [==============================] - 0s 891us/step - loss: 0.1651 - accuracy: 0.9082 - mae: 0.1651 - pearson_correlation: 0.5691 - euclidean_distance: 0.2595
Epoch 172/250
46/46 [==============================] - 0s 885us/step - loss: 0.1625 - accuracy: 0.9065 - mae: 0.1625 - pearson_correlation: 0.5799 - euclidean_distance: 0.2560
Epoch 173/250
46/46 [==============================] - 0s 891us/step - loss: 0.1619 - accuracy: 0.9135 - mae: 0.1619 - pearson_correlation: 0.5808 - euclidean_distance: 0.2543
Epoch 174/250
46/46 [==============================] - 0s 904us/step - loss: 0.1618 - accuracy: 0.9074 - mae: 0.1618 - pearson_correlation: 0.5779 - euclidean_distance: 0.2547
Epoch 175/250
46/46 [==============================] - 0s 890us/step - loss: 0.1592 - accuracy: 0.9065 - mae: 0.1592 - pearson_correlation: 0.5856 - euclidean_distance: 0.2502
Epoch 176/250
46/46 [==============================] - 0s 889us/step - loss: 0.1596 - accuracy: 0.9149 - mae: 0.1596 - pearson_correlation: 0.5878 - euclidean_distance: 0.2512
Epoch 177/250
46/46 [==============================] - 0s 890us/step - loss: 0.1579 - accuracy: 0.9153 - mae: 0.1579 - pearson_correlation: 0.5843 - euclidean_distance: 0.2487
Epoch 178/250
46/46 [==============================] - 0s 886us/step - loss: 0.1549 - accuracy: 0.9171 - mae: 0.1549 - pearson_correlation: 0.5909 - euclidean_distance: 0.2439
Epoch 179/250
46/46 [==============================] - 0s 887us/step - loss: 0.1537 - accuracy: 0.9246 - mae: 0.1537 - pearson_correlation: 0.6020 - euclidean_distance: 0.2418
Epoch 180/250
46/46 [==============================] - 0s 896us/step - loss: 0.1537 - accuracy: 0.9224 - mae: 0.1537 - pearson_correlation: 0.5973 - euclidean_distance: 0.2421
Epoch 181/250
46/46 [==============================] - 0s 896us/step - loss: 0.1520 - accuracy: 0.9250 - mae: 0.1520 - pearson_correlation: 0.6047 - euclidean_distance: 0.2402
Epoch 182/250
46/46 [==============================] - 0s 892us/step - loss: 0.1512 - accuracy: 0.9219 - mae: 0.1512 - pearson_correlation: 0.6037 - euclidean_distance: 0.2389
Epoch 183/250
46/46 [==============================] - 0s 887us/step - loss: 0.1499 - accuracy: 0.9268 - mae: 0.1499 - pearson_correlation: 0.6024 - euclidean_distance: 0.2374
Epoch 184/250
46/46 [==============================] - 0s 883us/step - loss: 0.1479 - accuracy: 0.9255 - mae: 0.1479 - pearson_correlation: 0.6081 - euclidean_distance: 0.2342
Epoch 185/250
46/46 [==============================] - 0s 892us/step - loss: 0.1476 - accuracy: 0.9268 - mae: 0.1476 - pearson_correlation: 0.6100 - euclidean_distance: 0.2330
Epoch 186/250
46/46 [==============================] - 0s 892us/step - loss: 0.1462 - accuracy: 0.9299 - mae: 0.1462 - pearson_correlation: 0.6195 - euclidean_distance: 0.2307
Epoch 187/250
46/46 [==============================] - 0s 891us/step - loss: 0.1456 - accuracy: 0.9316 - mae: 0.1456 - pearson_correlation: 0.6164 - euclidean_distance: 0.2303
Epoch 188/250
46/46 [==============================] - 0s 895us/step - loss: 0.1436 - accuracy: 0.9281 - mae: 0.1436 - pearson_correlation: 0.6230 - euclidean_distance: 0.2269
Epoch 189/250
46/46 [==============================] - 0s 894us/step - loss: 0.1418 - accuracy: 0.9330 - mae: 0.1418 - pearson_correlation: 0.6290 - euclidean_distance: 0.2246
Epoch 190/250
46/46 [==============================] - 0s 891us/step - loss: 0.1419 - accuracy: 0.9312 - mae: 0.1419 - pearson_correlation: 0.6219 - euclidean_distance: 0.2249
Epoch 191/250
46/46 [==============================] - 0s 889us/step - loss: 0.1414 - accuracy: 0.9360 - mae: 0.1414 - pearson_correlation: 0.6285 - euclidean_distance: 0.2238
Epoch 192/250
46/46 [==============================] - 0s 887us/step - loss: 0.1410 - accuracy: 0.9316 - mae: 0.1410 - pearson_correlation: 0.6319 - euclidean_distance: 0.2231
Epoch 193/250
46/46 [==============================] - 0s 894us/step - loss: 0.1381 - accuracy: 0.9325 - mae: 0.1381 - pearson_correlation: 0.6346 - euclidean_distance: 0.2191
Epoch 194/250
46/46 [==============================] - 0s 892us/step - loss: 0.1378 - accuracy: 0.9360 - mae: 0.1378 - pearson_correlation: 0.6383 - euclidean_distance: 0.2193
Epoch 195/250
46/46 [==============================] - 0s 894us/step - loss: 0.1382 - accuracy: 0.9343 - mae: 0.1382 - pearson_correlation: 0.6293 - euclidean_distance: 0.2192
Epoch 196/250
46/46 [==============================] - 0s 887us/step - loss: 0.1367 - accuracy: 0.9374 - mae: 0.1367 - pearson_correlation: 0.6408 - euclidean_distance: 0.2170
Epoch 197/250
46/46 [==============================] - 0s 889us/step - loss: 0.1348 - accuracy: 0.9356 - mae: 0.1348 - pearson_correlation: 0.6406 - euclidean_distance: 0.2139
Epoch 198/250
46/46 [==============================] - 0s 891us/step - loss: 0.1338 - accuracy: 0.9347 - mae: 0.1338 - pearson_correlation: 0.6458 - euclidean_distance: 0.2128
Epoch 199/250
46/46 [==============================] - 0s 893us/step - loss: 0.1325 - accuracy: 0.9374 - mae: 0.1325 - pearson_correlation: 0.6448 - euclidean_distance: 0.2115
Epoch 200/250
46/46 [==============================] - 0s 892us/step - loss: 0.1327 - accuracy: 0.9365 - mae: 0.1327 - pearson_correlation: 0.6469 - euclidean_distance: 0.2105
Epoch 201/250
46/46 [==============================] - 0s 894us/step - loss: 0.1342 - accuracy: 0.9382 - mae: 0.1342 - pearson_correlation: 0.6462 - euclidean_distance: 0.2129
Epoch 202/250
46/46 [==============================] - 0s 892us/step - loss: 0.1316 - accuracy: 0.9378 - mae: 0.1316 - pearson_correlation: 0.6489 - euclidean_distance: 0.2090
Epoch 203/250
46/46 [==============================] - 0s 891us/step - loss: 0.1301 - accuracy: 0.9382 - mae: 0.1301 - pearson_correlation: 0.6497 - euclidean_distance: 0.2063
Epoch 204/250
46/46 [==============================] - 0s 890us/step - loss: 0.1314 - accuracy: 0.9387 - mae: 0.1314 - pearson_correlation: 0.6514 - euclidean_distance: 0.2088
Epoch 205/250
46/46 [==============================] - 0s 890us/step - loss: 0.1286 - accuracy: 0.9378 - mae: 0.1286 - pearson_correlation: 0.6604 - euclidean_distance: 0.2047
Epoch 206/250
46/46 [==============================] - 0s 891us/step - loss: 0.1285 - accuracy: 0.9387 - mae: 0.1285 - pearson_correlation: 0.6566 - euclidean_distance: 0.2048
Epoch 207/250
46/46 [==============================] - 0s 887us/step - loss: 0.1291 - accuracy: 0.9391 - mae: 0.1291 - pearson_correlation: 0.6501 - euclidean_distance: 0.2051
Epoch 208/250
46/46 [==============================] - 0s 893us/step - loss: 0.1262 - accuracy: 0.9413 - mae: 0.1262 - pearson_correlation: 0.6602 - euclidean_distance: 0.2014
Epoch 209/250
46/46 [==============================] - 0s 891us/step - loss: 0.1293 - accuracy: 0.9400 - mae: 0.1293 - pearson_correlation: 0.6528 - euclidean_distance: 0.2059
Epoch 210/250
46/46 [==============================] - 0s 889us/step - loss: 0.1272 - accuracy: 0.9400 - mae: 0.1272 - pearson_correlation: 0.6598 - euclidean_distance: 0.2025
Epoch 211/250
46/46 [==============================] - 0s 893us/step - loss: 0.1258 - accuracy: 0.9400 - mae: 0.1258 - pearson_correlation: 0.6632 - euclidean_distance: 0.2000
Epoch 212/250
46/46 [==============================] - 0s 887us/step - loss: 0.1286 - accuracy: 0.9422 - mae: 0.1286 - pearson_correlation: 0.6549 - euclidean_distance: 0.2044
Epoch 213/250
46/46 [==============================] - 0s 886us/step - loss: 0.1258 - accuracy: 0.9400 - mae: 0.1258 - pearson_correlation: 0.6583 - euclidean_distance: 0.2003
Epoch 214/250
46/46 [==============================] - 0s 892us/step - loss: 0.1236 - accuracy: 0.9387 - mae: 0.1236 - pearson_correlation: 0.6692 - euclidean_distance: 0.1968
Epoch 215/250
46/46 [==============================] - 0s 891us/step - loss: 0.1232 - accuracy: 0.9404 - mae: 0.1232 - pearson_correlation: 0.6653 - euclidean_distance: 0.1965
Epoch 216/250
46/46 [==============================] - 0s 890us/step - loss: 0.1231 - accuracy: 0.9422 - mae: 0.1231 - pearson_correlation: 0.6694 - euclidean_distance: 0.1958
Epoch 217/250
46/46 [==============================] - 0s 896us/step - loss: 0.1211 - accuracy: 0.9409 - mae: 0.1211 - pearson_correlation: 0.6691 - euclidean_distance: 0.1933
Epoch 218/250
46/46 [==============================] - 0s 893us/step - loss: 0.1227 - accuracy: 0.9391 - mae: 0.1227 - pearson_correlation: 0.6659 - euclidean_distance: 0.1958
Epoch 219/250
46/46 [==============================] - 0s 897us/step - loss: 0.1215 - accuracy: 0.9413 - mae: 0.1215 - pearson_correlation: 0.6663 - euclidean_distance: 0.1942
Epoch 220/250
46/46 [==============================] - 0s 896us/step - loss: 0.1203 - accuracy: 0.9431 - mae: 0.1203 - pearson_correlation: 0.6731 - euclidean_distance: 0.1923
Epoch 221/250
46/46 [==============================] - 0s 903us/step - loss: 0.1231 - accuracy: 0.9396 - mae: 0.1231 - pearson_correlation: 0.6632 - euclidean_distance: 0.1963
Epoch 222/250
46/46 [==============================] - 0s 892us/step - loss: 0.1211 - accuracy: 0.9422 - mae: 0.1211 - pearson_correlation: 0.6718 - euclidean_distance: 0.1938
Epoch 223/250
46/46 [==============================] - 0s 896us/step - loss: 0.1209 - accuracy: 0.9422 - mae: 0.1209 - pearson_correlation: 0.6711 - euclidean_distance: 0.1928
Epoch 224/250
46/46 [==============================] - 0s 896us/step - loss: 0.1176 - accuracy: 0.9453 - mae: 0.1176 - pearson_correlation: 0.6773 - euclidean_distance: 0.1885
Epoch 225/250
46/46 [==============================] - 0s 890us/step - loss: 0.1191 - accuracy: 0.9444 - mae: 0.1191 - pearson_correlation: 0.6702 - euclidean_distance: 0.1907
Epoch 226/250
46/46 [==============================] - 0s 889us/step - loss: 0.1189 - accuracy: 0.9418 - mae: 0.1189 - pearson_correlation: 0.6689 - euclidean_distance: 0.1896
Epoch 227/250
46/46 [==============================] - 0s 890us/step - loss: 0.1182 - accuracy: 0.9453 - mae: 0.1182 - pearson_correlation: 0.6759 - euclidean_distance: 0.1884
Epoch 228/250
46/46 [==============================] - 0s 888us/step - loss: 0.1170 - accuracy: 0.9444 - mae: 0.1170 - pearson_correlation: 0.6773 - euclidean_distance: 0.1877
Epoch 229/250
46/46 [==============================] - 0s 896us/step - loss: 0.1180 - accuracy: 0.9400 - mae: 0.1180 - pearson_correlation: 0.6762 - euclidean_distance: 0.1889
Epoch 230/250
46/46 [==============================] - 0s 890us/step - loss: 0.1173 - accuracy: 0.9413 - mae: 0.1173 - pearson_correlation: 0.6746 - euclidean_distance: 0.1876
Epoch 231/250
46/46 [==============================] - 0s 888us/step - loss: 0.1178 - accuracy: 0.9422 - mae: 0.1178 - pearson_correlation: 0.6767 - euclidean_distance: 0.1881
Epoch 232/250
46/46 [==============================] - 0s 886us/step - loss: 0.1156 - accuracy: 0.9440 - mae: 0.1156 - pearson_correlation: 0.6839 - euclidean_distance: 0.1847
Epoch 233/250
46/46 [==============================] - 0s 890us/step - loss: 0.1130 - accuracy: 0.9453 - mae: 0.1130 - pearson_correlation: 0.6847 - euclidean_distance: 0.1812
Epoch 234/250
46/46 [==============================] - 0s 895us/step - loss: 0.1173 - accuracy: 0.9427 - mae: 0.1173 - pearson_correlation: 0.6787 - euclidean_distance: 0.1874
Epoch 235/250
46/46 [==============================] - 0s 898us/step - loss: 0.1158 - accuracy: 0.9453 - mae: 0.1158 - pearson_correlation: 0.6773 - euclidean_distance: 0.1853
Epoch 236/250
46/46 [==============================] - 0s 892us/step - loss: 0.1145 - accuracy: 0.9413 - mae: 0.1145 - pearson_correlation: 0.6852 - euclidean_distance: 0.1828
Epoch 237/250
46/46 [==============================] - 0s 891us/step - loss: 0.1123 - accuracy: 0.9449 - mae: 0.1123 - pearson_correlation: 0.6829 - euclidean_distance: 0.1804
Epoch 238/250
46/46 [==============================] - 0s 895us/step - loss: 0.1138 - accuracy: 0.9422 - mae: 0.1138 - pearson_correlation: 0.6858 - euclidean_distance: 0.1823
Epoch 239/250
46/46 [==============================] - 0s 892us/step - loss: 0.1128 - accuracy: 0.9444 - mae: 0.1128 - pearson_correlation: 0.6852 - euclidean_distance: 0.1806
Epoch 240/250
46/46 [==============================] - 0s 901us/step - loss: 0.1109 - accuracy: 0.9444 - mae: 0.1109 - pearson_correlation: 0.6868 - euclidean_distance: 0.1786
Epoch 241/250
46/46 [==============================] - 0s 891us/step - loss: 0.1118 - accuracy: 0.9440 - mae: 0.1118 - pearson_correlation: 0.6837 - euclidean_distance: 0.1795
Epoch 242/250
46/46 [==============================] - 0s 891us/step - loss: 0.1116 - accuracy: 0.9502 - mae: 0.1116 - pearson_correlation: 0.6871 - euclidean_distance: 0.1796
Epoch 243/250
46/46 [==============================] - 0s 892us/step - loss: 0.1108 - accuracy: 0.9444 - mae: 0.1108 - pearson_correlation: 0.6883 - euclidean_distance: 0.1783
Epoch 244/250
46/46 [==============================] - 0s 885us/step - loss: 0.1108 - accuracy: 0.9453 - mae: 0.1108 - pearson_correlation: 0.6897 - euclidean_distance: 0.1773
Epoch 245/250
46/46 [==============================] - 0s 902us/step - loss: 0.1082 - accuracy: 0.9453 - mae: 0.1082 - pearson_correlation: 0.6929 - euclidean_distance: 0.1743
Epoch 246/250
46/46 [==============================] - 0s 888us/step - loss: 0.1095 - accuracy: 0.9440 - mae: 0.1095 - pearson_correlation: 0.6913 - euclidean_distance: 0.1759
Epoch 247/250
46/46 [==============================] - 0s 891us/step - loss: 0.1086 - accuracy: 0.9449 - mae: 0.1086 - pearson_correlation: 0.6932 - euclidean_distance: 0.1743
Epoch 248/250
46/46 [==============================] - 0s 889us/step - loss: 0.1099 - accuracy: 0.9466 - mae: 0.1099 - pearson_correlation: 0.6924 - euclidean_distance: 0.1764
Epoch 249/250
46/46 [==============================] - 0s 890us/step - loss: 0.1080 - accuracy: 0.9466 - mae: 0.1080 - pearson_correlation: 0.6978 - euclidean_distance: 0.1735
Epoch 250/250
46/46 [==============================] - 0s 889us/step - loss: 0.1083 - accuracy: 0.9449 - mae: 0.1083 - pearson_correlation: 0.6960 - euclidean_distance: 0.1737
23/23 [==============================] - 0s 537us/step
Epoch 1/250
46/46 [==============================] - 1s 974us/step - loss: 0.6113 - accuracy: 0.0446 - mae: 0.6113 - pearson_correlation: -0.6584 - euclidean_distance: 0.9914
Epoch 2/250
46/46 [==============================] - 0s 850us/step - loss: 0.6060 - accuracy: 0.0459 - mae: 0.6060 - pearson_correlation: -0.6621 - euclidean_distance: 0.9857
Epoch 3/250
46/46 [==============================] - 0s 878us/step - loss: 0.6025 - accuracy: 0.0446 - mae: 0.6025 - pearson_correlation: -0.6642 - euclidean_distance: 0.9818
Epoch 4/250
46/46 [==============================] - 0s 890us/step - loss: 0.5982 - accuracy: 0.0459 - mae: 0.5982 - pearson_correlation: -0.6666 - euclidean_distance: 0.9766
Epoch 5/250
46/46 [==============================] - 0s 892us/step - loss: 0.5932 - accuracy: 0.0446 - mae: 0.5932 - pearson_correlation: -0.6670 - euclidean_distance: 0.9710
Epoch 6/250
46/46 [==============================] - 0s 883us/step - loss: 0.5892 - accuracy: 0.0446 - mae: 0.5892 - pearson_correlation: -0.6628 - euclidean_distance: 0.9667
Epoch 7/250
46/46 [==============================] - 0s 898us/step - loss: 0.5827 - accuracy: 0.0446 - mae: 0.5827 - pearson_correlation: -0.6689 - euclidean_distance: 0.9591
Epoch 8/250
46/46 [==============================] - 0s 895us/step - loss: 0.5814 - accuracy: 0.0446 - mae: 0.5814 - pearson_correlation: -0.6740 - euclidean_distance: 0.9573
Epoch 9/250
46/46 [==============================] - 0s 893us/step - loss: 0.5756 - accuracy: 0.0446 - mae: 0.5756 - pearson_correlation: -0.6750 - euclidean_distance: 0.9516
Epoch 10/250
46/46 [==============================] - 0s 885us/step - loss: 0.5704 - accuracy: 0.0446 - mae: 0.5704 - pearson_correlation: -0.6765 - euclidean_distance: 0.9456
Epoch 11/250
46/46 [==============================] - 0s 887us/step - loss: 0.5677 - accuracy: 0.0446 - mae: 0.5677 - pearson_correlation: -0.6817 - euclidean_distance: 0.9414
Epoch 12/250
46/46 [==============================] - 0s 887us/step - loss: 0.5625 - accuracy: 0.0446 - mae: 0.5625 - pearson_correlation: -0.6856 - euclidean_distance: 0.9371
Epoch 13/250
46/46 [==============================] - 0s 889us/step - loss: 0.5573 - accuracy: 0.0446 - mae: 0.5573 - pearson_correlation: -0.6825 - euclidean_distance: 0.9315
Epoch 14/250
46/46 [==============================] - 0s 882us/step - loss: 0.5549 - accuracy: 0.0450 - mae: 0.5549 - pearson_correlation: -0.6908 - euclidean_distance: 0.9279
Epoch 15/250
46/46 [==============================] - 0s 890us/step - loss: 0.5508 - accuracy: 0.0446 - mae: 0.5508 - pearson_correlation: -0.6851 - euclidean_distance: 0.9229
Epoch 16/250
46/46 [==============================] - 0s 893us/step - loss: 0.5457 - accuracy: 0.0446 - mae: 0.5457 - pearson_correlation: -0.6867 - euclidean_distance: 0.9186
Epoch 17/250
46/46 [==============================] - 0s 884us/step - loss: 0.5427 - accuracy: 0.0450 - mae: 0.5427 - pearson_correlation: -0.6919 - euclidean_distance: 0.9138
Epoch 18/250
46/46 [==============================] - 0s 885us/step - loss: 0.5378 - accuracy: 0.0459 - mae: 0.5378 - pearson_correlation: -0.6958 - euclidean_distance: 0.9096
Epoch 19/250
46/46 [==============================] - 0s 886us/step - loss: 0.5339 - accuracy: 0.0446 - mae: 0.5339 - pearson_correlation: -0.6873 - euclidean_distance: 0.9046
Epoch 20/250
46/46 [==============================] - 0s 888us/step - loss: 0.5306 - accuracy: 0.0450 - mae: 0.5306 - pearson_correlation: -0.6966 - euclidean_distance: 0.9007
Epoch 21/250
46/46 [==============================] - 0s 889us/step - loss: 0.5274 - accuracy: 0.0450 - mae: 0.5274 - pearson_correlation: -0.6982 - euclidean_distance: 0.8967
Epoch 22/250
46/46 [==============================] - 0s 891us/step - loss: 0.5236 - accuracy: 0.0446 - mae: 0.5236 - pearson_correlation: -0.6993 - euclidean_distance: 0.8927
Epoch 23/250
46/46 [==============================] - 0s 888us/step - loss: 0.5198 - accuracy: 0.0450 - mae: 0.5198 - pearson_correlation: -0.7007 - euclidean_distance: 0.8889
Epoch 24/250
46/46 [==============================] - 0s 882us/step - loss: 0.5176 - accuracy: 0.0450 - mae: 0.5176 - pearson_correlation: -0.7011 - euclidean_distance: 0.8858
Epoch 25/250
46/46 [==============================] - 0s 893us/step - loss: 0.5139 - accuracy: 0.0459 - mae: 0.5139 - pearson_correlation: -0.7007 - euclidean_distance: 0.8823
Epoch 26/250
46/46 [==============================] - 0s 887us/step - loss: 0.5111 - accuracy: 0.0450 - mae: 0.5111 - pearson_correlation: -0.7020 - euclidean_distance: 0.8772
Epoch 27/250
46/46 [==============================] - 0s 898us/step - loss: 0.5081 - accuracy: 0.0446 - mae: 0.5081 - pearson_correlation: -0.7044 - euclidean_distance: 0.8744
Epoch 28/250
46/46 [==============================] - 0s 880us/step - loss: 0.5053 - accuracy: 0.0454 - mae: 0.5053 - pearson_correlation: -0.7074 - euclidean_distance: 0.8714
Epoch 29/250
46/46 [==============================] - 0s 881us/step - loss: 0.5022 - accuracy: 0.0450 - mae: 0.5022 - pearson_correlation: -0.7124 - euclidean_distance: 0.8672
Epoch 30/250
46/46 [==============================] - 0s 889us/step - loss: 0.5002 - accuracy: 0.0454 - mae: 0.5002 - pearson_correlation: -0.7183 - euclidean_distance: 0.8642
Epoch 31/250
46/46 [==============================] - 0s 888us/step - loss: 0.4972 - accuracy: 0.0450 - mae: 0.4972 - pearson_correlation: -0.7107 - euclidean_distance: 0.8615
Epoch 32/250
46/46 [==============================] - 0s 891us/step - loss: 0.4942 - accuracy: 0.0454 - mae: 0.4942 - pearson_correlation: -0.7134 - euclidean_distance: 0.8572
Epoch 33/250
46/46 [==============================] - 0s 887us/step - loss: 0.4933 - accuracy: 0.0450 - mae: 0.4933 - pearson_correlation: -0.7100 - euclidean_distance: 0.8542
Epoch 34/250
46/46 [==============================] - 0s 884us/step - loss: 0.4898 - accuracy: 0.0454 - mae: 0.4898 - pearson_correlation: -0.7148 - euclidean_distance: 0.8519
Epoch 35/250
46/46 [==============================] - 0s 879us/step - loss: 0.4875 - accuracy: 0.0450 - mae: 0.4875 - pearson_correlation: -0.7169 - euclidean_distance: 0.8480
Epoch 36/250
46/46 [==============================] - 0s 886us/step - loss: 0.4864 - accuracy: 0.0463 - mae: 0.4864 - pearson_correlation: -0.7191 - euclidean_distance: 0.8447
Epoch 37/250
46/46 [==============================] - 0s 894us/step - loss: 0.4823 - accuracy: 0.0450 - mae: 0.4823 - pearson_correlation: -0.7194 - euclidean_distance: 0.8424
Epoch 38/250
46/46 [==============================] - 0s 885us/step - loss: 0.4807 - accuracy: 0.0459 - mae: 0.4807 - pearson_correlation: -0.7232 - euclidean_distance: 0.8396
Epoch 39/250
46/46 [==============================] - 0s 892us/step - loss: 0.4798 - accuracy: 0.0446 - mae: 0.4798 - pearson_correlation: -0.7215 - euclidean_distance: 0.8378
Epoch 40/250
46/46 [==============================] - 0s 887us/step - loss: 0.4769 - accuracy: 0.0454 - mae: 0.4769 - pearson_correlation: -0.7250 - euclidean_distance: 0.8342
Epoch 41/250
46/46 [==============================] - 0s 881us/step - loss: 0.4744 - accuracy: 0.0454 - mae: 0.4744 - pearson_correlation: -0.7228 - euclidean_distance: 0.8312
Epoch 42/250
46/46 [==============================] - 0s 888us/step - loss: 0.4725 - accuracy: 0.0450 - mae: 0.4725 - pearson_correlation: -0.7162 - euclidean_distance: 0.8280
Epoch 43/250
46/46 [==============================] - 0s 882us/step - loss: 0.4711 - accuracy: 0.0459 - mae: 0.4711 - pearson_correlation: -0.7229 - euclidean_distance: 0.8261
Epoch 44/250
46/46 [==============================] - 0s 889us/step - loss: 0.4687 - accuracy: 0.0459 - mae: 0.4687 - pearson_correlation: -0.7260 - euclidean_distance: 0.8229
Epoch 45/250
46/46 [==============================] - 0s 889us/step - loss: 0.4680 - accuracy: 0.0454 - mae: 0.4680 - pearson_correlation: -0.7275 - euclidean_distance: 0.8211
Epoch 46/250
46/46 [==============================] - 0s 888us/step - loss: 0.4654 - accuracy: 0.0459 - mae: 0.4654 - pearson_correlation: -0.7277 - euclidean_distance: 0.8179
Epoch 47/250
46/46 [==============================] - 0s 892us/step - loss: 0.4646 - accuracy: 0.0454 - mae: 0.4646 - pearson_correlation: -0.7238 - euclidean_distance: 0.8161
Epoch 48/250
46/46 [==============================] - 0s 884us/step - loss: 0.4633 - accuracy: 0.0450 - mae: 0.4633 - pearson_correlation: -0.7282 - euclidean_distance: 0.8142
Epoch 49/250
46/46 [==============================] - 0s 883us/step - loss: 0.4606 - accuracy: 0.0446 - mae: 0.4606 - pearson_correlation: -0.7262 - euclidean_distance: 0.8115
Epoch 50/250
46/46 [==============================] - 0s 877us/step - loss: 0.4581 - accuracy: 0.0446 - mae: 0.4581 - pearson_correlation: -0.7279 - euclidean_distance: 0.8076
Epoch 51/250
46/46 [==============================] - 0s 888us/step - loss: 0.4562 - accuracy: 0.0468 - mae: 0.4562 - pearson_correlation: -0.7270 - euclidean_distance: 0.8051
Epoch 52/250
46/46 [==============================] - 0s 886us/step - loss: 0.4553 - accuracy: 0.0459 - mae: 0.4553 - pearson_correlation: -0.7267 - euclidean_distance: 0.8040
Epoch 53/250
46/46 [==============================] - 0s 879us/step - loss: 0.4529 - accuracy: 0.0450 - mae: 0.4529 - pearson_correlation: -0.7231 - euclidean_distance: 0.8005
Epoch 54/250
46/46 [==============================] - 0s 889us/step - loss: 0.4518 - accuracy: 0.0459 - mae: 0.4518 - pearson_correlation: -0.7272 - euclidean_distance: 0.7980
Epoch 55/250
46/46 [==============================] - 0s 886us/step - loss: 0.4501 - accuracy: 0.0454 - mae: 0.4501 - pearson_correlation: -0.7206 - euclidean_distance: 0.7950
Epoch 56/250
46/46 [==============================] - 0s 883us/step - loss: 0.4491 - accuracy: 0.0446 - mae: 0.4491 - pearson_correlation: -0.7299 - euclidean_distance: 0.7938
Epoch 57/250
46/46 [==============================] - 0s 886us/step - loss: 0.4488 - accuracy: 0.0450 - mae: 0.4488 - pearson_correlation: -0.7233 - euclidean_distance: 0.7921
Epoch 58/250
46/46 [==============================] - 0s 882us/step - loss: 0.4443 - accuracy: 0.0454 - mae: 0.4443 - pearson_correlation: -0.7302 - euclidean_distance: 0.7882
Epoch 59/250
46/46 [==============================] - 0s 891us/step - loss: 0.4426 - accuracy: 0.0454 - mae: 0.4426 - pearson_correlation: -0.7226 - euclidean_distance: 0.7865
Epoch 60/250
46/46 [==============================] - 0s 883us/step - loss: 0.4423 - accuracy: 0.0450 - mae: 0.4423 - pearson_correlation: -0.7269 - euclidean_distance: 0.7837
Epoch 61/250
46/46 [==============================] - 0s 880us/step - loss: 0.4412 - accuracy: 0.0454 - mae: 0.4412 - pearson_correlation: -0.7275 - euclidean_distance: 0.7827
Epoch 62/250
46/46 [==============================] - 0s 880us/step - loss: 0.4394 - accuracy: 0.0454 - mae: 0.4394 - pearson_correlation: -0.7294 - euclidean_distance: 0.7805
Epoch 63/250
46/46 [==============================] - 0s 883us/step - loss: 0.4377 - accuracy: 0.0450 - mae: 0.4377 - pearson_correlation: -0.7278 - euclidean_distance: 0.7769
Epoch 64/250
46/46 [==============================] - 0s 881us/step - loss: 0.4370 - accuracy: 0.0450 - mae: 0.4370 - pearson_correlation: -0.7250 - euclidean_distance: 0.7755
Epoch 65/250
46/46 [==============================] - 0s 891us/step - loss: 0.4344 - accuracy: 0.0450 - mae: 0.4344 - pearson_correlation: -0.7300 - euclidean_distance: 0.7727
Epoch 66/250
46/46 [==============================] - 0s 887us/step - loss: 0.4340 - accuracy: 0.0450 - mae: 0.4340 - pearson_correlation: -0.7228 - euclidean_distance: 0.7711
Epoch 67/250
46/46 [==============================] - 0s 887us/step - loss: 0.4322 - accuracy: 0.0454 - mae: 0.4322 - pearson_correlation: -0.7209 - euclidean_distance: 0.7684
Epoch 68/250
46/46 [==============================] - 0s 882us/step - loss: 0.4311 - accuracy: 0.0463 - mae: 0.4311 - pearson_correlation: -0.7206 - euclidean_distance: 0.7662
Epoch 69/250
46/46 [==============================] - 0s 881us/step - loss: 0.4293 - accuracy: 0.0459 - mae: 0.4293 - pearson_correlation: -0.7213 - euclidean_distance: 0.7639
Epoch 70/250
46/46 [==============================] - 0s 891us/step - loss: 0.4281 - accuracy: 0.0459 - mae: 0.4281 - pearson_correlation: -0.7263 - euclidean_distance: 0.7617
Epoch 71/250
46/46 [==============================] - 0s 878us/step - loss: 0.4268 - accuracy: 0.0446 - mae: 0.4268 - pearson_correlation: -0.7248 - euclidean_distance: 0.7593
Epoch 72/250
46/46 [==============================] - 0s 894us/step - loss: 0.4250 - accuracy: 0.0454 - mae: 0.4250 - pearson_correlation: -0.7262 - euclidean_distance: 0.7568
Epoch 73/250
46/46 [==============================] - 0s 891us/step - loss: 0.4241 - accuracy: 0.0463 - mae: 0.4241 - pearson_correlation: -0.7181 - euclidean_distance: 0.7544
Epoch 74/250
46/46 [==============================] - 0s 899us/step - loss: 0.4224 - accuracy: 0.0459 - mae: 0.4224 - pearson_correlation: -0.7144 - euclidean_distance: 0.7521
Epoch 75/250
46/46 [==============================] - 0s 884us/step - loss: 0.4206 - accuracy: 0.0450 - mae: 0.4206 - pearson_correlation: -0.7186 - euclidean_distance: 0.7494
Epoch 76/250
46/46 [==============================] - 0s 889us/step - loss: 0.4199 - accuracy: 0.0450 - mae: 0.4199 - pearson_correlation: -0.7161 - euclidean_distance: 0.7475
Epoch 77/250
46/46 [==============================] - 0s 884us/step - loss: 0.4197 - accuracy: 0.0454 - mae: 0.4197 - pearson_correlation: -0.7188 - euclidean_distance: 0.7460
Epoch 78/250
46/46 [==============================] - 0s 888us/step - loss: 0.4172 - accuracy: 0.0450 - mae: 0.4172 - pearson_correlation: -0.7187 - euclidean_distance: 0.7432
Epoch 79/250
46/46 [==============================] - 0s 885us/step - loss: 0.4167 - accuracy: 0.0463 - mae: 0.4167 - pearson_correlation: -0.7155 - euclidean_distance: 0.7416
Epoch 80/250
46/46 [==============================] - 0s 886us/step - loss: 0.4141 - accuracy: 0.0454 - mae: 0.4141 - pearson_correlation: -0.7129 - euclidean_distance: 0.7383
Epoch 81/250
46/46 [==============================] - 0s 884us/step - loss: 0.4124 - accuracy: 0.0459 - mae: 0.4124 - pearson_correlation: -0.7184 - euclidean_distance: 0.7361
Epoch 82/250
46/46 [==============================] - 0s 894us/step - loss: 0.4136 - accuracy: 0.0463 - mae: 0.4136 - pearson_correlation: -0.7142 - euclidean_distance: 0.7356
Epoch 83/250
46/46 [==============================] - 0s 910us/step - loss: 0.4113 - accuracy: 0.0441 - mae: 0.4113 - pearson_correlation: -0.7076 - euclidean_distance: 0.7318
Epoch 84/250
46/46 [==============================] - 0s 903us/step - loss: 0.4092 - accuracy: 0.0450 - mae: 0.4092 - pearson_correlation: -0.7102 - euclidean_distance: 0.7297
Epoch 85/250
46/46 [==============================] - 0s 885us/step - loss: 0.4081 - accuracy: 0.0454 - mae: 0.4081 - pearson_correlation: -0.7070 - euclidean_distance: 0.7277
Epoch 86/250
46/46 [==============================] - 0s 884us/step - loss: 0.4070 - accuracy: 0.0450 - mae: 0.4070 - pearson_correlation: -0.7078 - euclidean_distance: 0.7255
Epoch 87/250
46/46 [==============================] - 0s 890us/step - loss: 0.4049 - accuracy: 0.0463 - mae: 0.4049 - pearson_correlation: -0.7031 - euclidean_distance: 0.7218
Epoch 88/250
46/46 [==============================] - 0s 885us/step - loss: 0.4069 - accuracy: 0.0459 - mae: 0.4069 - pearson_correlation: -0.7034 - euclidean_distance: 0.7221
Epoch 89/250
46/46 [==============================] - 0s 875us/step - loss: 0.4037 - accuracy: 0.0454 - mae: 0.4037 - pearson_correlation: -0.7020 - euclidean_distance: 0.7193
Epoch 90/250
46/46 [==============================] - 0s 887us/step - loss: 0.4029 - accuracy: 0.0463 - mae: 0.4029 - pearson_correlation: -0.6996 - euclidean_distance: 0.7164
Epoch 91/250
46/46 [==============================] - 0s 886us/step - loss: 0.4013 - accuracy: 0.0450 - mae: 0.4013 - pearson_correlation: -0.6952 - euclidean_distance: 0.7139
Epoch 92/250
46/46 [==============================] - 0s 880us/step - loss: 0.4014 - accuracy: 0.0468 - mae: 0.4014 - pearson_correlation: -0.6993 - euclidean_distance: 0.7129
Epoch 93/250
46/46 [==============================] - 0s 1ms/step - loss: 0.3992 - accuracy: 0.0450 - mae: 0.3992 - pearson_correlation: -0.6982 - euclidean_distance: 0.7099
Epoch 94/250
46/46 [==============================] - 0s 926us/step - loss: 0.3979 - accuracy: 0.0454 - mae: 0.3979 - pearson_correlation: -0.6980 - euclidean_distance: 0.7087
Epoch 95/250
46/46 [==============================] - 0s 893us/step - loss: 0.3977 - accuracy: 0.0459 - mae: 0.3977 - pearson_correlation: -0.6966 - euclidean_distance: 0.7063
Epoch 96/250
46/46 [==============================] - 0s 885us/step - loss: 0.3952 - accuracy: 0.0459 - mae: 0.3952 - pearson_correlation: -0.6886 - euclidean_distance: 0.7037
Epoch 97/250
46/46 [==============================] - 0s 895us/step - loss: 0.3962 - accuracy: 0.0476 - mae: 0.3962 - pearson_correlation: -0.6882 - euclidean_distance: 0.7019
Epoch 98/250
46/46 [==============================] - 0s 883us/step - loss: 0.3919 - accuracy: 0.0454 - mae: 0.3919 - pearson_correlation: -0.6940 - euclidean_distance: 0.6981
Epoch 99/250
46/46 [==============================] - 0s 889us/step - loss: 0.3917 - accuracy: 0.0454 - mae: 0.3917 - pearson_correlation: -0.6905 - euclidean_distance: 0.6968
Epoch 100/250
46/46 [==============================] - 0s 890us/step - loss: 0.3916 - accuracy: 0.0476 - mae: 0.3916 - pearson_correlation: -0.6867 - euclidean_distance: 0.6951
Epoch 101/250
46/46 [==============================] - 0s 884us/step - loss: 0.3884 - accuracy: 0.0463 - mae: 0.3884 - pearson_correlation: -0.6882 - euclidean_distance: 0.6912
Epoch 102/250
46/46 [==============================] - 0s 880us/step - loss: 0.3872 - accuracy: 0.0463 - mae: 0.3872 - pearson_correlation: -0.6892 - euclidean_distance: 0.6898
Epoch 103/250
46/46 [==============================] - 0s 883us/step - loss: 0.3866 - accuracy: 0.0459 - mae: 0.3866 - pearson_correlation: -0.6825 - euclidean_distance: 0.6872
Epoch 104/250
46/46 [==============================] - 0s 882us/step - loss: 0.3847 - accuracy: 0.0468 - mae: 0.3847 - pearson_correlation: -0.6790 - euclidean_distance: 0.6851
Epoch 105/250
46/46 [==============================] - 0s 886us/step - loss: 0.3833 - accuracy: 0.0454 - mae: 0.3833 - pearson_correlation: -0.6726 - euclidean_distance: 0.6819
Epoch 106/250
46/46 [==============================] - 0s 887us/step - loss: 0.3824 - accuracy: 0.0450 - mae: 0.3824 - pearson_correlation: -0.6751 - euclidean_distance: 0.6810
Epoch 107/250
46/46 [==============================] - 0s 876us/step - loss: 0.3822 - accuracy: 0.0490 - mae: 0.3822 - pearson_correlation: -0.6690 - euclidean_distance: 0.6783
Epoch 108/250
46/46 [==============================] - 0s 883us/step - loss: 0.3809 - accuracy: 0.0463 - mae: 0.3809 - pearson_correlation: -0.6693 - euclidean_distance: 0.6761
Epoch 109/250
46/46 [==============================] - 0s 883us/step - loss: 0.3798 - accuracy: 0.0476 - mae: 0.3798 - pearson_correlation: -0.6743 - euclidean_distance: 0.6745
Epoch 110/250
46/46 [==============================] - 0s 888us/step - loss: 0.3761 - accuracy: 0.0463 - mae: 0.3761 - pearson_correlation: -0.6688 - euclidean_distance: 0.6703
Epoch 111/250
46/46 [==============================] - 0s 885us/step - loss: 0.3759 - accuracy: 0.0459 - mae: 0.3759 - pearson_correlation: -0.6691 - euclidean_distance: 0.6693
Epoch 112/250
46/46 [==============================] - 0s 888us/step - loss: 0.3751 - accuracy: 0.0490 - mae: 0.3751 - pearson_correlation: -0.6613 - euclidean_distance: 0.6667
Epoch 113/250
46/46 [==============================] - 0s 888us/step - loss: 0.3734 - accuracy: 0.0472 - mae: 0.3734 - pearson_correlation: -0.6640 - euclidean_distance: 0.6646
Epoch 114/250
46/46 [==============================] - 0s 881us/step - loss: 0.3727 - accuracy: 0.0485 - mae: 0.3727 - pearson_correlation: -0.6616 - euclidean_distance: 0.6628
Epoch 115/250
46/46 [==============================] - 0s 892us/step - loss: 0.3711 - accuracy: 0.0485 - mae: 0.3711 - pearson_correlation: -0.6623 - euclidean_distance: 0.6595
Epoch 116/250
46/46 [==============================] - 0s 883us/step - loss: 0.3730 - accuracy: 0.0485 - mae: 0.3730 - pearson_correlation: -0.6575 - euclidean_distance: 0.6596
Epoch 117/250
46/46 [==============================] - 0s 891us/step - loss: 0.3688 - accuracy: 0.0463 - mae: 0.3688 - pearson_correlation: -0.6551 - euclidean_distance: 0.6550
Epoch 118/250
46/46 [==============================] - 0s 881us/step - loss: 0.3676 - accuracy: 0.0498 - mae: 0.3676 - pearson_correlation: -0.6515 - euclidean_distance: 0.6526
Epoch 119/250
46/46 [==============================] - 0s 910us/step - loss: 0.3659 - accuracy: 0.0498 - mae: 0.3659 - pearson_correlation: -0.6485 - euclidean_distance: 0.6508
Epoch 120/250
46/46 [==============================] - 0s 886us/step - loss: 0.3646 - accuracy: 0.0503 - mae: 0.3646 - pearson_correlation: -0.6452 - euclidean_distance: 0.6480
Epoch 121/250
46/46 [==============================] - 0s 888us/step - loss: 0.3656 - accuracy: 0.0498 - mae: 0.3656 - pearson_correlation: -0.6442 - euclidean_distance: 0.6473
Epoch 122/250
46/46 [==============================] - 0s 897us/step - loss: 0.3636 - accuracy: 0.0512 - mae: 0.3636 - pearson_correlation: -0.6371 - euclidean_distance: 0.6446
Epoch 123/250
46/46 [==============================] - 0s 882us/step - loss: 0.3615 - accuracy: 0.0498 - mae: 0.3615 - pearson_correlation: -0.6366 - euclidean_distance: 0.6423
Epoch 124/250
46/46 [==============================] - 0s 885us/step - loss: 0.3612 - accuracy: 0.0516 - mae: 0.3612 - pearson_correlation: -0.6345 - euclidean_distance: 0.6401
Epoch 125/250
46/46 [==============================] - 0s 879us/step - loss: 0.3580 - accuracy: 0.0468 - mae: 0.3580 - pearson_correlation: -0.6368 - euclidean_distance: 0.6363
Epoch 126/250
46/46 [==============================] - 0s 881us/step - loss: 0.3578 - accuracy: 0.0507 - mae: 0.3578 - pearson_correlation: -0.6364 - euclidean_distance: 0.6355
Epoch 127/250
46/46 [==============================] - 0s 885us/step - loss: 0.3563 - accuracy: 0.0551 - mae: 0.3563 - pearson_correlation: -0.6232 - euclidean_distance: 0.6324
Epoch 128/250
46/46 [==============================] - 0s 883us/step - loss: 0.3564 - accuracy: 0.0529 - mae: 0.3564 - pearson_correlation: -0.6239 - euclidean_distance: 0.6314
Epoch 129/250
46/46 [==============================] - 0s 883us/step - loss: 0.3524 - accuracy: 0.0521 - mae: 0.3524 - pearson_correlation: -0.6286 - euclidean_distance: 0.6267
Epoch 130/250
46/46 [==============================] - 0s 914us/step - loss: 0.3519 - accuracy: 0.0543 - mae: 0.3519 - pearson_correlation: -0.6254 - euclidean_distance: 0.6253
Epoch 131/250
46/46 [==============================] - 0s 882us/step - loss: 0.3516 - accuracy: 0.0551 - mae: 0.3516 - pearson_correlation: -0.6207 - euclidean_distance: 0.6241
Epoch 132/250
46/46 [==============================] - 0s 891us/step - loss: 0.3504 - accuracy: 0.0596 - mae: 0.3504 - pearson_correlation: -0.6107 - euclidean_distance: 0.6206
Epoch 133/250
46/46 [==============================] - 0s 889us/step - loss: 0.3490 - accuracy: 0.0609 - mae: 0.3490 - pearson_correlation: -0.6166 - euclidean_distance: 0.6188
Epoch 134/250
46/46 [==============================] - 0s 884us/step - loss: 0.3475 - accuracy: 0.0626 - mae: 0.3475 - pearson_correlation: -0.6087 - euclidean_distance: 0.6165
Epoch 135/250
46/46 [==============================] - 0s 890us/step - loss: 0.3457 - accuracy: 0.0609 - mae: 0.3457 - pearson_correlation: -0.6043 - euclidean_distance: 0.6140
Epoch 136/250
46/46 [==============================] - 0s 888us/step - loss: 0.3465 - accuracy: 0.0618 - mae: 0.3465 - pearson_correlation: -0.6026 - euclidean_distance: 0.6126
Epoch 137/250
46/46 [==============================] - 0s 881us/step - loss: 0.3426 - accuracy: 0.0622 - mae: 0.3426 - pearson_correlation: -0.5992 - euclidean_distance: 0.6084
Epoch 138/250
46/46 [==============================] - 0s 885us/step - loss: 0.3423 - accuracy: 0.0684 - mae: 0.3423 - pearson_correlation: -0.5860 - euclidean_distance: 0.6063
Epoch 139/250
46/46 [==============================] - 0s 888us/step - loss: 0.3415 - accuracy: 0.0688 - mae: 0.3415 - pearson_correlation: -0.5915 - euclidean_distance: 0.6046
Epoch 140/250
46/46 [==============================] - 0s 885us/step - loss: 0.3381 - accuracy: 0.0723 - mae: 0.3381 - pearson_correlation: -0.5903 - euclidean_distance: 0.6004
Epoch 141/250
46/46 [==============================] - 0s 887us/step - loss: 0.3383 - accuracy: 0.0732 - mae: 0.3383 - pearson_correlation: -0.5870 - euclidean_distance: 0.5994
Epoch 142/250
46/46 [==============================] - 0s 893us/step - loss: 0.3368 - accuracy: 0.0781 - mae: 0.3368 - pearson_correlation: -0.5839 - euclidean_distance: 0.5967
Epoch 143/250
46/46 [==============================] - 0s 889us/step - loss: 0.3354 - accuracy: 0.0798 - mae: 0.3354 - pearson_correlation: -0.5806 - euclidean_distance: 0.5944
Epoch 144/250
46/46 [==============================] - 0s 883us/step - loss: 0.3341 - accuracy: 0.0829 - mae: 0.3341 - pearson_correlation: -0.5753 - euclidean_distance: 0.5915
Epoch 145/250
46/46 [==============================] - 0s 888us/step - loss: 0.3327 - accuracy: 0.0878 - mae: 0.3327 - pearson_correlation: -0.5682 - euclidean_distance: 0.5891
Epoch 146/250
46/46 [==============================] - 0s 883us/step - loss: 0.3326 - accuracy: 0.0909 - mae: 0.3326 - pearson_correlation: -0.5690 - euclidean_distance: 0.5882
Epoch 147/250
46/46 [==============================] - 0s 888us/step - loss: 0.3297 - accuracy: 0.0838 - mae: 0.3297 - pearson_correlation: -0.5639 - euclidean_distance: 0.5838
Epoch 148/250
46/46 [==============================] - 0s 886us/step - loss: 0.3297 - accuracy: 0.0975 - mae: 0.3297 - pearson_correlation: -0.5562 - euclidean_distance: 0.5822
Epoch 149/250
46/46 [==============================] - 0s 892us/step - loss: 0.3272 - accuracy: 0.0997 - mae: 0.3272 - pearson_correlation: -0.5582 - euclidean_distance: 0.5792
Epoch 150/250
46/46 [==============================] - 0s 886us/step - loss: 0.3264 - accuracy: 0.0993 - mae: 0.3264 - pearson_correlation: -0.5526 - euclidean_distance: 0.5782
Epoch 151/250
46/46 [==============================] - 0s 885us/step - loss: 0.3250 - accuracy: 0.1028 - mae: 0.3250 - pearson_correlation: -0.5483 - euclidean_distance: 0.5747
Epoch 152/250
46/46 [==============================] - 0s 887us/step - loss: 0.3243 - accuracy: 0.1067 - mae: 0.3243 - pearson_correlation: -0.5480 - euclidean_distance: 0.5734
Epoch 153/250
46/46 [==============================] - 0s 885us/step - loss: 0.3219 - accuracy: 0.1063 - mae: 0.3219 - pearson_correlation: -0.5407 - euclidean_distance: 0.5692
Epoch 154/250
46/46 [==============================] - 0s 879us/step - loss: 0.3216 - accuracy: 0.1156 - mae: 0.3216 - pearson_correlation: -0.5337 - euclidean_distance: 0.5676
Epoch 155/250
46/46 [==============================] - 0s 884us/step - loss: 0.3202 - accuracy: 0.1226 - mae: 0.3202 - pearson_correlation: -0.5326 - euclidean_distance: 0.5653
Epoch 156/250
46/46 [==============================] - 0s 886us/step - loss: 0.3195 - accuracy: 0.1292 - mae: 0.3195 - pearson_correlation: -0.5165 - euclidean_distance: 0.5629
Epoch 157/250
46/46 [==============================] - 0s 883us/step - loss: 0.3161 - accuracy: 0.1275 - mae: 0.3161 - pearson_correlation: -0.5210 - euclidean_distance: 0.5585
Epoch 158/250
46/46 [==============================] - 0s 884us/step - loss: 0.3152 - accuracy: 0.1341 - mae: 0.3152 - pearson_correlation: -0.5179 - euclidean_distance: 0.5571
Epoch 159/250
46/46 [==============================] - 0s 889us/step - loss: 0.3137 - accuracy: 0.1394 - mae: 0.3137 - pearson_correlation: -0.5052 - euclidean_distance: 0.5545
Epoch 160/250
46/46 [==============================] - 0s 888us/step - loss: 0.3128 - accuracy: 0.1460 - mae: 0.3128 - pearson_correlation: -0.5019 - euclidean_distance: 0.5534
Epoch 161/250
46/46 [==============================] - 0s 879us/step - loss: 0.3119 - accuracy: 0.1500 - mae: 0.3119 - pearson_correlation: -0.5015 - euclidean_distance: 0.5502
Epoch 162/250
46/46 [==============================] - 0s 930us/step - loss: 0.3093 - accuracy: 0.1478 - mae: 0.3093 - pearson_correlation: -0.4915 - euclidean_distance: 0.5459
Epoch 163/250
46/46 [==============================] - 0s 989us/step - loss: 0.3079 - accuracy: 0.1606 - mae: 0.3079 - pearson_correlation: -0.4887 - euclidean_distance: 0.5442
Epoch 164/250
46/46 [==============================] - 0s 981us/step - loss: 0.3068 - accuracy: 0.1482 - mae: 0.3068 - pearson_correlation: -0.4940 - euclidean_distance: 0.5418
Epoch 165/250
46/46 [==============================] - 0s 946us/step - loss: 0.3050 - accuracy: 0.1557 - mae: 0.3050 - pearson_correlation: -0.4816 - euclidean_distance: 0.5385
Epoch 166/250
46/46 [==============================] - 0s 942us/step - loss: 0.3028 - accuracy: 0.1685 - mae: 0.3028 - pearson_correlation: -0.4799 - euclidean_distance: 0.5355
Epoch 167/250
46/46 [==============================] - 0s 936us/step - loss: 0.3011 - accuracy: 0.1592 - mae: 0.3011 - pearson_correlation: -0.4713 - euclidean_distance: 0.5333
Epoch 168/250
46/46 [==============================] - 0s 952us/step - loss: 0.3000 - accuracy: 0.1698 - mae: 0.3000 - pearson_correlation: -0.4624 - euclidean_distance: 0.5310
Epoch 169/250
46/46 [==============================] - 0s 1ms/step - loss: 0.2984 - accuracy: 0.1747 - mae: 0.2984 - pearson_correlation: -0.4580 - euclidean_distance: 0.5281
Epoch 170/250
46/46 [==============================] - 0s 2ms/step - loss: 0.2973 - accuracy: 0.1822 - mae: 0.2973 - pearson_correlation: -0.4543 - euclidean_distance: 0.5254
Epoch 171/250
46/46 [==============================] - 0s 1ms/step - loss: 0.2963 - accuracy: 0.1901 - mae: 0.2963 - pearson_correlation: -0.4395 - euclidean_distance: 0.5226
Epoch 172/250
46/46 [==============================] - 0s 1ms/step - loss: 0.2954 - accuracy: 0.1936 - mae: 0.2954 - pearson_correlation: -0.4343 - euclidean_distance: 0.5211
Epoch 173/250
46/46 [==============================] - 0s 1ms/step - loss: 0.2938 - accuracy: 0.2020 - mae: 0.2938 - pearson_correlation: -0.4307 - euclidean_distance: 0.5174
Epoch 174/250
46/46 [==============================] - 0s 1ms/step - loss: 0.2911 - accuracy: 0.2025 - mae: 0.2911 - pearson_correlation: -0.4304 - euclidean_distance: 0.5139
Epoch 175/250
46/46 [==============================] - 0s 873us/step - loss: 0.2907 - accuracy: 0.2095 - mae: 0.2907 - pearson_correlation: -0.4120 - euclidean_distance: 0.5126
Epoch 176/250
46/46 [==============================] - 0s 890us/step - loss: 0.2879 - accuracy: 0.2139 - mae: 0.2879 - pearson_correlation: -0.4172 - euclidean_distance: 0.5094
Epoch 177/250
46/46 [==============================] - 0s 890us/step - loss: 0.2867 - accuracy: 0.2148 - mae: 0.2867 - pearson_correlation: -0.4129 - euclidean_distance: 0.5064
Epoch 178/250
46/46 [==============================] - 0s 886us/step - loss: 0.2838 - accuracy: 0.2197 - mae: 0.2838 - pearson_correlation: -0.4009 - euclidean_distance: 0.5022
Epoch 179/250
46/46 [==============================] - 0s 884us/step - loss: 0.2841 - accuracy: 0.2285 - mae: 0.2841 - pearson_correlation: -0.3949 - euclidean_distance: 0.5013
Epoch 180/250
46/46 [==============================] - 0s 884us/step - loss: 0.2848 - accuracy: 0.2333 - mae: 0.2848 - pearson_correlation: -0.3826 - euclidean_distance: 0.5004
Epoch 181/250
46/46 [==============================] - 0s 888us/step - loss: 0.2813 - accuracy: 0.2272 - mae: 0.2813 - pearson_correlation: -0.3767 - euclidean_distance: 0.4963
Epoch 182/250
46/46 [==============================] - 0s 882us/step - loss: 0.2793 - accuracy: 0.2413 - mae: 0.2793 - pearson_correlation: -0.3700 - euclidean_distance: 0.4925
Epoch 183/250
46/46 [==============================] - 0s 885us/step - loss: 0.2792 - accuracy: 0.2523 - mae: 0.2792 - pearson_correlation: -0.3604 - euclidean_distance: 0.4910
Epoch 184/250
46/46 [==============================] - 0s 881us/step - loss: 0.2767 - accuracy: 0.2510 - mae: 0.2767 - pearson_correlation: -0.3532 - euclidean_distance: 0.4875
Epoch 185/250
46/46 [==============================] - 0s 891us/step - loss: 0.2749 - accuracy: 0.2558 - mae: 0.2749 - pearson_correlation: -0.3464 - euclidean_distance: 0.4849
Epoch 186/250
46/46 [==============================] - 0s 877us/step - loss: 0.2731 - accuracy: 0.2581 - mae: 0.2731 - pearson_correlation: -0.3403 - euclidean_distance: 0.4817
Epoch 187/250
46/46 [==============================] - 0s 882us/step - loss: 0.2716 - accuracy: 0.2616 - mae: 0.2716 - pearson_correlation: -0.3219 - euclidean_distance: 0.4786
Epoch 188/250
46/46 [==============================] - 0s 883us/step - loss: 0.2713 - accuracy: 0.2730 - mae: 0.2713 - pearson_correlation: -0.3230 - euclidean_distance: 0.4772
Epoch 189/250
46/46 [==============================] - 0s 886us/step - loss: 0.2683 - accuracy: 0.2713 - mae: 0.2683 - pearson_correlation: -0.3256 - euclidean_distance: 0.4730
Epoch 190/250
46/46 [==============================] - 0s 891us/step - loss: 0.2671 - accuracy: 0.2903 - mae: 0.2671 - pearson_correlation: -0.3071 - euclidean_distance: 0.4696
Epoch 191/250
46/46 [==============================] - 0s 878us/step - loss: 0.2679 - accuracy: 0.2828 - mae: 0.2679 - pearson_correlation: -0.2966 - euclidean_distance: 0.4704
Epoch 192/250
46/46 [==============================] - 0s 879us/step - loss: 0.2641 - accuracy: 0.2925 - mae: 0.2641 - pearson_correlation: -0.2893 - euclidean_distance: 0.4651
Epoch 193/250
46/46 [==============================] - 0s 884us/step - loss: 0.2616 - accuracy: 0.2929 - mae: 0.2616 - pearson_correlation: -0.2820 - euclidean_distance: 0.4609
Epoch 194/250
46/46 [==============================] - 0s 887us/step - loss: 0.2606 - accuracy: 0.3039 - mae: 0.2606 - pearson_correlation: -0.2771 - euclidean_distance: 0.4589
Epoch 195/250
46/46 [==============================] - 0s 879us/step - loss: 0.2605 - accuracy: 0.3008 - mae: 0.2605 - pearson_correlation: -0.2661 - euclidean_distance: 0.4574
Epoch 196/250
46/46 [==============================] - 0s 879us/step - loss: 0.2574 - accuracy: 0.3070 - mae: 0.2574 - pearson_correlation: -0.2580 - euclidean_distance: 0.4522
Epoch 197/250
46/46 [==============================] - 0s 886us/step - loss: 0.2556 - accuracy: 0.3066 - mae: 0.2556 - pearson_correlation: -0.2482 - euclidean_distance: 0.4498
Epoch 198/250
46/46 [==============================] - 0s 889us/step - loss: 0.2554 - accuracy: 0.3105 - mae: 0.2554 - pearson_correlation: -0.2402 - euclidean_distance: 0.4482
Epoch 199/250
46/46 [==============================] - 0s 884us/step - loss: 0.2529 - accuracy: 0.3180 - mae: 0.2529 - pearson_correlation: -0.2187 - euclidean_distance: 0.4442
Epoch 200/250
46/46 [==============================] - 0s 882us/step - loss: 0.2530 - accuracy: 0.3308 - mae: 0.2530 - pearson_correlation: -0.2190 - euclidean_distance: 0.4440
Epoch 201/250
46/46 [==============================] - 0s 879us/step - loss: 0.2485 - accuracy: 0.3291 - mae: 0.2485 - pearson_correlation: -0.2110 - euclidean_distance: 0.4376
Epoch 202/250
46/46 [==============================] - 0s 879us/step - loss: 0.2478 - accuracy: 0.3383 - mae: 0.2478 - pearson_correlation: -0.1986 - euclidean_distance: 0.4351
Epoch 203/250
46/46 [==============================] - 0s 882us/step - loss: 0.2469 - accuracy: 0.3432 - mae: 0.2469 - pearson_correlation: -0.1892 - euclidean_distance: 0.4331
Epoch 204/250
46/46 [==============================] - 0s 873us/step - loss: 0.2447 - accuracy: 0.3379 - mae: 0.2447 - pearson_correlation: -0.1779 - euclidean_distance: 0.4305
Epoch 205/250
46/46 [==============================] - 0s 882us/step - loss: 0.2436 - accuracy: 0.3507 - mae: 0.2436 - pearson_correlation: -0.1578 - euclidean_distance: 0.4269
Epoch 206/250
46/46 [==============================] - 0s 876us/step - loss: 0.2411 - accuracy: 0.3511 - mae: 0.2411 - pearson_correlation: -0.1536 - euclidean_distance: 0.4229
Epoch 207/250
46/46 [==============================] - 0s 876us/step - loss: 0.2394 - accuracy: 0.3547 - mae: 0.2394 - pearson_correlation: -0.1452 - euclidean_distance: 0.4212
Epoch 208/250
46/46 [==============================] - 0s 872us/step - loss: 0.2374 - accuracy: 0.3533 - mae: 0.2374 - pearson_correlation: -0.1412 - euclidean_distance: 0.4165
Epoch 209/250
46/46 [==============================] - 0s 885us/step - loss: 0.2376 - accuracy: 0.3705 - mae: 0.2376 - pearson_correlation: -0.1257 - euclidean_distance: 0.4165
Epoch 210/250
46/46 [==============================] - 0s 885us/step - loss: 0.2353 - accuracy: 0.3679 - mae: 0.2353 - pearson_correlation: -0.1200 - euclidean_distance: 0.4128
Epoch 211/250
46/46 [==============================] - 0s 883us/step - loss: 0.2323 - accuracy: 0.3697 - mae: 0.2323 - pearson_correlation: -0.1062 - euclidean_distance: 0.4083
Epoch 212/250
46/46 [==============================] - 0s 874us/step - loss: 0.2323 - accuracy: 0.3723 - mae: 0.2323 - pearson_correlation: -0.1085 - euclidean_distance: 0.4070
Epoch 213/250
46/46 [==============================] - 0s 879us/step - loss: 0.2289 - accuracy: 0.3807 - mae: 0.2289 - pearson_correlation: -0.0883 - euclidean_distance: 0.4024
Epoch 214/250
46/46 [==============================] - 0s 870us/step - loss: 0.2286 - accuracy: 0.3961 - mae: 0.2286 - pearson_correlation: -0.0819 - euclidean_distance: 0.4014
Epoch 215/250
46/46 [==============================] - 0s 882us/step - loss: 0.2264 - accuracy: 0.3970 - mae: 0.2264 - pearson_correlation: -0.0607 - euclidean_distance: 0.3965
Epoch 216/250
46/46 [==============================] - 0s 878us/step - loss: 0.2244 - accuracy: 0.3966 - mae: 0.2244 - pearson_correlation: -0.0570 - euclidean_distance: 0.3934
Epoch 217/250
46/46 [==============================] - 0s 875us/step - loss: 0.2238 - accuracy: 0.4023 - mae: 0.2238 - pearson_correlation: -0.0495 - euclidean_distance: 0.3925
Epoch 218/250
46/46 [==============================] - 0s 872us/step - loss: 0.2194 - accuracy: 0.4076 - mae: 0.2194 - pearson_correlation: -0.0300 - euclidean_distance: 0.3858
Epoch 219/250
46/46 [==============================] - 0s 882us/step - loss: 0.2203 - accuracy: 0.4058 - mae: 0.2203 - pearson_correlation: -0.0325 - euclidean_distance: 0.3851
Epoch 220/250
46/46 [==============================] - 0s 881us/step - loss: 0.2184 - accuracy: 0.4142 - mae: 0.2184 - pearson_correlation: -0.0069 - euclidean_distance: 0.3823
Epoch 221/250
46/46 [==============================] - 0s 875us/step - loss: 0.2156 - accuracy: 0.4221 - mae: 0.2156 - pearson_correlation: 0.0060 - euclidean_distance: 0.3787
Epoch 222/250
46/46 [==============================] - 0s 874us/step - loss: 0.2143 - accuracy: 0.4208 - mae: 0.2143 - pearson_correlation: 0.0174 - euclidean_distance: 0.3752
Epoch 223/250
46/46 [==============================] - 0s 884us/step - loss: 0.2122 - accuracy: 0.4292 - mae: 0.2122 - pearson_correlation: 0.0159 - euclidean_distance: 0.3719
Epoch 224/250
46/46 [==============================] - 0s 877us/step - loss: 0.2097 - accuracy: 0.4314 - mae: 0.2097 - pearson_correlation: 0.0268 - euclidean_distance: 0.3678
Epoch 225/250
46/46 [==============================] - 0s 877us/step - loss: 0.2092 - accuracy: 0.4380 - mae: 0.2092 - pearson_correlation: 0.0320 - euclidean_distance: 0.3668
Epoch 226/250
46/46 [==============================] - 0s 880us/step - loss: 0.2081 - accuracy: 0.4442 - mae: 0.2081 - pearson_correlation: 0.0471 - euclidean_distance: 0.3637
Epoch 227/250
46/46 [==============================] - 0s 884us/step - loss: 0.2066 - accuracy: 0.4552 - mae: 0.2066 - pearson_correlation: 0.0567 - euclidean_distance: 0.3608
Epoch 228/250
46/46 [==============================] - 0s 869us/step - loss: 0.2069 - accuracy: 0.4579 - mae: 0.2069 - pearson_correlation: 0.0726 - euclidean_distance: 0.3607
Epoch 229/250
46/46 [==============================] - 0s 877us/step - loss: 0.2033 - accuracy: 0.4605 - mae: 0.2033 - pearson_correlation: 0.0836 - euclidean_distance: 0.3556
Epoch 230/250
46/46 [==============================] - 0s 886us/step - loss: 0.2044 - accuracy: 0.4676 - mae: 0.2044 - pearson_correlation: 0.0851 - euclidean_distance: 0.3554
Epoch 231/250
46/46 [==============================] - 0s 873us/step - loss: 0.2014 - accuracy: 0.4773 - mae: 0.2014 - pearson_correlation: 0.0963 - euclidean_distance: 0.3513
Epoch 232/250
46/46 [==============================] - 0s 884us/step - loss: 0.2003 - accuracy: 0.4813 - mae: 0.2003 - pearson_correlation: 0.1061 - euclidean_distance: 0.3479
Epoch 233/250
46/46 [==============================] - 0s 876us/step - loss: 0.1987 - accuracy: 0.4755 - mae: 0.1987 - pearson_correlation: 0.1097 - euclidean_distance: 0.3465
Epoch 234/250
46/46 [==============================] - 0s 877us/step - loss: 0.1960 - accuracy: 0.4892 - mae: 0.1960 - pearson_correlation: 0.1315 - euclidean_distance: 0.3419
Epoch 235/250
46/46 [==============================] - 0s 877us/step - loss: 0.1946 - accuracy: 0.5051 - mae: 0.1946 - pearson_correlation: 0.1370 - euclidean_distance: 0.3390
Epoch 236/250
46/46 [==============================] - 0s 880us/step - loss: 0.1933 - accuracy: 0.5042 - mae: 0.1933 - pearson_correlation: 0.1438 - euclidean_distance: 0.3368
Epoch 237/250
46/46 [==============================] - 0s 872us/step - loss: 0.1926 - accuracy: 0.5126 - mae: 0.1926 - pearson_correlation: 0.1513 - euclidean_distance: 0.3353
Epoch 238/250
46/46 [==============================] - 0s 884us/step - loss: 0.1906 - accuracy: 0.5174 - mae: 0.1906 - pearson_correlation: 0.1628 - euclidean_distance: 0.3315
Epoch 239/250
46/46 [==============================] - 0s 879us/step - loss: 0.1898 - accuracy: 0.5307 - mae: 0.1898 - pearson_correlation: 0.1714 - euclidean_distance: 0.3296
Epoch 240/250
46/46 [==============================] - 0s 875us/step - loss: 0.1912 - accuracy: 0.5399 - mae: 0.1912 - pearson_correlation: 0.1850 - euclidean_distance: 0.3308
Epoch 241/250
46/46 [==============================] - 0s 877us/step - loss: 0.1863 - accuracy: 0.5404 - mae: 0.1863 - pearson_correlation: 0.1923 - euclidean_distance: 0.3240
Epoch 242/250
46/46 [==============================] - 0s 871us/step - loss: 0.1862 - accuracy: 0.5483 - mae: 0.1862 - pearson_correlation: 0.1909 - euclidean_distance: 0.3224
Epoch 243/250
46/46 [==============================] - 0s 882us/step - loss: 0.1864 - accuracy: 0.5536 - mae: 0.1864 - pearson_correlation: 0.2081 - euclidean_distance: 0.3223
Epoch 244/250
46/46 [==============================] - 0s 878us/step - loss: 0.1838 - accuracy: 0.5602 - mae: 0.1838 - pearson_correlation: 0.2094 - euclidean_distance: 0.3175
Epoch 245/250
46/46 [==============================] - 0s 883us/step - loss: 0.1833 - accuracy: 0.5726 - mae: 0.1833 - pearson_correlation: 0.2221 - euclidean_distance: 0.3169
Epoch 246/250
46/46 [==============================] - 0s 882us/step - loss: 0.1797 - accuracy: 0.5757 - mae: 0.1797 - pearson_correlation: 0.2357 - euclidean_distance: 0.3113
Epoch 247/250
46/46 [==============================] - 0s 876us/step - loss: 0.1827 - accuracy: 0.5858 - mae: 0.1827 - pearson_correlation: 0.2330 - euclidean_distance: 0.3148
Epoch 248/250
46/46 [==============================] - 0s 877us/step - loss: 0.1798 - accuracy: 0.5906 - mae: 0.1798 - pearson_correlation: 0.2490 - euclidean_distance: 0.3101
Epoch 249/250
46/46 [==============================] - 0s 878us/step - loss: 0.1775 - accuracy: 0.6039 - mae: 0.1775 - pearson_correlation: 0.2523 - euclidean_distance: 0.3066
Epoch 250/250
46/46 [==============================] - 0s 881us/step - loss: 0.1777 - accuracy: 0.5990 - mae: 0.1777 - pearson_correlation: 0.2569 - euclidean_distance: 0.3064
23/23 [==============================] - 0s 527us/step
Epoch 1/250
46/46 [==============================] - 1s 948us/step - loss: 0.5881 - accuracy: 0.8448 - mae: 0.5881 - pearson_correlation: 0.4668 - euclidean_distance: 0.8588
Epoch 2/250
46/46 [==============================] - 0s 825us/step - loss: 0.5846 - accuracy: 0.8461 - mae: 0.5846 - pearson_correlation: 0.4683 - euclidean_distance: 0.8541
Epoch 3/250
46/46 [==============================] - 0s 855us/step - loss: 0.5825 - accuracy: 0.8492 - mae: 0.5825 - pearson_correlation: 0.4514 - euclidean_distance: 0.8513
Epoch 4/250
46/46 [==============================] - 0s 885us/step - loss: 0.5782 - accuracy: 0.8426 - mae: 0.5782 - pearson_correlation: 0.4584 - euclidean_distance: 0.8457
Epoch 5/250
46/46 [==============================] - 0s 879us/step - loss: 0.5760 - accuracy: 0.8333 - mae: 0.5760 - pearson_correlation: 0.4500 - euclidean_distance: 0.8428
Epoch 6/250
46/46 [==============================] - 0s 892us/step - loss: 0.5727 - accuracy: 0.8355 - mae: 0.5727 - pearson_correlation: 0.4485 - euclidean_distance: 0.8387
Epoch 7/250
46/46 [==============================] - 0s 888us/step - loss: 0.5685 - accuracy: 0.8377 - mae: 0.5685 - pearson_correlation: 0.4413 - euclidean_distance: 0.8329
Epoch 8/250
46/46 [==============================] - 0s 891us/step - loss: 0.5643 - accuracy: 0.8302 - mae: 0.5643 - pearson_correlation: 0.4345 - euclidean_distance: 0.8272
Epoch 9/250
46/46 [==============================] - 0s 885us/step - loss: 0.5614 - accuracy: 0.8276 - mae: 0.5614 - pearson_correlation: 0.4188 - euclidean_distance: 0.8242
Epoch 10/250
46/46 [==============================] - 0s 890us/step - loss: 0.5577 - accuracy: 0.8060 - mae: 0.5577 - pearson_correlation: 0.4206 - euclidean_distance: 0.8192
Epoch 11/250
46/46 [==============================] - 0s 893us/step - loss: 0.5540 - accuracy: 0.8201 - mae: 0.5540 - pearson_correlation: 0.4185 - euclidean_distance: 0.8141
Epoch 12/250
46/46 [==============================] - 0s 885us/step - loss: 0.5501 - accuracy: 0.8131 - mae: 0.5501 - pearson_correlation: 0.4081 - euclidean_distance: 0.8092
Epoch 13/250
46/46 [==============================] - 0s 896us/step - loss: 0.5468 - accuracy: 0.8034 - mae: 0.5468 - pearson_correlation: 0.4019 - euclidean_distance: 0.8050
Epoch 14/250
46/46 [==============================] - 0s 888us/step - loss: 0.5425 - accuracy: 0.8025 - mae: 0.5425 - pearson_correlation: 0.3976 - euclidean_distance: 0.7995
Epoch 15/250
46/46 [==============================] - 0s 888us/step - loss: 0.5379 - accuracy: 0.8007 - mae: 0.5379 - pearson_correlation: 0.3844 - euclidean_distance: 0.7939
Epoch 16/250
46/46 [==============================] - 0s 888us/step - loss: 0.5343 - accuracy: 0.7910 - mae: 0.5343 - pearson_correlation: 0.3780 - euclidean_distance: 0.7890
Epoch 17/250
46/46 [==============================] - 0s 885us/step - loss: 0.5298 - accuracy: 0.8020 - mae: 0.5298 - pearson_correlation: 0.3757 - euclidean_distance: 0.7831
Epoch 18/250
46/46 [==============================] - 0s 883us/step - loss: 0.5254 - accuracy: 0.7888 - mae: 0.5254 - pearson_correlation: 0.3591 - euclidean_distance: 0.7776
Epoch 19/250
46/46 [==============================] - 0s 885us/step - loss: 0.5210 - accuracy: 0.7835 - mae: 0.5210 - pearson_correlation: 0.3587 - euclidean_distance: 0.7719
Epoch 20/250
46/46 [==============================] - 0s 893us/step - loss: 0.5159 - accuracy: 0.7782 - mae: 0.5159 - pearson_correlation: 0.3494 - euclidean_distance: 0.7656
Epoch 21/250
46/46 [==============================] - 0s 887us/step - loss: 0.5130 - accuracy: 0.7822 - mae: 0.5130 - pearson_correlation: 0.3405 - euclidean_distance: 0.7620
Epoch 22/250
46/46 [==============================] - 0s 893us/step - loss: 0.5074 - accuracy: 0.7694 - mae: 0.5074 - pearson_correlation: 0.3314 - euclidean_distance: 0.7554
Epoch 23/250
46/46 [==============================] - 0s 888us/step - loss: 0.5024 - accuracy: 0.7610 - mae: 0.5024 - pearson_correlation: 0.3265 - euclidean_distance: 0.7488
Epoch 24/250
46/46 [==============================] - 0s 885us/step - loss: 0.4979 - accuracy: 0.7641 - mae: 0.4979 - pearson_correlation: 0.3117 - euclidean_distance: 0.7436
Epoch 25/250
46/46 [==============================] - 0s 998us/step - loss: 0.4928 - accuracy: 0.7575 - mae: 0.4928 - pearson_correlation: 0.3095 - euclidean_distance: 0.7364
Epoch 26/250
46/46 [==============================] - 0s 951us/step - loss: 0.4888 - accuracy: 0.7588 - mae: 0.4888 - pearson_correlation: 0.3010 - euclidean_distance: 0.7315
Epoch 27/250
46/46 [==============================] - 0s 902us/step - loss: 0.4834 - accuracy: 0.7460 - mae: 0.4834 - pearson_correlation: 0.2997 - euclidean_distance: 0.7250
Epoch 28/250
46/46 [==============================] - 0s 898us/step - loss: 0.4793 - accuracy: 0.7434 - mae: 0.4793 - pearson_correlation: 0.2819 - euclidean_distance: 0.7201
Epoch 29/250
46/46 [==============================] - 0s 886us/step - loss: 0.4738 - accuracy: 0.7474 - mae: 0.4738 - pearson_correlation: 0.2791 - euclidean_distance: 0.7128
Epoch 30/250
46/46 [==============================] - 0s 886us/step - loss: 0.4690 - accuracy: 0.7310 - mae: 0.4690 - pearson_correlation: 0.2822 - euclidean_distance: 0.7061
Epoch 31/250
46/46 [==============================] - 0s 890us/step - loss: 0.4658 - accuracy: 0.7302 - mae: 0.4658 - pearson_correlation: 0.2725 - euclidean_distance: 0.7021
Epoch 32/250
46/46 [==============================] - 0s 887us/step - loss: 0.4601 - accuracy: 0.7262 - mae: 0.4601 - pearson_correlation: 0.2613 - euclidean_distance: 0.6953
Epoch 33/250
46/46 [==============================] - 0s 882us/step - loss: 0.4562 - accuracy: 0.7288 - mae: 0.4562 - pearson_correlation: 0.2567 - euclidean_distance: 0.6894
Epoch 34/250
46/46 [==============================] - 0s 883us/step - loss: 0.4507 - accuracy: 0.7213 - mae: 0.4507 - pearson_correlation: 0.2526 - euclidean_distance: 0.6826
Epoch 35/250
46/46 [==============================] - 0s 886us/step - loss: 0.4476 - accuracy: 0.7174 - mae: 0.4476 - pearson_correlation: 0.2504 - euclidean_distance: 0.6781
Epoch 36/250
46/46 [==============================] - 0s 889us/step - loss: 0.4431 - accuracy: 0.7174 - mae: 0.4431 - pearson_correlation: 0.2492 - euclidean_distance: 0.6719
Epoch 37/250
46/46 [==============================] - 0s 884us/step - loss: 0.4386 - accuracy: 0.7072 - mae: 0.4386 - pearson_correlation: 0.2412 - euclidean_distance: 0.6662
Epoch 38/250
46/46 [==============================] - 0s 885us/step - loss: 0.4350 - accuracy: 0.7235 - mae: 0.4350 - pearson_correlation: 0.2473 - euclidean_distance: 0.6606
Epoch 39/250
46/46 [==============================] - 0s 889us/step - loss: 0.4322 - accuracy: 0.7187 - mae: 0.4322 - pearson_correlation: 0.2452 - euclidean_distance: 0.6561
Epoch 40/250
46/46 [==============================] - 0s 884us/step - loss: 0.4289 - accuracy: 0.7253 - mae: 0.4289 - pearson_correlation: 0.2475 - euclidean_distance: 0.6512
Epoch 41/250
46/46 [==============================] - 0s 880us/step - loss: 0.4237 - accuracy: 0.7213 - mae: 0.4237 - pearson_correlation: 0.2423 - euclidean_distance: 0.6444
Epoch 42/250
46/46 [==============================] - 0s 939us/step - loss: 0.4195 - accuracy: 0.7143 - mae: 0.4195 - pearson_correlation: 0.2404 - euclidean_distance: 0.6386
Epoch 43/250
46/46 [==============================] - 0s 907us/step - loss: 0.4165 - accuracy: 0.7244 - mae: 0.4165 - pearson_correlation: 0.2372 - euclidean_distance: 0.6337
Epoch 44/250
46/46 [==============================] - 0s 888us/step - loss: 0.4114 - accuracy: 0.7288 - mae: 0.4114 - pearson_correlation: 0.2410 - euclidean_distance: 0.6261
Epoch 45/250
46/46 [==============================] - 0s 886us/step - loss: 0.4093 - accuracy: 0.7262 - mae: 0.4093 - pearson_correlation: 0.2382 - euclidean_distance: 0.6229
Epoch 46/250
46/46 [==============================] - 0s 881us/step - loss: 0.4061 - accuracy: 0.7288 - mae: 0.4061 - pearson_correlation: 0.2381 - euclidean_distance: 0.6184
Epoch 47/250
46/46 [==============================] - 0s 891us/step - loss: 0.3998 - accuracy: 0.7324 - mae: 0.3998 - pearson_correlation: 0.2394 - euclidean_distance: 0.6093
Epoch 48/250
46/46 [==============================] - 0s 882us/step - loss: 0.3968 - accuracy: 0.7407 - mae: 0.3968 - pearson_correlation: 0.2430 - euclidean_distance: 0.6045
Epoch 49/250
46/46 [==============================] - 0s 890us/step - loss: 0.3923 - accuracy: 0.7368 - mae: 0.3923 - pearson_correlation: 0.2440 - euclidean_distance: 0.5977
Epoch 50/250
46/46 [==============================] - 0s 904us/step - loss: 0.3899 - accuracy: 0.7385 - mae: 0.3899 - pearson_correlation: 0.2453 - euclidean_distance: 0.5930
Epoch 51/250
46/46 [==============================] - 0s 930us/step - loss: 0.3876 - accuracy: 0.7429 - mae: 0.3876 - pearson_correlation: 0.2453 - euclidean_distance: 0.5897
Epoch 52/250
46/46 [==============================] - 0s 912us/step - loss: 0.3825 - accuracy: 0.7403 - mae: 0.3825 - pearson_correlation: 0.2472 - euclidean_distance: 0.5827
Epoch 53/250
46/46 [==============================] - 0s 890us/step - loss: 0.3790 - accuracy: 0.7549 - mae: 0.3790 - pearson_correlation: 0.2552 - euclidean_distance: 0.5771
Epoch 54/250
46/46 [==============================] - 0s 891us/step - loss: 0.3757 - accuracy: 0.7597 - mae: 0.3757 - pearson_correlation: 0.2542 - euclidean_distance: 0.5717
Epoch 55/250
46/46 [==============================] - 0s 891us/step - loss: 0.3716 - accuracy: 0.7504 - mae: 0.3716 - pearson_correlation: 0.2608 - euclidean_distance: 0.5659
Epoch 56/250
46/46 [==============================] - 0s 891us/step - loss: 0.3690 - accuracy: 0.7549 - mae: 0.3690 - pearson_correlation: 0.2625 - euclidean_distance: 0.5616
Epoch 57/250
46/46 [==============================] - 0s 888us/step - loss: 0.3656 - accuracy: 0.7685 - mae: 0.3656 - pearson_correlation: 0.2695 - euclidean_distance: 0.5563
Epoch 58/250
46/46 [==============================] - 0s 888us/step - loss: 0.3618 - accuracy: 0.7663 - mae: 0.3618 - pearson_correlation: 0.2731 - euclidean_distance: 0.5501
Epoch 59/250
46/46 [==============================] - 0s 884us/step - loss: 0.3577 - accuracy: 0.7672 - mae: 0.3577 - pearson_correlation: 0.2707 - euclidean_distance: 0.5441
Epoch 60/250
46/46 [==============================] - 0s 889us/step - loss: 0.3534 - accuracy: 0.7729 - mae: 0.3534 - pearson_correlation: 0.2776 - euclidean_distance: 0.5376
Epoch 61/250
46/46 [==============================] - 0s 889us/step - loss: 0.3499 - accuracy: 0.7690 - mae: 0.3499 - pearson_correlation: 0.2796 - euclidean_distance: 0.5328
Epoch 62/250
46/46 [==============================] - 0s 894us/step - loss: 0.3470 - accuracy: 0.7716 - mae: 0.3470 - pearson_correlation: 0.2819 - euclidean_distance: 0.5279
Epoch 63/250
46/46 [==============================] - 0s 891us/step - loss: 0.3421 - accuracy: 0.7862 - mae: 0.3421 - pearson_correlation: 0.2901 - euclidean_distance: 0.5208
Epoch 64/250
46/46 [==============================] - 0s 888us/step - loss: 0.3394 - accuracy: 0.7840 - mae: 0.3394 - pearson_correlation: 0.2940 - euclidean_distance: 0.5166
Epoch 65/250
46/46 [==============================] - 0s 887us/step - loss: 0.3362 - accuracy: 0.7963 - mae: 0.3362 - pearson_correlation: 0.2998 - euclidean_distance: 0.5109
Epoch 66/250
46/46 [==============================] - 0s 891us/step - loss: 0.3320 - accuracy: 0.8051 - mae: 0.3320 - pearson_correlation: 0.3024 - euclidean_distance: 0.5050
Epoch 67/250
46/46 [==============================] - 0s 891us/step - loss: 0.3270 - accuracy: 0.8086 - mae: 0.3270 - pearson_correlation: 0.3017 - euclidean_distance: 0.4971
Epoch 68/250
46/46 [==============================] - 0s 885us/step - loss: 0.3246 - accuracy: 0.8069 - mae: 0.3246 - pearson_correlation: 0.3068 - euclidean_distance: 0.4937
Epoch 69/250
46/46 [==============================] - 0s 884us/step - loss: 0.3205 - accuracy: 0.8078 - mae: 0.3205 - pearson_correlation: 0.3126 - euclidean_distance: 0.4873
Epoch 70/250
46/46 [==============================] - 0s 893us/step - loss: 0.3182 - accuracy: 0.8188 - mae: 0.3182 - pearson_correlation: 0.3154 - euclidean_distance: 0.4846
Epoch 71/250
46/46 [==============================] - 0s 885us/step - loss: 0.3130 - accuracy: 0.8316 - mae: 0.3130 - pearson_correlation: 0.3253 - euclidean_distance: 0.4759
Epoch 72/250
46/46 [==============================] - 0s 895us/step - loss: 0.3094 - accuracy: 0.8333 - mae: 0.3094 - pearson_correlation: 0.3232 - euclidean_distance: 0.4713
Epoch 73/250
46/46 [==============================] - 0s 889us/step - loss: 0.3059 - accuracy: 0.8399 - mae: 0.3059 - pearson_correlation: 0.3331 - euclidean_distance: 0.4664
Epoch 74/250
46/46 [==============================] - 0s 884us/step - loss: 0.3027 - accuracy: 0.8470 - mae: 0.3027 - pearson_correlation: 0.3397 - euclidean_distance: 0.4610
Epoch 75/250
46/46 [==============================] - 0s 883us/step - loss: 0.2992 - accuracy: 0.8651 - mae: 0.2992 - pearson_correlation: 0.3453 - euclidean_distance: 0.4562
Epoch 76/250
46/46 [==============================] - 0s 884us/step - loss: 0.2975 - accuracy: 0.8585 - mae: 0.2975 - pearson_correlation: 0.3490 - euclidean_distance: 0.4531
Epoch 77/250
46/46 [==============================] - 0s 890us/step - loss: 0.2914 - accuracy: 0.8668 - mae: 0.2914 - pearson_correlation: 0.3475 - euclidean_distance: 0.4440
Epoch 78/250
46/46 [==============================] - 0s 880us/step - loss: 0.2888 - accuracy: 0.8708 - mae: 0.2888 - pearson_correlation: 0.3642 - euclidean_distance: 0.4402
Epoch 79/250
46/46 [==============================] - 0s 886us/step - loss: 0.2846 - accuracy: 0.8717 - mae: 0.2846 - pearson_correlation: 0.3643 - euclidean_distance: 0.4335
Epoch 80/250
46/46 [==============================] - 0s 885us/step - loss: 0.2816 - accuracy: 0.8832 - mae: 0.2816 - pearson_correlation: 0.3676 - euclidean_distance: 0.4297
Epoch 81/250
46/46 [==============================] - 0s 890us/step - loss: 0.2791 - accuracy: 0.8937 - mae: 0.2791 - pearson_correlation: 0.3778 - euclidean_distance: 0.4261
Epoch 82/250
46/46 [==============================] - 0s 890us/step - loss: 0.2754 - accuracy: 0.8924 - mae: 0.2754 - pearson_correlation: 0.3791 - euclidean_distance: 0.4200
Epoch 83/250
46/46 [==============================] - 0s 884us/step - loss: 0.2719 - accuracy: 0.9026 - mae: 0.2719 - pearson_correlation: 0.3839 - euclidean_distance: 0.4148
Epoch 84/250
46/46 [==============================] - 0s 889us/step - loss: 0.2683 - accuracy: 0.9105 - mae: 0.2683 - pearson_correlation: 0.3928 - euclidean_distance: 0.4093
Epoch 85/250
46/46 [==============================] - 0s 885us/step - loss: 0.2632 - accuracy: 0.9109 - mae: 0.2632 - pearson_correlation: 0.3989 - euclidean_distance: 0.4026
Epoch 86/250
46/46 [==============================] - 0s 887us/step - loss: 0.2620 - accuracy: 0.9118 - mae: 0.2620 - pearson_correlation: 0.4049 - euclidean_distance: 0.4004
Epoch 87/250
46/46 [==============================] - 0s 895us/step - loss: 0.2570 - accuracy: 0.9167 - mae: 0.2570 - pearson_correlation: 0.4127 - euclidean_distance: 0.3936
Epoch 88/250
46/46 [==============================] - 0s 888us/step - loss: 0.2541 - accuracy: 0.9259 - mae: 0.2541 - pearson_correlation: 0.4174 - euclidean_distance: 0.3895
Epoch 89/250
46/46 [==============================] - 0s 886us/step - loss: 0.2509 - accuracy: 0.9250 - mae: 0.2509 - pearson_correlation: 0.4267 - euclidean_distance: 0.3843
Epoch 90/250
46/46 [==============================] - 0s 888us/step - loss: 0.2457 - accuracy: 0.9299 - mae: 0.2457 - pearson_correlation: 0.4325 - euclidean_distance: 0.3757
Epoch 91/250
46/46 [==============================] - 0s 888us/step - loss: 0.2421 - accuracy: 0.9272 - mae: 0.2421 - pearson_correlation: 0.4356 - euclidean_distance: 0.3714
Epoch 92/250
46/46 [==============================] - 0s 886us/step - loss: 0.2387 - accuracy: 0.9255 - mae: 0.2387 - pearson_correlation: 0.4392 - euclidean_distance: 0.3663
Epoch 93/250
46/46 [==============================] - 0s 888us/step - loss: 0.2351 - accuracy: 0.9295 - mae: 0.2351 - pearson_correlation: 0.4459 - euclidean_distance: 0.3615
Epoch 94/250
46/46 [==============================] - 0s 887us/step - loss: 0.2313 - accuracy: 0.9347 - mae: 0.2313 - pearson_correlation: 0.4541 - euclidean_distance: 0.3552
Epoch 95/250
46/46 [==============================] - 0s 889us/step - loss: 0.2280 - accuracy: 0.9321 - mae: 0.2280 - pearson_correlation: 0.4578 - euclidean_distance: 0.3505
Epoch 96/250
46/46 [==============================] - 0s 883us/step - loss: 0.2248 - accuracy: 0.9383 - mae: 0.2248 - pearson_correlation: 0.4678 - euclidean_distance: 0.3461
Epoch 97/250
46/46 [==============================] - 0s 888us/step - loss: 0.2234 - accuracy: 0.9414 - mae: 0.2234 - pearson_correlation: 0.4559 - euclidean_distance: 0.3438
Epoch 98/250
46/46 [==============================] - 0s 892us/step - loss: 0.2206 - accuracy: 0.9343 - mae: 0.2206 - pearson_correlation: 0.4759 - euclidean_distance: 0.3402
Epoch 99/250
46/46 [==============================] - 0s 888us/step - loss: 0.2160 - accuracy: 0.9414 - mae: 0.2160 - pearson_correlation: 0.4820 - euclidean_distance: 0.3329
Epoch 100/250
46/46 [==============================] - 0s 893us/step - loss: 0.2148 - accuracy: 0.9427 - mae: 0.2148 - pearson_correlation: 0.4843 - euclidean_distance: 0.3311
Epoch 101/250
46/46 [==============================] - 0s 889us/step - loss: 0.2099 - accuracy: 0.9431 - mae: 0.2099 - pearson_correlation: 0.4871 - euclidean_distance: 0.3237
Epoch 102/250
46/46 [==============================] - 0s 886us/step - loss: 0.2087 - accuracy: 0.9444 - mae: 0.2087 - pearson_correlation: 0.4912 - euclidean_distance: 0.3213
Epoch 103/250
46/46 [==============================] - 0s 886us/step - loss: 0.2055 - accuracy: 0.9471 - mae: 0.2055 - pearson_correlation: 0.4946 - euclidean_distance: 0.3175
Epoch 104/250
46/46 [==============================] - 0s 890us/step - loss: 0.2045 - accuracy: 0.9480 - mae: 0.2045 - pearson_correlation: 0.4948 - euclidean_distance: 0.3150
Epoch 105/250
46/46 [==============================] - 0s 884us/step - loss: 0.2015 - accuracy: 0.9489 - mae: 0.2015 - pearson_correlation: 0.5012 - euclidean_distance: 0.3113
Epoch 106/250
46/46 [==============================] - 0s 887us/step - loss: 0.1991 - accuracy: 0.9484 - mae: 0.1991 - pearson_correlation: 0.5023 - euclidean_distance: 0.3075
Epoch 107/250
46/46 [==============================] - 0s 885us/step - loss: 0.1971 - accuracy: 0.9489 - mae: 0.1971 - pearson_correlation: 0.5101 - euclidean_distance: 0.3049
Epoch 108/250
46/46 [==============================] - 0s 883us/step - loss: 0.1968 - accuracy: 0.9475 - mae: 0.1968 - pearson_correlation: 0.5063 - euclidean_distance: 0.3041
Epoch 109/250
46/46 [==============================] - 0s 888us/step - loss: 0.1937 - accuracy: 0.9506 - mae: 0.1937 - pearson_correlation: 0.5181 - euclidean_distance: 0.2993
Epoch 110/250
46/46 [==============================] - 0s 887us/step - loss: 0.1942 - accuracy: 0.9497 - mae: 0.1942 - pearson_correlation: 0.5139 - euclidean_distance: 0.3002
Epoch 111/250
46/46 [==============================] - 0s 888us/step - loss: 0.1934 - accuracy: 0.9480 - mae: 0.1934 - pearson_correlation: 0.5163 - euclidean_distance: 0.2991
Epoch 112/250
46/46 [==============================] - 0s 890us/step - loss: 0.1892 - accuracy: 0.9484 - mae: 0.1892 - pearson_correlation: 0.5233 - euclidean_distance: 0.2925
Epoch 113/250
46/46 [==============================] - 0s 887us/step - loss: 0.1891 - accuracy: 0.9524 - mae: 0.1891 - pearson_correlation: 0.5219 - euclidean_distance: 0.2925
Epoch 114/250
46/46 [==============================] - 0s 889us/step - loss: 0.1879 - accuracy: 0.9515 - mae: 0.1879 - pearson_correlation: 0.5149 - euclidean_distance: 0.2912
Epoch 115/250
46/46 [==============================] - 0s 888us/step - loss: 0.1842 - accuracy: 0.9519 - mae: 0.1842 - pearson_correlation: 0.5322 - euclidean_distance: 0.2851
Epoch 116/250
46/46 [==============================] - 0s 885us/step - loss: 0.1831 - accuracy: 0.9506 - mae: 0.1831 - pearson_correlation: 0.5279 - euclidean_distance: 0.2842
Epoch 117/250
46/46 [==============================] - 0s 887us/step - loss: 0.1819 - accuracy: 0.9524 - mae: 0.1819 - pearson_correlation: 0.5318 - euclidean_distance: 0.2818
Epoch 118/250
46/46 [==============================] - 0s 885us/step - loss: 0.1821 - accuracy: 0.9515 - mae: 0.1821 - pearson_correlation: 0.5300 - euclidean_distance: 0.2821
Epoch 119/250
46/46 [==============================] - 0s 885us/step - loss: 0.1814 - accuracy: 0.9506 - mae: 0.1814 - pearson_correlation: 0.5296 - euclidean_distance: 0.2814
Epoch 120/250
46/46 [==============================] - 0s 884us/step - loss: 0.1791 - accuracy: 0.9528 - mae: 0.1791 - pearson_correlation: 0.5367 - euclidean_distance: 0.2775
Epoch 121/250
46/46 [==============================] - 0s 883us/step - loss: 0.1774 - accuracy: 0.9497 - mae: 0.1774 - pearson_correlation: 0.5303 - euclidean_distance: 0.2751
Epoch 122/250
46/46 [==============================] - 0s 884us/step - loss: 0.1778 - accuracy: 0.9511 - mae: 0.1778 - pearson_correlation: 0.5372 - euclidean_distance: 0.2751
Epoch 123/250
46/46 [==============================] - 0s 875us/step - loss: 0.1756 - accuracy: 0.9515 - mae: 0.1756 - pearson_correlation: 0.5412 - euclidean_distance: 0.2721
Epoch 124/250
46/46 [==============================] - 0s 873us/step - loss: 0.1722 - accuracy: 0.9550 - mae: 0.1722 - pearson_correlation: 0.5487 - euclidean_distance: 0.2674
Epoch 125/250
46/46 [==============================] - 0s 872us/step - loss: 0.1751 - accuracy: 0.9524 - mae: 0.1751 - pearson_correlation: 0.5433 - euclidean_distance: 0.2709
Epoch 126/250
46/46 [==============================] - 0s 881us/step - loss: 0.1713 - accuracy: 0.9533 - mae: 0.1713 - pearson_correlation: 0.5480 - euclidean_distance: 0.2655
Epoch 127/250
46/46 [==============================] - 0s 881us/step - loss: 0.1723 - accuracy: 0.9528 - mae: 0.1723 - pearson_correlation: 0.5478 - euclidean_distance: 0.2667
Epoch 128/250
46/46 [==============================] - 0s 889us/step - loss: 0.1708 - accuracy: 0.9550 - mae: 0.1708 - pearson_correlation: 0.5510 - euclidean_distance: 0.2649
Epoch 129/250
46/46 [==============================] - 0s 887us/step - loss: 0.1691 - accuracy: 0.9524 - mae: 0.1691 - pearson_correlation: 0.5530 - euclidean_distance: 0.2627
Epoch 130/250
46/46 [==============================] - 0s 882us/step - loss: 0.1700 - accuracy: 0.9528 - mae: 0.1700 - pearson_correlation: 0.5533 - euclidean_distance: 0.2634
Epoch 131/250
46/46 [==============================] - 0s 883us/step - loss: 0.1685 - accuracy: 0.9533 - mae: 0.1685 - pearson_correlation: 0.5544 - euclidean_distance: 0.2610
Epoch 132/250
46/46 [==============================] - 0s 884us/step - loss: 0.1677 - accuracy: 0.9537 - mae: 0.1677 - pearson_correlation: 0.5549 - euclidean_distance: 0.2602
Epoch 133/250
46/46 [==============================] - 0s 884us/step - loss: 0.1671 - accuracy: 0.9537 - mae: 0.1671 - pearson_correlation: 0.5492 - euclidean_distance: 0.2593
Epoch 134/250
46/46 [==============================] - 0s 888us/step - loss: 0.1672 - accuracy: 0.9519 - mae: 0.1672 - pearson_correlation: 0.5569 - euclidean_distance: 0.2593
Epoch 135/250
46/46 [==============================] - 0s 890us/step - loss: 0.1662 - accuracy: 0.9537 - mae: 0.1662 - pearson_correlation: 0.5548 - euclidean_distance: 0.2577
Epoch 136/250
46/46 [==============================] - 0s 889us/step - loss: 0.1638 - accuracy: 0.9550 - mae: 0.1638 - pearson_correlation: 0.5563 - euclidean_distance: 0.2542
Epoch 137/250
46/46 [==============================] - 0s 882us/step - loss: 0.1634 - accuracy: 0.9528 - mae: 0.1634 - pearson_correlation: 0.5615 - euclidean_distance: 0.2539
Epoch 138/250
46/46 [==============================] - 0s 888us/step - loss: 0.1597 - accuracy: 0.9541 - mae: 0.1597 - pearson_correlation: 0.5651 - euclidean_distance: 0.2485
Epoch 139/250
46/46 [==============================] - 0s 889us/step - loss: 0.1617 - accuracy: 0.9541 - mae: 0.1617 - pearson_correlation: 0.5646 - euclidean_distance: 0.2511
Epoch 140/250
46/46 [==============================] - 0s 879us/step - loss: 0.1599 - accuracy: 0.9541 - mae: 0.1599 - pearson_correlation: 0.5600 - euclidean_distance: 0.2485
Epoch 141/250
46/46 [==============================] - 0s 890us/step - loss: 0.1596 - accuracy: 0.9559 - mae: 0.1596 - pearson_correlation: 0.5700 - euclidean_distance: 0.2477
Epoch 142/250
46/46 [==============================] - 0s 873us/step - loss: 0.1585 - accuracy: 0.9546 - mae: 0.1585 - pearson_correlation: 0.5648 - euclidean_distance: 0.2465
Epoch 143/250
46/46 [==============================] - 0s 885us/step - loss: 0.1589 - accuracy: 0.9546 - mae: 0.1589 - pearson_correlation: 0.5635 - euclidean_distance: 0.2472
Epoch 144/250
46/46 [==============================] - 0s 878us/step - loss: 0.1575 - accuracy: 0.9550 - mae: 0.1575 - pearson_correlation: 0.5684 - euclidean_distance: 0.2452
Epoch 145/250
46/46 [==============================] - 0s 878us/step - loss: 0.1588 - accuracy: 0.9533 - mae: 0.1588 - pearson_correlation: 0.5695 - euclidean_distance: 0.2456
Epoch 146/250
46/46 [==============================] - 0s 883us/step - loss: 0.1565 - accuracy: 0.9541 - mae: 0.1565 - pearson_correlation: 0.5716 - euclidean_distance: 0.2427
Epoch 147/250
46/46 [==============================] - 0s 881us/step - loss: 0.1570 - accuracy: 0.9555 - mae: 0.1570 - pearson_correlation: 0.5781 - euclidean_distance: 0.2434
Epoch 148/250
46/46 [==============================] - 0s 885us/step - loss: 0.1548 - accuracy: 0.9537 - mae: 0.1548 - pearson_correlation: 0.5767 - euclidean_distance: 0.2406
Epoch 149/250
46/46 [==============================] - 0s 885us/step - loss: 0.1557 - accuracy: 0.9555 - mae: 0.1557 - pearson_correlation: 0.5711 - euclidean_distance: 0.2417
Epoch 150/250
46/46 [==============================] - 0s 889us/step - loss: 0.1530 - accuracy: 0.9550 - mae: 0.1530 - pearson_correlation: 0.5784 - euclidean_distance: 0.2377
Epoch 151/250
46/46 [==============================] - 0s 881us/step - loss: 0.1534 - accuracy: 0.9555 - mae: 0.1534 - pearson_correlation: 0.5788 - euclidean_distance: 0.2379
Epoch 152/250
46/46 [==============================] - 0s 866us/step - loss: 0.1521 - accuracy: 0.9546 - mae: 0.1521 - pearson_correlation: 0.5811 - euclidean_distance: 0.2362
Epoch 153/250
46/46 [==============================] - 0s 887us/step - loss: 0.1515 - accuracy: 0.9537 - mae: 0.1515 - pearson_correlation: 0.5817 - euclidean_distance: 0.2352
Epoch 154/250
46/46 [==============================] - 0s 886us/step - loss: 0.1498 - accuracy: 0.9550 - mae: 0.1498 - pearson_correlation: 0.5830 - euclidean_distance: 0.2332
Epoch 155/250
46/46 [==============================] - 0s 886us/step - loss: 0.1505 - accuracy: 0.9546 - mae: 0.1505 - pearson_correlation: 0.5876 - euclidean_distance: 0.2342
Epoch 156/250
46/46 [==============================] - 0s 887us/step - loss: 0.1498 - accuracy: 0.9550 - mae: 0.1498 - pearson_correlation: 0.5838 - euclidean_distance: 0.2329
Epoch 157/250
46/46 [==============================] - 0s 888us/step - loss: 0.1478 - accuracy: 0.9546 - mae: 0.1478 - pearson_correlation: 0.5899 - euclidean_distance: 0.2301
Epoch 158/250
46/46 [==============================] - 0s 890us/step - loss: 0.1494 - accuracy: 0.9550 - mae: 0.1494 - pearson_correlation: 0.5843 - euclidean_distance: 0.2319
Epoch 159/250
46/46 [==============================] - 0s 883us/step - loss: 0.1488 - accuracy: 0.9546 - mae: 0.1488 - pearson_correlation: 0.5912 - euclidean_distance: 0.2311
Epoch 160/250
46/46 [==============================] - 0s 885us/step - loss: 0.1454 - accuracy: 0.9546 - mae: 0.1454 - pearson_correlation: 0.5869 - euclidean_distance: 0.2263
Epoch 161/250
46/46 [==============================] - 0s 881us/step - loss: 0.1453 - accuracy: 0.9550 - mae: 0.1453 - pearson_correlation: 0.5930 - euclidean_distance: 0.2262
Epoch 162/250
46/46 [==============================] - 0s 887us/step - loss: 0.1446 - accuracy: 0.9555 - mae: 0.1446 - pearson_correlation: 0.5901 - euclidean_distance: 0.2254
Epoch 163/250
46/46 [==============================] - 0s 872us/step - loss: 0.1430 - accuracy: 0.9541 - mae: 0.1430 - pearson_correlation: 0.5963 - euclidean_distance: 0.2225
Epoch 164/250
46/46 [==============================] - 0s 856us/step - loss: 0.1461 - accuracy: 0.9541 - mae: 0.1461 - pearson_correlation: 0.5905 - euclidean_distance: 0.2275
Epoch 165/250
46/46 [==============================] - 0s 880us/step - loss: 0.1432 - accuracy: 0.9559 - mae: 0.1432 - pearson_correlation: 0.5979 - euclidean_distance: 0.2232
Epoch 166/250
46/46 [==============================] - 0s 882us/step - loss: 0.1447 - accuracy: 0.9555 - mae: 0.1447 - pearson_correlation: 0.6008 - euclidean_distance: 0.2249
Epoch 167/250
46/46 [==============================] - 0s 887us/step - loss: 0.1440 - accuracy: 0.9555 - mae: 0.1440 - pearson_correlation: 0.5969 - euclidean_distance: 0.2238
Epoch 168/250
46/46 [==============================] - 0s 883us/step - loss: 0.1423 - accuracy: 0.9555 - mae: 0.1423 - pearson_correlation: 0.5997 - euclidean_distance: 0.2219
Epoch 169/250
46/46 [==============================] - 0s 885us/step - loss: 0.1405 - accuracy: 0.9550 - mae: 0.1405 - pearson_correlation: 0.6041 - euclidean_distance: 0.2187
Epoch 170/250
46/46 [==============================] - 0s 876us/step - loss: 0.1422 - accuracy: 0.9550 - mae: 0.1422 - pearson_correlation: 0.6030 - euclidean_distance: 0.2209
Epoch 171/250
46/46 [==============================] - 0s 884us/step - loss: 0.1397 - accuracy: 0.9555 - mae: 0.1397 - pearson_correlation: 0.6021 - euclidean_distance: 0.2177
Epoch 172/250
46/46 [==============================] - 0s 883us/step - loss: 0.1394 - accuracy: 0.9541 - mae: 0.1394 - pearson_correlation: 0.6039 - euclidean_distance: 0.2170
Epoch 173/250
46/46 [==============================] - 0s 876us/step - loss: 0.1397 - accuracy: 0.9550 - mae: 0.1397 - pearson_correlation: 0.6074 - euclidean_distance: 0.2174
Epoch 174/250
46/46 [==============================] - 0s 884us/step - loss: 0.1386 - accuracy: 0.9559 - mae: 0.1386 - pearson_correlation: 0.6047 - euclidean_distance: 0.2157
Epoch 175/250
46/46 [==============================] - 0s 888us/step - loss: 0.1366 - accuracy: 0.9559 - mae: 0.1366 - pearson_correlation: 0.6088 - euclidean_distance: 0.2129
Epoch 176/250
46/46 [==============================] - 0s 879us/step - loss: 0.1368 - accuracy: 0.9559 - mae: 0.1368 - pearson_correlation: 0.6118 - euclidean_distance: 0.2132
Epoch 177/250
46/46 [==============================] - 0s 888us/step - loss: 0.1356 - accuracy: 0.9555 - mae: 0.1356 - pearson_correlation: 0.6064 - euclidean_distance: 0.2117
Epoch 178/250
46/46 [==============================] - 0s 879us/step - loss: 0.1366 - accuracy: 0.9555 - mae: 0.1366 - pearson_correlation: 0.6087 - euclidean_distance: 0.2128
Epoch 179/250
46/46 [==============================] - 0s 887us/step - loss: 0.1354 - accuracy: 0.9555 - mae: 0.1354 - pearson_correlation: 0.6172 - euclidean_distance: 0.2114
Epoch 180/250
46/46 [==============================] - 0s 881us/step - loss: 0.1347 - accuracy: 0.9555 - mae: 0.1347 - pearson_correlation: 0.6175 - euclidean_distance: 0.2100
Epoch 181/250
46/46 [==============================] - 0s 881us/step - loss: 0.1361 - accuracy: 0.9546 - mae: 0.1361 - pearson_correlation: 0.6108 - euclidean_distance: 0.2118
Epoch 182/250
46/46 [==============================] - 0s 886us/step - loss: 0.1330 - accuracy: 0.9555 - mae: 0.1330 - pearson_correlation: 0.6129 - euclidean_distance: 0.2078
Epoch 183/250
46/46 [==============================] - 0s 879us/step - loss: 0.1331 - accuracy: 0.9559 - mae: 0.1331 - pearson_correlation: 0.6157 - euclidean_distance: 0.2078
Epoch 184/250
46/46 [==============================] - 0s 885us/step - loss: 0.1341 - accuracy: 0.9559 - mae: 0.1341 - pearson_correlation: 0.6173 - euclidean_distance: 0.2089
Epoch 185/250
46/46 [==============================] - 0s 882us/step - loss: 0.1340 - accuracy: 0.9559 - mae: 0.1340 - pearson_correlation: 0.6160 - euclidean_distance: 0.2091
Epoch 186/250
46/46 [==============================] - 0s 901us/step - loss: 0.1309 - accuracy: 0.9555 - mae: 0.1309 - pearson_correlation: 0.6209 - euclidean_distance: 0.2045
Epoch 187/250
46/46 [==============================] - 0s 886us/step - loss: 0.1308 - accuracy: 0.9559 - mae: 0.1308 - pearson_correlation: 0.6216 - euclidean_distance: 0.2042
Epoch 188/250
46/46 [==============================] - 0s 876us/step - loss: 0.1331 - accuracy: 0.9546 - mae: 0.1331 - pearson_correlation: 0.6140 - euclidean_distance: 0.2068
Epoch 189/250
46/46 [==============================] - 0s 885us/step - loss: 0.1334 - accuracy: 0.9555 - mae: 0.1334 - pearson_correlation: 0.6183 - euclidean_distance: 0.2083
Epoch 190/250
46/46 [==============================] - 0s 882us/step - loss: 0.1298 - accuracy: 0.9559 - mae: 0.1298 - pearson_correlation: 0.6267 - euclidean_distance: 0.2027
Epoch 191/250
46/46 [==============================] - 0s 883us/step - loss: 0.1285 - accuracy: 0.9559 - mae: 0.1285 - pearson_correlation: 0.6251 - euclidean_distance: 0.2004
Epoch 192/250
46/46 [==============================] - 0s 884us/step - loss: 0.1306 - accuracy: 0.9555 - mae: 0.1306 - pearson_correlation: 0.6239 - euclidean_distance: 0.2040
Epoch 193/250
46/46 [==============================] - 0s 881us/step - loss: 0.1282 - accuracy: 0.9559 - mae: 0.1282 - pearson_correlation: 0.6283 - euclidean_distance: 0.2004
Epoch 194/250
46/46 [==============================] - 0s 885us/step - loss: 0.1274 - accuracy: 0.9559 - mae: 0.1274 - pearson_correlation: 0.6244 - euclidean_distance: 0.1987
Epoch 195/250
46/46 [==============================] - 0s 885us/step - loss: 0.1266 - accuracy: 0.9559 - mae: 0.1266 - pearson_correlation: 0.6302 - euclidean_distance: 0.1976
Epoch 196/250
46/46 [==============================] - 0s 880us/step - loss: 0.1253 - accuracy: 0.9555 - mae: 0.1253 - pearson_correlation: 0.6303 - euclidean_distance: 0.1963
Epoch 197/250
46/46 [==============================] - 0s 882us/step - loss: 0.1249 - accuracy: 0.9555 - mae: 0.1249 - pearson_correlation: 0.6276 - euclidean_distance: 0.1954
Epoch 198/250
46/46 [==============================] - 0s 884us/step - loss: 0.1284 - accuracy: 0.9559 - mae: 0.1284 - pearson_correlation: 0.6288 - euclidean_distance: 0.2006
Epoch 199/250
46/46 [==============================] - 0s 886us/step - loss: 0.1249 - accuracy: 0.9559 - mae: 0.1249 - pearson_correlation: 0.6358 - euclidean_distance: 0.1954
Epoch 200/250
46/46 [==============================] - 0s 887us/step - loss: 0.1261 - accuracy: 0.9559 - mae: 0.1261 - pearson_correlation: 0.6286 - euclidean_distance: 0.1972
Epoch 201/250
46/46 [==============================] - 0s 890us/step - loss: 0.1267 - accuracy: 0.9559 - mae: 0.1267 - pearson_correlation: 0.6311 - euclidean_distance: 0.1980
Epoch 202/250
46/46 [==============================] - 0s 889us/step - loss: 0.1259 - accuracy: 0.9559 - mae: 0.1259 - pearson_correlation: 0.6294 - euclidean_distance: 0.1971
Epoch 203/250
46/46 [==============================] - 0s 888us/step - loss: 0.1250 - accuracy: 0.9559 - mae: 0.1250 - pearson_correlation: 0.6331 - euclidean_distance: 0.1957
Epoch 204/250
46/46 [==============================] - 0s 883us/step - loss: 0.1241 - accuracy: 0.9559 - mae: 0.1241 - pearson_correlation: 0.6380 - euclidean_distance: 0.1940
Epoch 205/250
46/46 [==============================] - 0s 890us/step - loss: 0.1229 - accuracy: 0.9559 - mae: 0.1229 - pearson_correlation: 0.6419 - euclidean_distance: 0.1928
Epoch 206/250
46/46 [==============================] - 0s 885us/step - loss: 0.1244 - accuracy: 0.9559 - mae: 0.1244 - pearson_correlation: 0.6379 - euclidean_distance: 0.1947
Epoch 207/250
46/46 [==============================] - 0s 888us/step - loss: 0.1239 - accuracy: 0.9555 - mae: 0.1239 - pearson_correlation: 0.6382 - euclidean_distance: 0.1939
Epoch 208/250
46/46 [==============================] - 0s 890us/step - loss: 0.1232 - accuracy: 0.9559 - mae: 0.1232 - pearson_correlation: 0.6343 - euclidean_distance: 0.1929
Epoch 209/250
46/46 [==============================] - 0s 883us/step - loss: 0.1230 - accuracy: 0.9559 - mae: 0.1230 - pearson_correlation: 0.6395 - euclidean_distance: 0.1928
Epoch 210/250
46/46 [==============================] - 0s 896us/step - loss: 0.1208 - accuracy: 0.9559 - mae: 0.1208 - pearson_correlation: 0.6438 - euclidean_distance: 0.1895
Epoch 211/250
46/46 [==============================] - 0s 889us/step - loss: 0.1229 - accuracy: 0.9559 - mae: 0.1229 - pearson_correlation: 0.6423 - euclidean_distance: 0.1921
Epoch 212/250
46/46 [==============================] - 0s 887us/step - loss: 0.1233 - accuracy: 0.9559 - mae: 0.1233 - pearson_correlation: 0.6397 - euclidean_distance: 0.1930
Epoch 213/250
46/46 [==============================] - 0s 890us/step - loss: 0.1209 - accuracy: 0.9559 - mae: 0.1209 - pearson_correlation: 0.6429 - euclidean_distance: 0.1895
Epoch 214/250
46/46 [==============================] - 0s 887us/step - loss: 0.1197 - accuracy: 0.9559 - mae: 0.1197 - pearson_correlation: 0.6461 - euclidean_distance: 0.1884
Epoch 215/250
46/46 [==============================] - 0s 880us/step - loss: 0.1208 - accuracy: 0.9559 - mae: 0.1208 - pearson_correlation: 0.6467 - euclidean_distance: 0.1894
Epoch 216/250
46/46 [==============================] - 0s 888us/step - loss: 0.1202 - accuracy: 0.9559 - mae: 0.1202 - pearson_correlation: 0.6494 - euclidean_distance: 0.1882
Epoch 217/250
46/46 [==============================] - 0s 894us/step - loss: 0.1192 - accuracy: 0.9559 - mae: 0.1192 - pearson_correlation: 0.6472 - euclidean_distance: 0.1869
Epoch 218/250
46/46 [==============================] - 0s 886us/step - loss: 0.1194 - accuracy: 0.9559 - mae: 0.1194 - pearson_correlation: 0.6482 - euclidean_distance: 0.1869
Epoch 219/250
46/46 [==============================] - 0s 886us/step - loss: 0.1214 - accuracy: 0.9555 - mae: 0.1214 - pearson_correlation: 0.6446 - euclidean_distance: 0.1905
Epoch 220/250
46/46 [==============================] - 0s 886us/step - loss: 0.1195 - accuracy: 0.9559 - mae: 0.1195 - pearson_correlation: 0.6540 - euclidean_distance: 0.1872
Epoch 221/250
46/46 [==============================] - 0s 887us/step - loss: 0.1184 - accuracy: 0.9559 - mae: 0.1184 - pearson_correlation: 0.6520 - euclidean_distance: 0.1860
Epoch 222/250
46/46 [==============================] - 0s 918us/step - loss: 0.1191 - accuracy: 0.9559 - mae: 0.1191 - pearson_correlation: 0.6542 - euclidean_distance: 0.1864
Epoch 223/250
46/46 [==============================] - 0s 890us/step - loss: 0.1184 - accuracy: 0.9559 - mae: 0.1184 - pearson_correlation: 0.6491 - euclidean_distance: 0.1860
Epoch 224/250
46/46 [==============================] - 0s 885us/step - loss: 0.1181 - accuracy: 0.9559 - mae: 0.1181 - pearson_correlation: 0.6478 - euclidean_distance: 0.1854
Epoch 225/250
46/46 [==============================] - 0s 883us/step - loss: 0.1173 - accuracy: 0.9559 - mae: 0.1173 - pearson_correlation: 0.6520 - euclidean_distance: 0.1842
Epoch 226/250
46/46 [==============================] - 0s 886us/step - loss: 0.1182 - accuracy: 0.9559 - mae: 0.1182 - pearson_correlation: 0.6583 - euclidean_distance: 0.1854
Epoch 227/250
46/46 [==============================] - 0s 891us/step - loss: 0.1163 - accuracy: 0.9559 - mae: 0.1163 - pearson_correlation: 0.6570 - euclidean_distance: 0.1829
Epoch 228/250
46/46 [==============================] - 0s 883us/step - loss: 0.1157 - accuracy: 0.9555 - mae: 0.1157 - pearson_correlation: 0.6540 - euclidean_distance: 0.1817
Epoch 229/250
46/46 [==============================] - 0s 893us/step - loss: 0.1201 - accuracy: 0.9555 - mae: 0.1201 - pearson_correlation: 0.6518 - euclidean_distance: 0.1882
Epoch 230/250
46/46 [==============================] - 0s 884us/step - loss: 0.1170 - accuracy: 0.9559 - mae: 0.1170 - pearson_correlation: 0.6574 - euclidean_distance: 0.1835
Epoch 231/250
46/46 [==============================] - 0s 882us/step - loss: 0.1154 - accuracy: 0.9559 - mae: 0.1154 - pearson_correlation: 0.6596 - euclidean_distance: 0.1813
Epoch 232/250
46/46 [==============================] - 0s 889us/step - loss: 0.1162 - accuracy: 0.9559 - mae: 0.1162 - pearson_correlation: 0.6585 - euclidean_distance: 0.1826
Epoch 233/250
46/46 [==============================] - 0s 886us/step - loss: 0.1163 - accuracy: 0.9559 - mae: 0.1163 - pearson_correlation: 0.6554 - euclidean_distance: 0.1826
Epoch 234/250
46/46 [==============================] - 0s 884us/step - loss: 0.1141 - accuracy: 0.9559 - mae: 0.1141 - pearson_correlation: 0.6604 - euclidean_distance: 0.1799
Epoch 235/250
46/46 [==============================] - 0s 889us/step - loss: 0.1158 - accuracy: 0.9555 - mae: 0.1158 - pearson_correlation: 0.6550 - euclidean_distance: 0.1823
Epoch 236/250
46/46 [==============================] - 0s 888us/step - loss: 0.1151 - accuracy: 0.9559 - mae: 0.1151 - pearson_correlation: 0.6583 - euclidean_distance: 0.1809
Epoch 237/250
46/46 [==============================] - 0s 886us/step - loss: 0.1160 - accuracy: 0.9559 - mae: 0.1160 - pearson_correlation: 0.6551 - euclidean_distance: 0.1826
Epoch 238/250
46/46 [==============================] - 0s 880us/step - loss: 0.1140 - accuracy: 0.9559 - mae: 0.1140 - pearson_correlation: 0.6621 - euclidean_distance: 0.1796
Epoch 239/250
46/46 [==============================] - 0s 884us/step - loss: 0.1140 - accuracy: 0.9559 - mae: 0.1140 - pearson_correlation: 0.6632 - euclidean_distance: 0.1794
Epoch 240/250
46/46 [==============================] - 0s 887us/step - loss: 0.1147 - accuracy: 0.9555 - mae: 0.1147 - pearson_correlation: 0.6616 - euclidean_distance: 0.1805
Epoch 241/250
46/46 [==============================] - 0s 885us/step - loss: 0.1129 - accuracy: 0.9559 - mae: 0.1129 - pearson_correlation: 0.6654 - euclidean_distance: 0.1779
Epoch 242/250
46/46 [==============================] - 0s 882us/step - loss: 0.1121 - accuracy: 0.9559 - mae: 0.1121 - pearson_correlation: 0.6656 - euclidean_distance: 0.1764
Epoch 243/250
46/46 [==============================] - 0s 880us/step - loss: 0.1142 - accuracy: 0.9555 - mae: 0.1142 - pearson_correlation: 0.6691 - euclidean_distance: 0.1799
Epoch 244/250
46/46 [==============================] - 0s 884us/step - loss: 0.1131 - accuracy: 0.9559 - mae: 0.1131 - pearson_correlation: 0.6660 - euclidean_distance: 0.1784
Epoch 245/250
46/46 [==============================] - 0s 884us/step - loss: 0.1116 - accuracy: 0.9559 - mae: 0.1116 - pearson_correlation: 0.6646 - euclidean_distance: 0.1759
Epoch 246/250
46/46 [==============================] - 0s 869us/step - loss: 0.1120 - accuracy: 0.9559 - mae: 0.1120 - pearson_correlation: 0.6694 - euclidean_distance: 0.1762
Epoch 247/250
46/46 [==============================] - 0s 880us/step - loss: 0.1122 - accuracy: 0.9559 - mae: 0.1122 - pearson_correlation: 0.6731 - euclidean_distance: 0.1770
Epoch 248/250
46/46 [==============================] - 0s 886us/step - loss: 0.1120 - accuracy: 0.9559 - mae: 0.1120 - pearson_correlation: 0.6606 - euclidean_distance: 0.1763
Epoch 249/250
46/46 [==============================] - 0s 879us/step - loss: 0.1134 - accuracy: 0.9559 - mae: 0.1134 - pearson_correlation: 0.6639 - euclidean_distance: 0.1783
Epoch 250/250
46/46 [==============================] - 0s 885us/step - loss: 0.1096 - accuracy: 0.9559 - mae: 0.1096 - pearson_correlation: 0.6701 - euclidean_distance: 0.1726
23/23 [==============================] - 0s 535us/step
Epoch 1/300
46/46 [==============================] - 1s 1ms/step - loss: 0.2724 - accuracy: 0.6749 - mae: 0.2724 - pearson_correlation: 0.2039 - euclidean_distance: 0.4348
Epoch 2/300
46/46 [==============================] - 0s 845us/step - loss: 0.2680 - accuracy: 0.6917 - mae: 0.2680 - pearson_correlation: 0.2183 - euclidean_distance: 0.4272
Epoch 3/300
46/46 [==============================] - 0s 873us/step - loss: 0.2644 - accuracy: 0.6925 - mae: 0.2644 - pearson_correlation: 0.2217 - euclidean_distance: 0.4223
Epoch 4/300
46/46 [==============================] - 0s 892us/step - loss: 0.2624 - accuracy: 0.6934 - mae: 0.2624 - pearson_correlation: 0.2252 - euclidean_distance: 0.4192
Epoch 5/300
46/46 [==============================] - 0s 963us/step - loss: 0.2587 - accuracy: 0.6974 - mae: 0.2587 - pearson_correlation: 0.2314 - euclidean_distance: 0.4143
Epoch 6/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2554 - accuracy: 0.6996 - mae: 0.2554 - pearson_correlation: 0.2347 - euclidean_distance: 0.4089
Epoch 7/300
46/46 [==============================] - 0s 976us/step - loss: 0.2507 - accuracy: 0.7111 - mae: 0.2507 - pearson_correlation: 0.2480 - euclidean_distance: 0.4019
Epoch 8/300
46/46 [==============================] - 0s 983us/step - loss: 0.2472 - accuracy: 0.7225 - mae: 0.2472 - pearson_correlation: 0.2507 - euclidean_distance: 0.3968
Epoch 9/300
46/46 [==============================] - 0s 975us/step - loss: 0.2447 - accuracy: 0.7155 - mae: 0.2447 - pearson_correlation: 0.2560 - euclidean_distance: 0.3928
Epoch 10/300
46/46 [==============================] - 0s 975us/step - loss: 0.2392 - accuracy: 0.7274 - mae: 0.2392 - pearson_correlation: 0.2675 - euclidean_distance: 0.3849
Epoch 11/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2370 - accuracy: 0.7190 - mae: 0.2370 - pearson_correlation: 0.2744 - euclidean_distance: 0.3815
Epoch 12/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2320 - accuracy: 0.7389 - mae: 0.2320 - pearson_correlation: 0.2838 - euclidean_distance: 0.3739
Epoch 13/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2295 - accuracy: 0.7397 - mae: 0.2295 - pearson_correlation: 0.2950 - euclidean_distance: 0.3703
Epoch 14/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2270 - accuracy: 0.7525 - mae: 0.2270 - pearson_correlation: 0.3007 - euclidean_distance: 0.3661
Epoch 15/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2244 - accuracy: 0.7472 - mae: 0.2244 - pearson_correlation: 0.2969 - euclidean_distance: 0.3628
Epoch 16/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2215 - accuracy: 0.7552 - mae: 0.2215 - pearson_correlation: 0.3125 - euclidean_distance: 0.3573
Epoch 17/300
46/46 [==============================] - 0s 915us/step - loss: 0.2188 - accuracy: 0.7631 - mae: 0.2188 - pearson_correlation: 0.3147 - euclidean_distance: 0.3532
Epoch 18/300
46/46 [==============================] - 0s 890us/step - loss: 0.2169 - accuracy: 0.7750 - mae: 0.2169 - pearson_correlation: 0.3267 - euclidean_distance: 0.3499
Epoch 19/300
46/46 [==============================] - 0s 896us/step - loss: 0.2124 - accuracy: 0.7803 - mae: 0.2124 - pearson_correlation: 0.3313 - euclidean_distance: 0.3433
Epoch 20/300
46/46 [==============================] - 0s 914us/step - loss: 0.2102 - accuracy: 0.7808 - mae: 0.2102 - pearson_correlation: 0.3371 - euclidean_distance: 0.3393
Epoch 21/300
46/46 [==============================] - 0s 948us/step - loss: 0.2063 - accuracy: 0.7918 - mae: 0.2063 - pearson_correlation: 0.3495 - euclidean_distance: 0.3339
Epoch 22/300
46/46 [==============================] - 0s 920us/step - loss: 0.2038 - accuracy: 0.7922 - mae: 0.2038 - pearson_correlation: 0.3577 - euclidean_distance: 0.3294
Epoch 23/300
46/46 [==============================] - 0s 901us/step - loss: 0.2013 - accuracy: 0.8064 - mae: 0.2013 - pearson_correlation: 0.3662 - euclidean_distance: 0.3251
Epoch 24/300
46/46 [==============================] - 0s 893us/step - loss: 0.1998 - accuracy: 0.8033 - mae: 0.1998 - pearson_correlation: 0.3690 - euclidean_distance: 0.3229
Epoch 25/300
46/46 [==============================] - 0s 906us/step - loss: 0.1979 - accuracy: 0.8152 - mae: 0.1979 - pearson_correlation: 0.3781 - euclidean_distance: 0.3195
Epoch 26/300
46/46 [==============================] - 0s 888us/step - loss: 0.1925 - accuracy: 0.8161 - mae: 0.1925 - pearson_correlation: 0.3934 - euclidean_distance: 0.3118
Epoch 27/300
46/46 [==============================] - 0s 904us/step - loss: 0.1913 - accuracy: 0.8236 - mae: 0.1913 - pearson_correlation: 0.3975 - euclidean_distance: 0.3095
Epoch 28/300
46/46 [==============================] - 0s 895us/step - loss: 0.1906 - accuracy: 0.8218 - mae: 0.1906 - pearson_correlation: 0.3985 - euclidean_distance: 0.3077
Epoch 29/300
46/46 [==============================] - 0s 891us/step - loss: 0.1856 - accuracy: 0.8381 - mae: 0.1856 - pearson_correlation: 0.4138 - euclidean_distance: 0.2997
Epoch 30/300
46/46 [==============================] - 0s 899us/step - loss: 0.1836 - accuracy: 0.8341 - mae: 0.1836 - pearson_correlation: 0.4207 - euclidean_distance: 0.2970
Epoch 31/300
46/46 [==============================] - 0s 897us/step - loss: 0.1816 - accuracy: 0.8355 - mae: 0.1816 - pearson_correlation: 0.4240 - euclidean_distance: 0.2939
Epoch 32/300
46/46 [==============================] - 0s 890us/step - loss: 0.1769 - accuracy: 0.8452 - mae: 0.1769 - pearson_correlation: 0.4356 - euclidean_distance: 0.2876
Epoch 33/300
46/46 [==============================] - 0s 890us/step - loss: 0.1759 - accuracy: 0.8483 - mae: 0.1759 - pearson_correlation: 0.4492 - euclidean_distance: 0.2847
Epoch 34/300
46/46 [==============================] - 0s 895us/step - loss: 0.1736 - accuracy: 0.8544 - mae: 0.1736 - pearson_correlation: 0.4518 - euclidean_distance: 0.2820
Epoch 35/300
46/46 [==============================] - 0s 882us/step - loss: 0.1709 - accuracy: 0.8527 - mae: 0.1709 - pearson_correlation: 0.4645 - euclidean_distance: 0.2768
Epoch 36/300
46/46 [==============================] - 0s 898us/step - loss: 0.1694 - accuracy: 0.8580 - mae: 0.1694 - pearson_correlation: 0.4663 - euclidean_distance: 0.2741
Epoch 37/300
46/46 [==============================] - 0s 896us/step - loss: 0.1680 - accuracy: 0.8624 - mae: 0.1680 - pearson_correlation: 0.4730 - euclidean_distance: 0.2708
Epoch 38/300
46/46 [==============================] - 0s 889us/step - loss: 0.1644 - accuracy: 0.8655 - mae: 0.1644 - pearson_correlation: 0.4820 - euclidean_distance: 0.2665
Epoch 39/300
46/46 [==============================] - 0s 889us/step - loss: 0.1628 - accuracy: 0.8699 - mae: 0.1628 - pearson_correlation: 0.4860 - euclidean_distance: 0.2635
Epoch 40/300
46/46 [==============================] - 0s 882us/step - loss: 0.1631 - accuracy: 0.8668 - mae: 0.1631 - pearson_correlation: 0.4915 - euclidean_distance: 0.2644
Epoch 41/300
46/46 [==============================] - 0s 897us/step - loss: 0.1588 - accuracy: 0.8730 - mae: 0.1588 - pearson_correlation: 0.5025 - euclidean_distance: 0.2575
Epoch 42/300
46/46 [==============================] - 0s 882us/step - loss: 0.1568 - accuracy: 0.8809 - mae: 0.1568 - pearson_correlation: 0.5050 - euclidean_distance: 0.2538
Epoch 43/300
46/46 [==============================] - 0s 888us/step - loss: 0.1577 - accuracy: 0.8725 - mae: 0.1577 - pearson_correlation: 0.5081 - euclidean_distance: 0.2551
Epoch 44/300
46/46 [==============================] - 0s 889us/step - loss: 0.1558 - accuracy: 0.8769 - mae: 0.1558 - pearson_correlation: 0.5133 - euclidean_distance: 0.2522
Epoch 45/300
46/46 [==============================] - 0s 886us/step - loss: 0.1526 - accuracy: 0.8835 - mae: 0.1526 - pearson_correlation: 0.5219 - euclidean_distance: 0.2470
Epoch 46/300
46/46 [==============================] - 0s 896us/step - loss: 0.1515 - accuracy: 0.8840 - mae: 0.1515 - pearson_correlation: 0.5284 - euclidean_distance: 0.2448
Epoch 47/300
46/46 [==============================] - 0s 902us/step - loss: 0.1485 - accuracy: 0.8818 - mae: 0.1485 - pearson_correlation: 0.5374 - euclidean_distance: 0.2406
Epoch 48/300
46/46 [==============================] - 0s 898us/step - loss: 0.1467 - accuracy: 0.8862 - mae: 0.1467 - pearson_correlation: 0.5466 - euclidean_distance: 0.2379
Epoch 49/300
46/46 [==============================] - 0s 897us/step - loss: 0.1480 - accuracy: 0.8928 - mae: 0.1480 - pearson_correlation: 0.5445 - euclidean_distance: 0.2395
Epoch 50/300
46/46 [==============================] - 0s 886us/step - loss: 0.1481 - accuracy: 0.8919 - mae: 0.1481 - pearson_correlation: 0.5404 - euclidean_distance: 0.2390
Epoch 51/300
46/46 [==============================] - 0s 889us/step - loss: 0.1432 - accuracy: 0.8946 - mae: 0.1432 - pearson_correlation: 0.5532 - euclidean_distance: 0.2317
Epoch 52/300
46/46 [==============================] - 0s 896us/step - loss: 0.1419 - accuracy: 0.8959 - mae: 0.1419 - pearson_correlation: 0.5614 - euclidean_distance: 0.2291
Epoch 53/300
46/46 [==============================] - 0s 885us/step - loss: 0.1447 - accuracy: 0.8950 - mae: 0.1447 - pearson_correlation: 0.5582 - euclidean_distance: 0.2331
Epoch 54/300
46/46 [==============================] - 0s 891us/step - loss: 0.1396 - accuracy: 0.8981 - mae: 0.1396 - pearson_correlation: 0.5754 - euclidean_distance: 0.2257
Epoch 55/300
46/46 [==============================] - 0s 884us/step - loss: 0.1414 - accuracy: 0.9007 - mae: 0.1414 - pearson_correlation: 0.5660 - euclidean_distance: 0.2292
Epoch 56/300
46/46 [==============================] - 0s 899us/step - loss: 0.1376 - accuracy: 0.9030 - mae: 0.1376 - pearson_correlation: 0.5731 - euclidean_distance: 0.2231
Epoch 57/300
46/46 [==============================] - 0s 889us/step - loss: 0.1384 - accuracy: 0.9065 - mae: 0.1384 - pearson_correlation: 0.5714 - euclidean_distance: 0.2238
Epoch 58/300
46/46 [==============================] - 0s 891us/step - loss: 0.1374 - accuracy: 0.8985 - mae: 0.1374 - pearson_correlation: 0.5832 - euclidean_distance: 0.2223
Epoch 59/300
46/46 [==============================] - 0s 883us/step - loss: 0.1392 - accuracy: 0.9021 - mae: 0.1392 - pearson_correlation: 0.5760 - euclidean_distance: 0.2256
Epoch 60/300
46/46 [==============================] - 0s 884us/step - loss: 0.1349 - accuracy: 0.9069 - mae: 0.1349 - pearson_correlation: 0.5914 - euclidean_distance: 0.2176
Epoch 61/300
46/46 [==============================] - 0s 897us/step - loss: 0.1350 - accuracy: 0.9065 - mae: 0.1350 - pearson_correlation: 0.5895 - euclidean_distance: 0.2187
Epoch 62/300
46/46 [==============================] - 0s 886us/step - loss: 0.1323 - accuracy: 0.9056 - mae: 0.1323 - pearson_correlation: 0.5970 - euclidean_distance: 0.2141
Epoch 63/300
46/46 [==============================] - 0s 879us/step - loss: 0.1354 - accuracy: 0.9074 - mae: 0.1354 - pearson_correlation: 0.5971 - euclidean_distance: 0.2185
Epoch 64/300
46/46 [==============================] - 0s 892us/step - loss: 0.1332 - accuracy: 0.9069 - mae: 0.1332 - pearson_correlation: 0.5995 - euclidean_distance: 0.2149
Epoch 65/300
46/46 [==============================] - 0s 895us/step - loss: 0.1323 - accuracy: 0.9109 - mae: 0.1323 - pearson_correlation: 0.6017 - euclidean_distance: 0.2141
Epoch 66/300
46/46 [==============================] - 0s 891us/step - loss: 0.1302 - accuracy: 0.9175 - mae: 0.1302 - pearson_correlation: 0.6123 - euclidean_distance: 0.2103
Epoch 67/300
46/46 [==============================] - 0s 886us/step - loss: 0.1290 - accuracy: 0.9091 - mae: 0.1290 - pearson_correlation: 0.6119 - euclidean_distance: 0.2087
Epoch 68/300
46/46 [==============================] - 0s 888us/step - loss: 0.1306 - accuracy: 0.9127 - mae: 0.1306 - pearson_correlation: 0.6077 - euclidean_distance: 0.2105
Epoch 69/300
46/46 [==============================] - 0s 884us/step - loss: 0.1275 - accuracy: 0.9153 - mae: 0.1275 - pearson_correlation: 0.6216 - euclidean_distance: 0.2062
Epoch 70/300
46/46 [==============================] - 0s 888us/step - loss: 0.1296 - accuracy: 0.9149 - mae: 0.1296 - pearson_correlation: 0.6185 - euclidean_distance: 0.2097
Epoch 71/300
46/46 [==============================] - 0s 888us/step - loss: 0.1274 - accuracy: 0.9188 - mae: 0.1274 - pearson_correlation: 0.6220 - euclidean_distance: 0.2063
Epoch 72/300
46/46 [==============================] - 0s 894us/step - loss: 0.1282 - accuracy: 0.9144 - mae: 0.1282 - pearson_correlation: 0.6274 - euclidean_distance: 0.2070
Epoch 73/300
46/46 [==============================] - 0s 892us/step - loss: 0.1279 - accuracy: 0.9162 - mae: 0.1279 - pearson_correlation: 0.6236 - euclidean_distance: 0.2065
Epoch 74/300
46/46 [==============================] - 0s 885us/step - loss: 0.1253 - accuracy: 0.9206 - mae: 0.1253 - pearson_correlation: 0.6254 - euclidean_distance: 0.2028
Epoch 75/300
46/46 [==============================] - 0s 887us/step - loss: 0.1279 - accuracy: 0.9188 - mae: 0.1279 - pearson_correlation: 0.6270 - euclidean_distance: 0.2069
Epoch 76/300
46/46 [==============================] - 0s 888us/step - loss: 0.1262 - accuracy: 0.9175 - mae: 0.1262 - pearson_correlation: 0.6313 - euclidean_distance: 0.2041
Epoch 77/300
46/46 [==============================] - 0s 879us/step - loss: 0.1234 - accuracy: 0.9175 - mae: 0.1234 - pearson_correlation: 0.6373 - euclidean_distance: 0.1988
Epoch 78/300
46/46 [==============================] - 0s 885us/step - loss: 0.1242 - accuracy: 0.9259 - mae: 0.1242 - pearson_correlation: 0.6364 - euclidean_distance: 0.2006
Epoch 79/300
46/46 [==============================] - 0s 888us/step - loss: 0.1229 - accuracy: 0.9180 - mae: 0.1229 - pearson_correlation: 0.6393 - euclidean_distance: 0.1991
Epoch 80/300
46/46 [==============================] - 0s 883us/step - loss: 0.1244 - accuracy: 0.9215 - mae: 0.1244 - pearson_correlation: 0.6393 - euclidean_distance: 0.2005
Epoch 81/300
46/46 [==============================] - 0s 893us/step - loss: 0.1259 - accuracy: 0.9202 - mae: 0.1259 - pearson_correlation: 0.6368 - euclidean_distance: 0.2036
Epoch 82/300
46/46 [==============================] - 0s 885us/step - loss: 0.1227 - accuracy: 0.9224 - mae: 0.1227 - pearson_correlation: 0.6470 - euclidean_distance: 0.1982
Epoch 83/300
46/46 [==============================] - 0s 890us/step - loss: 0.1233 - accuracy: 0.9241 - mae: 0.1233 - pearson_correlation: 0.6399 - euclidean_distance: 0.1992
Epoch 84/300
46/46 [==============================] - 0s 878us/step - loss: 0.1224 - accuracy: 0.9210 - mae: 0.1224 - pearson_correlation: 0.6433 - euclidean_distance: 0.1980
Epoch 85/300
46/46 [==============================] - 0s 976us/step - loss: 0.1215 - accuracy: 0.9250 - mae: 0.1215 - pearson_correlation: 0.6451 - euclidean_distance: 0.1959
Epoch 86/300
46/46 [==============================] - 0s 892us/step - loss: 0.1208 - accuracy: 0.9263 - mae: 0.1208 - pearson_correlation: 0.6569 - euclidean_distance: 0.1949
Epoch 87/300
46/46 [==============================] - 0s 889us/step - loss: 0.1225 - accuracy: 0.9219 - mae: 0.1225 - pearson_correlation: 0.6516 - euclidean_distance: 0.1976
Epoch 88/300
46/46 [==============================] - 0s 888us/step - loss: 0.1197 - accuracy: 0.9259 - mae: 0.1197 - pearson_correlation: 0.6505 - euclidean_distance: 0.1936
Epoch 89/300
46/46 [==============================] - 0s 891us/step - loss: 0.1218 - accuracy: 0.9241 - mae: 0.1218 - pearson_correlation: 0.6574 - euclidean_distance: 0.1956
Epoch 90/300
46/46 [==============================] - 0s 886us/step - loss: 0.1224 - accuracy: 0.9237 - mae: 0.1224 - pearson_correlation: 0.6439 - euclidean_distance: 0.1969
Epoch 91/300
46/46 [==============================] - 0s 893us/step - loss: 0.1216 - accuracy: 0.9281 - mae: 0.1216 - pearson_correlation: 0.6472 - euclidean_distance: 0.1958
Epoch 92/300
46/46 [==============================] - 0s 890us/step - loss: 0.1178 - accuracy: 0.9268 - mae: 0.1178 - pearson_correlation: 0.6611 - euclidean_distance: 0.1902
Epoch 93/300
46/46 [==============================] - 0s 886us/step - loss: 0.1192 - accuracy: 0.9259 - mae: 0.1192 - pearson_correlation: 0.6562 - euclidean_distance: 0.1925
Epoch 94/300
46/46 [==============================] - 0s 895us/step - loss: 0.1193 - accuracy: 0.9294 - mae: 0.1193 - pearson_correlation: 0.6614 - euclidean_distance: 0.1927
Epoch 95/300
46/46 [==============================] - 0s 888us/step - loss: 0.1183 - accuracy: 0.9263 - mae: 0.1183 - pearson_correlation: 0.6610 - euclidean_distance: 0.1903
Epoch 96/300
46/46 [==============================] - 0s 892us/step - loss: 0.1170 - accuracy: 0.9281 - mae: 0.1170 - pearson_correlation: 0.6666 - euclidean_distance: 0.1887
Epoch 97/300
46/46 [==============================] - 0s 883us/step - loss: 0.1159 - accuracy: 0.9281 - mae: 0.1159 - pearson_correlation: 0.6694 - euclidean_distance: 0.1870
Epoch 98/300
46/46 [==============================] - 0s 889us/step - loss: 0.1145 - accuracy: 0.9277 - mae: 0.1145 - pearson_correlation: 0.6690 - euclidean_distance: 0.1857
Epoch 99/300
46/46 [==============================] - 0s 881us/step - loss: 0.1152 - accuracy: 0.9268 - mae: 0.1152 - pearson_correlation: 0.6662 - euclidean_distance: 0.1867
Epoch 100/300
46/46 [==============================] - 0s 891us/step - loss: 0.1197 - accuracy: 0.9268 - mae: 0.1197 - pearson_correlation: 0.6583 - euclidean_distance: 0.1933
Epoch 101/300
46/46 [==============================] - 0s 888us/step - loss: 0.1150 - accuracy: 0.9277 - mae: 0.1150 - pearson_correlation: 0.6712 - euclidean_distance: 0.1858
Epoch 102/300
46/46 [==============================] - 0s 895us/step - loss: 0.1172 - accuracy: 0.9303 - mae: 0.1172 - pearson_correlation: 0.6682 - euclidean_distance: 0.1888
Epoch 103/300
46/46 [==============================] - 0s 884us/step - loss: 0.1158 - accuracy: 0.9321 - mae: 0.1158 - pearson_correlation: 0.6691 - euclidean_distance: 0.1869
Epoch 104/300
46/46 [==============================] - 0s 889us/step - loss: 0.1180 - accuracy: 0.9272 - mae: 0.1180 - pearson_correlation: 0.6690 - euclidean_distance: 0.1895
Epoch 105/300
46/46 [==============================] - 0s 881us/step - loss: 0.1130 - accuracy: 0.9312 - mae: 0.1130 - pearson_correlation: 0.6672 - euclidean_distance: 0.1823
Epoch 106/300
46/46 [==============================] - 0s 877us/step - loss: 0.1159 - accuracy: 0.9294 - mae: 0.1159 - pearson_correlation: 0.6717 - euclidean_distance: 0.1872
Epoch 107/300
46/46 [==============================] - 0s 888us/step - loss: 0.1134 - accuracy: 0.9285 - mae: 0.1134 - pearson_correlation: 0.6765 - euclidean_distance: 0.1832
Epoch 108/300
46/46 [==============================] - 0s 893us/step - loss: 0.1132 - accuracy: 0.9307 - mae: 0.1132 - pearson_correlation: 0.6778 - euclidean_distance: 0.1830
Epoch 109/300
46/46 [==============================] - 0s 881us/step - loss: 0.1111 - accuracy: 0.9303 - mae: 0.1111 - pearson_correlation: 0.6824 - euclidean_distance: 0.1798
Epoch 110/300
46/46 [==============================] - 0s 883us/step - loss: 0.1151 - accuracy: 0.9325 - mae: 0.1151 - pearson_correlation: 0.6694 - euclidean_distance: 0.1856
Epoch 111/300
46/46 [==============================] - 0s 887us/step - loss: 0.1117 - accuracy: 0.9290 - mae: 0.1117 - pearson_correlation: 0.6792 - euclidean_distance: 0.1803
Epoch 112/300
46/46 [==============================] - 0s 883us/step - loss: 0.1120 - accuracy: 0.9347 - mae: 0.1120 - pearson_correlation: 0.6789 - euclidean_distance: 0.1810
Epoch 113/300
46/46 [==============================] - 0s 886us/step - loss: 0.1103 - accuracy: 0.9338 - mae: 0.1103 - pearson_correlation: 0.6871 - euclidean_distance: 0.1781
Epoch 114/300
46/46 [==============================] - 0s 880us/step - loss: 0.1101 - accuracy: 0.9343 - mae: 0.1101 - pearson_correlation: 0.6890 - euclidean_distance: 0.1781
Epoch 115/300
46/46 [==============================] - 0s 888us/step - loss: 0.1134 - accuracy: 0.9338 - mae: 0.1134 - pearson_correlation: 0.6786 - euclidean_distance: 0.1829
Epoch 116/300
46/46 [==============================] - 0s 884us/step - loss: 0.1119 - accuracy: 0.9352 - mae: 0.1119 - pearson_correlation: 0.6874 - euclidean_distance: 0.1802
Epoch 117/300
46/46 [==============================] - 0s 887us/step - loss: 0.1120 - accuracy: 0.9334 - mae: 0.1120 - pearson_correlation: 0.6857 - euclidean_distance: 0.1807
Epoch 118/300
46/46 [==============================] - 0s 886us/step - loss: 0.1133 - accuracy: 0.9334 - mae: 0.1133 - pearson_correlation: 0.6764 - euclidean_distance: 0.1827
Epoch 119/300
46/46 [==============================] - 0s 892us/step - loss: 0.1118 - accuracy: 0.9338 - mae: 0.1118 - pearson_correlation: 0.6826 - euclidean_distance: 0.1801
Epoch 120/300
46/46 [==============================] - 0s 893us/step - loss: 0.1134 - accuracy: 0.9347 - mae: 0.1134 - pearson_correlation: 0.6805 - euclidean_distance: 0.1818
Epoch 121/300
46/46 [==============================] - 0s 882us/step - loss: 0.1087 - accuracy: 0.9378 - mae: 0.1087 - pearson_correlation: 0.6922 - euclidean_distance: 0.1753
Epoch 122/300
46/46 [==============================] - 0s 888us/step - loss: 0.1123 - accuracy: 0.9338 - mae: 0.1123 - pearson_correlation: 0.6853 - euclidean_distance: 0.1806
Epoch 123/300
46/46 [==============================] - 0s 887us/step - loss: 0.1085 - accuracy: 0.9369 - mae: 0.1085 - pearson_correlation: 0.6919 - euclidean_distance: 0.1750
Epoch 124/300
46/46 [==============================] - 0s 879us/step - loss: 0.1127 - accuracy: 0.9374 - mae: 0.1127 - pearson_correlation: 0.6852 - euclidean_distance: 0.1814
Epoch 125/300
46/46 [==============================] - 0s 888us/step - loss: 0.1108 - accuracy: 0.9330 - mae: 0.1108 - pearson_correlation: 0.6881 - euclidean_distance: 0.1792
Epoch 126/300
46/46 [==============================] - 0s 896us/step - loss: 0.1086 - accuracy: 0.9360 - mae: 0.1086 - pearson_correlation: 0.6863 - euclidean_distance: 0.1757
Epoch 127/300
46/46 [==============================] - 0s 892us/step - loss: 0.1108 - accuracy: 0.9352 - mae: 0.1108 - pearson_correlation: 0.6904 - euclidean_distance: 0.1785
Epoch 128/300
46/46 [==============================] - 0s 879us/step - loss: 0.1119 - accuracy: 0.9347 - mae: 0.1119 - pearson_correlation: 0.6835 - euclidean_distance: 0.1798
Epoch 129/300
46/46 [==============================] - 0s 876us/step - loss: 0.1092 - accuracy: 0.9369 - mae: 0.1092 - pearson_correlation: 0.6940 - euclidean_distance: 0.1760
Epoch 130/300
46/46 [==============================] - 0s 888us/step - loss: 0.1055 - accuracy: 0.9396 - mae: 0.1055 - pearson_correlation: 0.6990 - euclidean_distance: 0.1706
Epoch 131/300
46/46 [==============================] - 0s 886us/step - loss: 0.1090 - accuracy: 0.9347 - mae: 0.1090 - pearson_correlation: 0.6938 - euclidean_distance: 0.1761
Epoch 132/300
46/46 [==============================] - 0s 893us/step - loss: 0.1083 - accuracy: 0.9400 - mae: 0.1083 - pearson_correlation: 0.6904 - euclidean_distance: 0.1747
Epoch 133/300
46/46 [==============================] - 0s 889us/step - loss: 0.1092 - accuracy: 0.9387 - mae: 0.1092 - pearson_correlation: 0.6908 - euclidean_distance: 0.1757
Epoch 134/300
46/46 [==============================] - 0s 894us/step - loss: 0.1089 - accuracy: 0.9352 - mae: 0.1089 - pearson_correlation: 0.6944 - euclidean_distance: 0.1753
Epoch 135/300
46/46 [==============================] - 0s 883us/step - loss: 0.1083 - accuracy: 0.9413 - mae: 0.1083 - pearson_correlation: 0.6963 - euclidean_distance: 0.1745
Epoch 136/300
46/46 [==============================] - 0s 884us/step - loss: 0.1091 - accuracy: 0.9369 - mae: 0.1091 - pearson_correlation: 0.6884 - euclidean_distance: 0.1759
Epoch 137/300
46/46 [==============================] - 0s 886us/step - loss: 0.1075 - accuracy: 0.9378 - mae: 0.1075 - pearson_correlation: 0.6954 - euclidean_distance: 0.1728
Epoch 138/300
46/46 [==============================] - 0s 879us/step - loss: 0.1070 - accuracy: 0.9382 - mae: 0.1070 - pearson_correlation: 0.7050 - euclidean_distance: 0.1721
Epoch 139/300
46/46 [==============================] - 0s 888us/step - loss: 0.1076 - accuracy: 0.9378 - mae: 0.1076 - pearson_correlation: 0.6971 - euclidean_distance: 0.1730
Epoch 140/300
46/46 [==============================] - 0s 892us/step - loss: 0.1091 - accuracy: 0.9418 - mae: 0.1091 - pearson_correlation: 0.6936 - euclidean_distance: 0.1747
Epoch 141/300
46/46 [==============================] - 0s 885us/step - loss: 0.1050 - accuracy: 0.9387 - mae: 0.1050 - pearson_correlation: 0.7049 - euclidean_distance: 0.1688
Epoch 142/300
46/46 [==============================] - 0s 882us/step - loss: 0.1069 - accuracy: 0.9435 - mae: 0.1069 - pearson_correlation: 0.6990 - euclidean_distance: 0.1721
Epoch 143/300
46/46 [==============================] - 0s 886us/step - loss: 0.1058 - accuracy: 0.9391 - mae: 0.1058 - pearson_correlation: 0.7011 - euclidean_distance: 0.1705
Epoch 144/300
46/46 [==============================] - 0s 887us/step - loss: 0.1057 - accuracy: 0.9400 - mae: 0.1057 - pearson_correlation: 0.6998 - euclidean_distance: 0.1702
Epoch 145/300
46/46 [==============================] - 0s 884us/step - loss: 0.1077 - accuracy: 0.9418 - mae: 0.1077 - pearson_correlation: 0.6992 - euclidean_distance: 0.1729
Epoch 146/300
46/46 [==============================] - 0s 886us/step - loss: 0.1067 - accuracy: 0.9422 - mae: 0.1067 - pearson_correlation: 0.6994 - euclidean_distance: 0.1723
Epoch 147/300
46/46 [==============================] - 0s 880us/step - loss: 0.1064 - accuracy: 0.9404 - mae: 0.1064 - pearson_correlation: 0.7050 - euclidean_distance: 0.1714
Epoch 148/300
46/46 [==============================] - 0s 882us/step - loss: 0.1066 - accuracy: 0.9435 - mae: 0.1066 - pearson_correlation: 0.7044 - euclidean_distance: 0.1715
Epoch 149/300
46/46 [==============================] - 0s 887us/step - loss: 0.1034 - accuracy: 0.9418 - mae: 0.1034 - pearson_correlation: 0.7074 - euclidean_distance: 0.1664
Epoch 150/300
46/46 [==============================] - 0s 884us/step - loss: 0.1032 - accuracy: 0.9360 - mae: 0.1032 - pearson_correlation: 0.7078 - euclidean_distance: 0.1660
Epoch 151/300
46/46 [==============================] - 0s 889us/step - loss: 0.1043 - accuracy: 0.9418 - mae: 0.1043 - pearson_correlation: 0.7073 - euclidean_distance: 0.1683
Epoch 152/300
46/46 [==============================] - 0s 885us/step - loss: 0.1027 - accuracy: 0.9404 - mae: 0.1027 - pearson_correlation: 0.7084 - euclidean_distance: 0.1658
Epoch 153/300
46/46 [==============================] - 0s 886us/step - loss: 0.1035 - accuracy: 0.9387 - mae: 0.1035 - pearson_correlation: 0.7109 - euclidean_distance: 0.1669
Epoch 154/300
46/46 [==============================] - 0s 884us/step - loss: 0.1045 - accuracy: 0.9444 - mae: 0.1045 - pearson_correlation: 0.7113 - euclidean_distance: 0.1683
Epoch 155/300
46/46 [==============================] - 0s 884us/step - loss: 0.1060 - accuracy: 0.9400 - mae: 0.1060 - pearson_correlation: 0.6998 - euclidean_distance: 0.1709
Epoch 156/300
46/46 [==============================] - 0s 905us/step - loss: 0.1033 - accuracy: 0.9404 - mae: 0.1033 - pearson_correlation: 0.7097 - euclidean_distance: 0.1662
Epoch 157/300
46/46 [==============================] - 0s 882us/step - loss: 0.1062 - accuracy: 0.9409 - mae: 0.1062 - pearson_correlation: 0.7028 - euclidean_distance: 0.1709
Epoch 158/300
46/46 [==============================] - 0s 888us/step - loss: 0.1051 - accuracy: 0.9413 - mae: 0.1051 - pearson_correlation: 0.7067 - euclidean_distance: 0.1686
Epoch 159/300
46/46 [==============================] - 0s 888us/step - loss: 0.1019 - accuracy: 0.9382 - mae: 0.1019 - pearson_correlation: 0.7115 - euclidean_distance: 0.1643
Epoch 160/300
46/46 [==============================] - 0s 888us/step - loss: 0.1047 - accuracy: 0.9440 - mae: 0.1047 - pearson_correlation: 0.7073 - euclidean_distance: 0.1686
Epoch 161/300
46/46 [==============================] - 0s 893us/step - loss: 0.1009 - accuracy: 0.9444 - mae: 0.1009 - pearson_correlation: 0.7150 - euclidean_distance: 0.1630
Epoch 162/300
46/46 [==============================] - 0s 894us/step - loss: 0.1019 - accuracy: 0.9422 - mae: 0.1019 - pearson_correlation: 0.7125 - euclidean_distance: 0.1646
Epoch 163/300
46/46 [==============================] - 0s 890us/step - loss: 0.1033 - accuracy: 0.9378 - mae: 0.1033 - pearson_correlation: 0.7104 - euclidean_distance: 0.1668
Epoch 164/300
46/46 [==============================] - 0s 897us/step - loss: 0.1008 - accuracy: 0.9471 - mae: 0.1008 - pearson_correlation: 0.7136 - euclidean_distance: 0.1630
Epoch 165/300
46/46 [==============================] - 0s 886us/step - loss: 0.1028 - accuracy: 0.9418 - mae: 0.1028 - pearson_correlation: 0.7075 - euclidean_distance: 0.1660
Epoch 166/300
46/46 [==============================] - 0s 886us/step - loss: 0.1036 - accuracy: 0.9404 - mae: 0.1036 - pearson_correlation: 0.7113 - euclidean_distance: 0.1669
Epoch 167/300
46/46 [==============================] - 0s 892us/step - loss: 0.1005 - accuracy: 0.9418 - mae: 0.1005 - pearson_correlation: 0.7176 - euclidean_distance: 0.1631
Epoch 168/300
46/46 [==============================] - 0s 886us/step - loss: 0.1015 - accuracy: 0.9444 - mae: 0.1015 - pearson_correlation: 0.7117 - euclidean_distance: 0.1636
Epoch 169/300
46/46 [==============================] - 0s 896us/step - loss: 0.1020 - accuracy: 0.9427 - mae: 0.1020 - pearson_correlation: 0.7066 - euclidean_distance: 0.1651
Epoch 170/300
46/46 [==============================] - 0s 886us/step - loss: 0.0998 - accuracy: 0.9431 - mae: 0.0998 - pearson_correlation: 0.7153 - euclidean_distance: 0.1611
Epoch 171/300
46/46 [==============================] - 0s 890us/step - loss: 0.1039 - accuracy: 0.9404 - mae: 0.1039 - pearson_correlation: 0.7089 - euclidean_distance: 0.1675
Epoch 172/300
46/46 [==============================] - 0s 889us/step - loss: 0.1015 - accuracy: 0.9444 - mae: 0.1015 - pearson_correlation: 0.7128 - euclidean_distance: 0.1640
Epoch 173/300
46/46 [==============================] - 0s 893us/step - loss: 0.1008 - accuracy: 0.9435 - mae: 0.1008 - pearson_correlation: 0.7153 - euclidean_distance: 0.1624
Epoch 174/300
46/46 [==============================] - 0s 877us/step - loss: 0.1010 - accuracy: 0.9479 - mae: 0.1010 - pearson_correlation: 0.7162 - euclidean_distance: 0.1631
Epoch 175/300
46/46 [==============================] - 0s 884us/step - loss: 0.1004 - accuracy: 0.9404 - mae: 0.1004 - pearson_correlation: 0.7190 - euclidean_distance: 0.1624
Epoch 176/300
46/46 [==============================] - 0s 885us/step - loss: 0.1006 - accuracy: 0.9457 - mae: 0.1006 - pearson_correlation: 0.7181 - euclidean_distance: 0.1625
Epoch 177/300
46/46 [==============================] - 0s 881us/step - loss: 0.1020 - accuracy: 0.9479 - mae: 0.1020 - pearson_correlation: 0.7127 - euclidean_distance: 0.1645
Epoch 178/300
46/46 [==============================] - 0s 885us/step - loss: 0.0998 - accuracy: 0.9435 - mae: 0.0998 - pearson_correlation: 0.7182 - euclidean_distance: 0.1612
Epoch 179/300
46/46 [==============================] - 0s 886us/step - loss: 0.0999 - accuracy: 0.9427 - mae: 0.0999 - pearson_correlation: 0.7258 - euclidean_distance: 0.1614
Epoch 180/300
46/46 [==============================] - 0s 904us/step - loss: 0.0982 - accuracy: 0.9431 - mae: 0.0982 - pearson_correlation: 0.7244 - euclidean_distance: 0.1588
Epoch 181/300
46/46 [==============================] - 0s 886us/step - loss: 0.0992 - accuracy: 0.9457 - mae: 0.0992 - pearson_correlation: 0.7202 - euclidean_distance: 0.1602
Epoch 182/300
46/46 [==============================] - 0s 894us/step - loss: 0.0972 - accuracy: 0.9431 - mae: 0.0972 - pearson_correlation: 0.7242 - euclidean_distance: 0.1571
Epoch 183/300
46/46 [==============================] - 0s 897us/step - loss: 0.0995 - accuracy: 0.9457 - mae: 0.0995 - pearson_correlation: 0.7228 - euclidean_distance: 0.1601
Epoch 184/300
46/46 [==============================] - 0s 884us/step - loss: 0.0972 - accuracy: 0.9444 - mae: 0.0972 - pearson_correlation: 0.7246 - euclidean_distance: 0.1571
Epoch 185/300
46/46 [==============================] - 0s 887us/step - loss: 0.0990 - accuracy: 0.9440 - mae: 0.0990 - pearson_correlation: 0.7206 - euclidean_distance: 0.1598
Epoch 186/300
46/46 [==============================] - 0s 888us/step - loss: 0.1020 - accuracy: 0.9440 - mae: 0.1020 - pearson_correlation: 0.7160 - euclidean_distance: 0.1644
Epoch 187/300
46/46 [==============================] - 0s 889us/step - loss: 0.0995 - accuracy: 0.9453 - mae: 0.0995 - pearson_correlation: 0.7280 - euclidean_distance: 0.1603
Epoch 188/300
46/46 [==============================] - 0s 884us/step - loss: 0.0982 - accuracy: 0.9435 - mae: 0.0982 - pearson_correlation: 0.7262 - euclidean_distance: 0.1579
Epoch 189/300
46/46 [==============================] - 0s 885us/step - loss: 0.0968 - accuracy: 0.9449 - mae: 0.0968 - pearson_correlation: 0.7228 - euclidean_distance: 0.1569
Epoch 190/300
46/46 [==============================] - 0s 888us/step - loss: 0.1002 - accuracy: 0.9427 - mae: 0.1002 - pearson_correlation: 0.7209 - euclidean_distance: 0.1613
Epoch 191/300
46/46 [==============================] - 0s 885us/step - loss: 0.0964 - accuracy: 0.9471 - mae: 0.0964 - pearson_correlation: 0.7283 - euclidean_distance: 0.1559
Epoch 192/300
46/46 [==============================] - 0s 885us/step - loss: 0.0976 - accuracy: 0.9462 - mae: 0.0976 - pearson_correlation: 0.7321 - euclidean_distance: 0.1578
Epoch 193/300
46/46 [==============================] - 0s 883us/step - loss: 0.0989 - accuracy: 0.9449 - mae: 0.0989 - pearson_correlation: 0.7253 - euclidean_distance: 0.1593
Epoch 194/300
46/46 [==============================] - 0s 885us/step - loss: 0.0986 - accuracy: 0.9479 - mae: 0.0986 - pearson_correlation: 0.7274 - euclidean_distance: 0.1588
Epoch 195/300
46/46 [==============================] - 0s 888us/step - loss: 0.0960 - accuracy: 0.9475 - mae: 0.0960 - pearson_correlation: 0.7257 - euclidean_distance: 0.1554
Epoch 196/300
46/46 [==============================] - 0s 885us/step - loss: 0.0976 - accuracy: 0.9466 - mae: 0.0976 - pearson_correlation: 0.7263 - euclidean_distance: 0.1574
Epoch 197/300
46/46 [==============================] - 0s 884us/step - loss: 0.0981 - accuracy: 0.9457 - mae: 0.0981 - pearson_correlation: 0.7234 - euclidean_distance: 0.1586
Epoch 198/300
46/46 [==============================] - 0s 883us/step - loss: 0.0976 - accuracy: 0.9479 - mae: 0.0976 - pearson_correlation: 0.7266 - euclidean_distance: 0.1570
Epoch 199/300
46/46 [==============================] - 0s 889us/step - loss: 0.0965 - accuracy: 0.9488 - mae: 0.0965 - pearson_correlation: 0.7311 - euclidean_distance: 0.1561
Epoch 200/300
46/46 [==============================] - 0s 887us/step - loss: 0.0938 - accuracy: 0.9488 - mae: 0.0938 - pearson_correlation: 0.7379 - euclidean_distance: 0.1519
Epoch 201/300
46/46 [==============================] - 0s 888us/step - loss: 0.0991 - accuracy: 0.9457 - mae: 0.0991 - pearson_correlation: 0.7207 - euclidean_distance: 0.1600
Epoch 202/300
46/46 [==============================] - 0s 881us/step - loss: 0.0943 - accuracy: 0.9484 - mae: 0.0943 - pearson_correlation: 0.7312 - euclidean_distance: 0.1529
Epoch 203/300
46/46 [==============================] - 0s 886us/step - loss: 0.0961 - accuracy: 0.9479 - mae: 0.0961 - pearson_correlation: 0.7201 - euclidean_distance: 0.1557
Epoch 204/300
46/46 [==============================] - 0s 888us/step - loss: 0.0978 - accuracy: 0.9466 - mae: 0.0978 - pearson_correlation: 0.7280 - euclidean_distance: 0.1573
Epoch 205/300
46/46 [==============================] - 0s 876us/step - loss: 0.0960 - accuracy: 0.9453 - mae: 0.0960 - pearson_correlation: 0.7299 - euclidean_distance: 0.1556
Epoch 206/300
46/46 [==============================] - 0s 879us/step - loss: 0.0977 - accuracy: 0.9515 - mae: 0.0977 - pearson_correlation: 0.7268 - euclidean_distance: 0.1577
Epoch 207/300
46/46 [==============================] - 0s 888us/step - loss: 0.0957 - accuracy: 0.9475 - mae: 0.0957 - pearson_correlation: 0.7320 - euclidean_distance: 0.1541
Epoch 208/300
46/46 [==============================] - 0s 887us/step - loss: 0.0968 - accuracy: 0.9471 - mae: 0.0968 - pearson_correlation: 0.7257 - euclidean_distance: 0.1569
Epoch 209/300
46/46 [==============================] - 0s 893us/step - loss: 0.0966 - accuracy: 0.9488 - mae: 0.0966 - pearson_correlation: 0.7333 - euclidean_distance: 0.1564
Epoch 210/300
46/46 [==============================] - 0s 889us/step - loss: 0.0968 - accuracy: 0.9510 - mae: 0.0968 - pearson_correlation: 0.7302 - euclidean_distance: 0.1564
Epoch 211/300
46/46 [==============================] - 0s 894us/step - loss: 0.0948 - accuracy: 0.9479 - mae: 0.0948 - pearson_correlation: 0.7343 - euclidean_distance: 0.1530
Epoch 212/300
46/46 [==============================] - 0s 889us/step - loss: 0.0981 - accuracy: 0.9484 - mae: 0.0981 - pearson_correlation: 0.7234 - euclidean_distance: 0.1581
Epoch 213/300
46/46 [==============================] - 0s 895us/step - loss: 0.0971 - accuracy: 0.9488 - mae: 0.0971 - pearson_correlation: 0.7288 - euclidean_distance: 0.1569
Epoch 214/300
46/46 [==============================] - 0s 885us/step - loss: 0.0951 - accuracy: 0.9488 - mae: 0.0951 - pearson_correlation: 0.7338 - euclidean_distance: 0.1536
Epoch 215/300
46/46 [==============================] - 0s 889us/step - loss: 0.0944 - accuracy: 0.9502 - mae: 0.0944 - pearson_correlation: 0.7398 - euclidean_distance: 0.1521
Epoch 216/300
46/46 [==============================] - 0s 885us/step - loss: 0.0958 - accuracy: 0.9519 - mae: 0.0958 - pearson_correlation: 0.7340 - euclidean_distance: 0.1546
Epoch 217/300
46/46 [==============================] - 0s 881us/step - loss: 0.0952 - accuracy: 0.9519 - mae: 0.0952 - pearson_correlation: 0.7332 - euclidean_distance: 0.1538
Epoch 218/300
46/46 [==============================] - 0s 891us/step - loss: 0.0969 - accuracy: 0.9497 - mae: 0.0969 - pearson_correlation: 0.7301 - euclidean_distance: 0.1557
Epoch 219/300
46/46 [==============================] - 0s 883us/step - loss: 0.0979 - accuracy: 0.9497 - mae: 0.0979 - pearson_correlation: 0.7313 - euclidean_distance: 0.1576
Epoch 220/300
46/46 [==============================] - 0s 889us/step - loss: 0.0930 - accuracy: 0.9502 - mae: 0.0930 - pearson_correlation: 0.7366 - euclidean_distance: 0.1509
Epoch 221/300
46/46 [==============================] - 0s 890us/step - loss: 0.0955 - accuracy: 0.9519 - mae: 0.0955 - pearson_correlation: 0.7351 - euclidean_distance: 0.1541
Epoch 222/300
46/46 [==============================] - 0s 886us/step - loss: 0.0926 - accuracy: 0.9515 - mae: 0.0926 - pearson_correlation: 0.7426 - euclidean_distance: 0.1498
Epoch 223/300
46/46 [==============================] - 0s 886us/step - loss: 0.0959 - accuracy: 0.9475 - mae: 0.0959 - pearson_correlation: 0.7322 - euclidean_distance: 0.1553
Epoch 224/300
46/46 [==============================] - 0s 882us/step - loss: 0.0937 - accuracy: 0.9510 - mae: 0.0937 - pearson_correlation: 0.7343 - euclidean_distance: 0.1512
Epoch 225/300
46/46 [==============================] - 0s 902us/step - loss: 0.0930 - accuracy: 0.9488 - mae: 0.0930 - pearson_correlation: 0.7354 - euclidean_distance: 0.1504
Epoch 226/300
46/46 [==============================] - 0s 951us/step - loss: 0.0947 - accuracy: 0.9493 - mae: 0.0947 - pearson_correlation: 0.7338 - euclidean_distance: 0.1534
Epoch 227/300
46/46 [==============================] - 0s 896us/step - loss: 0.0918 - accuracy: 0.9488 - mae: 0.0918 - pearson_correlation: 0.7390 - euclidean_distance: 0.1487
Epoch 228/300
46/46 [==============================] - 0s 886us/step - loss: 0.0942 - accuracy: 0.9506 - mae: 0.0942 - pearson_correlation: 0.7336 - euclidean_distance: 0.1526
Epoch 229/300
46/46 [==============================] - 0s 898us/step - loss: 0.0943 - accuracy: 0.9488 - mae: 0.0943 - pearson_correlation: 0.7405 - euclidean_distance: 0.1517
Epoch 230/300
46/46 [==============================] - 0s 888us/step - loss: 0.0934 - accuracy: 0.9506 - mae: 0.0934 - pearson_correlation: 0.7388 - euclidean_distance: 0.1513
Epoch 231/300
46/46 [==============================] - 0s 891us/step - loss: 0.0930 - accuracy: 0.9506 - mae: 0.0930 - pearson_correlation: 0.7374 - euclidean_distance: 0.1497
Epoch 232/300
46/46 [==============================] - 0s 883us/step - loss: 0.0935 - accuracy: 0.9484 - mae: 0.0935 - pearson_correlation: 0.7388 - euclidean_distance: 0.1511
Epoch 233/300
46/46 [==============================] - 0s 879us/step - loss: 0.0929 - accuracy: 0.9506 - mae: 0.0929 - pearson_correlation: 0.7413 - euclidean_distance: 0.1503
Epoch 234/300
46/46 [==============================] - 0s 883us/step - loss: 0.0943 - accuracy: 0.9506 - mae: 0.0943 - pearson_correlation: 0.7374 - euclidean_distance: 0.1522
Epoch 235/300
46/46 [==============================] - 0s 888us/step - loss: 0.0922 - accuracy: 0.9497 - mae: 0.0922 - pearson_correlation: 0.7436 - euclidean_distance: 0.1493
Epoch 236/300
46/46 [==============================] - 0s 887us/step - loss: 0.0905 - accuracy: 0.9515 - mae: 0.0905 - pearson_correlation: 0.7462 - euclidean_distance: 0.1468
Epoch 237/300
46/46 [==============================] - 0s 894us/step - loss: 0.0925 - accuracy: 0.9528 - mae: 0.0925 - pearson_correlation: 0.7439 - euclidean_distance: 0.1496
Epoch 238/300
46/46 [==============================] - 0s 889us/step - loss: 0.0926 - accuracy: 0.9519 - mae: 0.0926 - pearson_correlation: 0.7417 - euclidean_distance: 0.1497
Epoch 239/300
46/46 [==============================] - 0s 899us/step - loss: 0.0961 - accuracy: 0.9506 - mae: 0.0961 - pearson_correlation: 0.7358 - euclidean_distance: 0.1550
Epoch 240/300
46/46 [==============================] - 0s 891us/step - loss: 0.0924 - accuracy: 0.9524 - mae: 0.0924 - pearson_correlation: 0.7404 - euclidean_distance: 0.1493
Epoch 241/300
46/46 [==============================] - 0s 887us/step - loss: 0.0944 - accuracy: 0.9506 - mae: 0.0944 - pearson_correlation: 0.7371 - euclidean_distance: 0.1512
Epoch 242/300
46/46 [==============================] - 0s 889us/step - loss: 0.0903 - accuracy: 0.9546 - mae: 0.0903 - pearson_correlation: 0.7470 - euclidean_distance: 0.1464
Epoch 243/300
46/46 [==============================] - 0s 881us/step - loss: 0.0901 - accuracy: 0.9524 - mae: 0.0901 - pearson_correlation: 0.7491 - euclidean_distance: 0.1461
Epoch 244/300
46/46 [==============================] - 0s 889us/step - loss: 0.0902 - accuracy: 0.9524 - mae: 0.0902 - pearson_correlation: 0.7503 - euclidean_distance: 0.1458
Epoch 245/300
46/46 [==============================] - 0s 883us/step - loss: 0.0927 - accuracy: 0.9506 - mae: 0.0927 - pearson_correlation: 0.7372 - euclidean_distance: 0.1496
Epoch 246/300
46/46 [==============================] - 0s 879us/step - loss: 0.0913 - accuracy: 0.9510 - mae: 0.0913 - pearson_correlation: 0.7479 - euclidean_distance: 0.1473
Epoch 247/300
46/46 [==============================] - 0s 893us/step - loss: 0.0913 - accuracy: 0.9524 - mae: 0.0913 - pearson_correlation: 0.7443 - euclidean_distance: 0.1478
Epoch 248/300
46/46 [==============================] - 0s 890us/step - loss: 0.0949 - accuracy: 0.9519 - mae: 0.0949 - pearson_correlation: 0.7297 - euclidean_distance: 0.1532
Epoch 249/300
46/46 [==============================] - 0s 884us/step - loss: 0.0915 - accuracy: 0.9515 - mae: 0.0915 - pearson_correlation: 0.7414 - euclidean_distance: 0.1487
Epoch 250/300
46/46 [==============================] - 0s 896us/step - loss: 0.0910 - accuracy: 0.9506 - mae: 0.0910 - pearson_correlation: 0.7455 - euclidean_distance: 0.1474
Epoch 251/300
46/46 [==============================] - 0s 901us/step - loss: 0.0934 - accuracy: 0.9510 - mae: 0.0934 - pearson_correlation: 0.7416 - euclidean_distance: 0.1505
Epoch 252/300
46/46 [==============================] - 0s 880us/step - loss: 0.0906 - accuracy: 0.9510 - mae: 0.0906 - pearson_correlation: 0.7458 - euclidean_distance: 0.1461
Epoch 253/300
46/46 [==============================] - 0s 878us/step - loss: 0.0950 - accuracy: 0.9510 - mae: 0.0950 - pearson_correlation: 0.7390 - euclidean_distance: 0.1527
Epoch 254/300
46/46 [==============================] - 0s 880us/step - loss: 0.0907 - accuracy: 0.9519 - mae: 0.0907 - pearson_correlation: 0.7410 - euclidean_distance: 0.1467
Epoch 255/300
46/46 [==============================] - 0s 891us/step - loss: 0.0913 - accuracy: 0.9537 - mae: 0.0913 - pearson_correlation: 0.7463 - euclidean_distance: 0.1473
Epoch 256/300
46/46 [==============================] - 0s 900us/step - loss: 0.0919 - accuracy: 0.9510 - mae: 0.0919 - pearson_correlation: 0.7416 - euclidean_distance: 0.1483
Epoch 257/300
46/46 [==============================] - 0s 933us/step - loss: 0.0906 - accuracy: 0.9519 - mae: 0.0906 - pearson_correlation: 0.7480 - euclidean_distance: 0.1463
Epoch 258/300
46/46 [==============================] - 0s 900us/step - loss: 0.0912 - accuracy: 0.9528 - mae: 0.0912 - pearson_correlation: 0.7459 - euclidean_distance: 0.1477
Epoch 259/300
46/46 [==============================] - 0s 887us/step - loss: 0.0895 - accuracy: 0.9532 - mae: 0.0895 - pearson_correlation: 0.7459 - euclidean_distance: 0.1448
Epoch 260/300
46/46 [==============================] - 0s 887us/step - loss: 0.0902 - accuracy: 0.9528 - mae: 0.0902 - pearson_correlation: 0.7470 - euclidean_distance: 0.1462
Epoch 261/300
46/46 [==============================] - 0s 887us/step - loss: 0.0889 - accuracy: 0.9510 - mae: 0.0889 - pearson_correlation: 0.7489 - euclidean_distance: 0.1434
Epoch 262/300
46/46 [==============================] - 0s 901us/step - loss: 0.0915 - accuracy: 0.9528 - mae: 0.0915 - pearson_correlation: 0.7434 - euclidean_distance: 0.1476
Epoch 263/300
46/46 [==============================] - 0s 890us/step - loss: 0.0914 - accuracy: 0.9528 - mae: 0.0914 - pearson_correlation: 0.7429 - euclidean_distance: 0.1477
Epoch 264/300
46/46 [==============================] - 0s 894us/step - loss: 0.0876 - accuracy: 0.9528 - mae: 0.0876 - pearson_correlation: 0.7540 - euclidean_distance: 0.1423
Epoch 265/300
46/46 [==============================] - 0s 883us/step - loss: 0.0914 - accuracy: 0.9515 - mae: 0.0914 - pearson_correlation: 0.7454 - euclidean_distance: 0.1473
Epoch 266/300
46/46 [==============================] - 0s 892us/step - loss: 0.0879 - accuracy: 0.9550 - mae: 0.0879 - pearson_correlation: 0.7501 - euclidean_distance: 0.1423
Epoch 267/300
46/46 [==============================] - 0s 884us/step - loss: 0.0885 - accuracy: 0.9537 - mae: 0.0885 - pearson_correlation: 0.7524 - euclidean_distance: 0.1430
Epoch 268/300
46/46 [==============================] - 0s 889us/step - loss: 0.0886 - accuracy: 0.9546 - mae: 0.0886 - pearson_correlation: 0.7502 - euclidean_distance: 0.1434
Epoch 269/300
46/46 [==============================] - 0s 882us/step - loss: 0.0887 - accuracy: 0.9541 - mae: 0.0887 - pearson_correlation: 0.7525 - euclidean_distance: 0.1439
Epoch 270/300
46/46 [==============================] - 0s 879us/step - loss: 0.0903 - accuracy: 0.9537 - mae: 0.0903 - pearson_correlation: 0.7494 - euclidean_distance: 0.1459
Epoch 271/300
46/46 [==============================] - 0s 887us/step - loss: 0.0888 - accuracy: 0.9532 - mae: 0.0888 - pearson_correlation: 0.7531 - euclidean_distance: 0.1436
Epoch 272/300
46/46 [==============================] - 0s 890us/step - loss: 0.0881 - accuracy: 0.9528 - mae: 0.0881 - pearson_correlation: 0.7527 - euclidean_distance: 0.1425
Epoch 273/300
46/46 [==============================] - 0s 879us/step - loss: 0.0880 - accuracy: 0.9532 - mae: 0.0880 - pearson_correlation: 0.7527 - euclidean_distance: 0.1423
Epoch 274/300
46/46 [==============================] - 0s 883us/step - loss: 0.0870 - accuracy: 0.9515 - mae: 0.0870 - pearson_correlation: 0.7548 - euclidean_distance: 0.1410
Epoch 275/300
46/46 [==============================] - 0s 885us/step - loss: 0.0914 - accuracy: 0.9528 - mae: 0.0914 - pearson_correlation: 0.7397 - euclidean_distance: 0.1478
Epoch 276/300
46/46 [==============================] - 0s 885us/step - loss: 0.0893 - accuracy: 0.9546 - mae: 0.0893 - pearson_correlation: 0.7522 - euclidean_distance: 0.1444
Epoch 277/300
46/46 [==============================] - 0s 878us/step - loss: 0.0879 - accuracy: 0.9519 - mae: 0.0879 - pearson_correlation: 0.7583 - euclidean_distance: 0.1423
Epoch 278/300
46/46 [==============================] - 0s 887us/step - loss: 0.0866 - accuracy: 0.9546 - mae: 0.0866 - pearson_correlation: 0.7565 - euclidean_distance: 0.1405
Epoch 279/300
46/46 [==============================] - 0s 882us/step - loss: 0.0895 - accuracy: 0.9546 - mae: 0.0895 - pearson_correlation: 0.7505 - euclidean_distance: 0.1445
Epoch 280/300
46/46 [==============================] - 0s 881us/step - loss: 0.0894 - accuracy: 0.9537 - mae: 0.0894 - pearson_correlation: 0.7537 - euclidean_distance: 0.1443
Epoch 281/300
46/46 [==============================] - 0s 882us/step - loss: 0.0914 - accuracy: 0.9550 - mae: 0.0914 - pearson_correlation: 0.7473 - euclidean_distance: 0.1474
Epoch 282/300
46/46 [==============================] - 0s 885us/step - loss: 0.0863 - accuracy: 0.9541 - mae: 0.0863 - pearson_correlation: 0.7567 - euclidean_distance: 0.1398
Epoch 283/300
46/46 [==============================] - 0s 886us/step - loss: 0.0881 - accuracy: 0.9541 - mae: 0.0881 - pearson_correlation: 0.7568 - euclidean_distance: 0.1424
Epoch 284/300
46/46 [==============================] - 0s 878us/step - loss: 0.0879 - accuracy: 0.9537 - mae: 0.0879 - pearson_correlation: 0.7566 - euclidean_distance: 0.1421
Epoch 285/300
46/46 [==============================] - 0s 893us/step - loss: 0.0866 - accuracy: 0.9546 - mae: 0.0866 - pearson_correlation: 0.7550 - euclidean_distance: 0.1401
Epoch 286/300
46/46 [==============================] - 0s 889us/step - loss: 0.0874 - accuracy: 0.9559 - mae: 0.0874 - pearson_correlation: 0.7506 - euclidean_distance: 0.1415
Epoch 287/300
46/46 [==============================] - 0s 885us/step - loss: 0.0862 - accuracy: 0.9532 - mae: 0.0862 - pearson_correlation: 0.7535 - euclidean_distance: 0.1396
Epoch 288/300
46/46 [==============================] - 0s 887us/step - loss: 0.0865 - accuracy: 0.9537 - mae: 0.0865 - pearson_correlation: 0.7565 - euclidean_distance: 0.1402
Epoch 289/300
46/46 [==============================] - 0s 891us/step - loss: 0.0868 - accuracy: 0.9546 - mae: 0.0868 - pearson_correlation: 0.7626 - euclidean_distance: 0.1401
Epoch 290/300
46/46 [==============================] - 0s 883us/step - loss: 0.0879 - accuracy: 0.9532 - mae: 0.0879 - pearson_correlation: 0.7539 - euclidean_distance: 0.1423
Epoch 291/300
46/46 [==============================] - 0s 894us/step - loss: 0.0887 - accuracy: 0.9537 - mae: 0.0887 - pearson_correlation: 0.7560 - euclidean_distance: 0.1435
Epoch 292/300
46/46 [==============================] - 0s 894us/step - loss: 0.0855 - accuracy: 0.9541 - mae: 0.0855 - pearson_correlation: 0.7568 - euclidean_distance: 0.1387
Epoch 293/300
46/46 [==============================] - 0s 885us/step - loss: 0.0877 - accuracy: 0.9537 - mae: 0.0877 - pearson_correlation: 0.7554 - euclidean_distance: 0.1421
Epoch 294/300
46/46 [==============================] - 0s 880us/step - loss: 0.0866 - accuracy: 0.9537 - mae: 0.0866 - pearson_correlation: 0.7578 - euclidean_distance: 0.1401
Epoch 295/300
46/46 [==============================] - 0s 883us/step - loss: 0.0891 - accuracy: 0.9554 - mae: 0.0891 - pearson_correlation: 0.7567 - euclidean_distance: 0.1442
Epoch 296/300
46/46 [==============================] - 0s 886us/step - loss: 0.0879 - accuracy: 0.9554 - mae: 0.0879 - pearson_correlation: 0.7493 - euclidean_distance: 0.1423
Epoch 297/300
46/46 [==============================] - 0s 885us/step - loss: 0.0875 - accuracy: 0.9550 - mae: 0.0875 - pearson_correlation: 0.7541 - euclidean_distance: 0.1414
Epoch 298/300
46/46 [==============================] - 0s 900us/step - loss: 0.0871 - accuracy: 0.9550 - mae: 0.0871 - pearson_correlation: 0.7568 - euclidean_distance: 0.1409
Epoch 299/300
46/46 [==============================] - 0s 881us/step - loss: 0.0889 - accuracy: 0.9546 - mae: 0.0889 - pearson_correlation: 0.7526 - euclidean_distance: 0.1440
Epoch 300/300
46/46 [==============================] - 0s 882us/step - loss: 0.0867 - accuracy: 0.9541 - mae: 0.0867 - pearson_correlation: 0.7589 - euclidean_distance: 0.1402
23/23 [==============================] - 0s 552us/step
Epoch 1/300
46/46 [==============================] - 1s 969us/step - loss: 0.7086 - accuracy: 0.6167 - mae: 0.7086 - pearson_correlation: 0.1878 - euclidean_distance: 1.0369
Epoch 2/300
46/46 [==============================] - 0s 869us/step - loss: 0.7044 - accuracy: 0.6109 - mae: 0.7044 - pearson_correlation: 0.1831 - euclidean_distance: 1.0313
Epoch 3/300
46/46 [==============================] - 0s 882us/step - loss: 0.6985 - accuracy: 0.6259 - mae: 0.6985 - pearson_correlation: 0.1804 - euclidean_distance: 1.0232
Epoch 4/300
46/46 [==============================] - 0s 888us/step - loss: 0.6936 - accuracy: 0.6158 - mae: 0.6936 - pearson_correlation: 0.1639 - euclidean_distance: 1.0173
Epoch 5/300
46/46 [==============================] - 0s 890us/step - loss: 0.6875 - accuracy: 0.6105 - mae: 0.6875 - pearson_correlation: 0.1721 - euclidean_distance: 1.0082
Epoch 6/300
46/46 [==============================] - 0s 893us/step - loss: 0.6822 - accuracy: 0.5973 - mae: 0.6822 - pearson_correlation: 0.1624 - euclidean_distance: 1.0021
Epoch 7/300
46/46 [==============================] - 0s 907us/step - loss: 0.6784 - accuracy: 0.6004 - mae: 0.6784 - pearson_correlation: 0.1653 - euclidean_distance: 0.9967
Epoch 8/300
46/46 [==============================] - 0s 896us/step - loss: 0.6743 - accuracy: 0.6079 - mae: 0.6743 - pearson_correlation: 0.1669 - euclidean_distance: 0.9907
Epoch 9/300
46/46 [==============================] - 0s 889us/step - loss: 0.6680 - accuracy: 0.6065 - mae: 0.6680 - pearson_correlation: 0.1553 - euclidean_distance: 0.9823
Epoch 10/300
46/46 [==============================] - 0s 890us/step - loss: 0.6635 - accuracy: 0.6026 - mae: 0.6635 - pearson_correlation: 0.1577 - euclidean_distance: 0.9764
Epoch 11/300
46/46 [==============================] - 0s 893us/step - loss: 0.6579 - accuracy: 0.5942 - mae: 0.6579 - pearson_correlation: 0.1457 - euclidean_distance: 0.9691
Epoch 12/300
46/46 [==============================] - 0s 894us/step - loss: 0.6533 - accuracy: 0.5915 - mae: 0.6533 - pearson_correlation: 0.1428 - euclidean_distance: 0.9628
Epoch 13/300
46/46 [==============================] - 0s 887us/step - loss: 0.6464 - accuracy: 0.5871 - mae: 0.6464 - pearson_correlation: 0.1408 - euclidean_distance: 0.9537
Epoch 14/300
46/46 [==============================] - 0s 891us/step - loss: 0.6418 - accuracy: 0.5774 - mae: 0.6418 - pearson_correlation: 0.1302 - euclidean_distance: 0.9480
Epoch 15/300
46/46 [==============================] - 0s 887us/step - loss: 0.6378 - accuracy: 0.5858 - mae: 0.6378 - pearson_correlation: 0.1339 - euclidean_distance: 0.9424
Epoch 16/300
46/46 [==============================] - 0s 903us/step - loss: 0.6309 - accuracy: 0.5840 - mae: 0.6309 - pearson_correlation: 0.1275 - euclidean_distance: 0.9335
Epoch 17/300
46/46 [==============================] - 0s 888us/step - loss: 0.6267 - accuracy: 0.5765 - mae: 0.6267 - pearson_correlation: 0.1280 - euclidean_distance: 0.9275
Epoch 18/300
46/46 [==============================] - 0s 885us/step - loss: 0.6200 - accuracy: 0.5774 - mae: 0.6200 - pearson_correlation: 0.1163 - euclidean_distance: 0.9193
Epoch 19/300
46/46 [==============================] - 0s 894us/step - loss: 0.6155 - accuracy: 0.5673 - mae: 0.6155 - pearson_correlation: 0.1092 - euclidean_distance: 0.9130
Epoch 20/300
46/46 [==============================] - 0s 887us/step - loss: 0.6107 - accuracy: 0.5717 - mae: 0.6107 - pearson_correlation: 0.1094 - euclidean_distance: 0.9069
Epoch 21/300
46/46 [==============================] - 0s 893us/step - loss: 0.6047 - accuracy: 0.5695 - mae: 0.6047 - pearson_correlation: 0.1021 - euclidean_distance: 0.8988
Epoch 22/300
46/46 [==============================] - 0s 902us/step - loss: 0.6003 - accuracy: 0.5743 - mae: 0.6003 - pearson_correlation: 0.0938 - euclidean_distance: 0.8933
Epoch 23/300
46/46 [==============================] - 0s 889us/step - loss: 0.5937 - accuracy: 0.5651 - mae: 0.5937 - pearson_correlation: 0.0973 - euclidean_distance: 0.8849
Epoch 24/300
46/46 [==============================] - 0s 891us/step - loss: 0.5890 - accuracy: 0.5624 - mae: 0.5890 - pearson_correlation: 0.0920 - euclidean_distance: 0.8782
Epoch 25/300
46/46 [==============================] - 0s 888us/step - loss: 0.5829 - accuracy: 0.5567 - mae: 0.5829 - pearson_correlation: 0.0754 - euclidean_distance: 0.8709
Epoch 26/300
46/46 [==============================] - 0s 892us/step - loss: 0.5777 - accuracy: 0.5629 - mae: 0.5777 - pearson_correlation: 0.0766 - euclidean_distance: 0.8635
Epoch 27/300
46/46 [==============================] - 0s 891us/step - loss: 0.5727 - accuracy: 0.5509 - mae: 0.5727 - pearson_correlation: 0.0762 - euclidean_distance: 0.8572
Epoch 28/300
46/46 [==============================] - 0s 888us/step - loss: 0.5669 - accuracy: 0.5443 - mae: 0.5669 - pearson_correlation: 0.0627 - euclidean_distance: 0.8500
Epoch 29/300
46/46 [==============================] - 0s 891us/step - loss: 0.5611 - accuracy: 0.5404 - mae: 0.5611 - pearson_correlation: 0.0550 - euclidean_distance: 0.8421
Epoch 30/300
46/46 [==============================] - 0s 899us/step - loss: 0.5551 - accuracy: 0.5399 - mae: 0.5551 - pearson_correlation: 0.0512 - euclidean_distance: 0.8346
Epoch 31/300
46/46 [==============================] - 0s 887us/step - loss: 0.5493 - accuracy: 0.5434 - mae: 0.5493 - pearson_correlation: 0.0556 - euclidean_distance: 0.8269
Epoch 32/300
46/46 [==============================] - 0s 882us/step - loss: 0.5433 - accuracy: 0.5302 - mae: 0.5433 - pearson_correlation: 0.0440 - euclidean_distance: 0.8193
Epoch 33/300
46/46 [==============================] - 0s 882us/step - loss: 0.5375 - accuracy: 0.5364 - mae: 0.5375 - pearson_correlation: 0.0474 - euclidean_distance: 0.8115
Epoch 34/300
46/46 [==============================] - 0s 893us/step - loss: 0.5311 - accuracy: 0.5320 - mae: 0.5311 - pearson_correlation: 0.0315 - euclidean_distance: 0.8035
Epoch 35/300
46/46 [==============================] - 0s 889us/step - loss: 0.5262 - accuracy: 0.5139 - mae: 0.5262 - pearson_correlation: 0.0261 - euclidean_distance: 0.7973
Epoch 36/300
46/46 [==============================] - 0s 890us/step - loss: 0.5198 - accuracy: 0.5130 - mae: 0.5198 - pearson_correlation: 0.0287 - euclidean_distance: 0.7891
Epoch 37/300
46/46 [==============================] - 0s 890us/step - loss: 0.5140 - accuracy: 0.5254 - mae: 0.5140 - pearson_correlation: 0.0144 - euclidean_distance: 0.7812
Epoch 38/300
46/46 [==============================] - 0s 903us/step - loss: 0.5076 - accuracy: 0.5139 - mae: 0.5076 - pearson_correlation: 0.0134 - euclidean_distance: 0.7730
Epoch 39/300
46/46 [==============================] - 0s 887us/step - loss: 0.5034 - accuracy: 0.5060 - mae: 0.5034 - pearson_correlation: 0.0113 - euclidean_distance: 0.7675
Epoch 40/300
46/46 [==============================] - 0s 892us/step - loss: 0.4967 - accuracy: 0.5073 - mae: 0.4967 - pearson_correlation: 0.0062 - euclidean_distance: 0.7594
Epoch 41/300
46/46 [==============================] - 0s 888us/step - loss: 0.4906 - accuracy: 0.5037 - mae: 0.4906 - pearson_correlation: -0.0081 - euclidean_distance: 0.7517
Epoch 42/300
46/46 [==============================] - 0s 891us/step - loss: 0.4839 - accuracy: 0.4976 - mae: 0.4839 - pearson_correlation: -0.0064 - euclidean_distance: 0.7423
Epoch 43/300
46/46 [==============================] - 0s 890us/step - loss: 0.4799 - accuracy: 0.4782 - mae: 0.4799 - pearson_correlation: -0.0168 - euclidean_distance: 0.7386
Epoch 44/300
46/46 [==============================] - 0s 890us/step - loss: 0.4729 - accuracy: 0.4892 - mae: 0.4729 - pearson_correlation: -0.0191 - euclidean_distance: 0.7283
Epoch 45/300
46/46 [==============================] - 0s 891us/step - loss: 0.4680 - accuracy: 0.4813 - mae: 0.4680 - pearson_correlation: -0.0225 - euclidean_distance: 0.7226
Epoch 46/300
46/46 [==============================] - 0s 885us/step - loss: 0.4607 - accuracy: 0.4839 - mae: 0.4607 - pearson_correlation: -0.0295 - euclidean_distance: 0.7134
Epoch 47/300
46/46 [==============================] - 0s 891us/step - loss: 0.4548 - accuracy: 0.4640 - mae: 0.4548 - pearson_correlation: -0.0354 - euclidean_distance: 0.7054
Epoch 48/300
46/46 [==============================] - 0s 890us/step - loss: 0.4501 - accuracy: 0.4574 - mae: 0.4501 - pearson_correlation: -0.0366 - euclidean_distance: 0.6995
Epoch 49/300
46/46 [==============================] - 0s 893us/step - loss: 0.4443 - accuracy: 0.4632 - mae: 0.4443 - pearson_correlation: -0.0530 - euclidean_distance: 0.6924
Epoch 50/300
46/46 [==============================] - 0s 897us/step - loss: 0.4392 - accuracy: 0.4499 - mae: 0.4392 - pearson_correlation: -0.0532 - euclidean_distance: 0.6862
Epoch 51/300
46/46 [==============================] - 0s 884us/step - loss: 0.4325 - accuracy: 0.4473 - mae: 0.4325 - pearson_correlation: -0.0564 - euclidean_distance: 0.6782
Epoch 52/300
46/46 [==============================] - 0s 891us/step - loss: 0.4274 - accuracy: 0.4402 - mae: 0.4274 - pearson_correlation: -0.0661 - euclidean_distance: 0.6714
Epoch 53/300
46/46 [==============================] - 0s 893us/step - loss: 0.4230 - accuracy: 0.4407 - mae: 0.4230 - pearson_correlation: -0.0639 - euclidean_distance: 0.6661
Epoch 54/300
46/46 [==============================] - 0s 895us/step - loss: 0.4169 - accuracy: 0.4354 - mae: 0.4169 - pearson_correlation: -0.0738 - euclidean_distance: 0.6584
Epoch 55/300
46/46 [==============================] - 0s 892us/step - loss: 0.4101 - accuracy: 0.4393 - mae: 0.4101 - pearson_correlation: -0.0729 - euclidean_distance: 0.6487
Epoch 56/300
46/46 [==============================] - 0s 890us/step - loss: 0.4060 - accuracy: 0.4358 - mae: 0.4060 - pearson_correlation: -0.0729 - euclidean_distance: 0.6437
Epoch 57/300
46/46 [==============================] - 0s 889us/step - loss: 0.4014 - accuracy: 0.4367 - mae: 0.4014 - pearson_correlation: -0.0756 - euclidean_distance: 0.6377
Epoch 58/300
46/46 [==============================] - 0s 885us/step - loss: 0.3965 - accuracy: 0.4296 - mae: 0.3965 - pearson_correlation: -0.0769 - euclidean_distance: 0.6308
Epoch 59/300
46/46 [==============================] - 0s 890us/step - loss: 0.3908 - accuracy: 0.4367 - mae: 0.3908 - pearson_correlation: -0.0745 - euclidean_distance: 0.6230
Epoch 60/300
46/46 [==============================] - 0s 890us/step - loss: 0.3888 - accuracy: 0.4336 - mae: 0.3888 - pearson_correlation: -0.0746 - euclidean_distance: 0.6198
Epoch 61/300
46/46 [==============================] - 0s 890us/step - loss: 0.3809 - accuracy: 0.4191 - mae: 0.3809 - pearson_correlation: -0.0783 - euclidean_distance: 0.6096
Epoch 62/300
46/46 [==============================] - 0s 893us/step - loss: 0.3775 - accuracy: 0.4332 - mae: 0.3775 - pearson_correlation: -0.0805 - euclidean_distance: 0.6046
Epoch 63/300
46/46 [==============================] - 0s 964us/step - loss: 0.3715 - accuracy: 0.4235 - mae: 0.3715 - pearson_correlation: -0.0771 - euclidean_distance: 0.5974
Epoch 64/300
46/46 [==============================] - 0s 996us/step - loss: 0.3674 - accuracy: 0.4248 - mae: 0.3674 - pearson_correlation: -0.0790 - euclidean_distance: 0.5914
Epoch 65/300
46/46 [==============================] - 0s 974us/step - loss: 0.3632 - accuracy: 0.4252 - mae: 0.3632 - pearson_correlation: -0.0833 - euclidean_distance: 0.5862
Epoch 66/300
46/46 [==============================] - 0s 959us/step - loss: 0.3586 - accuracy: 0.4367 - mae: 0.3586 - pearson_correlation: -0.0807 - euclidean_distance: 0.5796
Epoch 67/300
46/46 [==============================] - 0s 971us/step - loss: 0.3544 - accuracy: 0.4208 - mae: 0.3544 - pearson_correlation: -0.0782 - euclidean_distance: 0.5731
Epoch 68/300
46/46 [==============================] - 0s 963us/step - loss: 0.3500 - accuracy: 0.4301 - mae: 0.3500 - pearson_correlation: -0.0727 - euclidean_distance: 0.5669
Epoch 69/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3451 - accuracy: 0.4407 - mae: 0.3451 - pearson_correlation: -0.0699 - euclidean_distance: 0.5603
Epoch 70/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3416 - accuracy: 0.4468 - mae: 0.3416 - pearson_correlation: -0.0688 - euclidean_distance: 0.5553
Epoch 71/300
46/46 [==============================] - 0s 983us/step - loss: 0.3360 - accuracy: 0.4420 - mae: 0.3360 - pearson_correlation: -0.0622 - euclidean_distance: 0.5470
Epoch 72/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3329 - accuracy: 0.4517 - mae: 0.3329 - pearson_correlation: -0.0719 - euclidean_distance: 0.5432
Epoch 73/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3295 - accuracy: 0.4557 - mae: 0.3295 - pearson_correlation: -0.0652 - euclidean_distance: 0.5380
Epoch 74/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3247 - accuracy: 0.4693 - mae: 0.3247 - pearson_correlation: -0.0545 - euclidean_distance: 0.5299
Epoch 75/300
46/46 [==============================] - 0s 911us/step - loss: 0.3208 - accuracy: 0.4596 - mae: 0.3208 - pearson_correlation: -0.0500 - euclidean_distance: 0.5246
Epoch 76/300
46/46 [==============================] - 0s 908us/step - loss: 0.3174 - accuracy: 0.4733 - mae: 0.3174 - pearson_correlation: -0.0432 - euclidean_distance: 0.5198
Epoch 77/300
46/46 [==============================] - 0s 889us/step - loss: 0.3136 - accuracy: 0.4649 - mae: 0.3136 - pearson_correlation: -0.0480 - euclidean_distance: 0.5141
Epoch 78/300
46/46 [==============================] - 0s 893us/step - loss: 0.3090 - accuracy: 0.4936 - mae: 0.3090 - pearson_correlation: -0.0263 - euclidean_distance: 0.5071
Epoch 79/300
46/46 [==============================] - 0s 892us/step - loss: 0.3057 - accuracy: 0.4932 - mae: 0.3057 - pearson_correlation: -0.0316 - euclidean_distance: 0.5024
Epoch 80/300
46/46 [==============================] - 0s 883us/step - loss: 0.3028 - accuracy: 0.4954 - mae: 0.3028 - pearson_correlation: -0.0191 - euclidean_distance: 0.4979
Epoch 81/300
46/46 [==============================] - 0s 900us/step - loss: 0.2994 - accuracy: 0.5020 - mae: 0.2994 - pearson_correlation: -0.0177 - euclidean_distance: 0.4922
Epoch 82/300
46/46 [==============================] - 0s 888us/step - loss: 0.2967 - accuracy: 0.5112 - mae: 0.2967 - pearson_correlation: -0.0105 - euclidean_distance: 0.4877
Epoch 83/300
46/46 [==============================] - 0s 886us/step - loss: 0.2929 - accuracy: 0.5099 - mae: 0.2929 - pearson_correlation: -0.0050 - euclidean_distance: 0.4829
Epoch 84/300
46/46 [==============================] - 0s 887us/step - loss: 0.2892 - accuracy: 0.5227 - mae: 0.2892 - pearson_correlation: 0.0043 - euclidean_distance: 0.4765
Epoch 85/300
46/46 [==============================] - 0s 902us/step - loss: 0.2865 - accuracy: 0.5267 - mae: 0.2865 - pearson_correlation: 0.0127 - euclidean_distance: 0.4725
Epoch 86/300
46/46 [==============================] - 0s 887us/step - loss: 0.2825 - accuracy: 0.5474 - mae: 0.2825 - pearson_correlation: 0.0237 - euclidean_distance: 0.4653
Epoch 87/300
46/46 [==============================] - 0s 892us/step - loss: 0.2805 - accuracy: 0.5448 - mae: 0.2805 - pearson_correlation: 0.0257 - euclidean_distance: 0.4628
Epoch 88/300
46/46 [==============================] - 0s 890us/step - loss: 0.2770 - accuracy: 0.5461 - mae: 0.2770 - pearson_correlation: 0.0368 - euclidean_distance: 0.4566
Epoch 89/300
46/46 [==============================] - 0s 891us/step - loss: 0.2741 - accuracy: 0.5646 - mae: 0.2741 - pearson_correlation: 0.0408 - euclidean_distance: 0.4524
Epoch 90/300
46/46 [==============================] - 0s 889us/step - loss: 0.2710 - accuracy: 0.5757 - mae: 0.2710 - pearson_correlation: 0.0508 - euclidean_distance: 0.4474
Epoch 91/300
46/46 [==============================] - 0s 889us/step - loss: 0.2678 - accuracy: 0.5743 - mae: 0.2678 - pearson_correlation: 0.0544 - euclidean_distance: 0.4422
Epoch 92/300
46/46 [==============================] - 0s 890us/step - loss: 0.2649 - accuracy: 0.5854 - mae: 0.2649 - pearson_correlation: 0.0718 - euclidean_distance: 0.4373
Epoch 93/300
46/46 [==============================] - 0s 898us/step - loss: 0.2620 - accuracy: 0.5973 - mae: 0.2620 - pearson_correlation: 0.0817 - euclidean_distance: 0.4331
Epoch 94/300
46/46 [==============================] - 0s 890us/step - loss: 0.2594 - accuracy: 0.6021 - mae: 0.2594 - pearson_correlation: 0.0808 - euclidean_distance: 0.4282
Epoch 95/300
46/46 [==============================] - 0s 897us/step - loss: 0.2584 - accuracy: 0.6145 - mae: 0.2584 - pearson_correlation: 0.0913 - euclidean_distance: 0.4268
Epoch 96/300
46/46 [==============================] - 0s 889us/step - loss: 0.2543 - accuracy: 0.6259 - mae: 0.2543 - pearson_correlation: 0.0995 - euclidean_distance: 0.4207
Epoch 97/300
46/46 [==============================] - 0s 888us/step - loss: 0.2514 - accuracy: 0.6281 - mae: 0.2514 - pearson_correlation: 0.1084 - euclidean_distance: 0.4153
Epoch 98/300
46/46 [==============================] - 0s 891us/step - loss: 0.2494 - accuracy: 0.6237 - mae: 0.2494 - pearson_correlation: 0.1153 - euclidean_distance: 0.4125
Epoch 99/300
46/46 [==============================] - 0s 888us/step - loss: 0.2476 - accuracy: 0.6259 - mae: 0.2476 - pearson_correlation: 0.1226 - euclidean_distance: 0.4089
Epoch 100/300
46/46 [==============================] - 0s 897us/step - loss: 0.2428 - accuracy: 0.6352 - mae: 0.2428 - pearson_correlation: 0.1335 - euclidean_distance: 0.4023
Epoch 101/300
46/46 [==============================] - 0s 891us/step - loss: 0.2410 - accuracy: 0.6533 - mae: 0.2410 - pearson_correlation: 0.1408 - euclidean_distance: 0.3989
Epoch 102/300
46/46 [==============================] - 0s 891us/step - loss: 0.2384 - accuracy: 0.6537 - mae: 0.2384 - pearson_correlation: 0.1531 - euclidean_distance: 0.3946
Epoch 103/300
46/46 [==============================] - 0s 902us/step - loss: 0.2365 - accuracy: 0.6753 - mae: 0.2365 - pearson_correlation: 0.1596 - euclidean_distance: 0.3918
Epoch 104/300
46/46 [==============================] - 0s 890us/step - loss: 0.2350 - accuracy: 0.6705 - mae: 0.2350 - pearson_correlation: 0.1635 - euclidean_distance: 0.3884
Epoch 105/300
46/46 [==============================] - 0s 885us/step - loss: 0.2331 - accuracy: 0.6806 - mae: 0.2331 - pearson_correlation: 0.1687 - euclidean_distance: 0.3855
Epoch 106/300
46/46 [==============================] - 0s 897us/step - loss: 0.2307 - accuracy: 0.6798 - mae: 0.2307 - pearson_correlation: 0.1811 - euclidean_distance: 0.3813
Epoch 107/300
46/46 [==============================] - 0s 889us/step - loss: 0.2288 - accuracy: 0.6943 - mae: 0.2288 - pearson_correlation: 0.1880 - euclidean_distance: 0.3775
Epoch 108/300
46/46 [==============================] - 0s 889us/step - loss: 0.2267 - accuracy: 0.7014 - mae: 0.2267 - pearson_correlation: 0.2002 - euclidean_distance: 0.3745
Epoch 109/300
46/46 [==============================] - 0s 900us/step - loss: 0.2249 - accuracy: 0.6974 - mae: 0.2249 - pearson_correlation: 0.2011 - euclidean_distance: 0.3717
Epoch 110/300
46/46 [==============================] - 0s 890us/step - loss: 0.2223 - accuracy: 0.7133 - mae: 0.2223 - pearson_correlation: 0.2119 - euclidean_distance: 0.3672
Epoch 111/300
46/46 [==============================] - 0s 891us/step - loss: 0.2206 - accuracy: 0.7177 - mae: 0.2206 - pearson_correlation: 0.2158 - euclidean_distance: 0.3645
Epoch 112/300
46/46 [==============================] - 0s 896us/step - loss: 0.2201 - accuracy: 0.7199 - mae: 0.2201 - pearson_correlation: 0.2276 - euclidean_distance: 0.3634
Epoch 113/300
46/46 [==============================] - 0s 886us/step - loss: 0.2168 - accuracy: 0.7318 - mae: 0.2168 - pearson_correlation: 0.2287 - euclidean_distance: 0.3587
Epoch 114/300
46/46 [==============================] - 0s 887us/step - loss: 0.2150 - accuracy: 0.7305 - mae: 0.2150 - pearson_correlation: 0.2375 - euclidean_distance: 0.3556
Epoch 115/300
46/46 [==============================] - 0s 885us/step - loss: 0.2135 - accuracy: 0.7274 - mae: 0.2135 - pearson_correlation: 0.2447 - euclidean_distance: 0.3527
Epoch 116/300
46/46 [==============================] - 0s 888us/step - loss: 0.2126 - accuracy: 0.7424 - mae: 0.2126 - pearson_correlation: 0.2538 - euclidean_distance: 0.3504
Epoch 117/300
46/46 [==============================] - 0s 891us/step - loss: 0.2101 - accuracy: 0.7353 - mae: 0.2101 - pearson_correlation: 0.2572 - euclidean_distance: 0.3473
Epoch 118/300
46/46 [==============================] - 0s 905us/step - loss: 0.2078 - accuracy: 0.7459 - mae: 0.2078 - pearson_correlation: 0.2641 - euclidean_distance: 0.3435
Epoch 119/300
46/46 [==============================] - 0s 995us/step - loss: 0.2061 - accuracy: 0.7503 - mae: 0.2061 - pearson_correlation: 0.2681 - euclidean_distance: 0.3412
Epoch 120/300
46/46 [==============================] - 0s 961us/step - loss: 0.2037 - accuracy: 0.7499 - mae: 0.2037 - pearson_correlation: 0.2763 - euclidean_distance: 0.3370
Epoch 121/300
46/46 [==============================] - 0s 943us/step - loss: 0.2026 - accuracy: 0.7494 - mae: 0.2026 - pearson_correlation: 0.2858 - euclidean_distance: 0.3348
Epoch 122/300
46/46 [==============================] - 0s 885us/step - loss: 0.2024 - accuracy: 0.7587 - mae: 0.2024 - pearson_correlation: 0.2918 - euclidean_distance: 0.3339
Epoch 123/300
46/46 [==============================] - 0s 901us/step - loss: 0.2002 - accuracy: 0.7618 - mae: 0.2002 - pearson_correlation: 0.2954 - euclidean_distance: 0.3313
Epoch 124/300
46/46 [==============================] - 0s 893us/step - loss: 0.1996 - accuracy: 0.7556 - mae: 0.1996 - pearson_correlation: 0.2932 - euclidean_distance: 0.3300
Epoch 125/300
46/46 [==============================] - 0s 885us/step - loss: 0.1985 - accuracy: 0.7578 - mae: 0.1985 - pearson_correlation: 0.2992 - euclidean_distance: 0.3277
Epoch 126/300
46/46 [==============================] - 0s 848us/step - loss: 0.1973 - accuracy: 0.7614 - mae: 0.1973 - pearson_correlation: 0.3125 - euclidean_distance: 0.3257
Epoch 127/300
46/46 [==============================] - 0s 922us/step - loss: 0.1953 - accuracy: 0.7631 - mae: 0.1953 - pearson_correlation: 0.3113 - euclidean_distance: 0.3234
Epoch 128/300
46/46 [==============================] - 0s 917us/step - loss: 0.1933 - accuracy: 0.7658 - mae: 0.1933 - pearson_correlation: 0.3163 - euclidean_distance: 0.3196
Epoch 129/300
46/46 [==============================] - 0s 910us/step - loss: 0.1916 - accuracy: 0.7693 - mae: 0.1916 - pearson_correlation: 0.3263 - euclidean_distance: 0.3163
Epoch 130/300
46/46 [==============================] - 0s 893us/step - loss: 0.1923 - accuracy: 0.7711 - mae: 0.1923 - pearson_correlation: 0.3279 - euclidean_distance: 0.3178
Epoch 131/300
46/46 [==============================] - 0s 897us/step - loss: 0.1890 - accuracy: 0.7680 - mae: 0.1890 - pearson_correlation: 0.3337 - euclidean_distance: 0.3126
Epoch 132/300
46/46 [==============================] - 0s 913us/step - loss: 0.1886 - accuracy: 0.7759 - mae: 0.1886 - pearson_correlation: 0.3429 - euclidean_distance: 0.3115
Epoch 133/300
46/46 [==============================] - 0s 892us/step - loss: 0.1888 - accuracy: 0.7786 - mae: 0.1888 - pearson_correlation: 0.3452 - euclidean_distance: 0.3122
Epoch 134/300
46/46 [==============================] - 0s 892us/step - loss: 0.1868 - accuracy: 0.7750 - mae: 0.1868 - pearson_correlation: 0.3511 - euclidean_distance: 0.3090
Epoch 135/300
46/46 [==============================] - 0s 899us/step - loss: 0.1866 - accuracy: 0.7794 - mae: 0.1866 - pearson_correlation: 0.3509 - euclidean_distance: 0.3084
Epoch 136/300
46/46 [==============================] - 0s 899us/step - loss: 0.1842 - accuracy: 0.7861 - mae: 0.1842 - pearson_correlation: 0.3544 - euclidean_distance: 0.3043
Epoch 137/300
46/46 [==============================] - 0s 895us/step - loss: 0.1833 - accuracy: 0.7865 - mae: 0.1833 - pearson_correlation: 0.3655 - euclidean_distance: 0.3034
Epoch 138/300
46/46 [==============================] - 0s 904us/step - loss: 0.1824 - accuracy: 0.7839 - mae: 0.1824 - pearson_correlation: 0.3673 - euclidean_distance: 0.3021
Epoch 139/300
46/46 [==============================] - 0s 897us/step - loss: 0.1814 - accuracy: 0.7883 - mae: 0.1814 - pearson_correlation: 0.3702 - euclidean_distance: 0.3005
Epoch 140/300
46/46 [==============================] - 0s 895us/step - loss: 0.1814 - accuracy: 0.7865 - mae: 0.1814 - pearson_correlation: 0.3620 - euclidean_distance: 0.3002
Epoch 141/300
46/46 [==============================] - 0s 903us/step - loss: 0.1783 - accuracy: 0.7878 - mae: 0.1783 - pearson_correlation: 0.3786 - euclidean_distance: 0.2952
Epoch 142/300
46/46 [==============================] - 0s 901us/step - loss: 0.1780 - accuracy: 0.7847 - mae: 0.1780 - pearson_correlation: 0.3774 - euclidean_distance: 0.2948
Epoch 143/300
46/46 [==============================] - 0s 901us/step - loss: 0.1774 - accuracy: 0.7847 - mae: 0.1774 - pearson_correlation: 0.3858 - euclidean_distance: 0.2940
Epoch 144/300
46/46 [==============================] - 0s 893us/step - loss: 0.1755 - accuracy: 0.7962 - mae: 0.1755 - pearson_correlation: 0.3891 - euclidean_distance: 0.2907
Epoch 145/300
46/46 [==============================] - 0s 890us/step - loss: 0.1760 - accuracy: 0.7883 - mae: 0.1760 - pearson_correlation: 0.3944 - euclidean_distance: 0.2926
Epoch 146/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1757 - accuracy: 0.7936 - mae: 0.1757 - pearson_correlation: 0.3879 - euclidean_distance: 0.2909
Epoch 147/300
46/46 [==============================] - 0s 981us/step - loss: 0.1750 - accuracy: 0.8002 - mae: 0.1750 - pearson_correlation: 0.3973 - euclidean_distance: 0.2896
Epoch 148/300
46/46 [==============================] - 0s 905us/step - loss: 0.1725 - accuracy: 0.7958 - mae: 0.1725 - pearson_correlation: 0.4047 - euclidean_distance: 0.2865
Epoch 149/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1726 - accuracy: 0.7980 - mae: 0.1726 - pearson_correlation: 0.3993 - euclidean_distance: 0.2861
Epoch 150/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1722 - accuracy: 0.7958 - mae: 0.1722 - pearson_correlation: 0.4077 - euclidean_distance: 0.2858
Epoch 151/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1706 - accuracy: 0.7958 - mae: 0.1706 - pearson_correlation: 0.4076 - euclidean_distance: 0.2833
Epoch 152/300
46/46 [==============================] - 0s 3ms/step - loss: 0.1717 - accuracy: 0.8077 - mae: 0.1717 - pearson_correlation: 0.4070 - euclidean_distance: 0.2844
Epoch 153/300
46/46 [==============================] - 0s 4ms/step - loss: 0.1697 - accuracy: 0.7984 - mae: 0.1697 - pearson_correlation: 0.4124 - euclidean_distance: 0.2814
Epoch 154/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1683 - accuracy: 0.8024 - mae: 0.1683 - pearson_correlation: 0.4160 - euclidean_distance: 0.2789
Epoch 155/300
46/46 [==============================] - 0s 894us/step - loss: 0.1663 - accuracy: 0.8064 - mae: 0.1663 - pearson_correlation: 0.4239 - euclidean_distance: 0.2772
Epoch 156/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1673 - accuracy: 0.7997 - mae: 0.1673 - pearson_correlation: 0.4283 - euclidean_distance: 0.2781
Epoch 157/300
46/46 [==============================] - 0s 901us/step - loss: 0.1665 - accuracy: 0.8064 - mae: 0.1665 - pearson_correlation: 0.4273 - euclidean_distance: 0.2765
Epoch 158/300
46/46 [==============================] - 0s 949us/step - loss: 0.1656 - accuracy: 0.8086 - mae: 0.1656 - pearson_correlation: 0.4282 - euclidean_distance: 0.2756
Epoch 159/300
46/46 [==============================] - 0s 896us/step - loss: 0.1653 - accuracy: 0.8090 - mae: 0.1653 - pearson_correlation: 0.4345 - euclidean_distance: 0.2753
Epoch 160/300
46/46 [==============================] - 0s 882us/step - loss: 0.1628 - accuracy: 0.8094 - mae: 0.1628 - pearson_correlation: 0.4395 - euclidean_distance: 0.2710
Epoch 161/300
46/46 [==============================] - 0s 869us/step - loss: 0.1643 - accuracy: 0.8125 - mae: 0.1643 - pearson_correlation: 0.4348 - euclidean_distance: 0.2730
Epoch 162/300
46/46 [==============================] - 0s 865us/step - loss: 0.1627 - accuracy: 0.8090 - mae: 0.1627 - pearson_correlation: 0.4346 - euclidean_distance: 0.2712
Epoch 163/300
46/46 [==============================] - 0s 895us/step - loss: 0.1602 - accuracy: 0.8112 - mae: 0.1602 - pearson_correlation: 0.4446 - euclidean_distance: 0.2669
Epoch 164/300
46/46 [==============================] - 0s 918us/step - loss: 0.1598 - accuracy: 0.8116 - mae: 0.1598 - pearson_correlation: 0.4474 - euclidean_distance: 0.2667
Epoch 165/300
46/46 [==============================] - 0s 895us/step - loss: 0.1598 - accuracy: 0.8191 - mae: 0.1598 - pearson_correlation: 0.4514 - euclidean_distance: 0.2669
Epoch 166/300
46/46 [==============================] - 0s 907us/step - loss: 0.1602 - accuracy: 0.8169 - mae: 0.1602 - pearson_correlation: 0.4498 - euclidean_distance: 0.2670
Epoch 167/300
46/46 [==============================] - 0s 891us/step - loss: 0.1585 - accuracy: 0.8125 - mae: 0.1585 - pearson_correlation: 0.4475 - euclidean_distance: 0.2647
Epoch 168/300
46/46 [==============================] - 0s 905us/step - loss: 0.1577 - accuracy: 0.8244 - mae: 0.1577 - pearson_correlation: 0.4542 - euclidean_distance: 0.2632
Epoch 169/300
46/46 [==============================] - 0s 896us/step - loss: 0.1567 - accuracy: 0.8240 - mae: 0.1567 - pearson_correlation: 0.4608 - euclidean_distance: 0.2626
Epoch 170/300
46/46 [==============================] - 0s 902us/step - loss: 0.1567 - accuracy: 0.8191 - mae: 0.1567 - pearson_correlation: 0.4610 - euclidean_distance: 0.2613
Epoch 171/300
46/46 [==============================] - 0s 926us/step - loss: 0.1554 - accuracy: 0.8209 - mae: 0.1554 - pearson_correlation: 0.4653 - euclidean_distance: 0.2599
Epoch 172/300
46/46 [==============================] - 0s 904us/step - loss: 0.1549 - accuracy: 0.8213 - mae: 0.1549 - pearson_correlation: 0.4648 - euclidean_distance: 0.2592
Epoch 173/300
46/46 [==============================] - 0s 894us/step - loss: 0.1543 - accuracy: 0.8196 - mae: 0.1543 - pearson_correlation: 0.4650 - euclidean_distance: 0.2585
Epoch 174/300
46/46 [==============================] - 0s 904us/step - loss: 0.1556 - accuracy: 0.8213 - mae: 0.1556 - pearson_correlation: 0.4702 - euclidean_distance: 0.2591
Epoch 175/300
46/46 [==============================] - 0s 904us/step - loss: 0.1534 - accuracy: 0.8262 - mae: 0.1534 - pearson_correlation: 0.4731 - euclidean_distance: 0.2572
Epoch 176/300
46/46 [==============================] - 0s 899us/step - loss: 0.1533 - accuracy: 0.8249 - mae: 0.1533 - pearson_correlation: 0.4724 - euclidean_distance: 0.2570
Epoch 177/300
46/46 [==============================] - 0s 922us/step - loss: 0.1524 - accuracy: 0.8227 - mae: 0.1524 - pearson_correlation: 0.4778 - euclidean_distance: 0.2558
Epoch 178/300
46/46 [==============================] - 0s 896us/step - loss: 0.1512 - accuracy: 0.8271 - mae: 0.1512 - pearson_correlation: 0.4802 - euclidean_distance: 0.2538
Epoch 179/300
46/46 [==============================] - 0s 894us/step - loss: 0.1518 - accuracy: 0.8350 - mae: 0.1518 - pearson_correlation: 0.4826 - euclidean_distance: 0.2545
Epoch 180/300
46/46 [==============================] - 0s 895us/step - loss: 0.1498 - accuracy: 0.8346 - mae: 0.1498 - pearson_correlation: 0.4863 - euclidean_distance: 0.2512
Epoch 181/300
46/46 [==============================] - 0s 871us/step - loss: 0.1499 - accuracy: 0.8262 - mae: 0.1499 - pearson_correlation: 0.4836 - euclidean_distance: 0.2520
Epoch 182/300
46/46 [==============================] - 0s 953us/step - loss: 0.1485 - accuracy: 0.8341 - mae: 0.1485 - pearson_correlation: 0.4863 - euclidean_distance: 0.2494
Epoch 183/300
46/46 [==============================] - 0s 958us/step - loss: 0.1483 - accuracy: 0.8328 - mae: 0.1483 - pearson_correlation: 0.4928 - euclidean_distance: 0.2490
Epoch 184/300
46/46 [==============================] - 0s 907us/step - loss: 0.1481 - accuracy: 0.8315 - mae: 0.1481 - pearson_correlation: 0.4920 - euclidean_distance: 0.2493
Epoch 185/300
46/46 [==============================] - 0s 925us/step - loss: 0.1472 - accuracy: 0.8381 - mae: 0.1472 - pearson_correlation: 0.4947 - euclidean_distance: 0.2467
Epoch 186/300
46/46 [==============================] - 0s 890us/step - loss: 0.1465 - accuracy: 0.8341 - mae: 0.1465 - pearson_correlation: 0.4980 - euclidean_distance: 0.2468
Epoch 187/300
46/46 [==============================] - 0s 889us/step - loss: 0.1454 - accuracy: 0.8337 - mae: 0.1454 - pearson_correlation: 0.4978 - euclidean_distance: 0.2448
Epoch 188/300
46/46 [==============================] - 0s 908us/step - loss: 0.1452 - accuracy: 0.8381 - mae: 0.1452 - pearson_correlation: 0.4994 - euclidean_distance: 0.2445
Epoch 189/300
46/46 [==============================] - 0s 903us/step - loss: 0.1455 - accuracy: 0.8350 - mae: 0.1455 - pearson_correlation: 0.5028 - euclidean_distance: 0.2448
Epoch 190/300
46/46 [==============================] - 0s 901us/step - loss: 0.1455 - accuracy: 0.8412 - mae: 0.1455 - pearson_correlation: 0.5016 - euclidean_distance: 0.2446
Epoch 191/300
46/46 [==============================] - 0s 877us/step - loss: 0.1434 - accuracy: 0.8425 - mae: 0.1434 - pearson_correlation: 0.5078 - euclidean_distance: 0.2417
Epoch 192/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1436 - accuracy: 0.8438 - mae: 0.1436 - pearson_correlation: 0.5039 - euclidean_distance: 0.2421
Epoch 193/300
46/46 [==============================] - 0s 932us/step - loss: 0.1431 - accuracy: 0.8549 - mae: 0.1431 - pearson_correlation: 0.5137 - euclidean_distance: 0.2411
Epoch 194/300
46/46 [==============================] - 0s 911us/step - loss: 0.1413 - accuracy: 0.8447 - mae: 0.1413 - pearson_correlation: 0.5145 - euclidean_distance: 0.2388
Epoch 195/300
46/46 [==============================] - 0s 898us/step - loss: 0.1419 - accuracy: 0.8443 - mae: 0.1419 - pearson_correlation: 0.5148 - euclidean_distance: 0.2387
Epoch 196/300
46/46 [==============================] - 0s 902us/step - loss: 0.1406 - accuracy: 0.8487 - mae: 0.1406 - pearson_correlation: 0.5168 - euclidean_distance: 0.2373
Epoch 197/300
46/46 [==============================] - 0s 892us/step - loss: 0.1402 - accuracy: 0.8496 - mae: 0.1402 - pearson_correlation: 0.5226 - euclidean_distance: 0.2367
Epoch 198/300
46/46 [==============================] - 0s 898us/step - loss: 0.1400 - accuracy: 0.8518 - mae: 0.1400 - pearson_correlation: 0.5163 - euclidean_distance: 0.2363
Epoch 199/300
46/46 [==============================] - 0s 889us/step - loss: 0.1398 - accuracy: 0.8593 - mae: 0.1398 - pearson_correlation: 0.5229 - euclidean_distance: 0.2361
Epoch 200/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1383 - accuracy: 0.8562 - mae: 0.1383 - pearson_correlation: 0.5274 - euclidean_distance: 0.2340
Epoch 201/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1392 - accuracy: 0.8513 - mae: 0.1392 - pearson_correlation: 0.5215 - euclidean_distance: 0.2352
Epoch 202/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1389 - accuracy: 0.8575 - mae: 0.1389 - pearson_correlation: 0.5255 - euclidean_distance: 0.2336
Epoch 203/300
46/46 [==============================] - 0s 925us/step - loss: 0.1387 - accuracy: 0.8615 - mae: 0.1387 - pearson_correlation: 0.5341 - euclidean_distance: 0.2340
Epoch 204/300
46/46 [==============================] - 0s 933us/step - loss: 0.1373 - accuracy: 0.8544 - mae: 0.1373 - pearson_correlation: 0.5375 - euclidean_distance: 0.2319
Epoch 205/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1362 - accuracy: 0.8650 - mae: 0.1362 - pearson_correlation: 0.5380 - euclidean_distance: 0.2303
Epoch 206/300
46/46 [==============================] - 0s 903us/step - loss: 0.1371 - accuracy: 0.8655 - mae: 0.1371 - pearson_correlation: 0.5318 - euclidean_distance: 0.2318
Epoch 207/300
46/46 [==============================] - 0s 908us/step - loss: 0.1346 - accuracy: 0.8593 - mae: 0.1346 - pearson_correlation: 0.5380 - euclidean_distance: 0.2274
Epoch 208/300
46/46 [==============================] - 0s 901us/step - loss: 0.1350 - accuracy: 0.8668 - mae: 0.1350 - pearson_correlation: 0.5402 - euclidean_distance: 0.2285
Epoch 209/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1343 - accuracy: 0.8681 - mae: 0.1343 - pearson_correlation: 0.5457 - euclidean_distance: 0.2268
Epoch 210/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1340 - accuracy: 0.8681 - mae: 0.1340 - pearson_correlation: 0.5452 - euclidean_distance: 0.2269
Epoch 211/300
46/46 [==============================] - 0s 932us/step - loss: 0.1326 - accuracy: 0.8725 - mae: 0.1326 - pearson_correlation: 0.5443 - euclidean_distance: 0.2245
Epoch 212/300
46/46 [==============================] - 0s 916us/step - loss: 0.1329 - accuracy: 0.8756 - mae: 0.1329 - pearson_correlation: 0.5503 - euclidean_distance: 0.2253
Epoch 213/300
46/46 [==============================] - 0s 951us/step - loss: 0.1328 - accuracy: 0.8712 - mae: 0.1328 - pearson_correlation: 0.5478 - euclidean_distance: 0.2249
Epoch 214/300
46/46 [==============================] - 0s 910us/step - loss: 0.1315 - accuracy: 0.8725 - mae: 0.1315 - pearson_correlation: 0.5517 - euclidean_distance: 0.2229
Epoch 215/300
46/46 [==============================] - 0s 896us/step - loss: 0.1310 - accuracy: 0.8791 - mae: 0.1310 - pearson_correlation: 0.5580 - euclidean_distance: 0.2220
Epoch 216/300
46/46 [==============================] - 0s 906us/step - loss: 0.1305 - accuracy: 0.8787 - mae: 0.1305 - pearson_correlation: 0.5500 - euclidean_distance: 0.2214
Epoch 217/300
46/46 [==============================] - 0s 892us/step - loss: 0.1304 - accuracy: 0.8822 - mae: 0.1304 - pearson_correlation: 0.5585 - euclidean_distance: 0.2214
Epoch 218/300
46/46 [==============================] - 0s 899us/step - loss: 0.1301 - accuracy: 0.8818 - mae: 0.1301 - pearson_correlation: 0.5609 - euclidean_distance: 0.2202
Epoch 219/300
46/46 [==============================] - 0s 906us/step - loss: 0.1301 - accuracy: 0.8769 - mae: 0.1301 - pearson_correlation: 0.5580 - euclidean_distance: 0.2204
Epoch 220/300
46/46 [==============================] - 0s 906us/step - loss: 0.1291 - accuracy: 0.8858 - mae: 0.1291 - pearson_correlation: 0.5678 - euclidean_distance: 0.2190
Epoch 221/300
46/46 [==============================] - 0s 884us/step - loss: 0.1279 - accuracy: 0.8866 - mae: 0.1279 - pearson_correlation: 0.5628 - euclidean_distance: 0.2172
Epoch 222/300
46/46 [==============================] - 0s 906us/step - loss: 0.1276 - accuracy: 0.8760 - mae: 0.1276 - pearson_correlation: 0.5649 - euclidean_distance: 0.2164
Epoch 223/300
46/46 [==============================] - 0s 907us/step - loss: 0.1285 - accuracy: 0.8853 - mae: 0.1285 - pearson_correlation: 0.5688 - euclidean_distance: 0.2175
Epoch 224/300
46/46 [==============================] - 0s 901us/step - loss: 0.1268 - accuracy: 0.8853 - mae: 0.1268 - pearson_correlation: 0.5700 - euclidean_distance: 0.2155
Epoch 225/300
46/46 [==============================] - 0s 907us/step - loss: 0.1264 - accuracy: 0.8835 - mae: 0.1264 - pearson_correlation: 0.5743 - euclidean_distance: 0.2147
Epoch 226/300
46/46 [==============================] - 0s 896us/step - loss: 0.1265 - accuracy: 0.8862 - mae: 0.1265 - pearson_correlation: 0.5683 - euclidean_distance: 0.2139
Epoch 227/300
46/46 [==============================] - 0s 912us/step - loss: 0.1264 - accuracy: 0.8968 - mae: 0.1264 - pearson_correlation: 0.5778 - euclidean_distance: 0.2141
Epoch 228/300
46/46 [==============================] - 0s 893us/step - loss: 0.1253 - accuracy: 0.8933 - mae: 0.1253 - pearson_correlation: 0.5804 - euclidean_distance: 0.2123
Epoch 229/300
46/46 [==============================] - 0s 899us/step - loss: 0.1235 - accuracy: 0.9016 - mae: 0.1235 - pearson_correlation: 0.5888 - euclidean_distance: 0.2095
Epoch 230/300
46/46 [==============================] - 0s 882us/step - loss: 0.1249 - accuracy: 0.8999 - mae: 0.1249 - pearson_correlation: 0.5868 - euclidean_distance: 0.2116
Epoch 231/300
46/46 [==============================] - 0s 883us/step - loss: 0.1245 - accuracy: 0.8999 - mae: 0.1245 - pearson_correlation: 0.5805 - euclidean_distance: 0.2107
Epoch 232/300
46/46 [==============================] - 0s 872us/step - loss: 0.1230 - accuracy: 0.8994 - mae: 0.1230 - pearson_correlation: 0.5860 - euclidean_distance: 0.2091
Epoch 233/300
46/46 [==============================] - 0s 897us/step - loss: 0.1247 - accuracy: 0.8968 - mae: 0.1247 - pearson_correlation: 0.5843 - euclidean_distance: 0.2105
Epoch 234/300
46/46 [==============================] - 0s 884us/step - loss: 0.1249 - accuracy: 0.9038 - mae: 0.1249 - pearson_correlation: 0.5808 - euclidean_distance: 0.2117
Epoch 235/300
46/46 [==============================] - 0s 898us/step - loss: 0.1225 - accuracy: 0.9034 - mae: 0.1225 - pearson_correlation: 0.5881 - euclidean_distance: 0.2078
Epoch 236/300
46/46 [==============================] - 0s 887us/step - loss: 0.1246 - accuracy: 0.9056 - mae: 0.1246 - pearson_correlation: 0.5861 - euclidean_distance: 0.2107
Epoch 237/300
46/46 [==============================] - 0s 905us/step - loss: 0.1226 - accuracy: 0.9122 - mae: 0.1226 - pearson_correlation: 0.5892 - euclidean_distance: 0.2076
Epoch 238/300
46/46 [==============================] - 0s 896us/step - loss: 0.1207 - accuracy: 0.9069 - mae: 0.1207 - pearson_correlation: 0.5962 - euclidean_distance: 0.2048
Epoch 239/300
46/46 [==============================] - 0s 926us/step - loss: 0.1221 - accuracy: 0.9105 - mae: 0.1221 - pearson_correlation: 0.5965 - euclidean_distance: 0.2061
Epoch 240/300
46/46 [==============================] - 0s 901us/step - loss: 0.1213 - accuracy: 0.9091 - mae: 0.1213 - pearson_correlation: 0.5952 - euclidean_distance: 0.2059
Epoch 241/300
46/46 [==============================] - 0s 897us/step - loss: 0.1215 - accuracy: 0.9131 - mae: 0.1215 - pearson_correlation: 0.5970 - euclidean_distance: 0.2058
Epoch 242/300
46/46 [==============================] - 0s 950us/step - loss: 0.1214 - accuracy: 0.9149 - mae: 0.1214 - pearson_correlation: 0.6000 - euclidean_distance: 0.2054
Epoch 243/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1206 - accuracy: 0.9144 - mae: 0.1206 - pearson_correlation: 0.6000 - euclidean_distance: 0.2045
Epoch 244/300
46/46 [==============================] - 0s 971us/step - loss: 0.1203 - accuracy: 0.9153 - mae: 0.1203 - pearson_correlation: 0.6044 - euclidean_distance: 0.2033
Epoch 245/300
46/46 [==============================] - 0s 980us/step - loss: 0.1191 - accuracy: 0.9157 - mae: 0.1191 - pearson_correlation: 0.6003 - euclidean_distance: 0.2015
Epoch 246/300
46/46 [==============================] - 0s 930us/step - loss: 0.1183 - accuracy: 0.9135 - mae: 0.1183 - pearson_correlation: 0.6138 - euclidean_distance: 0.2007
Epoch 247/300
46/46 [==============================] - 0s 922us/step - loss: 0.1187 - accuracy: 0.9180 - mae: 0.1187 - pearson_correlation: 0.6078 - euclidean_distance: 0.2010
Epoch 248/300
46/46 [==============================] - 0s 884us/step - loss: 0.1175 - accuracy: 0.9259 - mae: 0.1175 - pearson_correlation: 0.6143 - euclidean_distance: 0.1991
Epoch 249/300
46/46 [==============================] - 0s 883us/step - loss: 0.1177 - accuracy: 0.9202 - mae: 0.1177 - pearson_correlation: 0.6138 - euclidean_distance: 0.1992
Epoch 250/300
46/46 [==============================] - 0s 892us/step - loss: 0.1179 - accuracy: 0.9232 - mae: 0.1179 - pearson_correlation: 0.6114 - euclidean_distance: 0.1997
Epoch 251/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1169 - accuracy: 0.9184 - mae: 0.1169 - pearson_correlation: 0.6170 - euclidean_distance: 0.1973
Epoch 252/300
46/46 [==============================] - 0s 916us/step - loss: 0.1183 - accuracy: 0.9259 - mae: 0.1183 - pearson_correlation: 0.6151 - euclidean_distance: 0.1990
Epoch 253/300
46/46 [==============================] - 0s 918us/step - loss: 0.1163 - accuracy: 0.9210 - mae: 0.1163 - pearson_correlation: 0.6177 - euclidean_distance: 0.1960
Epoch 254/300
46/46 [==============================] - 0s 913us/step - loss: 0.1180 - accuracy: 0.9316 - mae: 0.1180 - pearson_correlation: 0.6160 - euclidean_distance: 0.1987
Epoch 255/300
46/46 [==============================] - 0s 892us/step - loss: 0.1166 - accuracy: 0.9290 - mae: 0.1166 - pearson_correlation: 0.6176 - euclidean_distance: 0.1973
Epoch 256/300
46/46 [==============================] - 0s 911us/step - loss: 0.1166 - accuracy: 0.9272 - mae: 0.1166 - pearson_correlation: 0.6242 - euclidean_distance: 0.1968
Epoch 257/300
46/46 [==============================] - 0s 884us/step - loss: 0.1146 - accuracy: 0.9290 - mae: 0.1146 - pearson_correlation: 0.6277 - euclidean_distance: 0.1935
Epoch 258/300
46/46 [==============================] - 0s 899us/step - loss: 0.1159 - accuracy: 0.9303 - mae: 0.1159 - pearson_correlation: 0.6231 - euclidean_distance: 0.1948
Epoch 259/300
46/46 [==============================] - 0s 880us/step - loss: 0.1134 - accuracy: 0.9285 - mae: 0.1134 - pearson_correlation: 0.6292 - euclidean_distance: 0.1926
Epoch 260/300
46/46 [==============================] - 0s 876us/step - loss: 0.1133 - accuracy: 0.9343 - mae: 0.1133 - pearson_correlation: 0.6312 - euclidean_distance: 0.1915
Epoch 261/300
46/46 [==============================] - 0s 900us/step - loss: 0.1152 - accuracy: 0.9356 - mae: 0.1152 - pearson_correlation: 0.6255 - euclidean_distance: 0.1938
Epoch 262/300
46/46 [==============================] - 0s 899us/step - loss: 0.1134 - accuracy: 0.9360 - mae: 0.1134 - pearson_correlation: 0.6342 - euclidean_distance: 0.1909
Epoch 263/300
46/46 [==============================] - 0s 938us/step - loss: 0.1135 - accuracy: 0.9391 - mae: 0.1135 - pearson_correlation: 0.6321 - euclidean_distance: 0.1917
Epoch 264/300
46/46 [==============================] - 0s 895us/step - loss: 0.1129 - accuracy: 0.9378 - mae: 0.1129 - pearson_correlation: 0.6362 - euclidean_distance: 0.1908
Epoch 265/300
46/46 [==============================] - 0s 900us/step - loss: 0.1123 - accuracy: 0.9382 - mae: 0.1123 - pearson_correlation: 0.6446 - euclidean_distance: 0.1888
Epoch 266/300
46/46 [==============================] - 0s 888us/step - loss: 0.1121 - accuracy: 0.9360 - mae: 0.1121 - pearson_correlation: 0.6357 - euclidean_distance: 0.1896
Epoch 267/300
46/46 [==============================] - 0s 892us/step - loss: 0.1128 - accuracy: 0.9387 - mae: 0.1128 - pearson_correlation: 0.6340 - euclidean_distance: 0.1906
Epoch 268/300
46/46 [==============================] - 0s 895us/step - loss: 0.1114 - accuracy: 0.9449 - mae: 0.1114 - pearson_correlation: 0.6401 - euclidean_distance: 0.1883
Epoch 269/300
46/46 [==============================] - 0s 893us/step - loss: 0.1115 - accuracy: 0.9449 - mae: 0.1115 - pearson_correlation: 0.6443 - euclidean_distance: 0.1873
Epoch 270/300
46/46 [==============================] - 0s 904us/step - loss: 0.1121 - accuracy: 0.9427 - mae: 0.1121 - pearson_correlation: 0.6468 - euclidean_distance: 0.1884
Epoch 271/300
46/46 [==============================] - 0s 887us/step - loss: 0.1099 - accuracy: 0.9431 - mae: 0.1099 - pearson_correlation: 0.6546 - euclidean_distance: 0.1851
Epoch 272/300
46/46 [==============================] - 0s 896us/step - loss: 0.1105 - accuracy: 0.9435 - mae: 0.1105 - pearson_correlation: 0.6457 - euclidean_distance: 0.1861
Epoch 273/300
46/46 [==============================] - 0s 905us/step - loss: 0.1104 - accuracy: 0.9449 - mae: 0.1104 - pearson_correlation: 0.6494 - euclidean_distance: 0.1861
Epoch 274/300
46/46 [==============================] - 0s 969us/step - loss: 0.1090 - accuracy: 0.9462 - mae: 0.1090 - pearson_correlation: 0.6453 - euclidean_distance: 0.1836
Epoch 275/300
46/46 [==============================] - 0s 968us/step - loss: 0.1087 - accuracy: 0.9475 - mae: 0.1087 - pearson_correlation: 0.6513 - euclidean_distance: 0.1835
Epoch 276/300
46/46 [==============================] - 0s 923us/step - loss: 0.1101 - accuracy: 0.9466 - mae: 0.1101 - pearson_correlation: 0.6499 - euclidean_distance: 0.1850
Epoch 277/300
46/46 [==============================] - 0s 895us/step - loss: 0.1089 - accuracy: 0.9488 - mae: 0.1089 - pearson_correlation: 0.6468 - euclidean_distance: 0.1831
Epoch 278/300
46/46 [==============================] - 0s 900us/step - loss: 0.1082 - accuracy: 0.9493 - mae: 0.1082 - pearson_correlation: 0.6569 - euclidean_distance: 0.1819
Epoch 279/300
46/46 [==============================] - 0s 887us/step - loss: 0.1083 - accuracy: 0.9471 - mae: 0.1083 - pearson_correlation: 0.6567 - euclidean_distance: 0.1824
Epoch 280/300
46/46 [==============================] - 0s 890us/step - loss: 0.1082 - accuracy: 0.9502 - mae: 0.1082 - pearson_correlation: 0.6606 - euclidean_distance: 0.1825
Epoch 281/300
46/46 [==============================] - 0s 884us/step - loss: 0.1079 - accuracy: 0.9510 - mae: 0.1079 - pearson_correlation: 0.6622 - euclidean_distance: 0.1816
Epoch 282/300
46/46 [==============================] - 0s 883us/step - loss: 0.1064 - accuracy: 0.9488 - mae: 0.1064 - pearson_correlation: 0.6581 - euclidean_distance: 0.1798
Epoch 283/300
46/46 [==============================] - 0s 889us/step - loss: 0.1069 - accuracy: 0.9497 - mae: 0.1069 - pearson_correlation: 0.6587 - euclidean_distance: 0.1794
Epoch 284/300
46/46 [==============================] - 0s 897us/step - loss: 0.1074 - accuracy: 0.9479 - mae: 0.1074 - pearson_correlation: 0.6597 - euclidean_distance: 0.1805
Epoch 285/300
46/46 [==============================] - 0s 885us/step - loss: 0.1049 - accuracy: 0.9493 - mae: 0.1049 - pearson_correlation: 0.6666 - euclidean_distance: 0.1770
Epoch 286/300
46/46 [==============================] - 0s 886us/step - loss: 0.1048 - accuracy: 0.9497 - mae: 0.1048 - pearson_correlation: 0.6733 - euclidean_distance: 0.1763
Epoch 287/300
46/46 [==============================] - 0s 898us/step - loss: 0.1065 - accuracy: 0.9524 - mae: 0.1065 - pearson_correlation: 0.6667 - euclidean_distance: 0.1790
Epoch 288/300
46/46 [==============================] - 0s 890us/step - loss: 0.1031 - accuracy: 0.9519 - mae: 0.1031 - pearson_correlation: 0.6734 - euclidean_distance: 0.1745
Epoch 289/300
46/46 [==============================] - 0s 895us/step - loss: 0.1044 - accuracy: 0.9506 - mae: 0.1044 - pearson_correlation: 0.6685 - euclidean_distance: 0.1759
Epoch 290/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1048 - accuracy: 0.9519 - mae: 0.1048 - pearson_correlation: 0.6737 - euclidean_distance: 0.1761
Epoch 291/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1050 - accuracy: 0.9537 - mae: 0.1050 - pearson_correlation: 0.6708 - euclidean_distance: 0.1764
Epoch 292/300
46/46 [==============================] - 0s 991us/step - loss: 0.1039 - accuracy: 0.9532 - mae: 0.1039 - pearson_correlation: 0.6746 - euclidean_distance: 0.1744
Epoch 293/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1040 - accuracy: 0.9528 - mae: 0.1040 - pearson_correlation: 0.6752 - euclidean_distance: 0.1749
Epoch 294/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1030 - accuracy: 0.9537 - mae: 0.1030 - pearson_correlation: 0.6730 - euclidean_distance: 0.1731
Epoch 295/300
46/46 [==============================] - 0s 983us/step - loss: 0.1035 - accuracy: 0.9550 - mae: 0.1035 - pearson_correlation: 0.6719 - euclidean_distance: 0.1740
Epoch 296/300
46/46 [==============================] - 0s 979us/step - loss: 0.1043 - accuracy: 0.9506 - mae: 0.1043 - pearson_correlation: 0.6771 - euclidean_distance: 0.1747
Epoch 297/300
46/46 [==============================] - 0s 969us/step - loss: 0.1021 - accuracy: 0.9537 - mae: 0.1021 - pearson_correlation: 0.6844 - euclidean_distance: 0.1712
Epoch 298/300
46/46 [==============================] - 0s 920us/step - loss: 0.1012 - accuracy: 0.9541 - mae: 0.1012 - pearson_correlation: 0.6811 - euclidean_distance: 0.1698
Epoch 299/300
46/46 [==============================] - 0s 945us/step - loss: 0.1029 - accuracy: 0.9524 - mae: 0.1029 - pearson_correlation: 0.6851 - euclidean_distance: 0.1722
Epoch 300/300
46/46 [==============================] - 0s 926us/step - loss: 0.1010 - accuracy: 0.9506 - mae: 0.1010 - pearson_correlation: 0.6868 - euclidean_distance: 0.1701
23/23 [==============================] - 0s 539us/step
Epoch 1/300
46/46 [==============================] - 1s 987us/step - loss: 0.5443 - accuracy: 0.0520 - mae: 0.5443 - pearson_correlation: -0.5941 - euclidean_distance: 0.8932
Epoch 2/300
46/46 [==============================] - 0s 890us/step - loss: 0.5404 - accuracy: 0.0516 - mae: 0.5404 - pearson_correlation: -0.5980 - euclidean_distance: 0.8882
Epoch 3/300
46/46 [==============================] - 0s 901us/step - loss: 0.5354 - accuracy: 0.0516 - mae: 0.5354 - pearson_correlation: -0.5961 - euclidean_distance: 0.8819
Epoch 4/300
46/46 [==============================] - 0s 911us/step - loss: 0.5322 - accuracy: 0.0578 - mae: 0.5322 - pearson_correlation: -0.5968 - euclidean_distance: 0.8773
Epoch 5/300
46/46 [==============================] - 0s 924us/step - loss: 0.5280 - accuracy: 0.0560 - mae: 0.5280 - pearson_correlation: -0.5978 - euclidean_distance: 0.8704
Epoch 6/300
46/46 [==============================] - 0s 918us/step - loss: 0.5249 - accuracy: 0.0520 - mae: 0.5249 - pearson_correlation: -0.6019 - euclidean_distance: 0.8666
Epoch 7/300
46/46 [==============================] - 0s 906us/step - loss: 0.5214 - accuracy: 0.0507 - mae: 0.5214 - pearson_correlation: -0.5933 - euclidean_distance: 0.8614
Epoch 8/300
46/46 [==============================] - 0s 917us/step - loss: 0.5173 - accuracy: 0.0542 - mae: 0.5173 - pearson_correlation: -0.5950 - euclidean_distance: 0.8547
Epoch 9/300
46/46 [==============================] - 0s 925us/step - loss: 0.5149 - accuracy: 0.0547 - mae: 0.5149 - pearson_correlation: -0.5996 - euclidean_distance: 0.8517
Epoch 10/300
46/46 [==============================] - 0s 912us/step - loss: 0.5098 - accuracy: 0.0551 - mae: 0.5098 - pearson_correlation: -0.5946 - euclidean_distance: 0.8447
Epoch 11/300
46/46 [==============================] - 0s 918us/step - loss: 0.5071 - accuracy: 0.0542 - mae: 0.5071 - pearson_correlation: -0.5941 - euclidean_distance: 0.8398
Epoch 12/300
46/46 [==============================] - 0s 932us/step - loss: 0.5021 - accuracy: 0.0573 - mae: 0.5021 - pearson_correlation: -0.5909 - euclidean_distance: 0.8328
Epoch 13/300
46/46 [==============================] - 0s 909us/step - loss: 0.4973 - accuracy: 0.0613 - mae: 0.4973 - pearson_correlation: -0.5874 - euclidean_distance: 0.8252
Epoch 14/300
46/46 [==============================] - 0s 927us/step - loss: 0.4948 - accuracy: 0.0635 - mae: 0.4948 - pearson_correlation: -0.5870 - euclidean_distance: 0.8218
Epoch 15/300
46/46 [==============================] - 0s 955us/step - loss: 0.4929 - accuracy: 0.0631 - mae: 0.4929 - pearson_correlation: -0.5844 - euclidean_distance: 0.8183
Epoch 16/300
46/46 [==============================] - 0s 919us/step - loss: 0.4883 - accuracy: 0.0661 - mae: 0.4883 - pearson_correlation: -0.5894 - euclidean_distance: 0.8109
Epoch 17/300
46/46 [==============================] - 0s 949us/step - loss: 0.4835 - accuracy: 0.0613 - mae: 0.4835 - pearson_correlation: -0.5880 - euclidean_distance: 0.8050
Epoch 18/300
46/46 [==============================] - 0s 1ms/step - loss: 0.4801 - accuracy: 0.0608 - mae: 0.4801 - pearson_correlation: -0.5789 - euclidean_distance: 0.7990
Epoch 19/300
46/46 [==============================] - 0s 997us/step - loss: 0.4771 - accuracy: 0.0675 - mae: 0.4771 - pearson_correlation: -0.5820 - euclidean_distance: 0.7938
Epoch 20/300
46/46 [==============================] - 0s 947us/step - loss: 0.4728 - accuracy: 0.0657 - mae: 0.4728 - pearson_correlation: -0.5779 - euclidean_distance: 0.7881
Epoch 21/300
46/46 [==============================] - 0s 967us/step - loss: 0.4698 - accuracy: 0.0683 - mae: 0.4698 - pearson_correlation: -0.5759 - euclidean_distance: 0.7818
Epoch 22/300
46/46 [==============================] - 0s 914us/step - loss: 0.4658 - accuracy: 0.0657 - mae: 0.4658 - pearson_correlation: -0.5751 - euclidean_distance: 0.7770
Epoch 23/300
46/46 [==============================] - 0s 916us/step - loss: 0.4615 - accuracy: 0.0767 - mae: 0.4615 - pearson_correlation: -0.5679 - euclidean_distance: 0.7691
Epoch 24/300
46/46 [==============================] - 0s 901us/step - loss: 0.4575 - accuracy: 0.0736 - mae: 0.4575 - pearson_correlation: -0.5681 - euclidean_distance: 0.7642
Epoch 25/300
46/46 [==============================] - 0s 916us/step - loss: 0.4541 - accuracy: 0.0811 - mae: 0.4541 - pearson_correlation: -0.5615 - euclidean_distance: 0.7584
Epoch 26/300
46/46 [==============================] - 0s 922us/step - loss: 0.4510 - accuracy: 0.0811 - mae: 0.4510 - pearson_correlation: -0.5610 - euclidean_distance: 0.7520
Epoch 27/300
46/46 [==============================] - 0s 919us/step - loss: 0.4478 - accuracy: 0.0833 - mae: 0.4478 - pearson_correlation: -0.5581 - euclidean_distance: 0.7480
Epoch 28/300
46/46 [==============================] - 0s 933us/step - loss: 0.4439 - accuracy: 0.0802 - mae: 0.4439 - pearson_correlation: -0.5541 - euclidean_distance: 0.7417
Epoch 29/300
46/46 [==============================] - 0s 925us/step - loss: 0.4401 - accuracy: 0.0789 - mae: 0.4401 - pearson_correlation: -0.5512 - euclidean_distance: 0.7363
Epoch 30/300
46/46 [==============================] - 0s 1ms/step - loss: 0.4355 - accuracy: 0.0864 - mae: 0.4355 - pearson_correlation: -0.5454 - euclidean_distance: 0.7287
Epoch 31/300
46/46 [==============================] - 0s 1ms/step - loss: 0.4333 - accuracy: 0.0851 - mae: 0.4333 - pearson_correlation: -0.5462 - euclidean_distance: 0.7245
Epoch 32/300
46/46 [==============================] - 0s 1ms/step - loss: 0.4297 - accuracy: 0.0886 - mae: 0.4297 - pearson_correlation: -0.5421 - euclidean_distance: 0.7185
Epoch 33/300
46/46 [==============================] - 0s 960us/step - loss: 0.4267 - accuracy: 0.0926 - mae: 0.4267 - pearson_correlation: -0.5371 - euclidean_distance: 0.7129
Epoch 34/300
46/46 [==============================] - 0s 1ms/step - loss: 0.4236 - accuracy: 0.0974 - mae: 0.4236 - pearson_correlation: -0.5216 - euclidean_distance: 0.7077
Epoch 35/300
46/46 [==============================] - 0s 1ms/step - loss: 0.4177 - accuracy: 0.0970 - mae: 0.4177 - pearson_correlation: -0.5317 - euclidean_distance: 0.6996
Epoch 36/300
46/46 [==============================] - 0s 920us/step - loss: 0.4143 - accuracy: 0.1036 - mae: 0.4143 - pearson_correlation: -0.5184 - euclidean_distance: 0.6933
Epoch 37/300
46/46 [==============================] - 0s 957us/step - loss: 0.4095 - accuracy: 0.1014 - mae: 0.4095 - pearson_correlation: -0.5216 - euclidean_distance: 0.6863
Epoch 38/300
46/46 [==============================] - 0s 968us/step - loss: 0.4075 - accuracy: 0.1049 - mae: 0.4075 - pearson_correlation: -0.5140 - euclidean_distance: 0.6817
Epoch 39/300
46/46 [==============================] - 0s 978us/step - loss: 0.4035 - accuracy: 0.1023 - mae: 0.4035 - pearson_correlation: -0.5063 - euclidean_distance: 0.6765
Epoch 40/300
46/46 [==============================] - 0s 923us/step - loss: 0.4005 - accuracy: 0.1063 - mae: 0.4005 - pearson_correlation: -0.5059 - euclidean_distance: 0.6710
Epoch 41/300
46/46 [==============================] - 0s 972us/step - loss: 0.3981 - accuracy: 0.1102 - mae: 0.3981 - pearson_correlation: -0.4991 - euclidean_distance: 0.6656
Epoch 42/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3941 - accuracy: 0.1142 - mae: 0.3941 - pearson_correlation: -0.4920 - euclidean_distance: 0.6597
Epoch 43/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3898 - accuracy: 0.1155 - mae: 0.3898 - pearson_correlation: -0.4882 - euclidean_distance: 0.6524
Epoch 44/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3853 - accuracy: 0.1133 - mae: 0.3853 - pearson_correlation: -0.4799 - euclidean_distance: 0.6458
Epoch 45/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3821 - accuracy: 0.1270 - mae: 0.3821 - pearson_correlation: -0.4651 - euclidean_distance: 0.6393
Epoch 46/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3787 - accuracy: 0.1340 - mae: 0.3787 - pearson_correlation: -0.4560 - euclidean_distance: 0.6332
Epoch 47/300
46/46 [==============================] - 0s 966us/step - loss: 0.3750 - accuracy: 0.1336 - mae: 0.3750 - pearson_correlation: -0.4564 - euclidean_distance: 0.6285
Epoch 48/300
46/46 [==============================] - 0s 960us/step - loss: 0.3722 - accuracy: 0.1314 - mae: 0.3722 - pearson_correlation: -0.4557 - euclidean_distance: 0.6234
Epoch 49/300
46/46 [==============================] - 0s 927us/step - loss: 0.3674 - accuracy: 0.1349 - mae: 0.3674 - pearson_correlation: -0.4460 - euclidean_distance: 0.6163
Epoch 50/300
46/46 [==============================] - 0s 950us/step - loss: 0.3628 - accuracy: 0.1384 - mae: 0.3628 - pearson_correlation: -0.4320 - euclidean_distance: 0.6089
Epoch 51/300
46/46 [==============================] - 0s 906us/step - loss: 0.3607 - accuracy: 0.1468 - mae: 0.3607 - pearson_correlation: -0.4234 - euclidean_distance: 0.6040
Epoch 52/300
46/46 [==============================] - 0s 912us/step - loss: 0.3554 - accuracy: 0.1442 - mae: 0.3554 - pearson_correlation: -0.4160 - euclidean_distance: 0.5957
Epoch 53/300
46/46 [==============================] - 0s 899us/step - loss: 0.3530 - accuracy: 0.1521 - mae: 0.3530 - pearson_correlation: -0.4137 - euclidean_distance: 0.5915
Epoch 54/300
46/46 [==============================] - 0s 872us/step - loss: 0.3496 - accuracy: 0.1570 - mae: 0.3496 - pearson_correlation: -0.4001 - euclidean_distance: 0.5848
Epoch 55/300
46/46 [==============================] - 0s 968us/step - loss: 0.3473 - accuracy: 0.1689 - mae: 0.3473 - pearson_correlation: -0.3915 - euclidean_distance: 0.5799
Epoch 56/300
46/46 [==============================] - 0s 997us/step - loss: 0.3421 - accuracy: 0.1711 - mae: 0.3421 - pearson_correlation: -0.3819 - euclidean_distance: 0.5731
Epoch 57/300
46/46 [==============================] - 0s 910us/step - loss: 0.3382 - accuracy: 0.1843 - mae: 0.3382 - pearson_correlation: -0.3737 - euclidean_distance: 0.5662
Epoch 58/300
46/46 [==============================] - 0s 877us/step - loss: 0.3339 - accuracy: 0.1878 - mae: 0.3339 - pearson_correlation: -0.3670 - euclidean_distance: 0.5603
Epoch 59/300
46/46 [==============================] - 0s 983us/step - loss: 0.3317 - accuracy: 0.1962 - mae: 0.3317 - pearson_correlation: -0.3487 - euclidean_distance: 0.5551
Epoch 60/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3269 - accuracy: 0.2121 - mae: 0.3269 - pearson_correlation: -0.3433 - euclidean_distance: 0.5476
Epoch 61/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3242 - accuracy: 0.2174 - mae: 0.3242 - pearson_correlation: -0.3390 - euclidean_distance: 0.5424
Epoch 62/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3205 - accuracy: 0.2346 - mae: 0.3205 - pearson_correlation: -0.3188 - euclidean_distance: 0.5353
Epoch 63/300
46/46 [==============================] - 0s 1ms/step - loss: 0.3159 - accuracy: 0.2403 - mae: 0.3159 - pearson_correlation: -0.3036 - euclidean_distance: 0.5282
Epoch 64/300
46/46 [==============================] - 0s 963us/step - loss: 0.3124 - accuracy: 0.2557 - mae: 0.3124 - pearson_correlation: -0.2972 - euclidean_distance: 0.5223
Epoch 65/300
46/46 [==============================] - 0s 960us/step - loss: 0.3082 - accuracy: 0.2641 - mae: 0.3082 - pearson_correlation: -0.2917 - euclidean_distance: 0.5162
Epoch 66/300
46/46 [==============================] - 0s 907us/step - loss: 0.3039 - accuracy: 0.2738 - mae: 0.3039 - pearson_correlation: -0.2746 - euclidean_distance: 0.5090
Epoch 67/300
46/46 [==============================] - 0s 944us/step - loss: 0.3007 - accuracy: 0.2831 - mae: 0.3007 - pearson_correlation: -0.2638 - euclidean_distance: 0.5035
Epoch 68/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2969 - accuracy: 0.2972 - mae: 0.2969 - pearson_correlation: -0.2494 - euclidean_distance: 0.4963
Epoch 69/300
46/46 [==============================] - 0s 981us/step - loss: 0.2932 - accuracy: 0.3091 - mae: 0.2932 - pearson_correlation: -0.2360 - euclidean_distance: 0.4897
Epoch 70/300
46/46 [==============================] - 0s 931us/step - loss: 0.2881 - accuracy: 0.3214 - mae: 0.2881 - pearson_correlation: -0.2146 - euclidean_distance: 0.4826
Epoch 71/300
46/46 [==============================] - 0s 998us/step - loss: 0.2838 - accuracy: 0.3316 - mae: 0.2838 - pearson_correlation: -0.2103 - euclidean_distance: 0.4758
Epoch 72/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2810 - accuracy: 0.3457 - mae: 0.2810 - pearson_correlation: -0.1887 - euclidean_distance: 0.4695
Epoch 73/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2778 - accuracy: 0.3510 - mae: 0.2778 - pearson_correlation: -0.1699 - euclidean_distance: 0.4638
Epoch 74/300
46/46 [==============================] - 0s 956us/step - loss: 0.2734 - accuracy: 0.3629 - mae: 0.2734 - pearson_correlation: -0.1542 - euclidean_distance: 0.4573
Epoch 75/300
46/46 [==============================] - 0s 981us/step - loss: 0.2692 - accuracy: 0.3779 - mae: 0.2692 - pearson_correlation: -0.1478 - euclidean_distance: 0.4498
Epoch 76/300
46/46 [==============================] - 0s 952us/step - loss: 0.2648 - accuracy: 0.3880 - mae: 0.2648 - pearson_correlation: -0.1289 - euclidean_distance: 0.4428
Epoch 77/300
46/46 [==============================] - 0s 936us/step - loss: 0.2627 - accuracy: 0.3986 - mae: 0.2627 - pearson_correlation: -0.1125 - euclidean_distance: 0.4384
Epoch 78/300
46/46 [==============================] - 0s 981us/step - loss: 0.2579 - accuracy: 0.4153 - mae: 0.2579 - pearson_correlation: -0.0927 - euclidean_distance: 0.4293
Epoch 79/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2549 - accuracy: 0.4281 - mae: 0.2549 - pearson_correlation: -0.0665 - euclidean_distance: 0.4242
Epoch 80/300
46/46 [==============================] - 0s 977us/step - loss: 0.2487 - accuracy: 0.4458 - mae: 0.2487 - pearson_correlation: -0.0547 - euclidean_distance: 0.4154
Epoch 81/300
46/46 [==============================] - 0s 904us/step - loss: 0.2475 - accuracy: 0.4638 - mae: 0.2475 - pearson_correlation: -0.0387 - euclidean_distance: 0.4114
Epoch 82/300
46/46 [==============================] - 0s 892us/step - loss: 0.2425 - accuracy: 0.4722 - mae: 0.2425 - pearson_correlation: -0.0249 - euclidean_distance: 0.4031
Epoch 83/300
46/46 [==============================] - 0s 885us/step - loss: 0.2405 - accuracy: 0.4797 - mae: 0.2405 - pearson_correlation: -0.0109 - euclidean_distance: 0.3995
Epoch 84/300
46/46 [==============================] - 0s 881us/step - loss: 0.2371 - accuracy: 0.5000 - mae: 0.2371 - pearson_correlation: 0.0072 - euclidean_distance: 0.3931
Epoch 85/300
46/46 [==============================] - 0s 896us/step - loss: 0.2337 - accuracy: 0.5137 - mae: 0.2337 - pearson_correlation: 0.0362 - euclidean_distance: 0.3874
Epoch 86/300
46/46 [==============================] - 0s 905us/step - loss: 0.2301 - accuracy: 0.5243 - mae: 0.2301 - pearson_correlation: 0.0491 - euclidean_distance: 0.3812
Epoch 87/300
46/46 [==============================] - 0s 921us/step - loss: 0.2244 - accuracy: 0.5326 - mae: 0.2244 - pearson_correlation: 0.0644 - euclidean_distance: 0.3726
Epoch 88/300
46/46 [==============================] - 0s 869us/step - loss: 0.2226 - accuracy: 0.5450 - mae: 0.2226 - pearson_correlation: 0.0777 - euclidean_distance: 0.3689
Epoch 89/300
46/46 [==============================] - 0s 932us/step - loss: 0.2189 - accuracy: 0.5578 - mae: 0.2189 - pearson_correlation: 0.0988 - euclidean_distance: 0.3618
Epoch 90/300
46/46 [==============================] - 0s 934us/step - loss: 0.2150 - accuracy: 0.5635 - mae: 0.2150 - pearson_correlation: 0.1189 - euclidean_distance: 0.3561
Epoch 91/300
46/46 [==============================] - 0s 948us/step - loss: 0.2112 - accuracy: 0.5758 - mae: 0.2112 - pearson_correlation: 0.1297 - euclidean_distance: 0.3502
Epoch 92/300
46/46 [==============================] - 0s 994us/step - loss: 0.2114 - accuracy: 0.5811 - mae: 0.2114 - pearson_correlation: 0.1382 - euclidean_distance: 0.3493
Epoch 93/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2063 - accuracy: 0.5974 - mae: 0.2063 - pearson_correlation: 0.1629 - euclidean_distance: 0.3408
Epoch 94/300
46/46 [==============================] - 0s 1ms/step - loss: 0.2046 - accuracy: 0.6195 - mae: 0.2046 - pearson_correlation: 0.1746 - euclidean_distance: 0.3372
Epoch 95/300
46/46 [==============================] - 0s 982us/step - loss: 0.2009 - accuracy: 0.6235 - mae: 0.2009 - pearson_correlation: 0.1982 - euclidean_distance: 0.3314
Epoch 96/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1977 - accuracy: 0.6336 - mae: 0.1977 - pearson_correlation: 0.2067 - euclidean_distance: 0.3271
Epoch 97/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1957 - accuracy: 0.6424 - mae: 0.1957 - pearson_correlation: 0.2192 - euclidean_distance: 0.3227
Epoch 98/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1920 - accuracy: 0.6618 - mae: 0.1920 - pearson_correlation: 0.2338 - euclidean_distance: 0.3167
Epoch 99/300
46/46 [==============================] - 0s 992us/step - loss: 0.1905 - accuracy: 0.6772 - mae: 0.1905 - pearson_correlation: 0.2480 - euclidean_distance: 0.3138
Epoch 100/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1878 - accuracy: 0.6878 - mae: 0.1878 - pearson_correlation: 0.2669 - euclidean_distance: 0.3089
Epoch 101/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1852 - accuracy: 0.7037 - mae: 0.1852 - pearson_correlation: 0.2756 - euclidean_distance: 0.3046
Epoch 102/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1832 - accuracy: 0.7222 - mae: 0.1832 - pearson_correlation: 0.2895 - euclidean_distance: 0.3006
Epoch 103/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1809 - accuracy: 0.7438 - mae: 0.1809 - pearson_correlation: 0.3054 - euclidean_distance: 0.2970
Epoch 104/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1795 - accuracy: 0.7390 - mae: 0.1795 - pearson_correlation: 0.3070 - euclidean_distance: 0.2943
Epoch 105/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1774 - accuracy: 0.7703 - mae: 0.1774 - pearson_correlation: 0.3240 - euclidean_distance: 0.2901
Epoch 106/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1749 - accuracy: 0.7809 - mae: 0.1749 - pearson_correlation: 0.3383 - euclidean_distance: 0.2859
Epoch 107/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1725 - accuracy: 0.7928 - mae: 0.1725 - pearson_correlation: 0.3395 - euclidean_distance: 0.2828
Epoch 108/300
46/46 [==============================] - 0s 926us/step - loss: 0.1734 - accuracy: 0.7954 - mae: 0.1734 - pearson_correlation: 0.3472 - euclidean_distance: 0.2831
Epoch 109/300
46/46 [==============================] - 0s 938us/step - loss: 0.1714 - accuracy: 0.8122 - mae: 0.1714 - pearson_correlation: 0.3613 - euclidean_distance: 0.2798
Epoch 110/300
46/46 [==============================] - 0s 926us/step - loss: 0.1680 - accuracy: 0.8377 - mae: 0.1680 - pearson_correlation: 0.3704 - euclidean_distance: 0.2741
Epoch 111/300
46/46 [==============================] - 0s 928us/step - loss: 0.1675 - accuracy: 0.8404 - mae: 0.1675 - pearson_correlation: 0.3762 - euclidean_distance: 0.2730
Epoch 112/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1628 - accuracy: 0.8523 - mae: 0.1628 - pearson_correlation: 0.4025 - euclidean_distance: 0.2653
Epoch 113/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1652 - accuracy: 0.8589 - mae: 0.1652 - pearson_correlation: 0.3997 - euclidean_distance: 0.2683
Epoch 114/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1619 - accuracy: 0.8633 - mae: 0.1619 - pearson_correlation: 0.4130 - euclidean_distance: 0.2635
Epoch 115/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1624 - accuracy: 0.8801 - mae: 0.1624 - pearson_correlation: 0.4079 - euclidean_distance: 0.2638
Epoch 116/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1581 - accuracy: 0.8832 - mae: 0.1581 - pearson_correlation: 0.4311 - euclidean_distance: 0.2569
Epoch 117/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1576 - accuracy: 0.8845 - mae: 0.1576 - pearson_correlation: 0.4326 - euclidean_distance: 0.2565
Epoch 118/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1561 - accuracy: 0.8924 - mae: 0.1561 - pearson_correlation: 0.4430 - euclidean_distance: 0.2538
Epoch 119/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1570 - accuracy: 0.9030 - mae: 0.1570 - pearson_correlation: 0.4459 - euclidean_distance: 0.2543
Epoch 120/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1542 - accuracy: 0.9034 - mae: 0.1542 - pearson_correlation: 0.4497 - euclidean_distance: 0.2507
Epoch 121/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1544 - accuracy: 0.9105 - mae: 0.1544 - pearson_correlation: 0.4585 - euclidean_distance: 0.2501
Epoch 122/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1499 - accuracy: 0.9105 - mae: 0.1499 - pearson_correlation: 0.4700 - euclidean_distance: 0.2437
Epoch 123/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1502 - accuracy: 0.9149 - mae: 0.1502 - pearson_correlation: 0.4777 - euclidean_distance: 0.2431
Epoch 124/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1508 - accuracy: 0.9162 - mae: 0.1508 - pearson_correlation: 0.4793 - euclidean_distance: 0.2434
Epoch 125/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1482 - accuracy: 0.9193 - mae: 0.1482 - pearson_correlation: 0.4847 - euclidean_distance: 0.2396
Epoch 126/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1458 - accuracy: 0.9281 - mae: 0.1458 - pearson_correlation: 0.4974 - euclidean_distance: 0.2358
Epoch 127/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1467 - accuracy: 0.9330 - mae: 0.1467 - pearson_correlation: 0.4977 - euclidean_distance: 0.2376
Epoch 128/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1446 - accuracy: 0.9339 - mae: 0.1446 - pearson_correlation: 0.5051 - euclidean_distance: 0.2346
Epoch 129/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1430 - accuracy: 0.9356 - mae: 0.1430 - pearson_correlation: 0.5122 - euclidean_distance: 0.2314
Epoch 130/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1432 - accuracy: 0.9347 - mae: 0.1432 - pearson_correlation: 0.5186 - euclidean_distance: 0.2309
Epoch 131/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1416 - accuracy: 0.9339 - mae: 0.1416 - pearson_correlation: 0.5215 - euclidean_distance: 0.2278
Epoch 132/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1417 - accuracy: 0.9369 - mae: 0.1417 - pearson_correlation: 0.5252 - euclidean_distance: 0.2282
Epoch 133/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1418 - accuracy: 0.9356 - mae: 0.1418 - pearson_correlation: 0.5282 - euclidean_distance: 0.2285
Epoch 134/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1393 - accuracy: 0.9387 - mae: 0.1393 - pearson_correlation: 0.5258 - euclidean_distance: 0.2242
Epoch 135/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1368 - accuracy: 0.9392 - mae: 0.1368 - pearson_correlation: 0.5443 - euclidean_distance: 0.2209
Epoch 136/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1379 - accuracy: 0.9409 - mae: 0.1379 - pearson_correlation: 0.5466 - euclidean_distance: 0.2221
Epoch 137/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1371 - accuracy: 0.9405 - mae: 0.1371 - pearson_correlation: 0.5480 - euclidean_distance: 0.2208
Epoch 138/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1354 - accuracy: 0.9453 - mae: 0.1354 - pearson_correlation: 0.5534 - euclidean_distance: 0.2177
Epoch 139/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1322 - accuracy: 0.9427 - mae: 0.1322 - pearson_correlation: 0.5693 - euclidean_distance: 0.2129
Epoch 140/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1332 - accuracy: 0.9427 - mae: 0.1332 - pearson_correlation: 0.5631 - euclidean_distance: 0.2146
Epoch 141/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1322 - accuracy: 0.9396 - mae: 0.1322 - pearson_correlation: 0.5730 - euclidean_distance: 0.2132
Epoch 142/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1312 - accuracy: 0.9449 - mae: 0.1312 - pearson_correlation: 0.5819 - euclidean_distance: 0.2113
Epoch 143/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1309 - accuracy: 0.9436 - mae: 0.1309 - pearson_correlation: 0.5720 - euclidean_distance: 0.2101
Epoch 144/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1310 - accuracy: 0.9449 - mae: 0.1310 - pearson_correlation: 0.5820 - euclidean_distance: 0.2102
Epoch 145/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1291 - accuracy: 0.9462 - mae: 0.1291 - pearson_correlation: 0.5866 - euclidean_distance: 0.2075
Epoch 146/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1293 - accuracy: 0.9466 - mae: 0.1293 - pearson_correlation: 0.5816 - euclidean_distance: 0.2079
Epoch 147/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1275 - accuracy: 0.9466 - mae: 0.1275 - pearson_correlation: 0.5887 - euclidean_distance: 0.2048
Epoch 148/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1262 - accuracy: 0.9466 - mae: 0.1262 - pearson_correlation: 0.5948 - euclidean_distance: 0.2022
Epoch 149/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1265 - accuracy: 0.9471 - mae: 0.1265 - pearson_correlation: 0.6011 - euclidean_distance: 0.2031
Epoch 150/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1260 - accuracy: 0.9480 - mae: 0.1260 - pearson_correlation: 0.6063 - euclidean_distance: 0.2019
Epoch 151/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1253 - accuracy: 0.9475 - mae: 0.1253 - pearson_correlation: 0.6104 - euclidean_distance: 0.2006
Epoch 152/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1236 - accuracy: 0.9489 - mae: 0.1236 - pearson_correlation: 0.6104 - euclidean_distance: 0.1985
Epoch 153/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1218 - accuracy: 0.9497 - mae: 0.1218 - pearson_correlation: 0.6189 - euclidean_distance: 0.1959
Epoch 154/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1224 - accuracy: 0.9484 - mae: 0.1224 - pearson_correlation: 0.6194 - euclidean_distance: 0.1959
Epoch 155/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1217 - accuracy: 0.9511 - mae: 0.1217 - pearson_correlation: 0.6167 - euclidean_distance: 0.1950
Epoch 156/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1209 - accuracy: 0.9519 - mae: 0.1209 - pearson_correlation: 0.6263 - euclidean_distance: 0.1943
Epoch 157/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1208 - accuracy: 0.9497 - mae: 0.1208 - pearson_correlation: 0.6238 - euclidean_distance: 0.1940
Epoch 158/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1193 - accuracy: 0.9502 - mae: 0.1193 - pearson_correlation: 0.6302 - euclidean_distance: 0.1908
Epoch 159/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1193 - accuracy: 0.9511 - mae: 0.1193 - pearson_correlation: 0.6305 - euclidean_distance: 0.1908
Epoch 160/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1196 - accuracy: 0.9502 - mae: 0.1196 - pearson_correlation: 0.6310 - euclidean_distance: 0.1917
Epoch 161/300
46/46 [==============================] - 0s 985us/step - loss: 0.1167 - accuracy: 0.9493 - mae: 0.1167 - pearson_correlation: 0.6423 - euclidean_distance: 0.1873
Epoch 162/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1173 - accuracy: 0.9506 - mae: 0.1173 - pearson_correlation: 0.6360 - euclidean_distance: 0.1879
Epoch 163/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1168 - accuracy: 0.9506 - mae: 0.1168 - pearson_correlation: 0.6397 - euclidean_distance: 0.1871
Epoch 164/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1168 - accuracy: 0.9511 - mae: 0.1168 - pearson_correlation: 0.6438 - euclidean_distance: 0.1875
Epoch 165/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1176 - accuracy: 0.9515 - mae: 0.1176 - pearson_correlation: 0.6425 - euclidean_distance: 0.1877
Epoch 166/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1131 - accuracy: 0.9515 - mae: 0.1131 - pearson_correlation: 0.6527 - euclidean_distance: 0.1815
Epoch 167/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1141 - accuracy: 0.9537 - mae: 0.1141 - pearson_correlation: 0.6552 - euclidean_distance: 0.1829
Epoch 168/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1145 - accuracy: 0.9524 - mae: 0.1145 - pearson_correlation: 0.6503 - euclidean_distance: 0.1833
Epoch 169/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1148 - accuracy: 0.9515 - mae: 0.1148 - pearson_correlation: 0.6518 - euclidean_distance: 0.1839
Epoch 170/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1129 - accuracy: 0.9515 - mae: 0.1129 - pearson_correlation: 0.6607 - euclidean_distance: 0.1806
Epoch 171/300
46/46 [==============================] - 0s 993us/step - loss: 0.1147 - accuracy: 0.9528 - mae: 0.1147 - pearson_correlation: 0.6532 - euclidean_distance: 0.1838
Epoch 172/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1114 - accuracy: 0.9524 - mae: 0.1114 - pearson_correlation: 0.6590 - euclidean_distance: 0.1785
Epoch 173/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1101 - accuracy: 0.9524 - mae: 0.1101 - pearson_correlation: 0.6658 - euclidean_distance: 0.1767
Epoch 174/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1097 - accuracy: 0.9524 - mae: 0.1097 - pearson_correlation: 0.6659 - euclidean_distance: 0.1762
Epoch 175/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1120 - accuracy: 0.9541 - mae: 0.1120 - pearson_correlation: 0.6638 - euclidean_distance: 0.1793
Epoch 176/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1118 - accuracy: 0.9537 - mae: 0.1118 - pearson_correlation: 0.6666 - euclidean_distance: 0.1793
Epoch 177/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1080 - accuracy: 0.9533 - mae: 0.1080 - pearson_correlation: 0.6730 - euclidean_distance: 0.1733
Epoch 178/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1071 - accuracy: 0.9511 - mae: 0.1071 - pearson_correlation: 0.6819 - euclidean_distance: 0.1719
Epoch 179/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1085 - accuracy: 0.9511 - mae: 0.1085 - pearson_correlation: 0.6733 - euclidean_distance: 0.1743
Epoch 180/300
46/46 [==============================] - 0s 948us/step - loss: 0.1079 - accuracy: 0.9528 - mae: 0.1079 - pearson_correlation: 0.6778 - euclidean_distance: 0.1733
Epoch 181/300
46/46 [==============================] - 0s 935us/step - loss: 0.1071 - accuracy: 0.9546 - mae: 0.1071 - pearson_correlation: 0.6826 - euclidean_distance: 0.1717
Epoch 182/300
46/46 [==============================] - 0s 942us/step - loss: 0.1066 - accuracy: 0.9528 - mae: 0.1066 - pearson_correlation: 0.6788 - euclidean_distance: 0.1709
Epoch 183/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1085 - accuracy: 0.9524 - mae: 0.1085 - pearson_correlation: 0.6779 - euclidean_distance: 0.1742
Epoch 184/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1055 - accuracy: 0.9528 - mae: 0.1055 - pearson_correlation: 0.6874 - euclidean_distance: 0.1696
Epoch 185/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1038 - accuracy: 0.9541 - mae: 0.1038 - pearson_correlation: 0.6948 - euclidean_distance: 0.1667
Epoch 186/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1035 - accuracy: 0.9555 - mae: 0.1035 - pearson_correlation: 0.6908 - euclidean_distance: 0.1660
Epoch 187/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1041 - accuracy: 0.9537 - mae: 0.1041 - pearson_correlation: 0.6933 - euclidean_distance: 0.1667
Epoch 188/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1024 - accuracy: 0.9541 - mae: 0.1024 - pearson_correlation: 0.6992 - euclidean_distance: 0.1648
Epoch 189/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1053 - accuracy: 0.9546 - mae: 0.1053 - pearson_correlation: 0.6807 - euclidean_distance: 0.1688
Epoch 190/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1052 - accuracy: 0.9528 - mae: 0.1052 - pearson_correlation: 0.6940 - euclidean_distance: 0.1684
Epoch 191/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1040 - accuracy: 0.9537 - mae: 0.1040 - pearson_correlation: 0.6952 - euclidean_distance: 0.1665
Epoch 192/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1016 - accuracy: 0.9555 - mae: 0.1016 - pearson_correlation: 0.6999 - euclidean_distance: 0.1634
Epoch 193/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1014 - accuracy: 0.9533 - mae: 0.1014 - pearson_correlation: 0.7018 - euclidean_distance: 0.1630
Epoch 194/300
46/46 [==============================] - 0s 995us/step - loss: 0.1018 - accuracy: 0.9541 - mae: 0.1018 - pearson_correlation: 0.6979 - euclidean_distance: 0.1634
Epoch 195/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1021 - accuracy: 0.9550 - mae: 0.1021 - pearson_correlation: 0.6981 - euclidean_distance: 0.1640
Epoch 196/300
46/46 [==============================] - 0s 2ms/step - loss: 0.1004 - accuracy: 0.9541 - mae: 0.1004 - pearson_correlation: 0.7047 - euclidean_distance: 0.1611
Epoch 197/300
46/46 [==============================] - 0s 1ms/step - loss: 0.1016 - accuracy: 0.9541 - mae: 0.1016 - pearson_correlation: 0.7025 - euclidean_distance: 0.1634
Epoch 198/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0978 - accuracy: 0.9550 - mae: 0.0978 - pearson_correlation: 0.7144 - euclidean_distance: 0.1577
Epoch 199/300
46/46 [==============================] - 0s 988us/step - loss: 0.1013 - accuracy: 0.9546 - mae: 0.1013 - pearson_correlation: 0.7036 - euclidean_distance: 0.1625
Epoch 200/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0990 - accuracy: 0.9550 - mae: 0.0990 - pearson_correlation: 0.7142 - euclidean_distance: 0.1591
Epoch 201/300
46/46 [==============================] - 0s 947us/step - loss: 0.0996 - accuracy: 0.9550 - mae: 0.0996 - pearson_correlation: 0.7066 - euclidean_distance: 0.1597
Epoch 202/300
46/46 [==============================] - 0s 908us/step - loss: 0.1022 - accuracy: 0.9541 - mae: 0.1022 - pearson_correlation: 0.6936 - euclidean_distance: 0.1644
Epoch 203/300
46/46 [==============================] - 0s 914us/step - loss: 0.0974 - accuracy: 0.9541 - mae: 0.0974 - pearson_correlation: 0.7170 - euclidean_distance: 0.1566
Epoch 204/300
46/46 [==============================] - 0s 926us/step - loss: 0.0972 - accuracy: 0.9541 - mae: 0.0972 - pearson_correlation: 0.7110 - euclidean_distance: 0.1565
Epoch 205/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0990 - accuracy: 0.9541 - mae: 0.0990 - pearson_correlation: 0.7128 - euclidean_distance: 0.1593
Epoch 206/300
46/46 [==============================] - 0s 938us/step - loss: 0.0962 - accuracy: 0.9546 - mae: 0.0962 - pearson_correlation: 0.7148 - euclidean_distance: 0.1547
Epoch 207/300
46/46 [==============================] - 0s 967us/step - loss: 0.0961 - accuracy: 0.9541 - mae: 0.0961 - pearson_correlation: 0.7201 - euclidean_distance: 0.1545
Epoch 208/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0956 - accuracy: 0.9555 - mae: 0.0956 - pearson_correlation: 0.7273 - euclidean_distance: 0.1538
Epoch 209/300
46/46 [==============================] - 0s 980us/step - loss: 0.0955 - accuracy: 0.9546 - mae: 0.0955 - pearson_correlation: 0.7214 - euclidean_distance: 0.1536
Epoch 210/300
46/46 [==============================] - 0s 953us/step - loss: 0.0976 - accuracy: 0.9555 - mae: 0.0976 - pearson_correlation: 0.7132 - euclidean_distance: 0.1572
Epoch 211/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0963 - accuracy: 0.9546 - mae: 0.0963 - pearson_correlation: 0.7140 - euclidean_distance: 0.1549
Epoch 212/300
46/46 [==============================] - 0s 946us/step - loss: 0.0963 - accuracy: 0.9555 - mae: 0.0963 - pearson_correlation: 0.7179 - euclidean_distance: 0.1550
Epoch 213/300
46/46 [==============================] - 0s 925us/step - loss: 0.0947 - accuracy: 0.9546 - mae: 0.0947 - pearson_correlation: 0.7229 - euclidean_distance: 0.1523
Epoch 214/300
46/46 [==============================] - 0s 929us/step - loss: 0.0984 - accuracy: 0.9559 - mae: 0.0984 - pearson_correlation: 0.7120 - euclidean_distance: 0.1581
Epoch 215/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0959 - accuracy: 0.9541 - mae: 0.0959 - pearson_correlation: 0.7191 - euclidean_distance: 0.1538
Epoch 216/300
46/46 [==============================] - 0s 942us/step - loss: 0.0967 - accuracy: 0.9555 - mae: 0.0967 - pearson_correlation: 0.7192 - euclidean_distance: 0.1550
Epoch 217/300
46/46 [==============================] - 0s 914us/step - loss: 0.0957 - accuracy: 0.9559 - mae: 0.0957 - pearson_correlation: 0.7165 - euclidean_distance: 0.1540
Epoch 218/300
46/46 [==============================] - 0s 939us/step - loss: 0.0935 - accuracy: 0.9555 - mae: 0.0935 - pearson_correlation: 0.7265 - euclidean_distance: 0.1506
Epoch 219/300
46/46 [==============================] - 0s 912us/step - loss: 0.0935 - accuracy: 0.9550 - mae: 0.0935 - pearson_correlation: 0.7242 - euclidean_distance: 0.1507
Epoch 220/300
46/46 [==============================] - 0s 904us/step - loss: 0.0944 - accuracy: 0.9550 - mae: 0.0944 - pearson_correlation: 0.7229 - euclidean_distance: 0.1518
Epoch 221/300
46/46 [==============================] - 0s 885us/step - loss: 0.0932 - accuracy: 0.9559 - mae: 0.0932 - pearson_correlation: 0.7257 - euclidean_distance: 0.1500
Epoch 222/300
46/46 [==============================] - 0s 910us/step - loss: 0.0952 - accuracy: 0.9546 - mae: 0.0952 - pearson_correlation: 0.7239 - euclidean_distance: 0.1528
Epoch 223/300
46/46 [==============================] - 0s 982us/step - loss: 0.0929 - accuracy: 0.9559 - mae: 0.0929 - pearson_correlation: 0.7298 - euclidean_distance: 0.1492
Epoch 224/300
46/46 [==============================] - 0s 949us/step - loss: 0.0949 - accuracy: 0.9546 - mae: 0.0949 - pearson_correlation: 0.7235 - euclidean_distance: 0.1522
Epoch 225/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0913 - accuracy: 0.9550 - mae: 0.0913 - pearson_correlation: 0.7341 - euclidean_distance: 0.1469
Epoch 226/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0909 - accuracy: 0.9550 - mae: 0.0909 - pearson_correlation: 0.7334 - euclidean_distance: 0.1467
Epoch 227/300
46/46 [==============================] - 0s 925us/step - loss: 0.0931 - accuracy: 0.9550 - mae: 0.0931 - pearson_correlation: 0.7319 - euclidean_distance: 0.1493
Epoch 228/300
46/46 [==============================] - 0s 951us/step - loss: 0.0919 - accuracy: 0.9550 - mae: 0.0919 - pearson_correlation: 0.7348 - euclidean_distance: 0.1481
Epoch 229/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0943 - accuracy: 0.9550 - mae: 0.0943 - pearson_correlation: 0.7271 - euclidean_distance: 0.1510
Epoch 230/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0911 - accuracy: 0.9550 - mae: 0.0911 - pearson_correlation: 0.7405 - euclidean_distance: 0.1464
Epoch 231/300
46/46 [==============================] - 0s 2ms/step - loss: 0.0907 - accuracy: 0.9537 - mae: 0.0907 - pearson_correlation: 0.7300 - euclidean_distance: 0.1458
Epoch 232/300
46/46 [==============================] - 0s 935us/step - loss: 0.0905 - accuracy: 0.9550 - mae: 0.0905 - pearson_correlation: 0.7363 - euclidean_distance: 0.1460
Epoch 233/300
46/46 [==============================] - 0s 978us/step - loss: 0.0931 - accuracy: 0.9559 - mae: 0.0931 - pearson_correlation: 0.7319 - euclidean_distance: 0.1498
Epoch 234/300
46/46 [==============================] - 0s 930us/step - loss: 0.0909 - accuracy: 0.9541 - mae: 0.0909 - pearson_correlation: 0.7390 - euclidean_distance: 0.1460
Epoch 235/300
46/46 [==============================] - 0s 888us/step - loss: 0.0910 - accuracy: 0.9546 - mae: 0.0910 - pearson_correlation: 0.7352 - euclidean_distance: 0.1463
Epoch 236/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0902 - accuracy: 0.9546 - mae: 0.0902 - pearson_correlation: 0.7424 - euclidean_distance: 0.1452
Epoch 237/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0908 - accuracy: 0.9550 - mae: 0.0908 - pearson_correlation: 0.7350 - euclidean_distance: 0.1461
Epoch 238/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0927 - accuracy: 0.9559 - mae: 0.0927 - pearson_correlation: 0.7291 - euclidean_distance: 0.1493
Epoch 239/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0894 - accuracy: 0.9559 - mae: 0.0894 - pearson_correlation: 0.7370 - euclidean_distance: 0.1440
Epoch 240/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0907 - accuracy: 0.9559 - mae: 0.0907 - pearson_correlation: 0.7323 - euclidean_distance: 0.1457
Epoch 241/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0905 - accuracy: 0.9550 - mae: 0.0905 - pearson_correlation: 0.7349 - euclidean_distance: 0.1459
Epoch 242/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0910 - accuracy: 0.9559 - mae: 0.0910 - pearson_correlation: 0.7354 - euclidean_distance: 0.1465
Epoch 243/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0889 - accuracy: 0.9555 - mae: 0.0889 - pearson_correlation: 0.7399 - euclidean_distance: 0.1433
Epoch 244/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0901 - accuracy: 0.9555 - mae: 0.0901 - pearson_correlation: 0.7335 - euclidean_distance: 0.1452
Epoch 245/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0888 - accuracy: 0.9550 - mae: 0.0888 - pearson_correlation: 0.7356 - euclidean_distance: 0.1431
Epoch 246/300
46/46 [==============================] - 0s 933us/step - loss: 0.0890 - accuracy: 0.9546 - mae: 0.0890 - pearson_correlation: 0.7410 - euclidean_distance: 0.1434
Epoch 247/300
46/46 [==============================] - 0s 995us/step - loss: 0.0881 - accuracy: 0.9550 - mae: 0.0881 - pearson_correlation: 0.7437 - euclidean_distance: 0.1417
Epoch 248/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0887 - accuracy: 0.9555 - mae: 0.0887 - pearson_correlation: 0.7405 - euclidean_distance: 0.1428
Epoch 249/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0892 - accuracy: 0.9546 - mae: 0.0892 - pearson_correlation: 0.7388 - euclidean_distance: 0.1433
Epoch 250/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0890 - accuracy: 0.9555 - mae: 0.0890 - pearson_correlation: 0.7488 - euclidean_distance: 0.1433
Epoch 251/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0874 - accuracy: 0.9550 - mae: 0.0874 - pearson_correlation: 0.7492 - euclidean_distance: 0.1411
Epoch 252/300
46/46 [==============================] - 0s 998us/step - loss: 0.0899 - accuracy: 0.9550 - mae: 0.0899 - pearson_correlation: 0.7407 - euclidean_distance: 0.1448
Epoch 253/300
46/46 [==============================] - 0s 975us/step - loss: 0.0888 - accuracy: 0.9555 - mae: 0.0888 - pearson_correlation: 0.7422 - euclidean_distance: 0.1426
Epoch 254/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0887 - accuracy: 0.9555 - mae: 0.0887 - pearson_correlation: 0.7493 - euclidean_distance: 0.1427
Epoch 255/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0896 - accuracy: 0.9550 - mae: 0.0896 - pearson_correlation: 0.7360 - euclidean_distance: 0.1443
Epoch 256/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0858 - accuracy: 0.9550 - mae: 0.0858 - pearson_correlation: 0.7494 - euclidean_distance: 0.1390
Epoch 257/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0885 - accuracy: 0.9555 - mae: 0.0885 - pearson_correlation: 0.7473 - euclidean_distance: 0.1427
Epoch 258/300
46/46 [==============================] - 0s 900us/step - loss: 0.0855 - accuracy: 0.9555 - mae: 0.0855 - pearson_correlation: 0.7533 - euclidean_distance: 0.1379
Epoch 259/300
46/46 [==============================] - 0s 934us/step - loss: 0.0878 - accuracy: 0.9555 - mae: 0.0878 - pearson_correlation: 0.7437 - euclidean_distance: 0.1420
Epoch 260/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0850 - accuracy: 0.9559 - mae: 0.0850 - pearson_correlation: 0.7514 - euclidean_distance: 0.1372
Epoch 261/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0844 - accuracy: 0.9559 - mae: 0.0844 - pearson_correlation: 0.7538 - euclidean_distance: 0.1368
Epoch 262/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0875 - accuracy: 0.9559 - mae: 0.0875 - pearson_correlation: 0.7476 - euclidean_distance: 0.1410
Epoch 263/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0864 - accuracy: 0.9550 - mae: 0.0864 - pearson_correlation: 0.7492 - euclidean_distance: 0.1392
Epoch 264/300
46/46 [==============================] - 0s 938us/step - loss: 0.0866 - accuracy: 0.9555 - mae: 0.0866 - pearson_correlation: 0.7447 - euclidean_distance: 0.1398
Epoch 265/300
46/46 [==============================] - 0s 999us/step - loss: 0.0849 - accuracy: 0.9555 - mae: 0.0849 - pearson_correlation: 0.7532 - euclidean_distance: 0.1369
Epoch 266/300
46/46 [==============================] - 0s 951us/step - loss: 0.0884 - accuracy: 0.9559 - mae: 0.0884 - pearson_correlation: 0.7376 - euclidean_distance: 0.1425
Epoch 267/300
46/46 [==============================] - 0s 997us/step - loss: 0.0852 - accuracy: 0.9555 - mae: 0.0852 - pearson_correlation: 0.7453 - euclidean_distance: 0.1379
Epoch 268/300
46/46 [==============================] - 0s 906us/step - loss: 0.0878 - accuracy: 0.9559 - mae: 0.0878 - pearson_correlation: 0.7486 - euclidean_distance: 0.1412
Epoch 269/300
46/46 [==============================] - 0s 938us/step - loss: 0.0867 - accuracy: 0.9559 - mae: 0.0867 - pearson_correlation: 0.7504 - euclidean_distance: 0.1397
Epoch 270/300
46/46 [==============================] - 0s 940us/step - loss: 0.0865 - accuracy: 0.9559 - mae: 0.0865 - pearson_correlation: 0.7547 - euclidean_distance: 0.1389
Epoch 271/300
46/46 [==============================] - 0s 940us/step - loss: 0.0854 - accuracy: 0.9546 - mae: 0.0854 - pearson_correlation: 0.7524 - euclidean_distance: 0.1381
Epoch 272/300
46/46 [==============================] - 0s 987us/step - loss: 0.0852 - accuracy: 0.9559 - mae: 0.0852 - pearson_correlation: 0.7546 - euclidean_distance: 0.1376
Epoch 273/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0860 - accuracy: 0.9555 - mae: 0.0860 - pearson_correlation: 0.7529 - euclidean_distance: 0.1389
Epoch 274/300
46/46 [==============================] - 0s 937us/step - loss: 0.0855 - accuracy: 0.9546 - mae: 0.0855 - pearson_correlation: 0.7497 - euclidean_distance: 0.1380
Epoch 275/300
46/46 [==============================] - 0s 927us/step - loss: 0.0875 - accuracy: 0.9559 - mae: 0.0875 - pearson_correlation: 0.7507 - euclidean_distance: 0.1406
Epoch 276/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0834 - accuracy: 0.9550 - mae: 0.0834 - pearson_correlation: 0.7572 - euclidean_distance: 0.1345
Epoch 277/300
46/46 [==============================] - 0s 2ms/step - loss: 0.0865 - accuracy: 0.9555 - mae: 0.0865 - pearson_correlation: 0.7509 - euclidean_distance: 0.1398
Epoch 278/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0838 - accuracy: 0.9559 - mae: 0.0838 - pearson_correlation: 0.7561 - euclidean_distance: 0.1358
Epoch 279/300
46/46 [==============================] - 0s 985us/step - loss: 0.0858 - accuracy: 0.9550 - mae: 0.0858 - pearson_correlation: 0.7519 - euclidean_distance: 0.1386
Epoch 280/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0858 - accuracy: 0.9559 - mae: 0.0858 - pearson_correlation: 0.7513 - euclidean_distance: 0.1388
Epoch 281/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0854 - accuracy: 0.9546 - mae: 0.0854 - pearson_correlation: 0.7543 - euclidean_distance: 0.1380
Epoch 282/300
46/46 [==============================] - 0s 961us/step - loss: 0.0851 - accuracy: 0.9559 - mae: 0.0851 - pearson_correlation: 0.7495 - euclidean_distance: 0.1369
Epoch 283/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0869 - accuracy: 0.9555 - mae: 0.0869 - pearson_correlation: 0.7510 - euclidean_distance: 0.1400
Epoch 284/300
46/46 [==============================] - 0s 896us/step - loss: 0.0860 - accuracy: 0.9555 - mae: 0.0860 - pearson_correlation: 0.7531 - euclidean_distance: 0.1389
Epoch 285/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0833 - accuracy: 0.9559 - mae: 0.0833 - pearson_correlation: 0.7572 - euclidean_distance: 0.1348
Epoch 286/300
46/46 [==============================] - 0s 944us/step - loss: 0.0835 - accuracy: 0.9555 - mae: 0.0835 - pearson_correlation: 0.7559 - euclidean_distance: 0.1351
Epoch 287/300
46/46 [==============================] - 0s 937us/step - loss: 0.0825 - accuracy: 0.9559 - mae: 0.0825 - pearson_correlation: 0.7626 - euclidean_distance: 0.1331
Epoch 288/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0831 - accuracy: 0.9559 - mae: 0.0831 - pearson_correlation: 0.7651 - euclidean_distance: 0.1341
Epoch 289/300
46/46 [==============================] - 0s 996us/step - loss: 0.0824 - accuracy: 0.9555 - mae: 0.0824 - pearson_correlation: 0.7619 - euclidean_distance: 0.1331
Epoch 290/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0847 - accuracy: 0.9555 - mae: 0.0847 - pearson_correlation: 0.7599 - euclidean_distance: 0.1367
Epoch 291/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0832 - accuracy: 0.9555 - mae: 0.0832 - pearson_correlation: 0.7571 - euclidean_distance: 0.1347
Epoch 292/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0838 - accuracy: 0.9559 - mae: 0.0838 - pearson_correlation: 0.7590 - euclidean_distance: 0.1354
Epoch 293/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0855 - accuracy: 0.9559 - mae: 0.0855 - pearson_correlation: 0.7579 - euclidean_distance: 0.1374
Epoch 294/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0846 - accuracy: 0.9559 - mae: 0.0846 - pearson_correlation: 0.7594 - euclidean_distance: 0.1363
Epoch 295/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0837 - accuracy: 0.9550 - mae: 0.0837 - pearson_correlation: 0.7654 - euclidean_distance: 0.1348
Epoch 296/300
46/46 [==============================] - 0s 1ms/step - loss: 0.0853 - accuracy: 0.9546 - mae: 0.0853 - pearson_correlation: 0.7579 - euclidean_distance: 0.1369
Epoch 297/300
46/46 [==============================] - 0s 953us/step - loss: 0.0804 - accuracy: 0.9559 - mae: 0.0804 - pearson_correlation: 0.7660 - euclidean_distance: 0.1303
Epoch 298/300
46/46 [==============================] - 0s 935us/step - loss: 0.0845 - accuracy: 0.9559 - mae: 0.0845 - pearson_correlation: 0.7586 - euclidean_distance: 0.1363
Epoch 299/300
46/46 [==============================] - 0s 2ms/step - loss: 0.0843 - accuracy: 0.9550 - mae: 0.0843 - pearson_correlation: 0.7577 - euclidean_distance: 0.1362
Epoch 300/300
46/46 [==============================] - 0s 2ms/step - loss: 0.0826 - accuracy: 0.9555 - mae: 0.0826 - pearson_correlation: 0.7622 - euclidean_distance: 0.1334
23/23 [==============================] - 0s 656us/step
Epoch 1/350
46/46 [==============================] - 1s 1ms/step - loss: 0.4218 - accuracy: 0.5002 - mae: 0.4218 - pearson_correlation: 0.2235 - euclidean_distance: 0.6700
Epoch 2/350
46/46 [==============================] - 0s 905us/step - loss: 0.4169 - accuracy: 0.5051 - mae: 0.4169 - pearson_correlation: 0.2255 - euclidean_distance: 0.6638
Epoch 3/350
46/46 [==============================] - 0s 898us/step - loss: 0.4140 - accuracy: 0.4923 - mae: 0.4140 - pearson_correlation: 0.2289 - euclidean_distance: 0.6594
Epoch 4/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4129 - accuracy: 0.4985 - mae: 0.4129 - pearson_correlation: 0.2237 - euclidean_distance: 0.6582
Epoch 5/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4079 - accuracy: 0.5011 - mae: 0.4079 - pearson_correlation: 0.2212 - euclidean_distance: 0.6524
Epoch 6/350
46/46 [==============================] - 0s 952us/step - loss: 0.4070 - accuracy: 0.4945 - mae: 0.4070 - pearson_correlation: 0.2202 - euclidean_distance: 0.6497
Epoch 7/350
46/46 [==============================] - 0s 918us/step - loss: 0.4025 - accuracy: 0.4927 - mae: 0.4025 - pearson_correlation: 0.2243 - euclidean_distance: 0.6454
Epoch 8/350
46/46 [==============================] - 0s 934us/step - loss: 0.3997 - accuracy: 0.4971 - mae: 0.3997 - pearson_correlation: 0.2151 - euclidean_distance: 0.6403
Epoch 9/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3960 - accuracy: 0.4914 - mae: 0.3960 - pearson_correlation: 0.2081 - euclidean_distance: 0.6363
Epoch 10/350
46/46 [==============================] - 0s 910us/step - loss: 0.3930 - accuracy: 0.4940 - mae: 0.3930 - pearson_correlation: 0.2019 - euclidean_distance: 0.6318
Epoch 11/350
46/46 [==============================] - 0s 865us/step - loss: 0.3900 - accuracy: 0.4976 - mae: 0.3900 - pearson_correlation: 0.2045 - euclidean_distance: 0.6276
Epoch 12/350
46/46 [==============================] - 0s 917us/step - loss: 0.3873 - accuracy: 0.4980 - mae: 0.3873 - pearson_correlation: 0.2014 - euclidean_distance: 0.6225
Epoch 13/350
46/46 [==============================] - 0s 948us/step - loss: 0.3823 - accuracy: 0.4963 - mae: 0.3823 - pearson_correlation: 0.2027 - euclidean_distance: 0.6172
Epoch 14/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3799 - accuracy: 0.4989 - mae: 0.3799 - pearson_correlation: 0.2063 - euclidean_distance: 0.6129
Epoch 15/350
46/46 [==============================] - 0s 979us/step - loss: 0.3778 - accuracy: 0.4963 - mae: 0.3778 - pearson_correlation: 0.1951 - euclidean_distance: 0.6097
Epoch 16/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3721 - accuracy: 0.4918 - mae: 0.3721 - pearson_correlation: 0.2006 - euclidean_distance: 0.6015
Epoch 17/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3699 - accuracy: 0.4963 - mae: 0.3699 - pearson_correlation: 0.1991 - euclidean_distance: 0.5993
Epoch 18/350
46/46 [==============================] - 0s 952us/step - loss: 0.3679 - accuracy: 0.5033 - mae: 0.3679 - pearson_correlation: 0.1926 - euclidean_distance: 0.5944
Epoch 19/350
46/46 [==============================] - 0s 919us/step - loss: 0.3638 - accuracy: 0.5055 - mae: 0.3638 - pearson_correlation: 0.1916 - euclidean_distance: 0.5884
Epoch 20/350
46/46 [==============================] - 0s 925us/step - loss: 0.3604 - accuracy: 0.5095 - mae: 0.3604 - pearson_correlation: 0.1940 - euclidean_distance: 0.5844
Epoch 21/350
46/46 [==============================] - 0s 912us/step - loss: 0.3571 - accuracy: 0.4932 - mae: 0.3571 - pearson_correlation: 0.1884 - euclidean_distance: 0.5798
Epoch 22/350
46/46 [==============================] - 0s 911us/step - loss: 0.3547 - accuracy: 0.5157 - mae: 0.3547 - pearson_correlation: 0.1871 - euclidean_distance: 0.5744
Epoch 23/350
46/46 [==============================] - 0s 909us/step - loss: 0.3512 - accuracy: 0.5174 - mae: 0.3512 - pearson_correlation: 0.1833 - euclidean_distance: 0.5698
Epoch 24/350
46/46 [==============================] - 0s 894us/step - loss: 0.3491 - accuracy: 0.5201 - mae: 0.3491 - pearson_correlation: 0.1834 - euclidean_distance: 0.5666
Epoch 25/350
46/46 [==============================] - 0s 930us/step - loss: 0.3437 - accuracy: 0.5293 - mae: 0.3437 - pearson_correlation: 0.1849 - euclidean_distance: 0.5583
Epoch 26/350
46/46 [==============================] - 0s 907us/step - loss: 0.3423 - accuracy: 0.5174 - mae: 0.3423 - pearson_correlation: 0.1853 - euclidean_distance: 0.5563
Epoch 27/350
46/46 [==============================] - 0s 914us/step - loss: 0.3372 - accuracy: 0.5285 - mae: 0.3372 - pearson_correlation: 0.1827 - euclidean_distance: 0.5482
Epoch 28/350
46/46 [==============================] - 0s 901us/step - loss: 0.3345 - accuracy: 0.5373 - mae: 0.3345 - pearson_correlation: 0.1762 - euclidean_distance: 0.5446
Epoch 29/350
46/46 [==============================] - 0s 889us/step - loss: 0.3321 - accuracy: 0.5368 - mae: 0.3321 - pearson_correlation: 0.1823 - euclidean_distance: 0.5399
Epoch 30/350
46/46 [==============================] - 0s 909us/step - loss: 0.3288 - accuracy: 0.5404 - mae: 0.3288 - pearson_correlation: 0.1773 - euclidean_distance: 0.5343
Epoch 31/350
46/46 [==============================] - 0s 914us/step - loss: 0.3255 - accuracy: 0.5540 - mae: 0.3255 - pearson_correlation: 0.1827 - euclidean_distance: 0.5298
Epoch 32/350
46/46 [==============================] - 0s 869us/step - loss: 0.3219 - accuracy: 0.5514 - mae: 0.3219 - pearson_correlation: 0.1873 - euclidean_distance: 0.5235
Epoch 33/350
46/46 [==============================] - 0s 912us/step - loss: 0.3198 - accuracy: 0.5584 - mae: 0.3198 - pearson_correlation: 0.1832 - euclidean_distance: 0.5197
Epoch 34/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3170 - accuracy: 0.5571 - mae: 0.3170 - pearson_correlation: 0.1804 - euclidean_distance: 0.5152
Epoch 35/350
46/46 [==============================] - 0s 949us/step - loss: 0.3130 - accuracy: 0.5642 - mae: 0.3130 - pearson_correlation: 0.1872 - euclidean_distance: 0.5081
Epoch 36/350
46/46 [==============================] - 0s 930us/step - loss: 0.3103 - accuracy: 0.5659 - mae: 0.3103 - pearson_correlation: 0.1840 - euclidean_distance: 0.5040
Epoch 37/350
46/46 [==============================] - 0s 906us/step - loss: 0.3065 - accuracy: 0.5774 - mae: 0.3065 - pearson_correlation: 0.1819 - euclidean_distance: 0.4986
Epoch 38/350
46/46 [==============================] - 0s 871us/step - loss: 0.3049 - accuracy: 0.5779 - mae: 0.3049 - pearson_correlation: 0.1835 - euclidean_distance: 0.4954
Epoch 39/350
46/46 [==============================] - 0s 932us/step - loss: 0.3022 - accuracy: 0.5995 - mae: 0.3022 - pearson_correlation: 0.1919 - euclidean_distance: 0.4897
Epoch 40/350
46/46 [==============================] - 0s 902us/step - loss: 0.2999 - accuracy: 0.5818 - mae: 0.2999 - pearson_correlation: 0.1869 - euclidean_distance: 0.4861
Epoch 41/350
46/46 [==============================] - 0s 936us/step - loss: 0.2967 - accuracy: 0.5893 - mae: 0.2967 - pearson_correlation: 0.1901 - euclidean_distance: 0.4813
Epoch 42/350
46/46 [==============================] - 0s 917us/step - loss: 0.2930 - accuracy: 0.5955 - mae: 0.2930 - pearson_correlation: 0.1975 - euclidean_distance: 0.4750
Epoch 43/350
46/46 [==============================] - 0s 883us/step - loss: 0.2915 - accuracy: 0.5990 - mae: 0.2915 - pearson_correlation: 0.1927 - euclidean_distance: 0.4721
Epoch 44/350
46/46 [==============================] - 0s 889us/step - loss: 0.2869 - accuracy: 0.5955 - mae: 0.2869 - pearson_correlation: 0.2017 - euclidean_distance: 0.4655
Epoch 45/350
46/46 [==============================] - 0s 906us/step - loss: 0.2850 - accuracy: 0.5902 - mae: 0.2850 - pearson_correlation: 0.1969 - euclidean_distance: 0.4630
Epoch 46/350
46/46 [==============================] - 0s 892us/step - loss: 0.2814 - accuracy: 0.5995 - mae: 0.2814 - pearson_correlation: 0.2027 - euclidean_distance: 0.4562
Epoch 47/350
46/46 [==============================] - 0s 893us/step - loss: 0.2811 - accuracy: 0.6158 - mae: 0.2811 - pearson_correlation: 0.2019 - euclidean_distance: 0.4551
Epoch 48/350
46/46 [==============================] - 0s 905us/step - loss: 0.2782 - accuracy: 0.6154 - mae: 0.2782 - pearson_correlation: 0.2012 - euclidean_distance: 0.4500
Epoch 49/350
46/46 [==============================] - 0s 946us/step - loss: 0.2742 - accuracy: 0.6145 - mae: 0.2742 - pearson_correlation: 0.2058 - euclidean_distance: 0.4436
Epoch 50/350
46/46 [==============================] - 0s 989us/step - loss: 0.2704 - accuracy: 0.6233 - mae: 0.2704 - pearson_correlation: 0.2077 - euclidean_distance: 0.4385
Epoch 51/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2678 - accuracy: 0.6255 - mae: 0.2678 - pearson_correlation: 0.2192 - euclidean_distance: 0.4336
Epoch 52/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2670 - accuracy: 0.6326 - mae: 0.2670 - pearson_correlation: 0.2177 - euclidean_distance: 0.4319
Epoch 53/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2629 - accuracy: 0.6326 - mae: 0.2629 - pearson_correlation: 0.2162 - euclidean_distance: 0.4262
Epoch 54/350
46/46 [==============================] - 0s 968us/step - loss: 0.2607 - accuracy: 0.6378 - mae: 0.2607 - pearson_correlation: 0.2214 - euclidean_distance: 0.4222
Epoch 55/350
46/46 [==============================] - 0s 914us/step - loss: 0.2581 - accuracy: 0.6480 - mae: 0.2581 - pearson_correlation: 0.2214 - euclidean_distance: 0.4169
Epoch 56/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2565 - accuracy: 0.6564 - mae: 0.2565 - pearson_correlation: 0.2268 - euclidean_distance: 0.4140
Epoch 57/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2547 - accuracy: 0.6608 - mae: 0.2547 - pearson_correlation: 0.2282 - euclidean_distance: 0.4111
Epoch 58/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2515 - accuracy: 0.6687 - mae: 0.2515 - pearson_correlation: 0.2297 - euclidean_distance: 0.4054
Epoch 59/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2486 - accuracy: 0.6674 - mae: 0.2486 - pearson_correlation: 0.2361 - euclidean_distance: 0.4008
Epoch 60/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2450 - accuracy: 0.6745 - mae: 0.2450 - pearson_correlation: 0.2398 - euclidean_distance: 0.3960
Epoch 61/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2453 - accuracy: 0.6762 - mae: 0.2453 - pearson_correlation: 0.2390 - euclidean_distance: 0.3950
Epoch 62/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2413 - accuracy: 0.6837 - mae: 0.2413 - pearson_correlation: 0.2469 - euclidean_distance: 0.3892
Epoch 63/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2388 - accuracy: 0.6864 - mae: 0.2388 - pearson_correlation: 0.2460 - euclidean_distance: 0.3862
Epoch 64/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2373 - accuracy: 0.6877 - mae: 0.2373 - pearson_correlation: 0.2505 - euclidean_distance: 0.3826
Epoch 65/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2370 - accuracy: 0.6908 - mae: 0.2370 - pearson_correlation: 0.2514 - euclidean_distance: 0.3810
Epoch 66/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2326 - accuracy: 0.7000 - mae: 0.2326 - pearson_correlation: 0.2593 - euclidean_distance: 0.3751
Epoch 67/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2306 - accuracy: 0.7040 - mae: 0.2306 - pearson_correlation: 0.2623 - euclidean_distance: 0.3720
Epoch 68/350
46/46 [==============================] - 0s 2ms/step - loss: 0.2289 - accuracy: 0.6983 - mae: 0.2289 - pearson_correlation: 0.2639 - euclidean_distance: 0.3684
Epoch 69/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2269 - accuracy: 0.7168 - mae: 0.2269 - pearson_correlation: 0.2662 - euclidean_distance: 0.3658
Epoch 70/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2243 - accuracy: 0.7221 - mae: 0.2243 - pearson_correlation: 0.2755 - euclidean_distance: 0.3609
Epoch 71/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2208 - accuracy: 0.7309 - mae: 0.2208 - pearson_correlation: 0.2798 - euclidean_distance: 0.3563
Epoch 72/350
46/46 [==============================] - 0s 983us/step - loss: 0.2209 - accuracy: 0.7247 - mae: 0.2209 - pearson_correlation: 0.2818 - euclidean_distance: 0.3554
Epoch 73/350
46/46 [==============================] - 0s 911us/step - loss: 0.2180 - accuracy: 0.7349 - mae: 0.2180 - pearson_correlation: 0.2869 - euclidean_distance: 0.3508
Epoch 74/350
46/46 [==============================] - 0s 980us/step - loss: 0.2161 - accuracy: 0.7283 - mae: 0.2161 - pearson_correlation: 0.2956 - euclidean_distance: 0.3479
Epoch 75/350
46/46 [==============================] - 0s 1ms/step - loss: 0.2146 - accuracy: 0.7450 - mae: 0.2146 - pearson_correlation: 0.3002 - euclidean_distance: 0.3448
Epoch 76/350
46/46 [==============================] - 0s 987us/step - loss: 0.2135 - accuracy: 0.7477 - mae: 0.2135 - pearson_correlation: 0.2965 - euclidean_distance: 0.3438
Epoch 77/350
46/46 [==============================] - 0s 939us/step - loss: 0.2146 - accuracy: 0.7411 - mae: 0.2146 - pearson_correlation: 0.2945 - euclidean_distance: 0.3448
Epoch 78/350
46/46 [==============================] - 0s 932us/step - loss: 0.2077 - accuracy: 0.7455 - mae: 0.2077 - pearson_correlation: 0.3015 - euclidean_distance: 0.3343
Epoch 79/350
46/46 [==============================] - 0s 924us/step - loss: 0.2058 - accuracy: 0.7543 - mae: 0.2058 - pearson_correlation: 0.3174 - euclidean_distance: 0.3315
Epoch 80/350
46/46 [==============================] - 0s 893us/step - loss: 0.2053 - accuracy: 0.7561 - mae: 0.2053 - pearson_correlation: 0.3072 - euclidean_distance: 0.3308
Epoch 81/350
46/46 [==============================] - 0s 908us/step - loss: 0.2051 - accuracy: 0.7578 - mae: 0.2051 - pearson_correlation: 0.3120 - euclidean_distance: 0.3297
Epoch 82/350
46/46 [==============================] - 0s 881us/step - loss: 0.2031 - accuracy: 0.7706 - mae: 0.2031 - pearson_correlation: 0.3250 - euclidean_distance: 0.3273
Epoch 83/350
46/46 [==============================] - 0s 895us/step - loss: 0.2011 - accuracy: 0.7675 - mae: 0.2011 - pearson_correlation: 0.3198 - euclidean_distance: 0.3243
Epoch 84/350
46/46 [==============================] - 0s 893us/step - loss: 0.1999 - accuracy: 0.7728 - mae: 0.1999 - pearson_correlation: 0.3295 - euclidean_distance: 0.3231
Epoch 85/350
46/46 [==============================] - 0s 981us/step - loss: 0.1988 - accuracy: 0.7711 - mae: 0.1988 - pearson_correlation: 0.3316 - euclidean_distance: 0.3208
Epoch 86/350
46/46 [==============================] - 0s 961us/step - loss: 0.1957 - accuracy: 0.7799 - mae: 0.1957 - pearson_correlation: 0.3424 - euclidean_distance: 0.3150
Epoch 87/350
46/46 [==============================] - 0s 989us/step - loss: 0.1942 - accuracy: 0.7878 - mae: 0.1942 - pearson_correlation: 0.3473 - euclidean_distance: 0.3125
Epoch 88/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1916 - accuracy: 0.7856 - mae: 0.1916 - pearson_correlation: 0.3498 - euclidean_distance: 0.3099
Epoch 89/350
46/46 [==============================] - 0s 941us/step - loss: 0.1931 - accuracy: 0.7803 - mae: 0.1931 - pearson_correlation: 0.3466 - euclidean_distance: 0.3114
Epoch 90/350
46/46 [==============================] - 0s 949us/step - loss: 0.1888 - accuracy: 0.7839 - mae: 0.1888 - pearson_correlation: 0.3630 - euclidean_distance: 0.3040
Epoch 91/350
46/46 [==============================] - 0s 923us/step - loss: 0.1882 - accuracy: 0.7949 - mae: 0.1882 - pearson_correlation: 0.3594 - euclidean_distance: 0.3032
Epoch 92/350
46/46 [==============================] - 0s 964us/step - loss: 0.1854 - accuracy: 0.7931 - mae: 0.1854 - pearson_correlation: 0.3687 - euclidean_distance: 0.2995
Epoch 93/350
46/46 [==============================] - 0s 937us/step - loss: 0.1842 - accuracy: 0.8015 - mae: 0.1842 - pearson_correlation: 0.3768 - euclidean_distance: 0.2973
Epoch 94/350
46/46 [==============================] - 0s 891us/step - loss: 0.1822 - accuracy: 0.8019 - mae: 0.1822 - pearson_correlation: 0.3792 - euclidean_distance: 0.2944
Epoch 95/350
46/46 [==============================] - 0s 937us/step - loss: 0.1828 - accuracy: 0.8103 - mae: 0.1828 - pearson_correlation: 0.3849 - euclidean_distance: 0.2951
Epoch 96/350
46/46 [==============================] - 0s 917us/step - loss: 0.1803 - accuracy: 0.8072 - mae: 0.1803 - pearson_correlation: 0.3838 - euclidean_distance: 0.2909
Epoch 97/350
46/46 [==============================] - 0s 927us/step - loss: 0.1773 - accuracy: 0.8055 - mae: 0.1773 - pearson_correlation: 0.3924 - euclidean_distance: 0.2867
Epoch 98/350
46/46 [==============================] - 0s 904us/step - loss: 0.1798 - accuracy: 0.8125 - mae: 0.1798 - pearson_correlation: 0.3953 - euclidean_distance: 0.2899
Epoch 99/350
46/46 [==============================] - 0s 890us/step - loss: 0.1755 - accuracy: 0.8112 - mae: 0.1755 - pearson_correlation: 0.4021 - euclidean_distance: 0.2833
Epoch 100/350
46/46 [==============================] - 0s 951us/step - loss: 0.1751 - accuracy: 0.8288 - mae: 0.1751 - pearson_correlation: 0.4047 - euclidean_distance: 0.2824
Epoch 101/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1739 - accuracy: 0.8227 - mae: 0.1739 - pearson_correlation: 0.4039 - euclidean_distance: 0.2805
Epoch 102/350
46/46 [==============================] - 0s 962us/step - loss: 0.1715 - accuracy: 0.8271 - mae: 0.1715 - pearson_correlation: 0.4208 - euclidean_distance: 0.2779
Epoch 103/350
46/46 [==============================] - 0s 937us/step - loss: 0.1703 - accuracy: 0.8311 - mae: 0.1703 - pearson_correlation: 0.4231 - euclidean_distance: 0.2744
Epoch 104/350
46/46 [==============================] - 0s 904us/step - loss: 0.1694 - accuracy: 0.8337 - mae: 0.1694 - pearson_correlation: 0.4251 - euclidean_distance: 0.2731
Epoch 105/350
46/46 [==============================] - 0s 988us/step - loss: 0.1668 - accuracy: 0.8408 - mae: 0.1668 - pearson_correlation: 0.4256 - euclidean_distance: 0.2697
Epoch 106/350
46/46 [==============================] - 0s 949us/step - loss: 0.1652 - accuracy: 0.8390 - mae: 0.1652 - pearson_correlation: 0.4289 - euclidean_distance: 0.2679
Epoch 107/350
46/46 [==============================] - 0s 927us/step - loss: 0.1662 - accuracy: 0.8430 - mae: 0.1662 - pearson_correlation: 0.4333 - euclidean_distance: 0.2689
Epoch 108/350
46/46 [==============================] - 0s 905us/step - loss: 0.1656 - accuracy: 0.8430 - mae: 0.1656 - pearson_correlation: 0.4433 - euclidean_distance: 0.2673
Epoch 109/350
46/46 [==============================] - 0s 913us/step - loss: 0.1630 - accuracy: 0.8500 - mae: 0.1630 - pearson_correlation: 0.4409 - euclidean_distance: 0.2630
Epoch 110/350
46/46 [==============================] - 0s 850us/step - loss: 0.1621 - accuracy: 0.8487 - mae: 0.1621 - pearson_correlation: 0.4438 - euclidean_distance: 0.2622
Epoch 111/350
46/46 [==============================] - 0s 877us/step - loss: 0.1615 - accuracy: 0.8491 - mae: 0.1615 - pearson_correlation: 0.4520 - euclidean_distance: 0.2614
Epoch 112/350
46/46 [==============================] - 0s 890us/step - loss: 0.1599 - accuracy: 0.8580 - mae: 0.1599 - pearson_correlation: 0.4576 - euclidean_distance: 0.2583
Epoch 113/350
46/46 [==============================] - 0s 889us/step - loss: 0.1597 - accuracy: 0.8584 - mae: 0.1597 - pearson_correlation: 0.4604 - euclidean_distance: 0.2578
Epoch 114/350
46/46 [==============================] - 0s 994us/step - loss: 0.1582 - accuracy: 0.8540 - mae: 0.1582 - pearson_correlation: 0.4641 - euclidean_distance: 0.2562
Epoch 115/350
46/46 [==============================] - 0s 981us/step - loss: 0.1567 - accuracy: 0.8606 - mae: 0.1567 - pearson_correlation: 0.4685 - euclidean_distance: 0.2538
Epoch 116/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1565 - accuracy: 0.8575 - mae: 0.1565 - pearson_correlation: 0.4683 - euclidean_distance: 0.2529
Epoch 117/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1558 - accuracy: 0.8690 - mae: 0.1558 - pearson_correlation: 0.4686 - euclidean_distance: 0.2514
Epoch 118/350
46/46 [==============================] - 0s 933us/step - loss: 0.1529 - accuracy: 0.8681 - mae: 0.1529 - pearson_correlation: 0.4815 - euclidean_distance: 0.2481
Epoch 119/350
46/46 [==============================] - 0s 912us/step - loss: 0.1535 - accuracy: 0.8663 - mae: 0.1535 - pearson_correlation: 0.4770 - euclidean_distance: 0.2486
Epoch 120/350
46/46 [==============================] - 0s 919us/step - loss: 0.1542 - accuracy: 0.8659 - mae: 0.1542 - pearson_correlation: 0.4798 - euclidean_distance: 0.2488
Epoch 121/350
46/46 [==============================] - 0s 882us/step - loss: 0.1505 - accuracy: 0.8716 - mae: 0.1505 - pearson_correlation: 0.4922 - euclidean_distance: 0.2431
Epoch 122/350
46/46 [==============================] - 0s 877us/step - loss: 0.1503 - accuracy: 0.8734 - mae: 0.1503 - pearson_correlation: 0.4917 - euclidean_distance: 0.2432
Epoch 123/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1493 - accuracy: 0.8730 - mae: 0.1493 - pearson_correlation: 0.4956 - euclidean_distance: 0.2417
Epoch 124/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1489 - accuracy: 0.8721 - mae: 0.1489 - pearson_correlation: 0.4987 - euclidean_distance: 0.2405
Epoch 125/350
46/46 [==============================] - 0s 906us/step - loss: 0.1485 - accuracy: 0.8725 - mae: 0.1485 - pearson_correlation: 0.4967 - euclidean_distance: 0.2407
Epoch 126/350
46/46 [==============================] - 0s 915us/step - loss: 0.1455 - accuracy: 0.8787 - mae: 0.1455 - pearson_correlation: 0.5078 - euclidean_distance: 0.2364
Epoch 127/350
46/46 [==============================] - 0s 971us/step - loss: 0.1448 - accuracy: 0.8805 - mae: 0.1448 - pearson_correlation: 0.5114 - euclidean_distance: 0.2340
Epoch 128/350
46/46 [==============================] - 0s 901us/step - loss: 0.1454 - accuracy: 0.8840 - mae: 0.1454 - pearson_correlation: 0.5123 - euclidean_distance: 0.2352
Epoch 129/350
46/46 [==============================] - 0s 959us/step - loss: 0.1466 - accuracy: 0.8783 - mae: 0.1466 - pearson_correlation: 0.5137 - euclidean_distance: 0.2369
Epoch 130/350
46/46 [==============================] - 0s 956us/step - loss: 0.1451 - accuracy: 0.8840 - mae: 0.1451 - pearson_correlation: 0.5109 - euclidean_distance: 0.2352
Epoch 131/350
46/46 [==============================] - 0s 940us/step - loss: 0.1413 - accuracy: 0.8774 - mae: 0.1413 - pearson_correlation: 0.5169 - euclidean_distance: 0.2298
Epoch 132/350
46/46 [==============================] - 0s 918us/step - loss: 0.1441 - accuracy: 0.8906 - mae: 0.1441 - pearson_correlation: 0.5167 - euclidean_distance: 0.2330
Epoch 133/350
46/46 [==============================] - 0s 872us/step - loss: 0.1429 - accuracy: 0.8858 - mae: 0.1429 - pearson_correlation: 0.5231 - euclidean_distance: 0.2315
Epoch 134/350
46/46 [==============================] - 0s 896us/step - loss: 0.1406 - accuracy: 0.8844 - mae: 0.1406 - pearson_correlation: 0.5242 - euclidean_distance: 0.2279
Epoch 135/350
46/46 [==============================] - 0s 899us/step - loss: 0.1413 - accuracy: 0.8809 - mae: 0.1413 - pearson_correlation: 0.5315 - euclidean_distance: 0.2282
Epoch 136/350
46/46 [==============================] - 0s 899us/step - loss: 0.1399 - accuracy: 0.8924 - mae: 0.1399 - pearson_correlation: 0.5362 - euclidean_distance: 0.2271
Epoch 137/350
46/46 [==============================] - 0s 934us/step - loss: 0.1405 - accuracy: 0.8897 - mae: 0.1405 - pearson_correlation: 0.5375 - euclidean_distance: 0.2271
Epoch 138/350
46/46 [==============================] - 0s 961us/step - loss: 0.1381 - accuracy: 0.8880 - mae: 0.1381 - pearson_correlation: 0.5417 - euclidean_distance: 0.2236
Epoch 139/350
46/46 [==============================] - 0s 891us/step - loss: 0.1371 - accuracy: 0.8893 - mae: 0.1371 - pearson_correlation: 0.5458 - euclidean_distance: 0.2223
Epoch 140/350
46/46 [==============================] - 0s 890us/step - loss: 0.1364 - accuracy: 0.8924 - mae: 0.1364 - pearson_correlation: 0.5450 - euclidean_distance: 0.2204
Epoch 141/350
46/46 [==============================] - 0s 911us/step - loss: 0.1364 - accuracy: 0.8897 - mae: 0.1364 - pearson_correlation: 0.5468 - euclidean_distance: 0.2212
Epoch 142/350
46/46 [==============================] - 0s 902us/step - loss: 0.1355 - accuracy: 0.8937 - mae: 0.1355 - pearson_correlation: 0.5511 - euclidean_distance: 0.2203
Epoch 143/350
46/46 [==============================] - 0s 865us/step - loss: 0.1370 - accuracy: 0.8963 - mae: 0.1370 - pearson_correlation: 0.5445 - euclidean_distance: 0.2215
Epoch 144/350
46/46 [==============================] - 0s 888us/step - loss: 0.1351 - accuracy: 0.9007 - mae: 0.1351 - pearson_correlation: 0.5437 - euclidean_distance: 0.2185
Epoch 145/350
46/46 [==============================] - 0s 886us/step - loss: 0.1358 - accuracy: 0.8972 - mae: 0.1358 - pearson_correlation: 0.5486 - euclidean_distance: 0.2204
Epoch 146/350
46/46 [==============================] - 0s 908us/step - loss: 0.1346 - accuracy: 0.9007 - mae: 0.1346 - pearson_correlation: 0.5553 - euclidean_distance: 0.2179
Epoch 147/350
46/46 [==============================] - 0s 919us/step - loss: 0.1344 - accuracy: 0.8985 - mae: 0.1344 - pearson_correlation: 0.5616 - euclidean_distance: 0.2173
Epoch 148/350
46/46 [==============================] - 0s 940us/step - loss: 0.1325 - accuracy: 0.9047 - mae: 0.1325 - pearson_correlation: 0.5690 - euclidean_distance: 0.2147
Epoch 149/350
46/46 [==============================] - 0s 900us/step - loss: 0.1322 - accuracy: 0.8959 - mae: 0.1322 - pearson_correlation: 0.5624 - euclidean_distance: 0.2144
Epoch 150/350
46/46 [==============================] - 0s 880us/step - loss: 0.1313 - accuracy: 0.9056 - mae: 0.1313 - pearson_correlation: 0.5677 - euclidean_distance: 0.2121
Epoch 151/350
46/46 [==============================] - 0s 890us/step - loss: 0.1308 - accuracy: 0.9021 - mae: 0.1308 - pearson_correlation: 0.5663 - euclidean_distance: 0.2121
Epoch 152/350
46/46 [==============================] - 0s 879us/step - loss: 0.1315 - accuracy: 0.9007 - mae: 0.1315 - pearson_correlation: 0.5747 - euclidean_distance: 0.2126
Epoch 153/350
46/46 [==============================] - 0s 892us/step - loss: 0.1326 - accuracy: 0.9021 - mae: 0.1326 - pearson_correlation: 0.5685 - euclidean_distance: 0.2144
Epoch 154/350
46/46 [==============================] - 0s 920us/step - loss: 0.1309 - accuracy: 0.9012 - mae: 0.1309 - pearson_correlation: 0.5717 - euclidean_distance: 0.2117
Epoch 155/350
46/46 [==============================] - 0s 902us/step - loss: 0.1306 - accuracy: 0.9065 - mae: 0.1306 - pearson_correlation: 0.5756 - euclidean_distance: 0.2111
Epoch 156/350
46/46 [==============================] - 0s 894us/step - loss: 0.1281 - accuracy: 0.9069 - mae: 0.1281 - pearson_correlation: 0.5834 - euclidean_distance: 0.2073
Epoch 157/350
46/46 [==============================] - 0s 913us/step - loss: 0.1298 - accuracy: 0.9043 - mae: 0.1298 - pearson_correlation: 0.5786 - euclidean_distance: 0.2103
Epoch 158/350
46/46 [==============================] - 0s 883us/step - loss: 0.1264 - accuracy: 0.9127 - mae: 0.1264 - pearson_correlation: 0.5892 - euclidean_distance: 0.2049
Epoch 159/350
46/46 [==============================] - 0s 904us/step - loss: 0.1291 - accuracy: 0.9100 - mae: 0.1291 - pearson_correlation: 0.5853 - euclidean_distance: 0.2091
Epoch 160/350
46/46 [==============================] - 0s 893us/step - loss: 0.1278 - accuracy: 0.9069 - mae: 0.1278 - pearson_correlation: 0.5887 - euclidean_distance: 0.2065
Epoch 161/350
46/46 [==============================] - 0s 900us/step - loss: 0.1262 - accuracy: 0.9118 - mae: 0.1262 - pearson_correlation: 0.5891 - euclidean_distance: 0.2045
Epoch 162/350
46/46 [==============================] - 0s 894us/step - loss: 0.1290 - accuracy: 0.9109 - mae: 0.1290 - pearson_correlation: 0.5838 - euclidean_distance: 0.2088
Epoch 163/350
46/46 [==============================] - 0s 887us/step - loss: 0.1261 - accuracy: 0.9127 - mae: 0.1261 - pearson_correlation: 0.5966 - euclidean_distance: 0.2043
Epoch 164/350
46/46 [==============================] - 0s 917us/step - loss: 0.1259 - accuracy: 0.9127 - mae: 0.1259 - pearson_correlation: 0.6001 - euclidean_distance: 0.2039
Epoch 165/350
46/46 [==============================] - 0s 861us/step - loss: 0.1266 - accuracy: 0.9100 - mae: 0.1266 - pearson_correlation: 0.5927 - euclidean_distance: 0.2047
Epoch 166/350
46/46 [==============================] - 0s 883us/step - loss: 0.1217 - accuracy: 0.9127 - mae: 0.1217 - pearson_correlation: 0.6002 - euclidean_distance: 0.1979
Epoch 167/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1244 - accuracy: 0.9157 - mae: 0.1244 - pearson_correlation: 0.5978 - euclidean_distance: 0.2018
Epoch 168/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1245 - accuracy: 0.9122 - mae: 0.1245 - pearson_correlation: 0.5977 - euclidean_distance: 0.2010
Epoch 169/350
46/46 [==============================] - 0s 985us/step - loss: 0.1258 - accuracy: 0.9135 - mae: 0.1258 - pearson_correlation: 0.6050 - euclidean_distance: 0.2029
Epoch 170/350
46/46 [==============================] - 0s 957us/step - loss: 0.1232 - accuracy: 0.9175 - mae: 0.1232 - pearson_correlation: 0.6048 - euclidean_distance: 0.1991
Epoch 171/350
46/46 [==============================] - 0s 876us/step - loss: 0.1231 - accuracy: 0.9162 - mae: 0.1231 - pearson_correlation: 0.6059 - euclidean_distance: 0.1992
Epoch 172/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1246 - accuracy: 0.9171 - mae: 0.1246 - pearson_correlation: 0.6054 - euclidean_distance: 0.2016
Epoch 173/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1226 - accuracy: 0.9171 - mae: 0.1226 - pearson_correlation: 0.6057 - euclidean_distance: 0.1983
Epoch 174/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1211 - accuracy: 0.9188 - mae: 0.1211 - pearson_correlation: 0.6146 - euclidean_distance: 0.1955
Epoch 175/350
46/46 [==============================] - 0s 972us/step - loss: 0.1219 - accuracy: 0.9166 - mae: 0.1219 - pearson_correlation: 0.6113 - euclidean_distance: 0.1975
Epoch 176/350
46/46 [==============================] - 0s 916us/step - loss: 0.1241 - accuracy: 0.9180 - mae: 0.1241 - pearson_correlation: 0.6094 - euclidean_distance: 0.2006
Epoch 177/350
46/46 [==============================] - 0s 924us/step - loss: 0.1218 - accuracy: 0.9193 - mae: 0.1218 - pearson_correlation: 0.6104 - euclidean_distance: 0.1976
Epoch 178/350
46/46 [==============================] - 0s 874us/step - loss: 0.1232 - accuracy: 0.9171 - mae: 0.1232 - pearson_correlation: 0.6118 - euclidean_distance: 0.1996
Epoch 179/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1186 - accuracy: 0.9193 - mae: 0.1186 - pearson_correlation: 0.6142 - euclidean_distance: 0.1925
Epoch 180/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1194 - accuracy: 0.9197 - mae: 0.1194 - pearson_correlation: 0.6220 - euclidean_distance: 0.1941
Epoch 181/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1222 - accuracy: 0.9166 - mae: 0.1222 - pearson_correlation: 0.6150 - euclidean_distance: 0.1981
Epoch 182/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1200 - accuracy: 0.9193 - mae: 0.1200 - pearson_correlation: 0.6192 - euclidean_distance: 0.1937
Epoch 183/350
46/46 [==============================] - 0s 3ms/step - loss: 0.1196 - accuracy: 0.9228 - mae: 0.1196 - pearson_correlation: 0.6259 - euclidean_distance: 0.1934
Epoch 184/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1210 - accuracy: 0.9193 - mae: 0.1210 - pearson_correlation: 0.6200 - euclidean_distance: 0.1957
Epoch 185/350
46/46 [==============================] - 0s 991us/step - loss: 0.1171 - accuracy: 0.9202 - mae: 0.1171 - pearson_correlation: 0.6251 - euclidean_distance: 0.1904
Epoch 186/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1200 - accuracy: 0.9188 - mae: 0.1200 - pearson_correlation: 0.6273 - euclidean_distance: 0.1941
Epoch 187/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1200 - accuracy: 0.9219 - mae: 0.1200 - pearson_correlation: 0.6239 - euclidean_distance: 0.1941
Epoch 188/350
46/46 [==============================] - 0s 971us/step - loss: 0.1184 - accuracy: 0.9250 - mae: 0.1184 - pearson_correlation: 0.6310 - euclidean_distance: 0.1913
Epoch 189/350
46/46 [==============================] - 0s 984us/step - loss: 0.1164 - accuracy: 0.9219 - mae: 0.1164 - pearson_correlation: 0.6367 - euclidean_distance: 0.1885
Epoch 190/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1152 - accuracy: 0.9210 - mae: 0.1152 - pearson_correlation: 0.6323 - euclidean_distance: 0.1873
Epoch 191/350
46/46 [==============================] - 0s 976us/step - loss: 0.1159 - accuracy: 0.9215 - mae: 0.1159 - pearson_correlation: 0.6380 - euclidean_distance: 0.1878
Epoch 192/350
46/46 [==============================] - 0s 997us/step - loss: 0.1153 - accuracy: 0.9232 - mae: 0.1153 - pearson_correlation: 0.6399 - euclidean_distance: 0.1871
Epoch 193/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1174 - accuracy: 0.9246 - mae: 0.1174 - pearson_correlation: 0.6346 - euclidean_distance: 0.1895
Epoch 194/350
46/46 [==============================] - 0s 980us/step - loss: 0.1128 - accuracy: 0.9268 - mae: 0.1128 - pearson_correlation: 0.6447 - euclidean_distance: 0.1829
Epoch 195/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1178 - accuracy: 0.9215 - mae: 0.1178 - pearson_correlation: 0.6287 - euclidean_distance: 0.1906
Epoch 196/350
46/46 [==============================] - 0s 964us/step - loss: 0.1162 - accuracy: 0.9259 - mae: 0.1162 - pearson_correlation: 0.6375 - euclidean_distance: 0.1881
Epoch 197/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1148 - accuracy: 0.9299 - mae: 0.1148 - pearson_correlation: 0.6453 - euclidean_distance: 0.1855
Epoch 198/350
46/46 [==============================] - 0s 919us/step - loss: 0.1168 - accuracy: 0.9219 - mae: 0.1168 - pearson_correlation: 0.6389 - euclidean_distance: 0.1888
Epoch 199/350
46/46 [==============================] - 0s 890us/step - loss: 0.1159 - accuracy: 0.9268 - mae: 0.1159 - pearson_correlation: 0.6417 - euclidean_distance: 0.1874
Epoch 200/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1157 - accuracy: 0.9294 - mae: 0.1157 - pearson_correlation: 0.6413 - euclidean_distance: 0.1868
Epoch 201/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1154 - accuracy: 0.9281 - mae: 0.1154 - pearson_correlation: 0.6432 - euclidean_distance: 0.1872
Epoch 202/350
46/46 [==============================] - 0s 969us/step - loss: 0.1169 - accuracy: 0.9290 - mae: 0.1169 - pearson_correlation: 0.6397 - euclidean_distance: 0.1895
Epoch 203/350
46/46 [==============================] - 0s 999us/step - loss: 0.1136 - accuracy: 0.9312 - mae: 0.1136 - pearson_correlation: 0.6482 - euclidean_distance: 0.1843
Epoch 204/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1142 - accuracy: 0.9250 - mae: 0.1142 - pearson_correlation: 0.6508 - euclidean_distance: 0.1846
Epoch 205/350
46/46 [==============================] - 0s 993us/step - loss: 0.1153 - accuracy: 0.9268 - mae: 0.1153 - pearson_correlation: 0.6415 - euclidean_distance: 0.1863
Epoch 206/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1139 - accuracy: 0.9303 - mae: 0.1139 - pearson_correlation: 0.6436 - euclidean_distance: 0.1841
Epoch 207/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1128 - accuracy: 0.9299 - mae: 0.1128 - pearson_correlation: 0.6475 - euclidean_distance: 0.1831
Epoch 208/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1115 - accuracy: 0.9312 - mae: 0.1115 - pearson_correlation: 0.6555 - euclidean_distance: 0.1806
Epoch 209/350
46/46 [==============================] - 0s 938us/step - loss: 0.1131 - accuracy: 0.9312 - mae: 0.1131 - pearson_correlation: 0.6573 - euclidean_distance: 0.1832
Epoch 210/350
46/46 [==============================] - 0s 911us/step - loss: 0.1136 - accuracy: 0.9325 - mae: 0.1136 - pearson_correlation: 0.6510 - euclidean_distance: 0.1833
Epoch 211/350
46/46 [==============================] - 0s 907us/step - loss: 0.1133 - accuracy: 0.9325 - mae: 0.1133 - pearson_correlation: 0.6520 - euclidean_distance: 0.1836
Epoch 212/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1139 - accuracy: 0.9316 - mae: 0.1139 - pearson_correlation: 0.6536 - euclidean_distance: 0.1831
Epoch 213/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1120 - accuracy: 0.9387 - mae: 0.1120 - pearson_correlation: 0.6540 - euclidean_distance: 0.1804
Epoch 214/350
46/46 [==============================] - 0s 988us/step - loss: 0.1123 - accuracy: 0.9334 - mae: 0.1123 - pearson_correlation: 0.6457 - euclidean_distance: 0.1826
Epoch 215/350
46/46 [==============================] - 0s 902us/step - loss: 0.1141 - accuracy: 0.9321 - mae: 0.1141 - pearson_correlation: 0.6523 - euclidean_distance: 0.1841
Epoch 216/350
46/46 [==============================] - 0s 914us/step - loss: 0.1117 - accuracy: 0.9356 - mae: 0.1117 - pearson_correlation: 0.6581 - euclidean_distance: 0.1808
Epoch 217/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1103 - accuracy: 0.9316 - mae: 0.1103 - pearson_correlation: 0.6605 - euclidean_distance: 0.1786
Epoch 218/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1106 - accuracy: 0.9387 - mae: 0.1106 - pearson_correlation: 0.6596 - euclidean_distance: 0.1782
Epoch 219/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1095 - accuracy: 0.9325 - mae: 0.1095 - pearson_correlation: 0.6611 - euclidean_distance: 0.1777
Epoch 220/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1119 - accuracy: 0.9356 - mae: 0.1119 - pearson_correlation: 0.6627 - euclidean_distance: 0.1805
Epoch 221/350
46/46 [==============================] - 0s 961us/step - loss: 0.1107 - accuracy: 0.9307 - mae: 0.1107 - pearson_correlation: 0.6541 - euclidean_distance: 0.1791
Epoch 222/350
46/46 [==============================] - 0s 978us/step - loss: 0.1080 - accuracy: 0.9356 - mae: 0.1080 - pearson_correlation: 0.6663 - euclidean_distance: 0.1751
Epoch 223/350
46/46 [==============================] - 0s 992us/step - loss: 0.1120 - accuracy: 0.9369 - mae: 0.1120 - pearson_correlation: 0.6599 - euclidean_distance: 0.1812
Epoch 224/350
46/46 [==============================] - 0s 941us/step - loss: 0.1079 - accuracy: 0.9343 - mae: 0.1079 - pearson_correlation: 0.6636 - euclidean_distance: 0.1753
Epoch 225/350
46/46 [==============================] - 0s 911us/step - loss: 0.1096 - accuracy: 0.9325 - mae: 0.1096 - pearson_correlation: 0.6639 - euclidean_distance: 0.1771
Epoch 226/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1111 - accuracy: 0.9352 - mae: 0.1111 - pearson_correlation: 0.6633 - euclidean_distance: 0.1795
Epoch 227/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1100 - accuracy: 0.9347 - mae: 0.1100 - pearson_correlation: 0.6667 - euclidean_distance: 0.1773
Epoch 228/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1101 - accuracy: 0.9387 - mae: 0.1101 - pearson_correlation: 0.6646 - euclidean_distance: 0.1780
Epoch 229/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1062 - accuracy: 0.9387 - mae: 0.1062 - pearson_correlation: 0.6684 - euclidean_distance: 0.1723
Epoch 230/350
46/46 [==============================] - 0s 954us/step - loss: 0.1066 - accuracy: 0.9387 - mae: 0.1066 - pearson_correlation: 0.6747 - euclidean_distance: 0.1727
Epoch 231/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1112 - accuracy: 0.9387 - mae: 0.1112 - pearson_correlation: 0.6665 - euclidean_distance: 0.1789
Epoch 232/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1076 - accuracy: 0.9365 - mae: 0.1076 - pearson_correlation: 0.6742 - euclidean_distance: 0.1739
Epoch 233/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1086 - accuracy: 0.9382 - mae: 0.1086 - pearson_correlation: 0.6719 - euclidean_distance: 0.1759
Epoch 234/350
46/46 [==============================] - 0s 982us/step - loss: 0.1066 - accuracy: 0.9391 - mae: 0.1066 - pearson_correlation: 0.6764 - euclidean_distance: 0.1721
Epoch 235/350
46/46 [==============================] - 0s 927us/step - loss: 0.1089 - accuracy: 0.9391 - mae: 0.1089 - pearson_correlation: 0.6761 - euclidean_distance: 0.1753
Epoch 236/350
46/46 [==============================] - 0s 931us/step - loss: 0.1079 - accuracy: 0.9369 - mae: 0.1079 - pearson_correlation: 0.6781 - euclidean_distance: 0.1746
Epoch 237/350
46/46 [==============================] - 0s 944us/step - loss: 0.1072 - accuracy: 0.9369 - mae: 0.1072 - pearson_correlation: 0.6745 - euclidean_distance: 0.1740
Epoch 238/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1080 - accuracy: 0.9391 - mae: 0.1080 - pearson_correlation: 0.6732 - euclidean_distance: 0.1740
Epoch 239/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1063 - accuracy: 0.9409 - mae: 0.1063 - pearson_correlation: 0.6780 - euclidean_distance: 0.1714
Epoch 240/350
46/46 [==============================] - 0s 998us/step - loss: 0.1054 - accuracy: 0.9382 - mae: 0.1054 - pearson_correlation: 0.6755 - euclidean_distance: 0.1706
Epoch 241/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1052 - accuracy: 0.9396 - mae: 0.1052 - pearson_correlation: 0.6786 - euclidean_distance: 0.1699
Epoch 242/350
46/46 [==============================] - 0s 978us/step - loss: 0.1075 - accuracy: 0.9369 - mae: 0.1075 - pearson_correlation: 0.6743 - euclidean_distance: 0.1734
Epoch 243/350
46/46 [==============================] - 0s 920us/step - loss: 0.1041 - accuracy: 0.9382 - mae: 0.1041 - pearson_correlation: 0.6800 - euclidean_distance: 0.1690
Epoch 244/350
46/46 [==============================] - 0s 928us/step - loss: 0.1060 - accuracy: 0.9396 - mae: 0.1060 - pearson_correlation: 0.6837 - euclidean_distance: 0.1716
Epoch 245/350
46/46 [==============================] - 0s 887us/step - loss: 0.1071 - accuracy: 0.9400 - mae: 0.1071 - pearson_correlation: 0.6817 - euclidean_distance: 0.1731
Epoch 246/350
46/46 [==============================] - 0s 887us/step - loss: 0.1078 - accuracy: 0.9462 - mae: 0.1078 - pearson_correlation: 0.6765 - euclidean_distance: 0.1738
Epoch 247/350
46/46 [==============================] - 0s 895us/step - loss: 0.1053 - accuracy: 0.9418 - mae: 0.1053 - pearson_correlation: 0.6866 - euclidean_distance: 0.1702
Epoch 248/350
46/46 [==============================] - 0s 920us/step - loss: 0.1068 - accuracy: 0.9435 - mae: 0.1068 - pearson_correlation: 0.6843 - euclidean_distance: 0.1726
Epoch 249/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1049 - accuracy: 0.9369 - mae: 0.1049 - pearson_correlation: 0.6802 - euclidean_distance: 0.1699
Epoch 250/350
46/46 [==============================] - 0s 971us/step - loss: 0.1027 - accuracy: 0.9418 - mae: 0.1027 - pearson_correlation: 0.6855 - euclidean_distance: 0.1671
Epoch 251/350
46/46 [==============================] - 0s 1000us/step - loss: 0.1049 - accuracy: 0.9404 - mae: 0.1049 - pearson_correlation: 0.6811 - euclidean_distance: 0.1696
Epoch 252/350
46/46 [==============================] - 0s 942us/step - loss: 0.1054 - accuracy: 0.9409 - mae: 0.1054 - pearson_correlation: 0.6847 - euclidean_distance: 0.1695
Epoch 253/350
46/46 [==============================] - 0s 931us/step - loss: 0.1029 - accuracy: 0.9427 - mae: 0.1029 - pearson_correlation: 0.6923 - euclidean_distance: 0.1668
Epoch 254/350
46/46 [==============================] - 0s 933us/step - loss: 0.1039 - accuracy: 0.9457 - mae: 0.1039 - pearson_correlation: 0.6909 - euclidean_distance: 0.1684
Epoch 255/350
46/46 [==============================] - 0s 882us/step - loss: 0.1042 - accuracy: 0.9413 - mae: 0.1042 - pearson_correlation: 0.6857 - euclidean_distance: 0.1687
Epoch 256/350
46/46 [==============================] - 0s 956us/step - loss: 0.1051 - accuracy: 0.9418 - mae: 0.1051 - pearson_correlation: 0.6873 - euclidean_distance: 0.1696
Epoch 257/350
46/46 [==============================] - 0s 897us/step - loss: 0.1040 - accuracy: 0.9453 - mae: 0.1040 - pearson_correlation: 0.6826 - euclidean_distance: 0.1685
Epoch 258/350
46/46 [==============================] - 0s 879us/step - loss: 0.1041 - accuracy: 0.9449 - mae: 0.1041 - pearson_correlation: 0.6902 - euclidean_distance: 0.1684
Epoch 259/350
46/46 [==============================] - 0s 909us/step - loss: 0.1035 - accuracy: 0.9427 - mae: 0.1035 - pearson_correlation: 0.6914 - euclidean_distance: 0.1673
Epoch 260/350
46/46 [==============================] - 0s 883us/step - loss: 0.1021 - accuracy: 0.9457 - mae: 0.1021 - pearson_correlation: 0.6899 - euclidean_distance: 0.1663
Epoch 261/350
46/46 [==============================] - 0s 900us/step - loss: 0.1005 - accuracy: 0.9422 - mae: 0.1005 - pearson_correlation: 0.6953 - euclidean_distance: 0.1633
Epoch 262/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1062 - accuracy: 0.9453 - mae: 0.1062 - pearson_correlation: 0.6851 - euclidean_distance: 0.1717
Epoch 263/350
46/46 [==============================] - 0s 925us/step - loss: 0.1017 - accuracy: 0.9444 - mae: 0.1017 - pearson_correlation: 0.6988 - euclidean_distance: 0.1644
Epoch 264/350
46/46 [==============================] - 0s 892us/step - loss: 0.0992 - accuracy: 0.9453 - mae: 0.0992 - pearson_correlation: 0.6992 - euclidean_distance: 0.1612
Epoch 265/350
46/46 [==============================] - 0s 907us/step - loss: 0.1033 - accuracy: 0.9418 - mae: 0.1033 - pearson_correlation: 0.6825 - euclidean_distance: 0.1672
Epoch 266/350
46/46 [==============================] - 0s 898us/step - loss: 0.1038 - accuracy: 0.9440 - mae: 0.1038 - pearson_correlation: 0.6889 - euclidean_distance: 0.1677
Epoch 267/350
46/46 [==============================] - 0s 896us/step - loss: 0.1026 - accuracy: 0.9427 - mae: 0.1026 - pearson_correlation: 0.6891 - euclidean_distance: 0.1661
Epoch 268/350
46/46 [==============================] - 0s 897us/step - loss: 0.1037 - accuracy: 0.9435 - mae: 0.1037 - pearson_correlation: 0.6932 - euclidean_distance: 0.1675
Epoch 269/350
46/46 [==============================] - 0s 891us/step - loss: 0.1003 - accuracy: 0.9440 - mae: 0.1003 - pearson_correlation: 0.6986 - euclidean_distance: 0.1628
Epoch 270/350
46/46 [==============================] - 0s 918us/step - loss: 0.1012 - accuracy: 0.9449 - mae: 0.1012 - pearson_correlation: 0.6930 - euclidean_distance: 0.1640
Epoch 271/350
46/46 [==============================] - 0s 879us/step - loss: 0.1032 - accuracy: 0.9453 - mae: 0.1032 - pearson_correlation: 0.6909 - euclidean_distance: 0.1671
Epoch 272/350
46/46 [==============================] - 0s 874us/step - loss: 0.1021 - accuracy: 0.9431 - mae: 0.1021 - pearson_correlation: 0.6910 - euclidean_distance: 0.1652
Epoch 273/350
46/46 [==============================] - 0s 903us/step - loss: 0.1025 - accuracy: 0.9466 - mae: 0.1025 - pearson_correlation: 0.6954 - euclidean_distance: 0.1662
Epoch 274/350
46/46 [==============================] - 0s 872us/step - loss: 0.0979 - accuracy: 0.9457 - mae: 0.0979 - pearson_correlation: 0.7029 - euclidean_distance: 0.1586
Epoch 275/350
46/46 [==============================] - 0s 895us/step - loss: 0.1029 - accuracy: 0.9462 - mae: 0.1029 - pearson_correlation: 0.6967 - euclidean_distance: 0.1663
Epoch 276/350
46/46 [==============================] - 0s 1ms/step - loss: 0.1021 - accuracy: 0.9471 - mae: 0.1021 - pearson_correlation: 0.6984 - euclidean_distance: 0.1651
Epoch 277/350
46/46 [==============================] - 0s 925us/step - loss: 0.1009 - accuracy: 0.9466 - mae: 0.1009 - pearson_correlation: 0.6983 - euclidean_distance: 0.1630
Epoch 278/350
46/46 [==============================] - 0s 954us/step - loss: 0.1011 - accuracy: 0.9457 - mae: 0.1011 - pearson_correlation: 0.6981 - euclidean_distance: 0.1638
Epoch 279/350
46/46 [==============================] - 0s 896us/step - loss: 0.1032 - accuracy: 0.9457 - mae: 0.1032 - pearson_correlation: 0.6937 - euclidean_distance: 0.1663
Epoch 280/350
46/46 [==============================] - 0s 882us/step - loss: 0.0993 - accuracy: 0.9453 - mae: 0.0993 - pearson_correlation: 0.7014 - euclidean_distance: 0.1610
Epoch 281/350
46/46 [==============================] - 0s 889us/step - loss: 0.1032 - accuracy: 0.9484 - mae: 0.1032 - pearson_correlation: 0.7019 - euclidean_distance: 0.1671
Epoch 282/350
46/46 [==============================] - 0s 896us/step - loss: 0.0967 - accuracy: 0.9484 - mae: 0.0967 - pearson_correlation: 0.7059 - euclidean_distance: 0.1571
Epoch 283/350
46/46 [==============================] - 0s 897us/step - loss: 0.0993 - accuracy: 0.9475 - mae: 0.0993 - pearson_correlation: 0.7104 - euclidean_distance: 0.1609
Epoch 284/350
46/46 [==============================] - 0s 862us/step - loss: 0.1006 - accuracy: 0.9466 - mae: 0.1006 - pearson_correlation: 0.6979 - euclidean_distance: 0.1631
Epoch 285/350
46/46 [==============================] - 0s 892us/step - loss: 0.0971 - accuracy: 0.9453 - mae: 0.0971 - pearson_correlation: 0.7039 - euclidean_distance: 0.1576
Epoch 286/350
46/46 [==============================] - 0s 890us/step - loss: 0.0981 - accuracy: 0.9413 - mae: 0.0981 - pearson_correlation: 0.7091 - euclidean_distance: 0.1595
Epoch 287/350
46/46 [==============================] - 0s 952us/step - loss: 0.0994 - accuracy: 0.9488 - mae: 0.0994 - pearson_correlation: 0.6983 - euclidean_distance: 0.1615
Epoch 288/350
46/46 [==============================] - 0s 868us/step - loss: 0.1000 - accuracy: 0.9457 - mae: 0.1000 - pearson_correlation: 0.6958 - euclidean_distance: 0.1621
Epoch 289/350
46/46 [==============================] - 0s 894us/step - loss: 0.1010 - accuracy: 0.9479 - mae: 0.1010 - pearson_correlation: 0.7033 - euclidean_distance: 0.1626
Epoch 290/350
46/46 [==============================] - 0s 886us/step - loss: 0.0993 - accuracy: 0.9506 - mae: 0.0993 - pearson_correlation: 0.7033 - euclidean_distance: 0.1606
Epoch 291/350
46/46 [==============================] - 0s 901us/step - loss: 0.1026 - accuracy: 0.9462 - mae: 0.1026 - pearson_correlation: 0.7005 - euclidean_distance: 0.1654
Epoch 292/350
46/46 [==============================] - 0s 896us/step - loss: 0.1002 - accuracy: 0.9466 - mae: 0.1002 - pearson_correlation: 0.7077 - euclidean_distance: 0.1622
Epoch 293/350
46/46 [==============================] - 0s 871us/step - loss: 0.0959 - accuracy: 0.9471 - mae: 0.0959 - pearson_correlation: 0.7141 - euclidean_distance: 0.1558
Epoch 294/350
46/46 [==============================] - 0s 899us/step - loss: 0.0997 - accuracy: 0.9497 - mae: 0.0997 - pearson_correlation: 0.7054 - euclidean_distance: 0.1615
Epoch 295/350
46/46 [==============================] - 0s 904us/step - loss: 0.0980 - accuracy: 0.9506 - mae: 0.0980 - pearson_correlation: 0.7100 - euclidean_distance: 0.1585
Epoch 296/350
46/46 [==============================] - 0s 864us/step - loss: 0.1005 - accuracy: 0.9479 - mae: 0.1005 - pearson_correlation: 0.7025 - euclidean_distance: 0.1626
Epoch 297/350
46/46 [==============================] - 0s 894us/step - loss: 0.0978 - accuracy: 0.9497 - mae: 0.0978 - pearson_correlation: 0.7080 - euclidean_distance: 0.1582
Epoch 298/350
46/46 [==============================] - 0s 908us/step - loss: 0.0982 - accuracy: 0.9479 - mae: 0.0982 - pearson_correlation: 0.7061 - euclidean_distance: 0.1590
Epoch 299/350
46/46 [==============================] - 0s 887us/step - loss: 0.0963 - accuracy: 0.9484 - mae: 0.0963 - pearson_correlation: 0.7075 - euclidean_distance: 0.1564
Epoch 300/350
46/46 [==============================] - 0s 945us/step - loss: 0.0961 - accuracy: 0.9493 - mae: 0.0961 - pearson_correlation: 0.7123 - euclidean_distance: 0.1560
Epoch 301/350
46/46 [==============================] - 0s 944us/step - loss: 0.0976 - accuracy: 0.9502 - mae: 0.0976 - pearson_correlation: 0.7094 - euclidean_distance: 0.1587
Epoch 302/350
46/46 [==============================] - 0s 915us/step - loss: 0.0992 - accuracy: 0.9453 - mae: 0.0992 - pearson_correlation: 0.7124 - euclidean_distance: 0.1600
Epoch 303/350
46/46 [==============================] - 0s 891us/step - loss: 0.0961 - accuracy: 0.9471 - mae: 0.0961 - pearson_correlation: 0.7167 - euclidean_distance: 0.1562
Epoch 304/350
46/46 [==============================] - 0s 902us/step - loss: 0.0991 - accuracy: 0.9488 - mae: 0.0991 - pearson_correlation: 0.7090 - euclidean_distance: 0.1601
Epoch 305/350
46/46 [==============================] - 0s 894us/step - loss: 0.0996 - accuracy: 0.9493 - mae: 0.0996 - pearson_correlation: 0.7101 - euclidean_distance: 0.1610
Epoch 306/350
46/46 [==============================] - 0s 881us/step - loss: 0.0956 - accuracy: 0.9475 - mae: 0.0956 - pearson_correlation: 0.7099 - euclidean_distance: 0.1557
Epoch 307/350
46/46 [==============================] - 0s 894us/step - loss: 0.0986 - accuracy: 0.9479 - mae: 0.0986 - pearson_correlation: 0.7109 - euclidean_distance: 0.1595
Epoch 308/350
46/46 [==============================] - 0s 885us/step - loss: 0.0959 - accuracy: 0.9484 - mae: 0.0959 - pearson_correlation: 0.7203 - euclidean_distance: 0.1557
Epoch 309/350
46/46 [==============================] - 0s 897us/step - loss: 0.0984 - accuracy: 0.9484 - mae: 0.0984 - pearson_correlation: 0.7125 - euclidean_distance: 0.1593
Epoch 310/350
46/46 [==============================] - 0s 951us/step - loss: 0.0959 - accuracy: 0.9502 - mae: 0.0959 - pearson_correlation: 0.7109 - euclidean_distance: 0.1560
Epoch 311/350
46/46 [==============================] - 0s 878us/step - loss: 0.0973 - accuracy: 0.9497 - mae: 0.0973 - pearson_correlation: 0.7064 - euclidean_distance: 0.1578
Epoch 312/350
46/46 [==============================] - 0s 923us/step - loss: 0.0959 - accuracy: 0.9497 - mae: 0.0959 - pearson_correlation: 0.7162 - euclidean_distance: 0.1556
Epoch 313/350
46/46 [==============================] - 0s 894us/step - loss: 0.0952 - accuracy: 0.9488 - mae: 0.0952 - pearson_correlation: 0.7183 - euclidean_distance: 0.1544
Epoch 314/350
46/46 [==============================] - 0s 883us/step - loss: 0.0995 - accuracy: 0.9497 - mae: 0.0995 - pearson_correlation: 0.7100 - euclidean_distance: 0.1616
Epoch 315/350
46/46 [==============================] - 0s 877us/step - loss: 0.0957 - accuracy: 0.9502 - mae: 0.0957 - pearson_correlation: 0.7140 - euclidean_distance: 0.1552
Epoch 316/350
46/46 [==============================] - 0s 903us/step - loss: 0.0976 - accuracy: 0.9497 - mae: 0.0976 - pearson_correlation: 0.7101 - euclidean_distance: 0.1584
Epoch 317/350
46/46 [==============================] - 0s 875us/step - loss: 0.0966 - accuracy: 0.9502 - mae: 0.0966 - pearson_correlation: 0.7130 - euclidean_distance: 0.1564
Epoch 318/350
46/46 [==============================] - 0s 887us/step - loss: 0.0980 - accuracy: 0.9497 - mae: 0.0980 - pearson_correlation: 0.7085 - euclidean_distance: 0.1583
Epoch 319/350
46/46 [==============================] - 0s 895us/step - loss: 0.0961 - accuracy: 0.9493 - mae: 0.0961 - pearson_correlation: 0.7224 - euclidean_distance: 0.1558
Epoch 320/350
46/46 [==============================] - 0s 875us/step - loss: 0.0958 - accuracy: 0.9519 - mae: 0.0958 - pearson_correlation: 0.7200 - euclidean_distance: 0.1554
Epoch 321/350
46/46 [==============================] - 0s 892us/step - loss: 0.0955 - accuracy: 0.9493 - mae: 0.0955 - pearson_correlation: 0.7193 - euclidean_distance: 0.1551
Epoch 322/350
46/46 [==============================] - 0s 888us/step - loss: 0.0974 - accuracy: 0.9497 - mae: 0.0974 - pearson_correlation: 0.7174 - euclidean_distance: 0.1571
Epoch 323/350
46/46 [==============================] - 0s 891us/step - loss: 0.0942 - accuracy: 0.9506 - mae: 0.0942 - pearson_correlation: 0.7179 - euclidean_distance: 0.1529
Epoch 324/350
46/46 [==============================] - 0s 889us/step - loss: 0.0973 - accuracy: 0.9515 - mae: 0.0973 - pearson_correlation: 0.7122 - euclidean_distance: 0.1573
Epoch 325/350
46/46 [==============================] - 0s 887us/step - loss: 0.0944 - accuracy: 0.9519 - mae: 0.0944 - pearson_correlation: 0.7203 - euclidean_distance: 0.1532
Epoch 326/350
46/46 [==============================] - 0s 893us/step - loss: 0.0953 - accuracy: 0.9510 - mae: 0.0953 - pearson_correlation: 0.7192 - euclidean_distance: 0.1548
Epoch 327/350
46/46 [==============================] - 0s 899us/step - loss: 0.0966 - accuracy: 0.9524 - mae: 0.0966 - pearson_correlation: 0.7153 - euclidean_distance: 0.1563
Epoch 328/350
46/46 [==============================] - 0s 944us/step - loss: 0.0946 - accuracy: 0.9502 - mae: 0.0946 - pearson_correlation: 0.7247 - euclidean_distance: 0.1537
Epoch 329/350
46/46 [==============================] - 0s 876us/step - loss: 0.0922 - accuracy: 0.9502 - mae: 0.0922 - pearson_correlation: 0.7248 - euclidean_distance: 0.1498
Epoch 330/350
46/46 [==============================] - 0s 895us/step - loss: 0.0950 - accuracy: 0.9519 - mae: 0.0950 - pearson_correlation: 0.7234 - euclidean_distance: 0.1540
Epoch 331/350
46/46 [==============================] - 0s 894us/step - loss: 0.0952 - accuracy: 0.9519 - mae: 0.0952 - pearson_correlation: 0.7193 - euclidean_distance: 0.1548
Epoch 332/350
46/46 [==============================] - 0s 896us/step - loss: 0.0940 - accuracy: 0.9497 - mae: 0.0940 - pearson_correlation: 0.7219 - euclidean_distance: 0.1528
Epoch 333/350
46/46 [==============================] - 0s 926us/step - loss: 0.0938 - accuracy: 0.9528 - mae: 0.0938 - pearson_correlation: 0.7290 - euclidean_distance: 0.1521
Epoch 334/350
46/46 [==============================] - 0s 894us/step - loss: 0.0929 - accuracy: 0.9515 - mae: 0.0929 - pearson_correlation: 0.7278 - euclidean_distance: 0.1511
Epoch 335/350
46/46 [==============================] - 0s 896us/step - loss: 0.0950 - accuracy: 0.9524 - mae: 0.0950 - pearson_correlation: 0.7242 - euclidean_distance: 0.1542
Epoch 336/350
46/46 [==============================] - 0s 915us/step - loss: 0.0936 - accuracy: 0.9515 - mae: 0.0936 - pearson_correlation: 0.7308 - euclidean_distance: 0.1516
Epoch 337/350
46/46 [==============================] - 0s 899us/step - loss: 0.0916 - accuracy: 0.9510 - mae: 0.0916 - pearson_correlation: 0.7294 - euclidean_distance: 0.1490
Epoch 338/350
46/46 [==============================] - 0s 893us/step - loss: 0.0947 - accuracy: 0.9524 - mae: 0.0947 - pearson_correlation: 0.7212 - euclidean_distance: 0.1533
Epoch 339/350
46/46 [==============================] - 0s 897us/step - loss: 0.0932 - accuracy: 0.9519 - mae: 0.0932 - pearson_correlation: 0.7279 - euclidean_distance: 0.1515
Epoch 340/350
46/46 [==============================] - 0s 896us/step - loss: 0.0935 - accuracy: 0.9528 - mae: 0.0935 - pearson_correlation: 0.7216 - euclidean_distance: 0.1523
Epoch 341/350
46/46 [==============================] - 0s 898us/step - loss: 0.0969 - accuracy: 0.9537 - mae: 0.0969 - pearson_correlation: 0.7207 - euclidean_distance: 0.1570
Epoch 342/350
46/46 [==============================] - 0s 895us/step - loss: 0.0949 - accuracy: 0.9524 - mae: 0.0949 - pearson_correlation: 0.7272 - euclidean_distance: 0.1539
Epoch 343/350
46/46 [==============================] - 0s 923us/step - loss: 0.0926 - accuracy: 0.9519 - mae: 0.0926 - pearson_correlation: 0.7287 - euclidean_distance: 0.1500
Epoch 344/350
46/46 [==============================] - 0s 893us/step - loss: 0.0905 - accuracy: 0.9524 - mae: 0.0905 - pearson_correlation: 0.7343 - euclidean_distance: 0.1474
Epoch 345/350
46/46 [==============================] - 0s 890us/step - loss: 0.0960 - accuracy: 0.9506 - mae: 0.0960 - pearson_correlation: 0.7206 - euclidean_distance: 0.1554
Epoch 346/350
46/46 [==============================] - 0s 901us/step - loss: 0.0949 - accuracy: 0.9519 - mae: 0.0949 - pearson_correlation: 0.7228 - euclidean_distance: 0.1540
Epoch 347/350
46/46 [==============================] - 0s 964us/step - loss: 0.0951 - accuracy: 0.9524 - mae: 0.0951 - pearson_correlation: 0.7250 - euclidean_distance: 0.1539
Epoch 348/350
46/46 [==============================] - 0s 906us/step - loss: 0.0923 - accuracy: 0.9515 - mae: 0.0923 - pearson_correlation: 0.7348 - euclidean_distance: 0.1498
Epoch 349/350
46/46 [==============================] - 0s 900us/step - loss: 0.0915 - accuracy: 0.9524 - mae: 0.0915 - pearson_correlation: 0.7326 - euclidean_distance: 0.1485
Epoch 350/350
46/46 [==============================] - 0s 890us/step - loss: 0.0904 - accuracy: 0.9515 - mae: 0.0904 - pearson_correlation: 0.7335 - euclidean_distance: 0.1468
23/23 [==============================] - 0s 538us/step
Epoch 1/350
46/46 [==============================] - 1s 979us/step - loss: 0.5670 - accuracy: 0.9554 - mae: 0.5670 - pearson_correlation: 0.6636 - euclidean_distance: 0.8446
Epoch 2/350
46/46 [==============================] - 0s 883us/step - loss: 0.5649 - accuracy: 0.9554 - mae: 0.5649 - pearson_correlation: 0.6617 - euclidean_distance: 0.8409
Epoch 3/350
46/46 [==============================] - 0s 878us/step - loss: 0.5611 - accuracy: 0.9554 - mae: 0.5611 - pearson_correlation: 0.6564 - euclidean_distance: 0.8358
Epoch 4/350
46/46 [==============================] - 0s 892us/step - loss: 0.5560 - accuracy: 0.9554 - mae: 0.5560 - pearson_correlation: 0.6565 - euclidean_distance: 0.8276
Epoch 5/350
46/46 [==============================] - 0s 892us/step - loss: 0.5528 - accuracy: 0.9554 - mae: 0.5528 - pearson_correlation: 0.6608 - euclidean_distance: 0.8237
Epoch 6/350
46/46 [==============================] - 0s 895us/step - loss: 0.5492 - accuracy: 0.9554 - mae: 0.5492 - pearson_correlation: 0.6550 - euclidean_distance: 0.8178
Epoch 7/350
46/46 [==============================] - 0s 901us/step - loss: 0.5464 - accuracy: 0.9554 - mae: 0.5464 - pearson_correlation: 0.6524 - euclidean_distance: 0.8139
Epoch 8/350
46/46 [==============================] - 0s 884us/step - loss: 0.5409 - accuracy: 0.9554 - mae: 0.5409 - pearson_correlation: 0.6506 - euclidean_distance: 0.8047
Epoch 9/350
46/46 [==============================] - 0s 894us/step - loss: 0.5392 - accuracy: 0.9554 - mae: 0.5392 - pearson_correlation: 0.6509 - euclidean_distance: 0.8026
Epoch 10/350
46/46 [==============================] - 0s 891us/step - loss: 0.5348 - accuracy: 0.9554 - mae: 0.5348 - pearson_correlation: 0.6487 - euclidean_distance: 0.7964
Epoch 11/350
46/46 [==============================] - 0s 887us/step - loss: 0.5301 - accuracy: 0.9554 - mae: 0.5301 - pearson_correlation: 0.6467 - euclidean_distance: 0.7898
Epoch 12/350
46/46 [==============================] - 0s 895us/step - loss: 0.5271 - accuracy: 0.9554 - mae: 0.5271 - pearson_correlation: 0.6437 - euclidean_distance: 0.7852
Epoch 13/350
46/46 [==============================] - 0s 887us/step - loss: 0.5226 - accuracy: 0.9554 - mae: 0.5226 - pearson_correlation: 0.6434 - euclidean_distance: 0.7787
Epoch 14/350
46/46 [==============================] - 0s 892us/step - loss: 0.5190 - accuracy: 0.9554 - mae: 0.5190 - pearson_correlation: 0.6394 - euclidean_distance: 0.7729
Epoch 15/350
46/46 [==============================] - 0s 924us/step - loss: 0.5149 - accuracy: 0.9554 - mae: 0.5149 - pearson_correlation: 0.6297 - euclidean_distance: 0.7670
Epoch 16/350
46/46 [==============================] - 0s 894us/step - loss: 0.5102 - accuracy: 0.9554 - mae: 0.5102 - pearson_correlation: 0.6324 - euclidean_distance: 0.7604
Epoch 17/350
46/46 [==============================] - 0s 903us/step - loss: 0.5072 - accuracy: 0.9554 - mae: 0.5072 - pearson_correlation: 0.6360 - euclidean_distance: 0.7560
Epoch 18/350
46/46 [==============================] - 0s 896us/step - loss: 0.5037 - accuracy: 0.9554 - mae: 0.5037 - pearson_correlation: 0.6335 - euclidean_distance: 0.7515
Epoch 19/350
46/46 [==============================] - 0s 899us/step - loss: 0.4996 - accuracy: 0.9554 - mae: 0.4996 - pearson_correlation: 0.6301 - euclidean_distance: 0.7450
Epoch 20/350
46/46 [==============================] - 0s 886us/step - loss: 0.4961 - accuracy: 0.9554 - mae: 0.4961 - pearson_correlation: 0.6266 - euclidean_distance: 0.7401
Epoch 21/350
46/46 [==============================] - 0s 885us/step - loss: 0.4917 - accuracy: 0.9554 - mae: 0.4917 - pearson_correlation: 0.6222 - euclidean_distance: 0.7338
Epoch 22/350
46/46 [==============================] - 0s 902us/step - loss: 0.4870 - accuracy: 0.9554 - mae: 0.4870 - pearson_correlation: 0.6236 - euclidean_distance: 0.7268
Epoch 23/350
46/46 [==============================] - 0s 879us/step - loss: 0.4830 - accuracy: 0.9554 - mae: 0.4830 - pearson_correlation: 0.6210 - euclidean_distance: 0.7206
Epoch 24/350
46/46 [==============================] - 0s 978us/step - loss: 0.4802 - accuracy: 0.9554 - mae: 0.4802 - pearson_correlation: 0.6172 - euclidean_distance: 0.7169
Epoch 25/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4769 - accuracy: 0.9554 - mae: 0.4769 - pearson_correlation: 0.6113 - euclidean_distance: 0.7117
Epoch 26/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4724 - accuracy: 0.9554 - mae: 0.4724 - pearson_correlation: 0.6115 - euclidean_distance: 0.7049
Epoch 27/350
46/46 [==============================] - 0s 992us/step - loss: 0.4688 - accuracy: 0.9554 - mae: 0.4688 - pearson_correlation: 0.6082 - euclidean_distance: 0.7002
Epoch 28/350
46/46 [==============================] - 0s 939us/step - loss: 0.4643 - accuracy: 0.9554 - mae: 0.4643 - pearson_correlation: 0.5963 - euclidean_distance: 0.6938
Epoch 29/350
46/46 [==============================] - 0s 939us/step - loss: 0.4616 - accuracy: 0.9554 - mae: 0.4616 - pearson_correlation: 0.6038 - euclidean_distance: 0.6890
Epoch 30/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4572 - accuracy: 0.9554 - mae: 0.4572 - pearson_correlation: 0.6013 - euclidean_distance: 0.6834
Epoch 31/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4534 - accuracy: 0.9554 - mae: 0.4534 - pearson_correlation: 0.5996 - euclidean_distance: 0.6777
Epoch 32/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4495 - accuracy: 0.9554 - mae: 0.4495 - pearson_correlation: 0.5966 - euclidean_distance: 0.6722
Epoch 33/350
46/46 [==============================] - 0s 969us/step - loss: 0.4466 - accuracy: 0.9554 - mae: 0.4466 - pearson_correlation: 0.5960 - euclidean_distance: 0.6682
Epoch 34/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4428 - accuracy: 0.9554 - mae: 0.4428 - pearson_correlation: 0.5932 - euclidean_distance: 0.6626
Epoch 35/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4396 - accuracy: 0.9554 - mae: 0.4396 - pearson_correlation: 0.5880 - euclidean_distance: 0.6585
Epoch 36/350
46/46 [==============================] - 0s 986us/step - loss: 0.4347 - accuracy: 0.9550 - mae: 0.4347 - pearson_correlation: 0.5853 - euclidean_distance: 0.6515
Epoch 37/350
46/46 [==============================] - 0s 867us/step - loss: 0.4313 - accuracy: 0.9554 - mae: 0.4313 - pearson_correlation: 0.5849 - euclidean_distance: 0.6465
Epoch 38/350
46/46 [==============================] - 0s 919us/step - loss: 0.4270 - accuracy: 0.9554 - mae: 0.4270 - pearson_correlation: 0.5802 - euclidean_distance: 0.6399
Epoch 39/350
46/46 [==============================] - 0s 912us/step - loss: 0.4246 - accuracy: 0.9554 - mae: 0.4246 - pearson_correlation: 0.5821 - euclidean_distance: 0.6370
Epoch 40/350
46/46 [==============================] - 0s 895us/step - loss: 0.4219 - accuracy: 0.9554 - mae: 0.4219 - pearson_correlation: 0.5750 - euclidean_distance: 0.6331
Epoch 41/350
46/46 [==============================] - 0s 899us/step - loss: 0.4163 - accuracy: 0.9554 - mae: 0.4163 - pearson_correlation: 0.5746 - euclidean_distance: 0.6246
Epoch 42/350
46/46 [==============================] - 0s 899us/step - loss: 0.4140 - accuracy: 0.9554 - mae: 0.4140 - pearson_correlation: 0.5736 - euclidean_distance: 0.6218
Epoch 43/350
46/46 [==============================] - 0s 899us/step - loss: 0.4093 - accuracy: 0.9554 - mae: 0.4093 - pearson_correlation: 0.5742 - euclidean_distance: 0.6149
Epoch 44/350
46/46 [==============================] - 0s 906us/step - loss: 0.4070 - accuracy: 0.9554 - mae: 0.4070 - pearson_correlation: 0.5678 - euclidean_distance: 0.6123
Epoch 45/350
46/46 [==============================] - 0s 892us/step - loss: 0.4028 - accuracy: 0.9554 - mae: 0.4028 - pearson_correlation: 0.5669 - euclidean_distance: 0.6061
Epoch 46/350
46/46 [==============================] - 0s 894us/step - loss: 0.3986 - accuracy: 0.9554 - mae: 0.3986 - pearson_correlation: 0.5622 - euclidean_distance: 0.5995
Epoch 47/350
46/46 [==============================] - 0s 908us/step - loss: 0.3971 - accuracy: 0.9554 - mae: 0.3971 - pearson_correlation: 0.5594 - euclidean_distance: 0.5980
Epoch 48/350
46/46 [==============================] - 0s 896us/step - loss: 0.3929 - accuracy: 0.9554 - mae: 0.3929 - pearson_correlation: 0.5614 - euclidean_distance: 0.5921
Epoch 49/350
46/46 [==============================] - 0s 891us/step - loss: 0.3903 - accuracy: 0.9554 - mae: 0.3903 - pearson_correlation: 0.5644 - euclidean_distance: 0.5879
Epoch 50/350
46/46 [==============================] - 0s 895us/step - loss: 0.3886 - accuracy: 0.9554 - mae: 0.3886 - pearson_correlation: 0.5634 - euclidean_distance: 0.5856
Epoch 51/350
46/46 [==============================] - 0s 898us/step - loss: 0.3829 - accuracy: 0.9554 - mae: 0.3829 - pearson_correlation: 0.5549 - euclidean_distance: 0.5773
Epoch 52/350
46/46 [==============================] - 0s 896us/step - loss: 0.3802 - accuracy: 0.9554 - mae: 0.3802 - pearson_correlation: 0.5570 - euclidean_distance: 0.5731
Epoch 53/350
46/46 [==============================] - 0s 897us/step - loss: 0.3759 - accuracy: 0.9554 - mae: 0.3759 - pearson_correlation: 0.5610 - euclidean_distance: 0.5685
Epoch 54/350
46/46 [==============================] - 0s 948us/step - loss: 0.3742 - accuracy: 0.9554 - mae: 0.3742 - pearson_correlation: 0.5549 - euclidean_distance: 0.5652
Epoch 55/350
46/46 [==============================] - 0s 897us/step - loss: 0.3711 - accuracy: 0.9554 - mae: 0.3711 - pearson_correlation: 0.5543 - euclidean_distance: 0.5606
Epoch 56/350
46/46 [==============================] - 0s 885us/step - loss: 0.3682 - accuracy: 0.9554 - mae: 0.3682 - pearson_correlation: 0.5523 - euclidean_distance: 0.5563
Epoch 57/350
46/46 [==============================] - 0s 900us/step - loss: 0.3642 - accuracy: 0.9554 - mae: 0.3642 - pearson_correlation: 0.5530 - euclidean_distance: 0.5512
Epoch 58/350
46/46 [==============================] - 0s 890us/step - loss: 0.3610 - accuracy: 0.9554 - mae: 0.3610 - pearson_correlation: 0.5507 - euclidean_distance: 0.5461
Epoch 59/350
46/46 [==============================] - 0s 876us/step - loss: 0.3591 - accuracy: 0.9554 - mae: 0.3591 - pearson_correlation: 0.5464 - euclidean_distance: 0.5432
Epoch 60/350
46/46 [==============================] - 0s 899us/step - loss: 0.3563 - accuracy: 0.9554 - mae: 0.3563 - pearson_correlation: 0.5534 - euclidean_distance: 0.5397
Epoch 61/350
46/46 [==============================] - 0s 888us/step - loss: 0.3520 - accuracy: 0.9554 - mae: 0.3520 - pearson_correlation: 0.5474 - euclidean_distance: 0.5337
Epoch 62/350
46/46 [==============================] - 0s 892us/step - loss: 0.3497 - accuracy: 0.9554 - mae: 0.3497 - pearson_correlation: 0.5503 - euclidean_distance: 0.5296
Epoch 63/350
46/46 [==============================] - 0s 900us/step - loss: 0.3454 - accuracy: 0.9554 - mae: 0.3454 - pearson_correlation: 0.5490 - euclidean_distance: 0.5240
Epoch 64/350
46/46 [==============================] - 0s 886us/step - loss: 0.3437 - accuracy: 0.9554 - mae: 0.3437 - pearson_correlation: 0.5490 - euclidean_distance: 0.5222
Epoch 65/350
46/46 [==============================] - 0s 896us/step - loss: 0.3417 - accuracy: 0.9554 - mae: 0.3417 - pearson_correlation: 0.5497 - euclidean_distance: 0.5188
Epoch 66/350
46/46 [==============================] - 0s 892us/step - loss: 0.3384 - accuracy: 0.9554 - mae: 0.3384 - pearson_correlation: 0.5492 - euclidean_distance: 0.5142
Epoch 67/350
46/46 [==============================] - 0s 895us/step - loss: 0.3363 - accuracy: 0.9554 - mae: 0.3363 - pearson_correlation: 0.5499 - euclidean_distance: 0.5111
Epoch 68/350
46/46 [==============================] - 0s 896us/step - loss: 0.3320 - accuracy: 0.9550 - mae: 0.3320 - pearson_correlation: 0.5507 - euclidean_distance: 0.5054
Epoch 69/350
46/46 [==============================] - 0s 895us/step - loss: 0.3307 - accuracy: 0.9554 - mae: 0.3307 - pearson_correlation: 0.5457 - euclidean_distance: 0.5033
Epoch 70/350
46/46 [==============================] - 0s 888us/step - loss: 0.3268 - accuracy: 0.9554 - mae: 0.3268 - pearson_correlation: 0.5438 - euclidean_distance: 0.4969
Epoch 71/350
46/46 [==============================] - 0s 899us/step - loss: 0.3235 - accuracy: 0.9554 - mae: 0.3235 - pearson_correlation: 0.5458 - euclidean_distance: 0.4927
Epoch 72/350
46/46 [==============================] - 0s 881us/step - loss: 0.3212 - accuracy: 0.9550 - mae: 0.3212 - pearson_correlation: 0.5503 - euclidean_distance: 0.4894
Epoch 73/350
46/46 [==============================] - 0s 890us/step - loss: 0.3202 - accuracy: 0.9554 - mae: 0.3202 - pearson_correlation: 0.5497 - euclidean_distance: 0.4873
Epoch 74/350
46/46 [==============================] - 0s 890us/step - loss: 0.3163 - accuracy: 0.9554 - mae: 0.3163 - pearson_correlation: 0.5502 - euclidean_distance: 0.4820
Epoch 75/350
46/46 [==============================] - 0s 904us/step - loss: 0.3131 - accuracy: 0.9554 - mae: 0.3131 - pearson_correlation: 0.5487 - euclidean_distance: 0.4781
Epoch 76/350
46/46 [==============================] - 0s 900us/step - loss: 0.3099 - accuracy: 0.9554 - mae: 0.3099 - pearson_correlation: 0.5520 - euclidean_distance: 0.4730
Epoch 77/350
46/46 [==============================] - 0s 893us/step - loss: 0.3066 - accuracy: 0.9554 - mae: 0.3066 - pearson_correlation: 0.5522 - euclidean_distance: 0.4681
Epoch 78/350
46/46 [==============================] - 0s 898us/step - loss: 0.3045 - accuracy: 0.9554 - mae: 0.3045 - pearson_correlation: 0.5514 - euclidean_distance: 0.4650
Epoch 79/350
46/46 [==============================] - 0s 891us/step - loss: 0.3017 - accuracy: 0.9554 - mae: 0.3017 - pearson_correlation: 0.5531 - euclidean_distance: 0.4610
Epoch 80/350
46/46 [==============================] - 0s 892us/step - loss: 0.2989 - accuracy: 0.9554 - mae: 0.2989 - pearson_correlation: 0.5494 - euclidean_distance: 0.4575
Epoch 81/350
46/46 [==============================] - 0s 891us/step - loss: 0.2964 - accuracy: 0.9554 - mae: 0.2964 - pearson_correlation: 0.5560 - euclidean_distance: 0.4533
Epoch 82/350
46/46 [==============================] - 0s 897us/step - loss: 0.2934 - accuracy: 0.9554 - mae: 0.2934 - pearson_correlation: 0.5561 - euclidean_distance: 0.4493
Epoch 83/350
46/46 [==============================] - 0s 896us/step - loss: 0.2908 - accuracy: 0.9550 - mae: 0.2908 - pearson_correlation: 0.5582 - euclidean_distance: 0.4450
Epoch 84/350
46/46 [==============================] - 0s 905us/step - loss: 0.2889 - accuracy: 0.9554 - mae: 0.2889 - pearson_correlation: 0.5585 - euclidean_distance: 0.4423
Epoch 85/350
46/46 [==============================] - 0s 916us/step - loss: 0.2850 - accuracy: 0.9541 - mae: 0.2850 - pearson_correlation: 0.5609 - euclidean_distance: 0.4372
Epoch 86/350
46/46 [==============================] - 0s 896us/step - loss: 0.2810 - accuracy: 0.9537 - mae: 0.2810 - pearson_correlation: 0.5585 - euclidean_distance: 0.4310
Epoch 87/350
46/46 [==============================] - 0s 885us/step - loss: 0.2790 - accuracy: 0.9550 - mae: 0.2790 - pearson_correlation: 0.5623 - euclidean_distance: 0.4278
Epoch 88/350
46/46 [==============================] - 0s 892us/step - loss: 0.2766 - accuracy: 0.9550 - mae: 0.2766 - pearson_correlation: 0.5621 - euclidean_distance: 0.4253
Epoch 89/350
46/46 [==============================] - 0s 895us/step - loss: 0.2748 - accuracy: 0.9554 - mae: 0.2748 - pearson_correlation: 0.5643 - euclidean_distance: 0.4215
Epoch 90/350
46/46 [==============================] - 0s 898us/step - loss: 0.2710 - accuracy: 0.9550 - mae: 0.2710 - pearson_correlation: 0.5691 - euclidean_distance: 0.4165
Epoch 91/350
46/46 [==============================] - 0s 888us/step - loss: 0.2706 - accuracy: 0.9554 - mae: 0.2706 - pearson_correlation: 0.5690 - euclidean_distance: 0.4154
Epoch 92/350
46/46 [==============================] - 0s 891us/step - loss: 0.2668 - accuracy: 0.9550 - mae: 0.2668 - pearson_correlation: 0.5710 - euclidean_distance: 0.4104
Epoch 93/350
46/46 [==============================] - 0s 922us/step - loss: 0.2628 - accuracy: 0.9550 - mae: 0.2628 - pearson_correlation: 0.5742 - euclidean_distance: 0.4042
Epoch 94/350
46/46 [==============================] - 0s 906us/step - loss: 0.2606 - accuracy: 0.9554 - mae: 0.2606 - pearson_correlation: 0.5729 - euclidean_distance: 0.4001
Epoch 95/350
46/46 [==============================] - 0s 893us/step - loss: 0.2594 - accuracy: 0.9550 - mae: 0.2594 - pearson_correlation: 0.5724 - euclidean_distance: 0.3995
Epoch 96/350
46/46 [==============================] - 0s 891us/step - loss: 0.2561 - accuracy: 0.9550 - mae: 0.2561 - pearson_correlation: 0.5735 - euclidean_distance: 0.3937
Epoch 97/350
46/46 [==============================] - 0s 887us/step - loss: 0.2499 - accuracy: 0.9554 - mae: 0.2499 - pearson_correlation: 0.5827 - euclidean_distance: 0.3855
Epoch 98/350
46/46 [==============================] - 0s 900us/step - loss: 0.2496 - accuracy: 0.9554 - mae: 0.2496 - pearson_correlation: 0.5814 - euclidean_distance: 0.3841
Epoch 99/350
46/46 [==============================] - 0s 890us/step - loss: 0.2459 - accuracy: 0.9554 - mae: 0.2459 - pearson_correlation: 0.5820 - euclidean_distance: 0.3795
Epoch 100/350
46/46 [==============================] - 0s 896us/step - loss: 0.2433 - accuracy: 0.9550 - mae: 0.2433 - pearson_correlation: 0.5783 - euclidean_distance: 0.3757
Epoch 101/350
46/46 [==============================] - 0s 891us/step - loss: 0.2424 - accuracy: 0.9550 - mae: 0.2424 - pearson_correlation: 0.5868 - euclidean_distance: 0.3738
Epoch 102/350
46/46 [==============================] - 0s 899us/step - loss: 0.2388 - accuracy: 0.9550 - mae: 0.2388 - pearson_correlation: 0.5793 - euclidean_distance: 0.3688
Epoch 103/350
46/46 [==============================] - 0s 887us/step - loss: 0.2367 - accuracy: 0.9550 - mae: 0.2367 - pearson_correlation: 0.5911 - euclidean_distance: 0.3660
Epoch 104/350
46/46 [==============================] - 0s 885us/step - loss: 0.2352 - accuracy: 0.9546 - mae: 0.2352 - pearson_correlation: 0.5835 - euclidean_distance: 0.3627
Epoch 105/350
46/46 [==============================] - 0s 902us/step - loss: 0.2307 - accuracy: 0.9554 - mae: 0.2307 - pearson_correlation: 0.5936 - euclidean_distance: 0.3563
Epoch 106/350
46/46 [==============================] - 0s 884us/step - loss: 0.2293 - accuracy: 0.9550 - mae: 0.2293 - pearson_correlation: 0.5881 - euclidean_distance: 0.3544
Epoch 107/350
46/46 [==============================] - 0s 886us/step - loss: 0.2246 - accuracy: 0.9546 - mae: 0.2246 - pearson_correlation: 0.5930 - euclidean_distance: 0.3482
Epoch 108/350
46/46 [==============================] - 0s 892us/step - loss: 0.2276 - accuracy: 0.9546 - mae: 0.2276 - pearson_correlation: 0.5891 - euclidean_distance: 0.3514
Epoch 109/350
46/46 [==============================] - 0s 908us/step - loss: 0.2197 - accuracy: 0.9546 - mae: 0.2197 - pearson_correlation: 0.6016 - euclidean_distance: 0.3398
Epoch 110/350
46/46 [==============================] - 0s 909us/step - loss: 0.2197 - accuracy: 0.9554 - mae: 0.2197 - pearson_correlation: 0.6016 - euclidean_distance: 0.3399
Epoch 111/350
46/46 [==============================] - 0s 868us/step - loss: 0.2174 - accuracy: 0.9550 - mae: 0.2174 - pearson_correlation: 0.6021 - euclidean_distance: 0.3371
Epoch 112/350
46/46 [==============================] - 0s 891us/step - loss: 0.2141 - accuracy: 0.9532 - mae: 0.2141 - pearson_correlation: 0.6002 - euclidean_distance: 0.3317
Epoch 113/350
46/46 [==============================] - 0s 918us/step - loss: 0.2118 - accuracy: 0.9550 - mae: 0.2118 - pearson_correlation: 0.6069 - euclidean_distance: 0.3288
Epoch 114/350
46/46 [==============================] - 0s 891us/step - loss: 0.2077 - accuracy: 0.9550 - mae: 0.2077 - pearson_correlation: 0.6051 - euclidean_distance: 0.3225
Epoch 115/350
46/46 [==============================] - 0s 890us/step - loss: 0.2029 - accuracy: 0.9546 - mae: 0.2029 - pearson_correlation: 0.6091 - euclidean_distance: 0.3160
Epoch 116/350
46/46 [==============================] - 0s 889us/step - loss: 0.2041 - accuracy: 0.9550 - mae: 0.2041 - pearson_correlation: 0.6108 - euclidean_distance: 0.3176
Epoch 117/350
46/46 [==============================] - 0s 906us/step - loss: 0.2008 - accuracy: 0.9554 - mae: 0.2008 - pearson_correlation: 0.6165 - euclidean_distance: 0.3131
Epoch 118/350
46/46 [==============================] - 0s 893us/step - loss: 0.1987 - accuracy: 0.9546 - mae: 0.1987 - pearson_correlation: 0.6167 - euclidean_distance: 0.3095
Epoch 119/350
46/46 [==============================] - 0s 888us/step - loss: 0.1960 - accuracy: 0.9550 - mae: 0.1960 - pearson_correlation: 0.6142 - euclidean_distance: 0.3057
Epoch 120/350
46/46 [==============================] - 0s 893us/step - loss: 0.1961 - accuracy: 0.9554 - mae: 0.1961 - pearson_correlation: 0.6126 - euclidean_distance: 0.3060
Epoch 121/350
46/46 [==============================] - 0s 886us/step - loss: 0.1902 - accuracy: 0.9546 - mae: 0.1902 - pearson_correlation: 0.6185 - euclidean_distance: 0.2973
Epoch 122/350
46/46 [==============================] - 0s 893us/step - loss: 0.1882 - accuracy: 0.9550 - mae: 0.1882 - pearson_correlation: 0.6229 - euclidean_distance: 0.2942
Epoch 123/350
46/46 [==============================] - 0s 879us/step - loss: 0.1884 - accuracy: 0.9532 - mae: 0.1884 - pearson_correlation: 0.6197 - euclidean_distance: 0.2944
Epoch 124/350
46/46 [==============================] - 0s 895us/step - loss: 0.1821 - accuracy: 0.9550 - mae: 0.1821 - pearson_correlation: 0.6242 - euclidean_distance: 0.2847
Epoch 125/350
46/46 [==============================] - 0s 897us/step - loss: 0.1808 - accuracy: 0.9515 - mae: 0.1808 - pearson_correlation: 0.6225 - euclidean_distance: 0.2834
Epoch 126/350
46/46 [==============================] - 0s 898us/step - loss: 0.1792 - accuracy: 0.9554 - mae: 0.1792 - pearson_correlation: 0.6290 - euclidean_distance: 0.2810
Epoch 127/350
46/46 [==============================] - 0s 879us/step - loss: 0.1779 - accuracy: 0.9528 - mae: 0.1779 - pearson_correlation: 0.6258 - euclidean_distance: 0.2795
Epoch 128/350
46/46 [==============================] - 0s 890us/step - loss: 0.1739 - accuracy: 0.9550 - mae: 0.1739 - pearson_correlation: 0.6321 - euclidean_distance: 0.2729
Epoch 129/350
46/46 [==============================] - 0s 892us/step - loss: 0.1712 - accuracy: 0.9554 - mae: 0.1712 - pearson_correlation: 0.6273 - euclidean_distance: 0.2692
Epoch 130/350
46/46 [==============================] - 0s 891us/step - loss: 0.1682 - accuracy: 0.9554 - mae: 0.1682 - pearson_correlation: 0.6274 - euclidean_distance: 0.2654
Epoch 131/350
46/46 [==============================] - 0s 883us/step - loss: 0.1670 - accuracy: 0.9550 - mae: 0.1670 - pearson_correlation: 0.6328 - euclidean_distance: 0.2633
Epoch 132/350
46/46 [==============================] - 0s 892us/step - loss: 0.1658 - accuracy: 0.9554 - mae: 0.1658 - pearson_correlation: 0.6335 - euclidean_distance: 0.2613
Epoch 133/350
46/46 [==============================] - 0s 882us/step - loss: 0.1623 - accuracy: 0.9554 - mae: 0.1623 - pearson_correlation: 0.6398 - euclidean_distance: 0.2560
Epoch 134/350
46/46 [==============================] - 0s 887us/step - loss: 0.1614 - accuracy: 0.9546 - mae: 0.1614 - pearson_correlation: 0.6347 - euclidean_distance: 0.2553
Epoch 135/350
46/46 [==============================] - 0s 895us/step - loss: 0.1578 - accuracy: 0.9546 - mae: 0.1578 - pearson_correlation: 0.6414 - euclidean_distance: 0.2494
Epoch 136/350
46/46 [==============================] - 0s 890us/step - loss: 0.1592 - accuracy: 0.9528 - mae: 0.1592 - pearson_correlation: 0.6355 - euclidean_distance: 0.2517
Epoch 137/350
46/46 [==============================] - 0s 996us/step - loss: 0.1555 - accuracy: 0.9537 - mae: 0.1555 - pearson_correlation: 0.6415 - euclidean_distance: 0.2465
Epoch 138/350
46/46 [==============================] - 0s 906us/step - loss: 0.1531 - accuracy: 0.9537 - mae: 0.1531 - pearson_correlation: 0.6401 - euclidean_distance: 0.2425
Epoch 139/350
46/46 [==============================] - 0s 893us/step - loss: 0.1521 - accuracy: 0.9541 - mae: 0.1521 - pearson_correlation: 0.6396 - euclidean_distance: 0.2414
Epoch 140/350
46/46 [==============================] - 0s 891us/step - loss: 0.1506 - accuracy: 0.9546 - mae: 0.1506 - pearson_correlation: 0.6427 - euclidean_distance: 0.2397
Epoch 141/350
46/46 [==============================] - 0s 890us/step - loss: 0.1487 - accuracy: 0.9532 - mae: 0.1487 - pearson_correlation: 0.6424 - euclidean_distance: 0.2360
Epoch 142/350
46/46 [==============================] - 0s 891us/step - loss: 0.1451 - accuracy: 0.9546 - mae: 0.1451 - pearson_correlation: 0.6477 - euclidean_distance: 0.2304
Epoch 143/350
46/46 [==============================] - 0s 887us/step - loss: 0.1449 - accuracy: 0.9532 - mae: 0.1449 - pearson_correlation: 0.6385 - euclidean_distance: 0.2308
Epoch 144/350
46/46 [==============================] - 0s 879us/step - loss: 0.1469 - accuracy: 0.9550 - mae: 0.1469 - pearson_correlation: 0.6365 - euclidean_distance: 0.2333
Epoch 145/350
46/46 [==============================] - 0s 889us/step - loss: 0.1410 - accuracy: 0.9541 - mae: 0.1410 - pearson_correlation: 0.6520 - euclidean_distance: 0.2242
Epoch 146/350
46/46 [==============================] - 0s 890us/step - loss: 0.1404 - accuracy: 0.9541 - mae: 0.1404 - pearson_correlation: 0.6487 - euclidean_distance: 0.2234
Epoch 147/350
46/46 [==============================] - 0s 882us/step - loss: 0.1402 - accuracy: 0.9537 - mae: 0.1402 - pearson_correlation: 0.6437 - euclidean_distance: 0.2231
Epoch 148/350
46/46 [==============================] - 0s 887us/step - loss: 0.1388 - accuracy: 0.9546 - mae: 0.1388 - pearson_correlation: 0.6483 - euclidean_distance: 0.2211
Epoch 149/350
46/46 [==============================] - 0s 888us/step - loss: 0.1373 - accuracy: 0.9550 - mae: 0.1373 - pearson_correlation: 0.6535 - euclidean_distance: 0.2188
Epoch 150/350
46/46 [==============================] - 0s 896us/step - loss: 0.1382 - accuracy: 0.9554 - mae: 0.1382 - pearson_correlation: 0.6488 - euclidean_distance: 0.2196
Epoch 151/350
46/46 [==============================] - 0s 880us/step - loss: 0.1340 - accuracy: 0.9554 - mae: 0.1340 - pearson_correlation: 0.6529 - euclidean_distance: 0.2139
Epoch 152/350
46/46 [==============================] - 0s 893us/step - loss: 0.1342 - accuracy: 0.9554 - mae: 0.1342 - pearson_correlation: 0.6573 - euclidean_distance: 0.2134
Epoch 153/350
46/46 [==============================] - 0s 887us/step - loss: 0.1326 - accuracy: 0.9559 - mae: 0.1326 - pearson_correlation: 0.6537 - euclidean_distance: 0.2124
Epoch 154/350
46/46 [==============================] - 0s 893us/step - loss: 0.1345 - accuracy: 0.9546 - mae: 0.1345 - pearson_correlation: 0.6489 - euclidean_distance: 0.2152
Epoch 155/350
46/46 [==============================] - 0s 889us/step - loss: 0.1295 - accuracy: 0.9554 - mae: 0.1295 - pearson_correlation: 0.6526 - euclidean_distance: 0.2072
Epoch 156/350
46/46 [==============================] - 0s 895us/step - loss: 0.1281 - accuracy: 0.9550 - mae: 0.1281 - pearson_correlation: 0.6610 - euclidean_distance: 0.2047
Epoch 157/350
46/46 [==============================] - 0s 889us/step - loss: 0.1290 - accuracy: 0.9550 - mae: 0.1290 - pearson_correlation: 0.6636 - euclidean_distance: 0.2056
Epoch 158/350
46/46 [==============================] - 0s 921us/step - loss: 0.1277 - accuracy: 0.9550 - mae: 0.1277 - pearson_correlation: 0.6586 - euclidean_distance: 0.2039
Epoch 159/350
46/46 [==============================] - 0s 896us/step - loss: 0.1289 - accuracy: 0.9554 - mae: 0.1289 - pearson_correlation: 0.6573 - euclidean_distance: 0.2049
Epoch 160/350
46/46 [==============================] - 0s 886us/step - loss: 0.1260 - accuracy: 0.9537 - mae: 0.1260 - pearson_correlation: 0.6595 - euclidean_distance: 0.2008
Epoch 161/350
46/46 [==============================] - 0s 890us/step - loss: 0.1266 - accuracy: 0.9541 - mae: 0.1266 - pearson_correlation: 0.6615 - euclidean_distance: 0.2013
Epoch 162/350
46/46 [==============================] - 0s 889us/step - loss: 0.1237 - accuracy: 0.9550 - mae: 0.1237 - pearson_correlation: 0.6693 - euclidean_distance: 0.1977
Epoch 163/350
46/46 [==============================] - 0s 891us/step - loss: 0.1236 - accuracy: 0.9554 - mae: 0.1236 - pearson_correlation: 0.6681 - euclidean_distance: 0.1971
Epoch 164/350
46/46 [==============================] - 0s 889us/step - loss: 0.1232 - accuracy: 0.9554 - mae: 0.1232 - pearson_correlation: 0.6607 - euclidean_distance: 0.1968
Epoch 165/350
46/46 [==============================] - 0s 895us/step - loss: 0.1239 - accuracy: 0.9554 - mae: 0.1239 - pearson_correlation: 0.6655 - euclidean_distance: 0.1976
Epoch 166/350
46/46 [==============================] - 0s 886us/step - loss: 0.1219 - accuracy: 0.9554 - mae: 0.1219 - pearson_correlation: 0.6653 - euclidean_distance: 0.1944
Epoch 167/350
46/46 [==============================] - 0s 893us/step - loss: 0.1212 - accuracy: 0.9541 - mae: 0.1212 - pearson_correlation: 0.6687 - euclidean_distance: 0.1934
Epoch 168/350
46/46 [==============================] - 0s 880us/step - loss: 0.1214 - accuracy: 0.9554 - mae: 0.1214 - pearson_correlation: 0.6631 - euclidean_distance: 0.1940
Epoch 169/350
46/46 [==============================] - 0s 891us/step - loss: 0.1190 - accuracy: 0.9546 - mae: 0.1190 - pearson_correlation: 0.6707 - euclidean_distance: 0.1892
Epoch 170/350
46/46 [==============================] - 0s 891us/step - loss: 0.1189 - accuracy: 0.9550 - mae: 0.1189 - pearson_correlation: 0.6705 - euclidean_distance: 0.1893
Epoch 171/350
46/46 [==============================] - 0s 886us/step - loss: 0.1190 - accuracy: 0.9550 - mae: 0.1190 - pearson_correlation: 0.6722 - euclidean_distance: 0.1897
Epoch 172/350
46/46 [==============================] - 0s 896us/step - loss: 0.1190 - accuracy: 0.9546 - mae: 0.1190 - pearson_correlation: 0.6685 - euclidean_distance: 0.1900
Epoch 173/350
46/46 [==============================] - 0s 893us/step - loss: 0.1177 - accuracy: 0.9550 - mae: 0.1177 - pearson_correlation: 0.6704 - euclidean_distance: 0.1876
Epoch 174/350
46/46 [==============================] - 0s 891us/step - loss: 0.1191 - accuracy: 0.9550 - mae: 0.1191 - pearson_correlation: 0.6733 - euclidean_distance: 0.1896
Epoch 175/350
46/46 [==============================] - 0s 888us/step - loss: 0.1177 - accuracy: 0.9541 - mae: 0.1177 - pearson_correlation: 0.6721 - euclidean_distance: 0.1876
Epoch 176/350
46/46 [==============================] - 0s 895us/step - loss: 0.1180 - accuracy: 0.9546 - mae: 0.1180 - pearson_correlation: 0.6728 - euclidean_distance: 0.1876
Epoch 177/350
46/46 [==============================] - 0s 897us/step - loss: 0.1181 - accuracy: 0.9550 - mae: 0.1181 - pearson_correlation: 0.6762 - euclidean_distance: 0.1879
Epoch 178/350
46/46 [==============================] - 0s 920us/step - loss: 0.1144 - accuracy: 0.9554 - mae: 0.1144 - pearson_correlation: 0.6781 - euclidean_distance: 0.1826
Epoch 179/350
46/46 [==============================] - 0s 904us/step - loss: 0.1136 - accuracy: 0.9541 - mae: 0.1136 - pearson_correlation: 0.6741 - euclidean_distance: 0.1814
Epoch 180/350
46/46 [==============================] - 0s 899us/step - loss: 0.1124 - accuracy: 0.9550 - mae: 0.1124 - pearson_correlation: 0.6823 - euclidean_distance: 0.1791
Epoch 181/350
46/46 [==============================] - 0s 906us/step - loss: 0.1152 - accuracy: 0.9550 - mae: 0.1152 - pearson_correlation: 0.6781 - euclidean_distance: 0.1837
Epoch 182/350
46/46 [==============================] - 0s 874us/step - loss: 0.1113 - accuracy: 0.9550 - mae: 0.1113 - pearson_correlation: 0.6839 - euclidean_distance: 0.1774
Epoch 183/350
46/46 [==============================] - 0s 892us/step - loss: 0.1137 - accuracy: 0.9550 - mae: 0.1137 - pearson_correlation: 0.6854 - euclidean_distance: 0.1808
Epoch 184/350
46/46 [==============================] - 0s 897us/step - loss: 0.1132 - accuracy: 0.9550 - mae: 0.1132 - pearson_correlation: 0.6854 - euclidean_distance: 0.1805
Epoch 185/350
46/46 [==============================] - 0s 898us/step - loss: 0.1109 - accuracy: 0.9541 - mae: 0.1109 - pearson_correlation: 0.6815 - euclidean_distance: 0.1771
Epoch 186/350
46/46 [==============================] - 0s 902us/step - loss: 0.1111 - accuracy: 0.9546 - mae: 0.1111 - pearson_correlation: 0.6815 - euclidean_distance: 0.1775
Epoch 187/350
46/46 [==============================] - 0s 888us/step - loss: 0.1096 - accuracy: 0.9550 - mae: 0.1096 - pearson_correlation: 0.6846 - euclidean_distance: 0.1746
Epoch 188/350
46/46 [==============================] - 0s 931us/step - loss: 0.1094 - accuracy: 0.9541 - mae: 0.1094 - pearson_correlation: 0.6915 - euclidean_distance: 0.1749
Epoch 189/350
46/46 [==============================] - 0s 908us/step - loss: 0.1108 - accuracy: 0.9541 - mae: 0.1108 - pearson_correlation: 0.6842 - euclidean_distance: 0.1765
Epoch 190/350
46/46 [==============================] - 0s 903us/step - loss: 0.1121 - accuracy: 0.9541 - mae: 0.1121 - pearson_correlation: 0.6829 - euclidean_distance: 0.1792
Epoch 191/350
46/46 [==============================] - 0s 885us/step - loss: 0.1085 - accuracy: 0.9554 - mae: 0.1085 - pearson_correlation: 0.6893 - euclidean_distance: 0.1735
Epoch 192/350
46/46 [==============================] - 0s 890us/step - loss: 0.1073 - accuracy: 0.9554 - mae: 0.1073 - pearson_correlation: 0.6927 - euclidean_distance: 0.1710
Epoch 193/350
46/46 [==============================] - 0s 884us/step - loss: 0.1086 - accuracy: 0.9554 - mae: 0.1086 - pearson_correlation: 0.6862 - euclidean_distance: 0.1735
Epoch 194/350
46/46 [==============================] - 0s 887us/step - loss: 0.1057 - accuracy: 0.9554 - mae: 0.1057 - pearson_correlation: 0.6916 - euclidean_distance: 0.1690
Epoch 195/350
46/46 [==============================] - 0s 882us/step - loss: 0.1098 - accuracy: 0.9546 - mae: 0.1098 - pearson_correlation: 0.6883 - euclidean_distance: 0.1750
Epoch 196/350
46/46 [==============================] - 0s 897us/step - loss: 0.1088 - accuracy: 0.9550 - mae: 0.1088 - pearson_correlation: 0.6844 - euclidean_distance: 0.1741
Epoch 197/350
46/46 [==============================] - 0s 887us/step - loss: 0.1072 - accuracy: 0.9546 - mae: 0.1072 - pearson_correlation: 0.6899 - euclidean_distance: 0.1717
Epoch 198/350
46/46 [==============================] - 0s 895us/step - loss: 0.1049 - accuracy: 0.9550 - mae: 0.1049 - pearson_correlation: 0.6964 - euclidean_distance: 0.1675
Epoch 199/350
46/46 [==============================] - 0s 889us/step - loss: 0.1051 - accuracy: 0.9554 - mae: 0.1051 - pearson_correlation: 0.6990 - euclidean_distance: 0.1681
Epoch 200/350
46/46 [==============================] - 0s 888us/step - loss: 0.1078 - accuracy: 0.9546 - mae: 0.1078 - pearson_correlation: 0.6955 - euclidean_distance: 0.1724
Epoch 201/350
46/46 [==============================] - 0s 882us/step - loss: 0.1056 - accuracy: 0.9550 - mae: 0.1056 - pearson_correlation: 0.6973 - euclidean_distance: 0.1691
Epoch 202/350
46/46 [==============================] - 0s 886us/step - loss: 0.1058 - accuracy: 0.9541 - mae: 0.1058 - pearson_correlation: 0.6945 - euclidean_distance: 0.1696
Epoch 203/350
46/46 [==============================] - 0s 896us/step - loss: 0.1065 - accuracy: 0.9541 - mae: 0.1065 - pearson_correlation: 0.6973 - euclidean_distance: 0.1700
Epoch 204/350
46/46 [==============================] - 0s 901us/step - loss: 0.1033 - accuracy: 0.9546 - mae: 0.1033 - pearson_correlation: 0.6976 - euclidean_distance: 0.1656
Epoch 205/350
46/46 [==============================] - 0s 894us/step - loss: 0.1032 - accuracy: 0.9550 - mae: 0.1032 - pearson_correlation: 0.7031 - euclidean_distance: 0.1650
Epoch 206/350
46/46 [==============================] - 0s 890us/step - loss: 0.1031 - accuracy: 0.9550 - mae: 0.1031 - pearson_correlation: 0.6969 - euclidean_distance: 0.1648
Epoch 207/350
46/46 [==============================] - 0s 888us/step - loss: 0.1034 - accuracy: 0.9546 - mae: 0.1034 - pearson_correlation: 0.7044 - euclidean_distance: 0.1652
Epoch 208/350
46/46 [==============================] - 0s 876us/step - loss: 0.1051 - accuracy: 0.9554 - mae: 0.1051 - pearson_correlation: 0.7003 - euclidean_distance: 0.1683
Epoch 209/350
46/46 [==============================] - 0s 889us/step - loss: 0.1048 - accuracy: 0.9554 - mae: 0.1048 - pearson_correlation: 0.6976 - euclidean_distance: 0.1675
Epoch 210/350
46/46 [==============================] - 0s 890us/step - loss: 0.1041 - accuracy: 0.9550 - mae: 0.1041 - pearson_correlation: 0.7046 - euclidean_distance: 0.1659
Epoch 211/350
46/46 [==============================] - 0s 903us/step - loss: 0.1032 - accuracy: 0.9537 - mae: 0.1032 - pearson_correlation: 0.7022 - euclidean_distance: 0.1649
Epoch 212/350
46/46 [==============================] - 0s 888us/step - loss: 0.1010 - accuracy: 0.9550 - mae: 0.1010 - pearson_correlation: 0.7039 - euclidean_distance: 0.1617
Epoch 213/350
46/46 [==============================] - 0s 880us/step - loss: 0.1031 - accuracy: 0.9546 - mae: 0.1031 - pearson_correlation: 0.7022 - euclidean_distance: 0.1650
Epoch 214/350
46/46 [==============================] - 0s 890us/step - loss: 0.1009 - accuracy: 0.9541 - mae: 0.1009 - pearson_correlation: 0.7083 - euclidean_distance: 0.1614
Epoch 215/350
46/46 [==============================] - 0s 885us/step - loss: 0.1003 - accuracy: 0.9554 - mae: 0.1003 - pearson_correlation: 0.7108 - euclidean_distance: 0.1605
Epoch 216/350
46/46 [==============================] - 0s 891us/step - loss: 0.1005 - accuracy: 0.9541 - mae: 0.1005 - pearson_correlation: 0.7082 - euclidean_distance: 0.1609
Epoch 217/350
46/46 [==============================] - 0s 888us/step - loss: 0.1021 - accuracy: 0.9550 - mae: 0.1021 - pearson_correlation: 0.7080 - euclidean_distance: 0.1635
Epoch 218/350
46/46 [==============================] - 0s 901us/step - loss: 0.0993 - accuracy: 0.9546 - mae: 0.0993 - pearson_correlation: 0.7090 - euclidean_distance: 0.1593
Epoch 219/350
46/46 [==============================] - 0s 893us/step - loss: 0.1012 - accuracy: 0.9550 - mae: 0.1012 - pearson_correlation: 0.7072 - euclidean_distance: 0.1624
Epoch 220/350
46/46 [==============================] - 0s 920us/step - loss: 0.1005 - accuracy: 0.9550 - mae: 0.1005 - pearson_correlation: 0.7071 - euclidean_distance: 0.1611
Epoch 221/350
46/46 [==============================] - 0s 858us/step - loss: 0.1000 - accuracy: 0.9550 - mae: 0.1000 - pearson_correlation: 0.7096 - euclidean_distance: 0.1599
Epoch 222/350
46/46 [==============================] - 0s 884us/step - loss: 0.0981 - accuracy: 0.9554 - mae: 0.0981 - pearson_correlation: 0.7184 - euclidean_distance: 0.1572
Epoch 223/350
46/46 [==============================] - 0s 879us/step - loss: 0.1014 - accuracy: 0.9546 - mae: 0.1014 - pearson_correlation: 0.7071 - euclidean_distance: 0.1628
Epoch 224/350
46/46 [==============================] - 0s 886us/step - loss: 0.0993 - accuracy: 0.9550 - mae: 0.0993 - pearson_correlation: 0.7142 - euclidean_distance: 0.1586
Epoch 225/350
46/46 [==============================] - 0s 892us/step - loss: 0.0986 - accuracy: 0.9554 - mae: 0.0986 - pearson_correlation: 0.7095 - euclidean_distance: 0.1579
Epoch 226/350
46/46 [==============================] - 0s 890us/step - loss: 0.0994 - accuracy: 0.9550 - mae: 0.0994 - pearson_correlation: 0.7156 - euclidean_distance: 0.1587
Epoch 227/350
46/46 [==============================] - 0s 888us/step - loss: 0.0965 - accuracy: 0.9546 - mae: 0.0965 - pearson_correlation: 0.7146 - euclidean_distance: 0.1548
Epoch 228/350
46/46 [==============================] - 0s 887us/step - loss: 0.0967 - accuracy: 0.9546 - mae: 0.0967 - pearson_correlation: 0.7171 - euclidean_distance: 0.1552
Epoch 229/350
46/46 [==============================] - 0s 886us/step - loss: 0.0958 - accuracy: 0.9546 - mae: 0.0958 - pearson_correlation: 0.7164 - euclidean_distance: 0.1542
Epoch 230/350
46/46 [==============================] - 0s 887us/step - loss: 0.0967 - accuracy: 0.9554 - mae: 0.0967 - pearson_correlation: 0.7178 - euclidean_distance: 0.1551
Epoch 231/350
46/46 [==============================] - 0s 889us/step - loss: 0.0999 - accuracy: 0.9550 - mae: 0.0999 - pearson_correlation: 0.7083 - euclidean_distance: 0.1597
Epoch 232/350
46/46 [==============================] - 0s 885us/step - loss: 0.0997 - accuracy: 0.9550 - mae: 0.0997 - pearson_correlation: 0.7083 - euclidean_distance: 0.1605
Epoch 233/350
46/46 [==============================] - 0s 893us/step - loss: 0.0981 - accuracy: 0.9550 - mae: 0.0981 - pearson_correlation: 0.7188 - euclidean_distance: 0.1577
Epoch 234/350
46/46 [==============================] - 0s 917us/step - loss: 0.0971 - accuracy: 0.9554 - mae: 0.0971 - pearson_correlation: 0.7159 - euclidean_distance: 0.1556
Epoch 235/350
46/46 [==============================] - 0s 886us/step - loss: 0.0969 - accuracy: 0.9554 - mae: 0.0969 - pearson_correlation: 0.7176 - euclidean_distance: 0.1552
Epoch 236/350
46/46 [==============================] - 0s 920us/step - loss: 0.0948 - accuracy: 0.9546 - mae: 0.0948 - pearson_correlation: 0.7225 - euclidean_distance: 0.1519
Epoch 237/350
46/46 [==============================] - 0s 886us/step - loss: 0.0967 - accuracy: 0.9541 - mae: 0.0967 - pearson_correlation: 0.7132 - euclidean_distance: 0.1552
Epoch 238/350
46/46 [==============================] - 0s 892us/step - loss: 0.0947 - accuracy: 0.9541 - mae: 0.0947 - pearson_correlation: 0.7229 - euclidean_distance: 0.1519
Epoch 239/350
46/46 [==============================] - 0s 890us/step - loss: 0.0949 - accuracy: 0.9550 - mae: 0.0949 - pearson_correlation: 0.7214 - euclidean_distance: 0.1526
Epoch 240/350
46/46 [==============================] - 0s 886us/step - loss: 0.0944 - accuracy: 0.9550 - mae: 0.0944 - pearson_correlation: 0.7242 - euclidean_distance: 0.1518
Epoch 241/350
46/46 [==============================] - 0s 887us/step - loss: 0.0941 - accuracy: 0.9550 - mae: 0.0941 - pearson_correlation: 0.7236 - euclidean_distance: 0.1513
Epoch 242/350
46/46 [==============================] - 0s 922us/step - loss: 0.0942 - accuracy: 0.9550 - mae: 0.0942 - pearson_correlation: 0.7198 - euclidean_distance: 0.1515
Epoch 243/350
46/46 [==============================] - 0s 889us/step - loss: 0.0943 - accuracy: 0.9550 - mae: 0.0943 - pearson_correlation: 0.7210 - euclidean_distance: 0.1515
Epoch 244/350
46/46 [==============================] - 0s 885us/step - loss: 0.0930 - accuracy: 0.9550 - mae: 0.0930 - pearson_correlation: 0.7239 - euclidean_distance: 0.1492
Epoch 245/350
46/46 [==============================] - 0s 890us/step - loss: 0.0950 - accuracy: 0.9554 - mae: 0.0950 - pearson_correlation: 0.7209 - euclidean_distance: 0.1524
Epoch 246/350
46/46 [==============================] - 0s 896us/step - loss: 0.0955 - accuracy: 0.9550 - mae: 0.0955 - pearson_correlation: 0.7194 - euclidean_distance: 0.1532
Epoch 247/350
46/46 [==============================] - 0s 898us/step - loss: 0.0947 - accuracy: 0.9546 - mae: 0.0947 - pearson_correlation: 0.7235 - euclidean_distance: 0.1524
Epoch 248/350
46/46 [==============================] - 0s 902us/step - loss: 0.0925 - accuracy: 0.9550 - mae: 0.0925 - pearson_correlation: 0.7306 - euclidean_distance: 0.1481
Epoch 249/350
46/46 [==============================] - 0s 1ms/step - loss: 0.0920 - accuracy: 0.9550 - mae: 0.0920 - pearson_correlation: 0.7249 - euclidean_distance: 0.1481
Epoch 250/350
46/46 [==============================] - 0s 972us/step - loss: 0.0958 - accuracy: 0.9532 - mae: 0.0958 - pearson_correlation: 0.7230 - euclidean_distance: 0.1537
Epoch 251/350
46/46 [==============================] - 0s 948us/step - loss: 0.0954 - accuracy: 0.9554 - mae: 0.0954 - pearson_correlation: 0.7196 - euclidean_distance: 0.1537
Epoch 252/350
46/46 [==============================] - 0s 958us/step - loss: 0.0915 - accuracy: 0.9554 - mae: 0.0915 - pearson_correlation: 0.7267 - euclidean_distance: 0.1473
Epoch 253/350
46/46 [==============================] - 0s 946us/step - loss: 0.0925 - accuracy: 0.9550 - mae: 0.0925 - pearson_correlation: 0.7218 - euclidean_distance: 0.1490
Epoch 254/350
46/46 [==============================] - 0s 956us/step - loss: 0.0947 - accuracy: 0.9550 - mae: 0.0947 - pearson_correlation: 0.7243 - euclidean_distance: 0.1523
Epoch 255/350
46/46 [==============================] - 0s 927us/step - loss: 0.0902 - accuracy: 0.9546 - mae: 0.0902 - pearson_correlation: 0.7228 - euclidean_distance: 0.1450
Epoch 256/350
46/46 [==============================] - 0s 964us/step - loss: 0.0935 - accuracy: 0.9550 - mae: 0.0935 - pearson_correlation: 0.7187 - euclidean_distance: 0.1503
Epoch 257/350
46/46 [==============================] - 0s 945us/step - loss: 0.0908 - accuracy: 0.9554 - mae: 0.0908 - pearson_correlation: 0.7310 - euclidean_distance: 0.1459
Epoch 258/350
46/46 [==============================] - 0s 937us/step - loss: 0.0886 - accuracy: 0.9550 - mae: 0.0886 - pearson_correlation: 0.7323 - euclidean_distance: 0.1425
Epoch 259/350
46/46 [==============================] - 0s 899us/step - loss: 0.0926 - accuracy: 0.9550 - mae: 0.0926 - pearson_correlation: 0.7289 - euclidean_distance: 0.1486
Epoch 260/350
46/46 [==============================] - 0s 897us/step - loss: 0.0914 - accuracy: 0.9550 - mae: 0.0914 - pearson_correlation: 0.7276 - euclidean_distance: 0.1464
Epoch 261/350
46/46 [==============================] - 0s 898us/step - loss: 0.0906 - accuracy: 0.9550 - mae: 0.0906 - pearson_correlation: 0.7336 - euclidean_distance: 0.1460
Epoch 262/350
46/46 [==============================] - 0s 900us/step - loss: 0.0919 - accuracy: 0.9546 - mae: 0.0919 - pearson_correlation: 0.7287 - euclidean_distance: 0.1476
Epoch 263/350
46/46 [==============================] - 0s 900us/step - loss: 0.0895 - accuracy: 0.9546 - mae: 0.0895 - pearson_correlation: 0.7308 - euclidean_distance: 0.1440
Epoch 264/350
46/46 [==============================] - 0s 890us/step - loss: 0.0902 - accuracy: 0.9537 - mae: 0.0902 - pearson_correlation: 0.7320 - euclidean_distance: 0.1448
Epoch 265/350
46/46 [==============================] - 0s 885us/step - loss: 0.0907 - accuracy: 0.9546 - mae: 0.0907 - pearson_correlation: 0.7343 - euclidean_distance: 0.1454
Epoch 266/350
46/46 [==============================] - 0s 888us/step - loss: 0.0899 - accuracy: 0.9554 - mae: 0.0899 - pearson_correlation: 0.7272 - euclidean_distance: 0.1445
Epoch 267/350
46/46 [==============================] - 0s 894us/step - loss: 0.0895 - accuracy: 0.9550 - mae: 0.0895 - pearson_correlation: 0.7388 - euclidean_distance: 0.1442
Epoch 268/350
46/46 [==============================] - 0s 895us/step - loss: 0.0889 - accuracy: 0.9546 - mae: 0.0889 - pearson_correlation: 0.7395 - euclidean_distance: 0.1430
Epoch 269/350
46/46 [==============================] - 0s 898us/step - loss: 0.0923 - accuracy: 0.9554 - mae: 0.0923 - pearson_correlation: 0.7336 - euclidean_distance: 0.1481
Epoch 270/350
46/46 [==============================] - 0s 891us/step - loss: 0.0893 - accuracy: 0.9550 - mae: 0.0893 - pearson_correlation: 0.7374 - euclidean_distance: 0.1436
Epoch 271/350
46/46 [==============================] - 0s 898us/step - loss: 0.0888 - accuracy: 0.9546 - mae: 0.0888 - pearson_correlation: 0.7401 - euclidean_distance: 0.1432
Epoch 272/350
46/46 [==============================] - 0s 900us/step - loss: 0.0884 - accuracy: 0.9546 - mae: 0.0884 - pearson_correlation: 0.7357 - euclidean_distance: 0.1424
Epoch 273/350
46/46 [==============================] - 0s 885us/step - loss: 0.0878 - accuracy: 0.9550 - mae: 0.0878 - pearson_correlation: 0.7380 - euclidean_distance: 0.1417
Epoch 274/350
46/46 [==============================] - 0s 893us/step - loss: 0.0908 - accuracy: 0.9550 - mae: 0.0908 - pearson_correlation: 0.7354 - euclidean_distance: 0.1462
Epoch 275/350
46/46 [==============================] - 0s 897us/step - loss: 0.0868 - accuracy: 0.9550 - mae: 0.0868 - pearson_correlation: 0.7426 - euclidean_distance: 0.1402
Epoch 276/350
46/46 [==============================] - 0s 886us/step - loss: 0.0884 - accuracy: 0.9546 - mae: 0.0884 - pearson_correlation: 0.7403 - euclidean_distance: 0.1422
Epoch 277/350
46/46 [==============================] - 0s 966us/step - loss: 0.0916 - accuracy: 0.9546 - mae: 0.0916 - pearson_correlation: 0.7277 - euclidean_distance: 0.1474
Epoch 278/350
46/46 [==============================] - 0s 933us/step - loss: 0.0885 - accuracy: 0.9550 - mae: 0.0885 - pearson_correlation: 0.7407 - euclidean_distance: 0.1428
Epoch 279/350
46/46 [==============================] - 0s 899us/step - loss: 0.0886 - accuracy: 0.9550 - mae: 0.0886 - pearson_correlation: 0.7352 - euclidean_distance: 0.1427
Epoch 280/350
46/46 [==============================] - 0s 890us/step - loss: 0.0917 - accuracy: 0.9550 - mae: 0.0917 - pearson_correlation: 0.7292 - euclidean_distance: 0.1472
Epoch 281/350
46/46 [==============================] - 0s 899us/step - loss: 0.0869 - accuracy: 0.9541 - mae: 0.0869 - pearson_correlation: 0.7431 - euclidean_distance: 0.1402
Epoch 282/350
46/46 [==============================] - 0s 890us/step - loss: 0.0894 - accuracy: 0.9541 - mae: 0.0894 - pearson_correlation: 0.7325 - euclidean_distance: 0.1442
Epoch 283/350
46/46 [==============================] - 0s 890us/step - loss: 0.0869 - accuracy: 0.9550 - mae: 0.0869 - pearson_correlation: 0.7372 - euclidean_distance: 0.1402
Epoch 284/350
46/46 [==============================] - 0s 894us/step - loss: 0.0867 - accuracy: 0.9554 - mae: 0.0867 - pearson_correlation: 0.7374 - euclidean_distance: 0.1396
Epoch 285/350
46/46 [==============================] - 0s 896us/step - loss: 0.0869 - accuracy: 0.9537 - mae: 0.0869 - pearson_correlation: 0.7404 - euclidean_distance: 0.1406
Epoch 286/350
46/46 [==============================] - 0s 892us/step - loss: 0.0877 - accuracy: 0.9546 - mae: 0.0877 - pearson_correlation: 0.7376 - euclidean_distance: 0.1414
Epoch 287/350
46/46 [==============================] - 0s 896us/step - loss: 0.0881 - accuracy: 0.9546 - mae: 0.0881 - pearson_correlation: 0.7383 - euclidean_distance: 0.1417
Epoch 288/350
46/46 [==============================] - 0s 892us/step - loss: 0.0874 - accuracy: 0.9546 - mae: 0.0874 - pearson_correlation: 0.7372 - euclidean_distance: 0.1411
Epoch 289/350
46/46 [==============================] - 0s 866us/step - loss: 0.0881 - accuracy: 0.9550 - mae: 0.0881 - pearson_correlation: 0.7400 - euclidean_distance: 0.1419
Epoch 290/350
46/46 [==============================] - 0s 906us/step - loss: 0.0890 - accuracy: 0.9554 - mae: 0.0890 - pearson_correlation: 0.7328 - euclidean_distance: 0.1433
Epoch 291/350
46/46 [==============================] - 0s 915us/step - loss: 0.0861 - accuracy: 0.9537 - mae: 0.0861 - pearson_correlation: 0.7457 - euclidean_distance: 0.1391
Epoch 292/350
46/46 [==============================] - 0s 889us/step - loss: 0.0888 - accuracy: 0.9546 - mae: 0.0888 - pearson_correlation: 0.7391 - euclidean_distance: 0.1429
Epoch 293/350
46/46 [==============================] - 0s 892us/step - loss: 0.0853 - accuracy: 0.9546 - mae: 0.0853 - pearson_correlation: 0.7458 - euclidean_distance: 0.1372
Epoch 294/350
46/46 [==============================] - 0s 891us/step - loss: 0.0861 - accuracy: 0.9541 - mae: 0.0861 - pearson_correlation: 0.7393 - euclidean_distance: 0.1391
Epoch 295/350
46/46 [==============================] - 0s 904us/step - loss: 0.0860 - accuracy: 0.9546 - mae: 0.0860 - pearson_correlation: 0.7427 - euclidean_distance: 0.1386
Epoch 296/350
46/46 [==============================] - 0s 898us/step - loss: 0.0857 - accuracy: 0.9554 - mae: 0.0857 - pearson_correlation: 0.7412 - euclidean_distance: 0.1384
Epoch 297/350
46/46 [==============================] - 0s 896us/step - loss: 0.0850 - accuracy: 0.9550 - mae: 0.0850 - pearson_correlation: 0.7430 - euclidean_distance: 0.1375
Epoch 298/350
46/46 [==============================] - 0s 874us/step - loss: 0.0863 - accuracy: 0.9550 - mae: 0.0863 - pearson_correlation: 0.7473 - euclidean_distance: 0.1390
Epoch 299/350
46/46 [==============================] - 0s 879us/step - loss: 0.0887 - accuracy: 0.9541 - mae: 0.0887 - pearson_correlation: 0.7360 - euclidean_distance: 0.1424
Epoch 300/350
46/46 [==============================] - 0s 969us/step - loss: 0.0846 - accuracy: 0.9554 - mae: 0.0846 - pearson_correlation: 0.7452 - euclidean_distance: 0.1364
Epoch 301/350
46/46 [==============================] - 0s 894us/step - loss: 0.0861 - accuracy: 0.9550 - mae: 0.0861 - pearson_correlation: 0.7435 - euclidean_distance: 0.1386
Epoch 302/350
46/46 [==============================] - 0s 903us/step - loss: 0.0833 - accuracy: 0.9546 - mae: 0.0833 - pearson_correlation: 0.7487 - euclidean_distance: 0.1345
Epoch 303/350
46/46 [==============================] - 0s 866us/step - loss: 0.0841 - accuracy: 0.9550 - mae: 0.0841 - pearson_correlation: 0.7491 - euclidean_distance: 0.1358
Epoch 304/350
46/46 [==============================] - 0s 891us/step - loss: 0.0841 - accuracy: 0.9550 - mae: 0.0841 - pearson_correlation: 0.7467 - euclidean_distance: 0.1357
Epoch 305/350
46/46 [==============================] - 0s 893us/step - loss: 0.0846 - accuracy: 0.9546 - mae: 0.0846 - pearson_correlation: 0.7448 - euclidean_distance: 0.1368
Epoch 306/350
46/46 [==============================] - 0s 889us/step - loss: 0.0864 - accuracy: 0.9554 - mae: 0.0864 - pearson_correlation: 0.7400 - euclidean_distance: 0.1399
Epoch 307/350
46/46 [==============================] - 0s 898us/step - loss: 0.0867 - accuracy: 0.9546 - mae: 0.0867 - pearson_correlation: 0.7414 - euclidean_distance: 0.1399
Epoch 308/350
46/46 [==============================] - 0s 936us/step - loss: 0.0871 - accuracy: 0.9554 - mae: 0.0871 - pearson_correlation: 0.7422 - euclidean_distance: 0.1402
Epoch 309/350
46/46 [==============================] - 0s 902us/step - loss: 0.0881 - accuracy: 0.9546 - mae: 0.0881 - pearson_correlation: 0.7405 - euclidean_distance: 0.1420
Epoch 310/350
46/46 [==============================] - 0s 899us/step - loss: 0.0838 - accuracy: 0.9546 - mae: 0.0838 - pearson_correlation: 0.7478 - euclidean_distance: 0.1352
Epoch 311/350
46/46 [==============================] - 0s 896us/step - loss: 0.0857 - accuracy: 0.9550 - mae: 0.0857 - pearson_correlation: 0.7502 - euclidean_distance: 0.1379
Epoch 312/350
46/46 [==============================] - 0s 880us/step - loss: 0.0839 - accuracy: 0.9550 - mae: 0.0839 - pearson_correlation: 0.7474 - euclidean_distance: 0.1355
Epoch 313/350
46/46 [==============================] - 0s 904us/step - loss: 0.0864 - accuracy: 0.9546 - mae: 0.0864 - pearson_correlation: 0.7414 - euclidean_distance: 0.1395
Epoch 314/350
46/46 [==============================] - 0s 898us/step - loss: 0.0837 - accuracy: 0.9541 - mae: 0.0837 - pearson_correlation: 0.7459 - euclidean_distance: 0.1349
Epoch 315/350
46/46 [==============================] - 0s 888us/step - loss: 0.0849 - accuracy: 0.9550 - mae: 0.0849 - pearson_correlation: 0.7465 - euclidean_distance: 0.1373
Epoch 316/350
46/46 [==============================] - 0s 884us/step - loss: 0.0864 - accuracy: 0.9546 - mae: 0.0864 - pearson_correlation: 0.7411 - euclidean_distance: 0.1394
Epoch 317/350
46/46 [==============================] - 0s 886us/step - loss: 0.0838 - accuracy: 0.9550 - mae: 0.0838 - pearson_correlation: 0.7473 - euclidean_distance: 0.1351
Epoch 318/350
46/46 [==============================] - 0s 885us/step - loss: 0.0839 - accuracy: 0.9554 - mae: 0.0839 - pearson_correlation: 0.7521 - euclidean_distance: 0.1351
Epoch 319/350
46/46 [==============================] - 0s 879us/step - loss: 0.0857 - accuracy: 0.9554 - mae: 0.0857 - pearson_correlation: 0.7452 - euclidean_distance: 0.1380
Epoch 320/350
46/46 [==============================] - 0s 885us/step - loss: 0.0814 - accuracy: 0.9537 - mae: 0.0814 - pearson_correlation: 0.7539 - euclidean_distance: 0.1314
Epoch 321/350
46/46 [==============================] - 0s 883us/step - loss: 0.0813 - accuracy: 0.9550 - mae: 0.0813 - pearson_correlation: 0.7513 - euclidean_distance: 0.1319
Epoch 322/350
46/46 [==============================] - 0s 892us/step - loss: 0.0849 - accuracy: 0.9554 - mae: 0.0849 - pearson_correlation: 0.7463 - euclidean_distance: 0.1364
Epoch 323/350
46/46 [==============================] - 0s 888us/step - loss: 0.0873 - accuracy: 0.9546 - mae: 0.0873 - pearson_correlation: 0.7439 - euclidean_distance: 0.1403
Epoch 324/350
46/46 [==============================] - 0s 895us/step - loss: 0.0868 - accuracy: 0.9550 - mae: 0.0868 - pearson_correlation: 0.7505 - euclidean_distance: 0.1398
Epoch 325/350
46/46 [==============================] - 0s 889us/step - loss: 0.0806 - accuracy: 0.9546 - mae: 0.0806 - pearson_correlation: 0.7580 - euclidean_distance: 0.1306
Epoch 326/350
46/46 [==============================] - 0s 887us/step - loss: 0.0847 - accuracy: 0.9546 - mae: 0.0847 - pearson_correlation: 0.7492 - euclidean_distance: 0.1362
Epoch 327/350
46/46 [==============================] - 0s 882us/step - loss: 0.0836 - accuracy: 0.9554 - mae: 0.0836 - pearson_correlation: 0.7481 - euclidean_distance: 0.1355
Epoch 328/350
46/46 [==============================] - 0s 897us/step - loss: 0.0838 - accuracy: 0.9546 - mae: 0.0838 - pearson_correlation: 0.7473 - euclidean_distance: 0.1355
Epoch 329/350
46/46 [==============================] - 0s 874us/step - loss: 0.0818 - accuracy: 0.9546 - mae: 0.0818 - pearson_correlation: 0.7560 - euclidean_distance: 0.1323
Epoch 330/350
46/46 [==============================] - 0s 881us/step - loss: 0.0821 - accuracy: 0.9550 - mae: 0.0821 - pearson_correlation: 0.7539 - euclidean_distance: 0.1330
Epoch 331/350
46/46 [==============================] - 0s 884us/step - loss: 0.0835 - accuracy: 0.9546 - mae: 0.0835 - pearson_correlation: 0.7459 - euclidean_distance: 0.1351
Epoch 332/350
46/46 [==============================] - 0s 888us/step - loss: 0.0858 - accuracy: 0.9546 - mae: 0.0858 - pearson_correlation: 0.7513 - euclidean_distance: 0.1380
Epoch 333/350
46/46 [==============================] - 0s 886us/step - loss: 0.0816 - accuracy: 0.9550 - mae: 0.0816 - pearson_correlation: 0.7547 - euclidean_distance: 0.1318
Epoch 334/350
46/46 [==============================] - 0s 885us/step - loss: 0.0828 - accuracy: 0.9546 - mae: 0.0828 - pearson_correlation: 0.7505 - euclidean_distance: 0.1342
Epoch 335/350
46/46 [==============================] - 0s 889us/step - loss: 0.0832 - accuracy: 0.9546 - mae: 0.0832 - pearson_correlation: 0.7504 - euclidean_distance: 0.1349
Epoch 336/350
46/46 [==============================] - 0s 884us/step - loss: 0.0827 - accuracy: 0.9546 - mae: 0.0827 - pearson_correlation: 0.7571 - euclidean_distance: 0.1340
Epoch 337/350
46/46 [==============================] - 0s 895us/step - loss: 0.0814 - accuracy: 0.9541 - mae: 0.0814 - pearson_correlation: 0.7506 - euclidean_distance: 0.1318
Epoch 338/350
46/46 [==============================] - 0s 875us/step - loss: 0.0824 - accuracy: 0.9550 - mae: 0.0824 - pearson_correlation: 0.7468 - euclidean_distance: 0.1335
Epoch 339/350
46/46 [==============================] - 0s 887us/step - loss: 0.0872 - accuracy: 0.9546 - mae: 0.0872 - pearson_correlation: 0.7419 - euclidean_distance: 0.1404
Epoch 340/350
46/46 [==============================] - 0s 886us/step - loss: 0.0834 - accuracy: 0.9550 - mae: 0.0834 - pearson_correlation: 0.7498 - euclidean_distance: 0.1347
Epoch 341/350
46/46 [==============================] - 0s 888us/step - loss: 0.0791 - accuracy: 0.9546 - mae: 0.0791 - pearson_correlation: 0.7602 - euclidean_distance: 0.1280
Epoch 342/350
46/46 [==============================] - 0s 890us/step - loss: 0.0824 - accuracy: 0.9546 - mae: 0.0824 - pearson_correlation: 0.7568 - euclidean_distance: 0.1334
Epoch 343/350
46/46 [==============================] - 0s 888us/step - loss: 0.0830 - accuracy: 0.9546 - mae: 0.0830 - pearson_correlation: 0.7550 - euclidean_distance: 0.1340
Epoch 344/350
46/46 [==============================] - 0s 889us/step - loss: 0.0847 - accuracy: 0.9550 - mae: 0.0847 - pearson_correlation: 0.7518 - euclidean_distance: 0.1371
Epoch 345/350
46/46 [==============================] - 0s 886us/step - loss: 0.0843 - accuracy: 0.9550 - mae: 0.0843 - pearson_correlation: 0.7504 - euclidean_distance: 0.1361
Epoch 346/350
46/46 [==============================] - 0s 885us/step - loss: 0.0807 - accuracy: 0.9541 - mae: 0.0807 - pearson_correlation: 0.7573 - euclidean_distance: 0.1303
Epoch 347/350
46/46 [==============================] - 0s 891us/step - loss: 0.0805 - accuracy: 0.9554 - mae: 0.0805 - pearson_correlation: 0.7566 - euclidean_distance: 0.1306
Epoch 348/350
46/46 [==============================] - 0s 890us/step - loss: 0.0820 - accuracy: 0.9550 - mae: 0.0820 - pearson_correlation: 0.7566 - euclidean_distance: 0.1320
Epoch 349/350
46/46 [==============================] - 0s 889us/step - loss: 0.0800 - accuracy: 0.9541 - mae: 0.0800 - pearson_correlation: 0.7646 - euclidean_distance: 0.1294
Epoch 350/350
46/46 [==============================] - 0s 887us/step - loss: 0.0817 - accuracy: 0.9550 - mae: 0.0817 - pearson_correlation: 0.7558 - euclidean_distance: 0.1316
23/23 [==============================] - 0s 501us/step
Epoch 1/350
46/46 [==============================] - 1s 892us/step - loss: 0.5144 - accuracy: 0.6750 - mae: 0.5144 - pearson_correlation: 0.3025 - euclidean_distance: 0.7672
Epoch 2/350
46/46 [==============================] - 0s 827us/step - loss: 0.5101 - accuracy: 0.6764 - mae: 0.5101 - pearson_correlation: 0.3061 - euclidean_distance: 0.7611
Epoch 3/350
46/46 [==============================] - 0s 882us/step - loss: 0.5068 - accuracy: 0.6869 - mae: 0.5068 - pearson_correlation: 0.3054 - euclidean_distance: 0.7564
Epoch 4/350
46/46 [==============================] - 0s 890us/step - loss: 0.5034 - accuracy: 0.6777 - mae: 0.5034 - pearson_correlation: 0.3037 - euclidean_distance: 0.7523
Epoch 5/350
46/46 [==============================] - 0s 903us/step - loss: 0.5005 - accuracy: 0.6825 - mae: 0.5005 - pearson_correlation: 0.3065 - euclidean_distance: 0.7478
Epoch 6/350
46/46 [==============================] - 0s 903us/step - loss: 0.4960 - accuracy: 0.6843 - mae: 0.4960 - pearson_correlation: 0.3017 - euclidean_distance: 0.7423
Epoch 7/350
46/46 [==============================] - 0s 894us/step - loss: 0.4929 - accuracy: 0.6830 - mae: 0.4929 - pearson_correlation: 0.2981 - euclidean_distance: 0.7380
Epoch 8/350
46/46 [==============================] - 0s 896us/step - loss: 0.4885 - accuracy: 0.6883 - mae: 0.4885 - pearson_correlation: 0.2957 - euclidean_distance: 0.7318
Epoch 9/350
46/46 [==============================] - 0s 920us/step - loss: 0.4853 - accuracy: 0.6900 - mae: 0.4853 - pearson_correlation: 0.2960 - euclidean_distance: 0.7275
Epoch 10/350
46/46 [==============================] - 0s 864us/step - loss: 0.4819 - accuracy: 0.6989 - mae: 0.4819 - pearson_correlation: 0.2967 - euclidean_distance: 0.7234
Epoch 11/350
46/46 [==============================] - 0s 889us/step - loss: 0.4766 - accuracy: 0.6975 - mae: 0.4766 - pearson_correlation: 0.2974 - euclidean_distance: 0.7161
Epoch 12/350
46/46 [==============================] - 0s 892us/step - loss: 0.4730 - accuracy: 0.6966 - mae: 0.4730 - pearson_correlation: 0.2910 - euclidean_distance: 0.7111
Epoch 13/350
46/46 [==============================] - 0s 892us/step - loss: 0.4692 - accuracy: 0.6786 - mae: 0.4692 - pearson_correlation: 0.2825 - euclidean_distance: 0.7068
Epoch 14/350
46/46 [==============================] - 0s 889us/step - loss: 0.4655 - accuracy: 0.6958 - mae: 0.4655 - pearson_correlation: 0.2904 - euclidean_distance: 0.7005
Epoch 15/350
46/46 [==============================] - 0s 892us/step - loss: 0.4624 - accuracy: 0.6944 - mae: 0.4624 - pearson_correlation: 0.2902 - euclidean_distance: 0.6972
Epoch 16/350
46/46 [==============================] - 0s 900us/step - loss: 0.4581 - accuracy: 0.6993 - mae: 0.4581 - pearson_correlation: 0.2929 - euclidean_distance: 0.6916
Epoch 17/350
46/46 [==============================] - 0s 889us/step - loss: 0.4540 - accuracy: 0.6918 - mae: 0.4540 - pearson_correlation: 0.2896 - euclidean_distance: 0.6861
Epoch 18/350
46/46 [==============================] - 0s 890us/step - loss: 0.4496 - accuracy: 0.7002 - mae: 0.4496 - pearson_correlation: 0.2915 - euclidean_distance: 0.6800
Epoch 19/350
46/46 [==============================] - 0s 887us/step - loss: 0.4467 - accuracy: 0.7033 - mae: 0.4467 - pearson_correlation: 0.2850 - euclidean_distance: 0.6758
Epoch 20/350
46/46 [==============================] - 0s 890us/step - loss: 0.4416 - accuracy: 0.7028 - mae: 0.4416 - pearson_correlation: 0.2829 - euclidean_distance: 0.6693
Epoch 21/350
46/46 [==============================] - 0s 892us/step - loss: 0.4376 - accuracy: 0.6984 - mae: 0.4376 - pearson_correlation: 0.2866 - euclidean_distance: 0.6639
Epoch 22/350
46/46 [==============================] - 0s 890us/step - loss: 0.4345 - accuracy: 0.6984 - mae: 0.4345 - pearson_correlation: 0.2884 - euclidean_distance: 0.6597
Epoch 23/350
46/46 [==============================] - 0s 892us/step - loss: 0.4300 - accuracy: 0.7019 - mae: 0.4300 - pearson_correlation: 0.2864 - euclidean_distance: 0.6533
Epoch 24/350
46/46 [==============================] - 0s 925us/step - loss: 0.4259 - accuracy: 0.7006 - mae: 0.4259 - pearson_correlation: 0.2798 - euclidean_distance: 0.6479
Epoch 25/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4224 - accuracy: 0.6984 - mae: 0.4224 - pearson_correlation: 0.2807 - euclidean_distance: 0.6439
Epoch 26/350
46/46 [==============================] - 0s 997us/step - loss: 0.4177 - accuracy: 0.7006 - mae: 0.4177 - pearson_correlation: 0.2850 - euclidean_distance: 0.6375
Epoch 27/350
46/46 [==============================] - 0s 971us/step - loss: 0.4143 - accuracy: 0.7037 - mae: 0.4143 - pearson_correlation: 0.2844 - euclidean_distance: 0.6323
Epoch 28/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4099 - accuracy: 0.7024 - mae: 0.4099 - pearson_correlation: 0.2807 - euclidean_distance: 0.6264
Epoch 29/350
46/46 [==============================] - 0s 1ms/step - loss: 0.4049 - accuracy: 0.7112 - mae: 0.4049 - pearson_correlation: 0.2841 - euclidean_distance: 0.6200
Epoch 30/350
46/46 [==============================] - 0s 923us/step - loss: 0.4024 - accuracy: 0.7055 - mae: 0.4024 - pearson_correlation: 0.2855 - euclidean_distance: 0.6161
Epoch 31/350
46/46 [==============================] - 0s 950us/step - loss: 0.3978 - accuracy: 0.7130 - mae: 0.3978 - pearson_correlation: 0.2849 - euclidean_distance: 0.6097
Epoch 32/350
46/46 [==============================] - 0s 997us/step - loss: 0.3939 - accuracy: 0.7063 - mae: 0.3939 - pearson_correlation: 0.2777 - euclidean_distance: 0.6048
Epoch 33/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3899 - accuracy: 0.7143 - mae: 0.3899 - pearson_correlation: 0.2871 - euclidean_distance: 0.5984
Epoch 34/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3847 - accuracy: 0.7178 - mae: 0.3847 - pearson_correlation: 0.2889 - euclidean_distance: 0.5926
Epoch 35/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3813 - accuracy: 0.7112 - mae: 0.3813 - pearson_correlation: 0.2834 - euclidean_distance: 0.5869
Epoch 36/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3771 - accuracy: 0.7121 - mae: 0.3771 - pearson_correlation: 0.2809 - euclidean_distance: 0.5814
Epoch 37/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3744 - accuracy: 0.7191 - mae: 0.3744 - pearson_correlation: 0.2863 - euclidean_distance: 0.5767
Epoch 38/350
46/46 [==============================] - 0s 1ms/step - loss: 0.3699 - accuracy: 0.7152 - mae: 0.3699 - pearson_correlation: 0.2923 - euclidean_distance: 0.5711
Epoch 39/350
46/46 [==============================] - 0s 967us/step - loss: 0.3661 - accuracy: 0.7138 - mae: 0.3661 - pearson_correlation: 0.2823 - euclidean_distance: 0.5658
Epoch 40/350
46/46 [==============================] - 0s 900us/step - loss: 0.3622 - accuracy: 0.7169 - mae: 0.3622 - pearson_correlation: 0.2920 - euclidean_distance: 0.5601
Epoch 41/350
46/46 [==============================] - 0s 888us/step - loss: 0.3582 - accuracy: 0.7231 - mae: 0.3582 - pearson_correlation: 0.2887 - euclidean_distance: 0.5543
Epoch 42/350
46/46 [==============================] - 0s 896us/step - loss: 0.3558 - accuracy: 0.7152 - mae: 0.3558 - pearson_correlation: 0.2909 - euclidean_distance: 0.5512
Epoch 43/350
46/46 [==============================] - 0s 896us/step - loss: 0.3516 - accuracy: 0.7196 - mae: 0.3516 - pearson_correlation: 0.2885 - euclidean_distance: 0.5447
Epoch 44/350
46/46 [==============================] - 0s 892us/step - loss: 0.3490 - accuracy: 0.7205 - mae: 0.3490 - pearson_correlation: 0.2907 - euclidean_distance: 0.5406
Epoch 45/350
46/46 [==============================] - 0s 888us/step - loss: 0.3453 - accuracy: 0.7196 - mae: 0.3453 - pearson_correlation: 0.2896 - euclidean_distance: 0.5352
Epoch 46/350
46/46 [==============================] - 0s 905us/step - loss: 0.3392 - accuracy: 0.7253 - mae: 0.3392 - pearson_correlation: 0.3000 - euclidean_distance: 0.5269
Epoch 47/350
46/46 [==============================] - 0s 886us/step - loss: 0.3367 - accuracy: 0.7293 - mae: 0.3367 - pearson_correlation: 0.2997 - euclidean_distance: 0.5226
Epoch 48/350
46/46 [==============================] - 0s 895us/step - loss: 0.3343 - accuracy: 0.7235 - mae: 0.3343 - pearson_correlation: 0.3017 - euclidean_distance: 0.5188
Epoch 49/350
46/46 [==============================] - 0s 895us/step - loss: 0.3303 - accuracy: 0.7297 - mae: 0.3303 - pearson_correlation: 0.3024 - euclidean_distance: 0.5136
Epoch 50/350
46/46 [==============================] - 0s 929us/step - loss: 0.3281 - accuracy: 0.7332 - mae: 0.3281 - pearson_correlation: 0.3060 - euclidean_distance: 0.5099
Epoch 51/350
46/46 [==============================] - 0s 897us/step - loss: 0.3239 - accuracy: 0.7354 - mae: 0.3239 - pearson_correlation: 0.3063 - euclidean_distance: 0.5039
Epoch 52/350
46/46 [==============================] - 0s 908us/step - loss: 0.3218 - accuracy: 0.7381 - mae: 0.3218 - pearson_correlation: 0.3041 - euclidean_distance: 0.5013
Epoch 53/350
46/46 [==============================] - 0s 891us/step - loss: 0.3201 - accuracy: 0.7359 - mae: 0.3201 - pearson_correlation: 0.3064 - euclidean_distance: 0.4972
Epoch 54/350
46/46 [==============================] - 0s 884us/step - loss: 0.3149 - accuracy: 0.7456 - mae: 0.3149 - pearson_correlation: 0.3165 - euclidean_distance: 0.4895
Epoch 55/350
46/46 [==============================] - 0s 892us/step - loss: 0.3133 - accuracy: 0.7407 - mae: 0.3133 - pearson_correlation: 0.3100 - euclidean_distance: 0.4881
Epoch 56/350
46/46 [==============================] - 0s 914us/step - loss: 0.3103 - accuracy: 0.7451 - mae: 0.3103 - pearson_correlation: 0.3100 - euclidean_distance: 0.4829
Epoch 57/350
46/46 [==============================] - 0s 875us/step - loss: 0.3060 - accuracy: 0.7429 - mae: 0.3060 - pearson_correlation: 0.3133 - euclidean_distance: 0.4773
Epoch 58/350
46/46 [==============================] - 0s 898us/step - loss: 0.3032 - accuracy: 0.7526 - mae: 0.3032 - pearson_correlation: 0.3245 - euclidean_distance: 0.4720
Epoch 59/350
46/46 [==============================] - 0s 897us/step - loss: 0.3004 - accuracy: 0.7469 - mae: 0.3004 - pearson_correlation: 0.3212 - euclidean_distance: 0.4687
Epoch 60/350
46/46 [==============================] - 0s 892us/step - loss: 0.2991 - accuracy: 0.7465 - mae: 0.2991 - pearson_correlation: 0.3270 - euclidean_distance: 0.4664
Epoch 61/350
46/46 [==============================] - 0s 890us/step - loss: 0.2955 - accuracy: 0.7487 - mae: 0.2955 - pearson_correlation: 0.3200 - euclidean_distance: 0.4613
Epoch 62/350
46/46 [==============================] - 0s 896us/step - loss: 0.2948 - accuracy: 0.7500 - mae: 0.2948 - pearson_correlation: 0.3261 - euclidean_distance: 0.4593
Epoch 63/350
46/46 [==============================] - 0s 889us/step - loss: 0.2903 - accuracy: 0.7615 - mae: 0.2903 - pearson_correlation: 0.3309 - euclidean_distance: 0.4531
Epoch 64/350
46/46 [==============================] - 0s 894us/step - loss: 0.2890 - accuracy: 0.7588 - mae: 0.2890 - pearson_correlation: 0.3266 - euclidean_distance: 0.4508
Epoch 65/350
46/46 [==============================] - 0s 895us/step - loss: 0.2860 - accuracy: 0.7606 - mae: 0.2860 - pearson_correlation: 0.3316 - euclidean_distance: 0.4468
Epoch 66/350
46/46 [==============================] - 0s 897us/step - loss: 0.2845 - accuracy: 0.7588 - mae: 0.2845 - pearson_correlation: 0.3291 - euclidean_distance: 0.4438
Epoch 67/350
46/46 [==============================] - 0s 898us/step - loss: 0.2804 - accuracy: 0.7579 - mae: 0.2804 - pearson_correlation: 0.3358 - euclidean_distance: 0.4384
Epoch 68/350
46/46 [==============================] - 0s 888us/step - loss: 0.2818 - accuracy: 0.7579 - mae: 0.2818 - pearson_correlation: 0.3316 - euclidean_distance: 0.4401
Epoch 69/350
46/46 [==============================] - 0s 889us/step - loss: 0.2766 - accuracy: 0.7628 - mae: 0.2766 - pearson_correlation: 0.3360 - euclidean_distance: 0.4327
Epoch 70/350
46/46 [==============================] - 0s 891us/step - loss: 0.2755 - accuracy: 0.7623 - mae: 0.2755 - pearson_correlation: 0.3384 - euclidean_distance: 0.4304
Epoch 71/350
46/46 [==============================] - 0s 889us/step - loss: 0.2742 - accuracy: 0.7707 - mae: 0.2742 - pearson_correlation: 0.3354 - euclidean_distance: 0.4277
Epoch 72/350
46/46 [==============================] - 0s 889us/step - loss: 0.2725 - accuracy: 0.7729 - mae: 0.2725 - pearson_correlation: 0.3415 - euclidean_distance: 0.4259
Epoch 73/350
46/46 [==============================] - 0s 888us/step - loss: 0.2693 - accuracy: 0.7725 - mae: 0.2693 - pearson_correlation: 0.3448 - euclidean_distance: 0.4205
Epoch 74/350
46/46 [==============================] - 0s 895us/step - loss: 0.2674 - accuracy: 0.7734 - mae: 0.2674 - pearson_correlation: 0.3494 - euclidean_distance: 0.4175
Epoch 75/350
46/46 [==============================] - 0s 889us/step - loss: 0.2668 - accuracy: 0.7663 - mae: 0.2668 - pearson_correlation: 0.3372 - euclidean_distance: 0.4177
Epoch 76/350
46/46 [==============================] - 0s 885us/step - loss: 0.2636 - accuracy: 0.7778 - mae: 0.2636 - pearson_correlation: 0.3466 - euclidean_distance: 0.4124
Epoch 77/350
46/46 [==============================] - 0s 891us/step - loss: 0.2620 - accuracy: 0.7791 - mae: 0.2620 - pearson_correlation: 0.3501 - euclidean_distance: 0.4105
Epoch 78/350
46/46 [==============================] - 0s 889us/step - loss: 0.2601 - accuracy: 0.7804 - mae: 0.2601 - pearson_correlation: 0.3503 - euclidean_distance: 0.4074
Epoch 79/350
46/46 [==============================] - 0s 888us/step - loss: 0.2561 - accuracy: 0.7800 - mae: 0.2561 - pearson_correlation: 0.3597 - euclidean_distance: 0.4008
Epoch 80/350
46/46 [==============================] - 0s 885us/step - loss: 0.2558 - accuracy: 0.7831 - mae: 0.2558 - pearson_correlation: 0.3605 - euclidean_distance: 0.3994
Epoch 81/350
46/46 [==============================] - 0s 890us/step - loss: 0.2538 - accuracy: 0.7901 - mae: 0.2538 - pearson_correlation: 0.3651 - euclidean_distance: 0.3970
Epoch 82/350
46/46 [==============================] - 0s 899us/step - loss: 0.2522 - accuracy: 0.7804 - mae: 0.2522 - pearson_correlation: 0.3616 - euclidean_distance: 0.3954
Epoch 83/350
46/46 [==============================] - 0s 889us/step - loss: 0.2489 - accuracy: 0.7840 - mae: 0.2489 - pearson_correlation: 0.3629 - euclidean_distance: 0.3906
Epoch 84/350
46/46 [==============================] - 0s 890us/step - loss: 0.2497 - accuracy: 0.7897 - mae: 0.2497 - pearson_correlation: 0.3697 - euclidean_distance: 0.3904
Epoch 85/350
46/46 [==============================] - 0s 899us/step - loss: 0.2483 - accuracy: 0.7941 - mae: 0.2483 - pearson_correlation: 0.3680 - euclidean_distance: 0.3878
Epoch 86/350
46/46 [==============================] - 0s 896us/step - loss: 0.2462 - accuracy: 0.7985 - mae: 0.2462 - pearson_correlation: 0.3613 - euclidean_distance: 0.3858
Epoch 87/350
46/46 [==============================] - 0s 896us/step - loss: 0.2446 - accuracy: 0.7959 - mae: 0.2446 - pearson_correlation: 0.3750 - euclidean_distance: 0.3828
Epoch 88/350
46/46 [==============================] - 0s 894us/step - loss: 0.2412 - accuracy: 0.7932 - mae: 0.2412 - pearson_correlation: 0.3744 - euclidean_distance: 0.3780
Epoch 89/350
46/46 [==============================] - 0s 895us/step - loss: 0.2414 - accuracy: 0.8020 - mae: 0.2414 - pearson_correlation: 0.3782 - euclidean_distance: 0.3771
Epoch 90/350
46/46 [==============================] - 0s 887us/step - loss: 0.2380 - accuracy: 0.7976 - mae: 0.2380 - pearson_correlation: 0.3775 - euclidean_distance: 0.3740
Epoch 91/350
46/46 [==============================] - 0s 894us/step - loss: 0.2372 - accuracy: 0.8034 - mae: 0.2372 - pearson_correlation: 0.3806 - euclidean_distance: 0.3718
Epoch 92/350
46/46 [==============================] - 0s 896us/step - loss: 0.2332 - accuracy: 0.8007 - mae: 0.2332 - pearson_correlation: 0.3851 - euclidean_distance: 0.3664
Epoch 93/350
46/46 [==============================] - 0s 886us/step - loss: 0.2334 - accuracy: 0.8029 - mae: 0.2334 - pearson_correlation: 0.3835 - euclidean_distance: 0.3661
Epoch 94/350
46/46 [==============================] - 0s 892us/step - loss: 0.2328 - accuracy: 0.7932 - mae: 0.2328 - pearson_correlation: 0.3778 - euclidean_distance: 0.3652
Epoch 95/350
46/46 [==============================] - 0s 901us/step - loss: 0.2300 - accuracy: 0.8126 - mae: 0.2300 - pearson_correlation: 0.3884 - euclidean_distance: 0.3606
Epoch 96/350
46/46 [==============================] - 0s 891us/step - loss: 0.2282 - accuracy: 0.8108 - mae: 0.2282 - pearson_correlation: 0.3964 - euclidean_distance: 0.3578
Epoch 97/350
46/46 [==============================] - 0s 889us/step - loss: 0.2286 - accuracy: 0.8122 - mae: 0.2286 - pearson_correlation: 0.3892 - euclidean_distance: 0.3582
Epoch 98/350
46/46 [==============================] - 0s 893us/step - loss: 0.2254 - accuracy: 0.8139 - mae: 0.2254 - pearson_correlation: 0.3982 - euclidean_distance: 0.3534
Epoch 99/350
46/46 [==============================] - 0s 896us/step - loss: 0.2235 - accuracy: 0.8179 - mae: 0.2235 - pearson_correlation: 0.3993 - euclidean_distance: 0.3510
Epoch 100/350
46/46 [==============================] - 0s 896us/step - loss: 0.2237 - accuracy: 0.8188 - mae: 0.2237 - pearson_correlation: 0.4002 - euclidean_distance: 0.3509
Epoch 101/350
46/46 [==============================] - 0s 896us/step - loss: 0.2198 - accuracy: 0.8236 - mae: 0.2198 - pearson_correlation: 0.4075 - euclidean_distance: 0.3445
Epoch 102/350
46/46 [==============================] - 0s 888us/step - loss: 0.2188 - accuracy: 0.8166 - mae: 0.2188 - pearson_correlation: 0.4060 - euclidean_distance: 0.3434
Epoch 103/350
46/46 [==============================] - 0s 889us/step - loss: 0.2179 - accuracy: 0.8166 - mae: 0.2179 - pearson_correlation: 0.4092 - euclidean_distance: 0.3423
Epoch 104/350
46/46 [==============================] - 0s 892us/step - loss: 0.2160 - accuracy: 0.8254 - mae: 0.2160 - pearson_correlation: 0.4090 - euclidean_distance: 0.3396
Epoch 105/350
46/46 [==============================] - 0s 895us/step - loss: 0.2158 - accuracy: 0.8245 - mae: 0.2158 - pearson_correlation: 0.4081 - euclidean_distance: 0.3389
Epoch 106/350
46/46 [==============================] - 0s 895us/step - loss: 0.2131 - accuracy: 0.8285 - mae: 0.2131 - pearson_correlation: 0.4074 - euclidean_distance: 0.3351
Epoch 107/350
46/46 [==============================] - 0s 893us/step - loss: 0.2142 - accuracy: 0.8263 - mae: 0.2142 - pearson_correlation: 0.4161 - euclidean_distance: 0.3356
Epoch 108/350
46/46 [==============================] - 0s 888us/step - loss: 0.2112 - accuracy: 0.8325 - mae: 0.2112 - pearson_correlation: 0.4219 - euclidean_distance: 0.3317
Epoch 109/350
46/46 [==============================] - 0s 880us/step - loss: 0.2105 - accuracy: 0.8338 - mae: 0.2105 - pearson_correlation: 0.4209 - euclidean_distance: 0.3300
Epoch 110/350
46/46 [==============================] - 0s 880us/step - loss: 0.2104 - accuracy: 0.8351 - mae: 0.2104 - pearson_correlation: 0.4208 - euclidean_distance: 0.3309
Epoch 111/350
46/46 [==============================] - 0s 880us/step - loss: 0.2060 - accuracy: 0.8320 - mae: 0.2060 - pearson_correlation: 0.4296 - euclidean_distance: 0.3239
Epoch 112/350
46/46 [==============================] - 0s 891us/step - loss: 0.2042 - accuracy: 0.8347 - mae: 0.2042 - pearson_correlation: 0.4299 - euclidean_distance: 0.3217
Epoch 113/350
46/46 [==============================] - 0s 901us/step - loss: 0.2029 - accuracy: 0.8373 - mae: 0.2029 - pearson_correlation: 0.4351 - euclidean_distance: 0.3189
Epoch 114/350
46/46 [==============================] - 0s 889us/step - loss: 0.2026 - accuracy: 0.8448 - mae: 0.2026 - pearson_correlation: 0.4325 - euclidean_distance: 0.3187
Epoch 115/350
46/46 [==============================] - 0s 915us/step - loss: 0.2011 - accuracy: 0.8466 - mae: 0.2011 - pearson_correlation: 0.4321 - euclidean_distance: 0.3163
Epoch 116/350
46/46 [==============================] - 0s 904us/step - loss: 0.1999 - accuracy: 0.8457 - mae: 0.1999 - pearson_correlation: 0.4433 - euclidean_distance: 0.3139
Epoch 117/350
46/46 [==============================] - 0s 902us/step - loss: 0.1978 - accuracy: 0.8479 - mae: 0.1978 - pearson_correlation: 0.4428 - euclidean_distance: 0.3113
Epoch 118/350
46/46 [==============================] - 0s 882us/step - loss: 0.1954 - accuracy: 0.8452 - mae: 0.1954 - pearson_correlation: 0.4501 - euclidean_distance: 0.3082
Epoch 119/350
46/46 [==============================] - 0s 889us/step - loss: 0.1955 - accuracy: 0.8461 - mae: 0.1955 - pearson_correlation: 0.4506 - euclidean_distance: 0.3082
Epoch 120/350
46/46 [==============================] - 0s 898us/step - loss: 0.1958 - accuracy: 0.8439 - mae: 0.1958 - pearson_correlation: 0.4409 - euclidean_distance: 0.3084
Epoch 121/350
46/46 [==============================] - 0s 902us/step - loss: 0.1934 - accuracy: 0.8563 - mae: 0.1934 - pearson_correlation: 0.4547 - euclidean_distance: 0.3038
Epoch 122/350
46/46 [==============================] - 0s 898us/step - loss: 0.1915 - accuracy: 0.8470 - mae: 0.1915 - pearson_correlation: 0.4571 - euclidean_distance: 0.3021
Epoch 123/350
46/46 [==============================] - 0s 893us/step - loss: 0.1914 - accuracy: 0.8527 - mae: 0.1914 - pearson_correlation: 0.4542 - euclidean_distance: 0.3015
Epoch 124/350
46/46 [==============================] - 0s 893us/step - loss: 0.1894 - accuracy: 0.8593 - mae: 0.1894 - pearson_correlation: 0.4652 - euclidean_distance: 0.2984
Epoch 125/350
46/46 [==============================] - 0s 899us/step - loss: 0.1887 - accuracy: 0.8501 - mae: 0.1887 - pearson_correlation: 0.4659 - euclidean_distance: 0.2977
Epoch 126/350
46/46 [==============================] - 0s 891us/step - loss: 0.1884 - accuracy: 0.8602 - mae: 0.1884 - pearson_correlation: 0.4670 - euclidean_distance: 0.2971
Epoch 127/350
46/46 [==============================] - 0s 887us/step - loss: 0.1861 - accuracy: 0.8620 - mae: 0.1861 - pearson_correlation: 0.4737 - euclidean_distance: 0.2935
Epoch 128/350
46/46 [==============================] - 0s 894us/step - loss: 0.1838 - accuracy: 0.8593 - mae: 0.1838 - pearson_correlation: 0.4763 - euclidean_distance: 0.2896
Epoch 129/350
46/46 [==============================] - 0s 896us/step - loss: 0.1822 - accuracy: 0.8580 - mae: 0.1822 - pearson_correlation: 0.4814 - euclidean_distance: 0.2874
Epoch 130/350
46/46 [==============================] - 0s 897us/step - loss: 0.1810 - accuracy: 0.8576 - mae: 0.1810 - pearson_correlation: 0.4758 - euclidean_distance: 0.2857
Epoch 131/350
46/46 [==============================] - 0s 900us/step - loss: 0.1811 - accuracy: 0.8616 - mae: 0.1811 - pearson_correlation: 0.4818 - euclidean_distance: 0.2858
Epoch 132/350
46/46 [==============================] - 0s 898us/step - loss: 0.1807 - accuracy: 0.8677 - mae: 0.1807 - pearson_correlation: 0.4797 - euclidean_distance: 0.2849
Epoch 133/350
46/46 [==============================] - 0s 897us/step - loss: 0.1776 - accuracy: 0.8602 - mae: 0.1776 - pearson_correlation: 0.4889 - euclidean_distance: 0.2806
Epoch 134/350
46/46 [==============================] - 0s 891us/step - loss: 0.1786 - accuracy: 0.8686 - mae: 0.1786 - pearson_correlation: 0.4841 - euclidean_distance: 0.2817
Epoch 135/350
46/46 [==============================] - 0s 896us/step - loss: 0.1762 - accuracy: 0.8686 - mae: 0.1762 - pearson_correlation: 0.4929 - euclidean_distance: 0.2780
Epoch 136/350
46/46 [==============================] - 0s 894us/step - loss: 0.1766 - accuracy: 0.8721 - mae: 0.1766 - pearson_correlation: 0.4911 - euclidean_distance: 0.2783
Epoch 137/350
46/46 [==============================] - 0s 897us/step - loss: 0.1731 - accuracy: 0.8735 - mae: 0.1731 - pearson_correlation: 0.4936 - euclidean_distance: 0.2740
Epoch 138/350
46/46 [==============================] - 0s 892us/step - loss: 0.1722 - accuracy: 0.8704 - mae: 0.1722 - pearson_correlation: 0.4994 - euclidean_distance: 0.2727
Epoch 139/350
46/46 [==============================] - 0s 938us/step - loss: 0.1699 - accuracy: 0.8713 - mae: 0.1699 - pearson_correlation: 0.5060 - euclidean_distance: 0.2690
Epoch 140/350
46/46 [==============================] - 0s 958us/step - loss: 0.1694 - accuracy: 0.8796 - mae: 0.1694 - pearson_correlation: 0.5036 - euclidean_distance: 0.2682
Epoch 141/350
46/46 [==============================] - 0s 902us/step - loss: 0.1683 - accuracy: 0.8761 - mae: 0.1683 - pearson_correlation: 0.5051 - euclidean_distance: 0.2666
Epoch 142/350
46/46 [==============================] - 0s 893us/step - loss: 0.1682 - accuracy: 0.8810 - mae: 0.1682 - pearson_correlation: 0.5090 - euclidean_distance: 0.2663
Epoch 143/350
46/46 [==============================] - 0s 894us/step - loss: 0.1660 - accuracy: 0.8748 - mae: 0.1660 - pearson_correlation: 0.5119 - euclidean_distance: 0.2619
Epoch 144/350
46/46 [==============================] - 0s 908us/step - loss: 0.1659 - accuracy: 0.8818 - mae: 0.1659 - pearson_correlation: 0.5099 - euclidean_distance: 0.2625
Epoch 145/350
46/46 [==============================] - 0s 905us/step - loss: 0.1657 - accuracy: 0.8827 - mae: 0.1657 - pearson_correlation: 0.5202 - euclidean_distance: 0.2621
Epoch 146/350
46/46 [==============================] - 0s 899us/step - loss: 0.1643 - accuracy: 0.8854 - mae: 0.1643 - pearson_correlation: 0.5178 - euclidean_distance: 0.2605
Epoch 147/350
46/46 [==============================] - 0s 925us/step - loss: 0.1625 - accuracy: 0.8880 - mae: 0.1625 - pearson_correlation: 0.5207 - euclidean_distance: 0.2580
Epoch 148/350
46/46 [==============================] - 0s 855us/step - loss: 0.1609 - accuracy: 0.8937 - mae: 0.1609 - pearson_correlation: 0.5296 - euclidean_distance: 0.2553
Epoch 149/350
46/46 [==============================] - 0s 901us/step - loss: 0.1606 - accuracy: 0.8889 - mae: 0.1606 - pearson_correlation: 0.5272 - euclidean_distance: 0.2544
Epoch 150/350
46/46 [==============================] - 0s 898us/step - loss: 0.1599 - accuracy: 0.8933 - mae: 0.1599 - pearson_correlation: 0.5336 - euclidean_distance: 0.2534
Epoch 151/350
46/46 [==============================] - 0s 882us/step - loss: 0.1596 - accuracy: 0.8915 - mae: 0.1596 - pearson_correlation: 0.5300 - euclidean_distance: 0.2528
Epoch 152/350
46/46 [==============================] - 0s 896us/step - loss: 0.1586 - accuracy: 0.8871 - mae: 0.1586 - pearson_correlation: 0.5333 - euclidean_distance: 0.2513
Epoch 153/350
46/46 [==============================] - 0s 888us/step - loss: 0.1594 - accuracy: 0.8893 - mae: 0.1594 - pearson_correlation: 0.5274 - euclidean_distance: 0.2529
Epoch 154/350
46/46 [==============================] - 0s 895us/step - loss: 0.1560 - accuracy: 0.8937 - mae: 0.1560 - pearson_correlation: 0.5422 - euclidean_distance: 0.2471
Epoch 155/350
46/46 [==============================] - 0s 889us/step - loss: 0.1553 - accuracy: 0.8973 - mae: 0.1553 - pearson_correlation: 0.5412 - euclidean_distance: 0.2467
Epoch 156/350
46/46 [==============================] - 0s 897us/step - loss: 0.1529 - accuracy: 0.8968 - mae: 0.1529 - pearson_correlation: 0.5449 - euclidean_distance: 0.2434
Epoch 157/350
46/46 [==============================] - 0s 895us/step - loss: 0.1510 - accuracy: 0.8990 - mae: 0.1510 - pearson_correlation: 0.5531 - euclidean_distance: 0.2397
Epoch 158/350
46/46 [==============================] - 0s 912us/step - loss: 0.1529 - accuracy: 0.8999 - mae: 0.1529 - pearson_correlation: 0.5442 - euclidean_distance: 0.2433
Epoch 159/350
46/46 [==============================] - 0s 896us/step - loss: 0.1515 - accuracy: 0.8990 - mae: 0.1515 - pearson_correlation: 0.5519 - euclidean_distance: 0.2402
Epoch 160/350
46/46 [==============================] - 0s 898us/step - loss: 0.1505 - accuracy: 0.9043 - mae: 0.1505 - pearson_correlation: 0.5581 - euclidean_distance: 0.2385
Epoch 161/350
46/46 [==============================] - 0s 889us/step - loss: 0.1493 - accuracy: 0.9034 - mae: 0.1493 - pearson_correlation: 0.5596 - euclidean_distance: 0.2372
Epoch 162/350
46/46 [==============================] - 0s 897us/step - loss: 0.1495 - accuracy: 0.9056 - mae: 0.1495 - pearson_correlation: 0.5593 - euclidean_distance: 0.2373
Epoch 163/350
46/46 [==============================] - 0s 898us/step - loss: 0.1479 - accuracy: 0.9039 - mae: 0.1479 - pearson_correlation: 0.5602 - euclidean_distance: 0.2354
Epoch 164/350
46/46 [==============================] - 0s 893us/step - loss: 0.1455 - accuracy: 0.9026 - mae: 0.1455 - pearson_correlation: 0.5603 - euclidean_distance: 0.2321
Epoch 165/350
46/46 [==============================] - 0s 895us/step - loss: 0.1472 - accuracy: 0.9092 - mae: 0.1472 - pearson_correlation: 0.5601 - euclidean_distance: 0.2343
Epoch 166/350
46/46 [==============================] - 0s 893us/step - loss: 0.1461 - accuracy: 0.9043 - mae: 0.1461 - pearson_correlation: 0.5656 - euclidean_distance: 0.2322
Epoch 167/350
46/46 [==============================] - 0s 896us/step - loss: 0.1442 - accuracy: 0.9105 - mae: 0.1442 - pearson_correlation: 0.5718 - euclidean_distance: 0.2303
Epoch 168/350
46/46 [==============================] - 0s 892us/step - loss: 0.1457 - accuracy: 0.9109 - mae: 0.1457 - pearson_correlation: 0.5686 - euclidean_distance: 0.2320
Epoch 169/350
46/46 [==============================] - 0s 891us/step - loss: 0.1403 - accuracy: 0.9131 - mae: 0.1403 - pearson_correlation: 0.5787 - euclidean_distance: 0.2235
Epoch 170/350
46/46 [==============================] - 0s 891us/step - loss: 0.1403 - accuracy: 0.9114 - mae: 0.1403 - pearson_correlation: 0.5806 - euclidean_distance: 0.2240
Epoch 171/350
46/46 [==============================] - 0s 899us/step - loss: 0.1409 - accuracy: 0.9184 - mae: 0.1409 - pearson_correlation: 0.5817 - euclidean_distance: 0.2250
Epoch 172/350
46/46 [==============================] - 0s 896us/step - loss: 0.1391 - accuracy: 0.9131 - mae: 0.1391 - pearson_correlation: 0.5816 - euclidean_distance: 0.2221
Epoch 173/350
46/46 [==============================] - 0s 887us/step - loss: 0.1394 - accuracy: 0.9140 - mae: 0.1394 - pearson_correlation: 0.5866 - euclidean_distance: 0.2225
Epoch 174/350
46/46 [==============================] - 0s 898us/step - loss: 0.1390 - accuracy: 0.9167 - mae: 0.1390 - pearson_correlation: 0.5881 - euclidean_distance: 0.2211
Epoch 175/350
46/46 [==============================] - 0s 896us/step - loss: 0.1373 - accuracy: 0.9180 - mae: 0.1373 - pearson_correlation: 0.5875 - euclidean_distance: 0.2190
Epoch 176/350
46/46 [==============================] - 0s 921us/step - loss: 0.1367 - accuracy: 0.9272 - mae: 0.1367 - pearson_correlation: 0.5825 - euclidean_distance: 0.2189
Epoch 177/350
46/46 [==============================] - 0s 904us/step - loss: 0.1373 - accuracy: 0.9184 - mae: 0.1373 - pearson_correlation: 0.5884 - euclidean_distance: 0.2192
Epoch 178/350
46/46 [==============================] - 0s 886us/step - loss: 0.1378 - accuracy: 0.9228 - mae: 0.1378 - pearson_correlation: 0.5818 - euclidean_distance: 0.2199
Epoch 179/350
46/46 [==============================] - 0s 890us/step - loss: 0.1349 - accuracy: 0.9272 - mae: 0.1349 - pearson_correlation: 0.6025 - euclidean_distance: 0.2154
Epoch 180/350
46/46 [==============================] - 0s 895us/step - loss: 0.1341 - accuracy: 0.9215 - mae: 0.1341 - pearson_correlation: 0.6026 - euclidean_distance: 0.2139
Epoch 181/350
46/46 [==============================] - 0s 895us/step - loss: 0.1338 - accuracy: 0.9250 - mae: 0.1338 - pearson_correlation: 0.5970 - euclidean_distance: 0.2138
Epoch 182/350
46/46 [==============================] - 0s 889us/step - loss: 0.1337 - accuracy: 0.9299 - mae: 0.1337 - pearson_correlation: 0.5942 - euclidean_distance: 0.2134
Epoch 183/350
46/46 [==============================] - 0s 894us/step - loss: 0.1315 - accuracy: 0.9246 - mae: 0.1315 - pearson_correlation: 0.6000 - euclidean_distance: 0.2105
Epoch 184/350
46/46 [==============================] - 0s 900us/step - loss: 0.1312 - accuracy: 0.9281 - mae: 0.1312 - pearson_correlation: 0.6064 - euclidean_distance: 0.2098
Epoch 185/350
46/46 [==============================] - 0s 893us/step - loss: 0.1322 - accuracy: 0.9264 - mae: 0.1322 - pearson_correlation: 0.6050 - euclidean_distance: 0.2116
Epoch 186/350
46/46 [==============================] - 0s 924us/step - loss: 0.1317 - accuracy: 0.9334 - mae: 0.1317 - pearson_correlation: 0.6075 - euclidean_distance: 0.2094
Epoch 187/350
46/46 [==============================] - 0s 898us/step - loss: 0.1287 - accuracy: 0.9317 - mae: 0.1287 - pearson_correlation: 0.6153 - euclidean_distance: 0.2065
Epoch 188/350
46/46 [==============================] - 0s 899us/step - loss: 0.1300 - accuracy: 0.9312 - mae: 0.1300 - pearson_correlation: 0.6071 - euclidean_distance: 0.2081
Epoch 189/350
46/46 [==============================] - 0s 893us/step - loss: 0.1279 - accuracy: 0.9303 - mae: 0.1279 - pearson_correlation: 0.6188 - euclidean_distance: 0.2046
Epoch 190/350
46/46 [==============================] - 0s 895us/step - loss: 0.1303 - accuracy: 0.9334 - mae: 0.1303 - pearson_correlation: 0.6106 - euclidean_distance: 0.2073
Epoch 191/350
46/46 [==============================] - 0s 905us/step - loss: 0.1278 - accuracy: 0.9361 - mae: 0.1278 - pearson_correlation: 0.6182 - euclidean_distance: 0.2042
Epoch 192/350
46/46 [==============================] - 0s 891us/step - loss: 0.1266 - accuracy: 0.9356 - mae: 0.1266 - pearson_correlation: 0.6198 - euclidean_distance: 0.2024
Epoch 193/350
46/46 [==============================] - 0s 895us/step - loss: 0.1269 - accuracy: 0.9378 - mae: 0.1269 - pearson_correlation: 0.6228 - euclidean_distance: 0.2026
Epoch 194/350
46/46 [==============================] - 0s 893us/step - loss: 0.1251 - accuracy: 0.9405 - mae: 0.1251 - pearson_correlation: 0.6240 - euclidean_distance: 0.2005
Epoch 195/350
46/46 [==============================] - 0s 891us/step - loss: 0.1248 - accuracy: 0.9378 - mae: 0.1248 - pearson_correlation: 0.6215 - euclidean_distance: 0.1996
Epoch 196/350
46/46 [==============================] - 0s 892us/step - loss: 0.1263 - accuracy: 0.9369 - mae: 0.1263 - pearson_correlation: 0.6173 - euclidean_distance: 0.2030
Epoch 197/350
46/46 [==============================] - 0s 894us/step - loss: 0.1242 - accuracy: 0.9409 - mae: 0.1242 - pearson_correlation: 0.6267 - euclidean_distance: 0.1991
Epoch 198/350
46/46 [==============================] - 0s 894us/step - loss: 0.1214 - accuracy: 0.9396 - mae: 0.1214 - pearson_correlation: 0.6288 - euclidean_distance: 0.1949
Epoch 199/350
46/46 [==============================] - 0s 871us/step - loss: 0.1215 - accuracy: 0.9414 - mae: 0.1215 - pearson_correlation: 0.6350 - euclidean_distance: 0.1945
Epoch 200/350
46/46 [==============================] - 0s 886us/step - loss: 0.1226 - accuracy: 0.9365 - mae: 0.1226 - pearson_correlation: 0.6323 - euclidean_distance: 0.1964
Epoch 201/350
46/46 [==============================] - 0s 895us/step - loss: 0.1231 - accuracy: 0.9387 - mae: 0.1231 - pearson_correlation: 0.6350 - euclidean_distance: 0.1976
Epoch 202/350
46/46 [==============================] - 0s 891us/step - loss: 0.1228 - accuracy: 0.9396 - mae: 0.1228 - pearson_correlation: 0.6370 - euclidean_distance: 0.1960
Epoch 203/350
46/46 [==============================] - 0s 892us/step - loss: 0.1194 - accuracy: 0.9409 - mae: 0.1194 - pearson_correlation: 0.6429 - euclidean_distance: 0.1916
Epoch 204/350
46/46 [==============================] - 0s 891us/step - loss: 0.1202 - accuracy: 0.9436 - mae: 0.1202 - pearson_correlation: 0.6421 - euclidean_distance: 0.1930
Epoch 205/350
46/46 [==============================] - 0s 897us/step - loss: 0.1216 - accuracy: 0.9427 - mae: 0.1216 - pearson_correlation: 0.6377 - euclidean_distance: 0.1947
Epoch 206/350
46/46 [==============================] - 0s 899us/step - loss: 0.1192 - accuracy: 0.9440 - mae: 0.1192 - pearson_correlation: 0.6433 - euclidean_distance: 0.1911
Epoch 207/350
46/46 [==============================] - 0s 899us/step - loss: 0.1183 - accuracy: 0.9405 - mae: 0.1183 - pearson_correlation: 0.6457 - euclidean_distance: 0.1900
Epoch 208/350
46/46 [==============================] - 0s 891us/step - loss: 0.1172 - accuracy: 0.9449 - mae: 0.1172 - pearson_correlation: 0.6481 - euclidean_distance: 0.1884
Epoch 209/350
46/46 [==============================] - 0s 902us/step - loss: 0.1164 - accuracy: 0.9409 - mae: 0.1164 - pearson_correlation: 0.6471 - euclidean_distance: 0.1871
Epoch 210/350
46/46 [==============================] - 0s 879us/step - loss: 0.1177 - accuracy: 0.9418 - mae: 0.1177 - pearson_correlation: 0.6501 - euclidean_distance: 0.1890
Epoch 211/350
46/46 [==============================] - 0s 890us/step - loss: 0.1183 - accuracy: 0.9436 - mae: 0.1183 - pearson_correlation: 0.6532 - euclidean_distance: 0.1890
Epoch 212/350
46/46 [==============================] - 0s 891us/step - loss: 0.1162 - accuracy: 0.9427 - mae: 0.1162 - pearson_correlation: 0.6542 - euclidean_distance: 0.1866
Epoch 213/350
46/46 [==============================] - 0s 900us/step - loss: 0.1173 - accuracy: 0.9449 - mae: 0.1173 - pearson_correlation: 0.6480 - euclidean_distance: 0.1883
Epoch 214/350
46/46 [==============================] - 0s 901us/step - loss: 0.1134 - accuracy: 0.9436 - mae: 0.1134 - pearson_correlation: 0.6543 - euclidean_distance: 0.1832
Epoch 215/350
46/46 [==============================] - 0s 893us/step - loss: 0.1148 - accuracy: 0.9462 - mae: 0.1148 - pearson_correlation: 0.6513 - euclidean_distance: 0.1841
Epoch 216/350
46/46 [==============================] - 0s 889us/step - loss: 0.1145 - accuracy: 0.9418 - mae: 0.1145 - pearson_correlation: 0.6543 - euclidean_distance: 0.1840
Epoch 217/350
46/46 [==============================] - 0s 898us/step - loss: 0.1154 - accuracy: 0.9440 - mae: 0.1154 - pearson_correlation: 0.6547 - euclidean_distance: 0.1853
Epoch 218/350
46/46 [==============================] - 0s 895us/step - loss: 0.1146 - accuracy: 0.9466 - mae: 0.1146 - pearson_correlation: 0.6533 - euclidean_distance: 0.1841
Epoch 219/350
46/46 [==============================] - 0s 895us/step - loss: 0.1119 - accuracy: 0.9466 - mae: 0.1119 - pearson_correlation: 0.6649 - euclidean_distance: 0.1801
Epoch 220/350
46/46 [==============================] - 0s 888us/step - loss: 0.1151 - accuracy: 0.9449 - mae: 0.1151 - pearson_correlation: 0.6596 - euclidean_distance: 0.1847
Epoch 221/350
46/46 [==============================] - 0s 898us/step - loss: 0.1122 - accuracy: 0.9484 - mae: 0.1122 - pearson_correlation: 0.6634 - euclidean_distance: 0.1799
Epoch 222/350
46/46 [==============================] - 0s 905us/step - loss: 0.1108 - accuracy: 0.9466 - mae: 0.1108 - pearson_correlation: 0.6623 - euclidean_distance: 0.1791
Epoch 223/350
46/46 [==============================] - 0s 889us/step - loss: 0.1115 - accuracy: 0.9444 - mae: 0.1115 - pearson_correlation: 0.6676 - euclidean_distance: 0.1797
Epoch 224/350
46/46 [==============================] - 0s 889us/step - loss: 0.1128 - accuracy: 0.9453 - mae: 0.1128 - pearson_correlation: 0.6634 - euclidean_distance: 0.1817
Epoch 225/350
46/46 [==============================] - 0s 893us/step - loss: 0.1114 - accuracy: 0.9471 - mae: 0.1114 - pearson_correlation: 0.6642 - euclidean_distance: 0.1798
Epoch 226/350
46/46 [==============================] - 0s 882us/step - loss: 0.1096 - accuracy: 0.9493 - mae: 0.1096 - pearson_correlation: 0.6697 - euclidean_distance: 0.1767
Epoch 227/350
46/46 [==============================] - 0s 900us/step - loss: 0.1123 - accuracy: 0.9497 - mae: 0.1123 - pearson_correlation: 0.6673 - euclidean_distance: 0.1806
Epoch 228/350
46/46 [==============================] - 0s 898us/step - loss: 0.1114 - accuracy: 0.9475 - mae: 0.1114 - pearson_correlation: 0.6699 - euclidean_distance: 0.1791
Epoch 229/350
46/46 [==============================] - 0s 896us/step - loss: 0.1085 - accuracy: 0.9453 - mae: 0.1085 - pearson_correlation: 0.6731 - euclidean_distance: 0.1749
Epoch 230/350
46/46 [==============================] - 0s 897us/step - loss: 0.1075 - accuracy: 0.9471 - mae: 0.1075 - pearson_correlation: 0.6769 - euclidean_distance: 0.1735
Epoch 231/350
46/46 [==============================] - 0s 897us/step - loss: 0.1071 - accuracy: 0.9484 - mae: 0.1071 - pearson_correlation: 0.6789 - euclidean_distance: 0.1727
Epoch 232/350
46/46 [==============================] - 0s 896us/step - loss: 0.1082 - accuracy: 0.9489 - mae: 0.1082 - pearson_correlation: 0.6824 - euclidean_distance: 0.1738
Epoch 233/350
46/46 [==============================] - 0s 896us/step - loss: 0.1073 - accuracy: 0.9493 - mae: 0.1073 - pearson_correlation: 0.6768 - euclidean_distance: 0.1737
Epoch 234/350
46/46 [==============================] - 0s 893us/step - loss: 0.1076 - accuracy: 0.9466 - mae: 0.1076 - pearson_correlation: 0.6847 - euclidean_distance: 0.1732
Epoch 235/350
46/46 [==============================] - 0s 897us/step - loss: 0.1080 - accuracy: 0.9484 - mae: 0.1080 - pearson_correlation: 0.6807 - euclidean_distance: 0.1743
Epoch 236/350
46/46 [==============================] - 0s 898us/step - loss: 0.1072 - accuracy: 0.9502 - mae: 0.1072 - pearson_correlation: 0.6832 - euclidean_distance: 0.1728
Epoch 237/350
46/46 [==============================] - 0s 896us/step - loss: 0.1047 - accuracy: 0.9480 - mae: 0.1047 - pearson_correlation: 0.6810 - euclidean_distance: 0.1691
Epoch 238/350
46/46 [==============================] - 0s 907us/step - loss: 0.1052 - accuracy: 0.9466 - mae: 0.1052 - pearson_correlation: 0.6820 - euclidean_distance: 0.1695
Epoch 239/350
46/46 [==============================] - 0s 900us/step - loss: 0.1047 - accuracy: 0.9497 - mae: 0.1047 - pearson_correlation: 0.6850 - euclidean_distance: 0.1692
Epoch 240/350
46/46 [==============================] - 0s 886us/step - loss: 0.1049 - accuracy: 0.9489 - mae: 0.1049 - pearson_correlation: 0.6861 - euclidean_distance: 0.1700
Epoch 241/350
46/46 [==============================] - 0s 893us/step - loss: 0.1043 - accuracy: 0.9471 - mae: 0.1043 - pearson_correlation: 0.6884 - euclidean_distance: 0.1684
Epoch 242/350
46/46 [==============================] - 0s 890us/step - loss: 0.1069 - accuracy: 0.9484 - mae: 0.1069 - pearson_correlation: 0.6875 - euclidean_distance: 0.1722
Epoch 243/350
46/46 [==============================] - 0s 898us/step - loss: 0.1046 - accuracy: 0.9466 - mae: 0.1046 - pearson_correlation: 0.6860 - euclidean_distance: 0.1691
Epoch 244/350
46/46 [==============================] - 0s 888us/step - loss: 0.1043 - accuracy: 0.9515 - mae: 0.1043 - pearson_correlation: 0.6917 - euclidean_distance: 0.1681
Epoch 245/350
46/46 [==============================] - 0s 892us/step - loss: 0.1046 - accuracy: 0.9502 - mae: 0.1046 - pearson_correlation: 0.6875 - euclidean_distance: 0.1685
Epoch 246/350
46/46 [==============================] - 0s 894us/step - loss: 0.1048 - accuracy: 0.9515 - mae: 0.1048 - pearson_correlation: 0.6916 - euclidean_distance: 0.1695
Epoch 247/350
46/46 [==============================] - 0s 892us/step - loss: 0.1024 - accuracy: 0.9493 - mae: 0.1024 - pearson_correlation: 0.6945 - euclidean_distance: 0.1657
Epoch 248/350
46/46 [==============================] - 0s 896us/step - loss: 0.1026 - accuracy: 0.9515 - mae: 0.1026 - pearson_correlation: 0.6924 - euclidean_distance: 0.1661
Epoch 249/350
46/46 [==============================] - 0s 891us/step - loss: 0.1036 - accuracy: 0.9502 - mae: 0.1036 - pearson_correlation: 0.6947 - euclidean_distance: 0.1673
Epoch 250/350
46/46 [==============================] - 0s 894us/step - loss: 0.1024 - accuracy: 0.9484 - mae: 0.1024 - pearson_correlation: 0.6963 - euclidean_distance: 0.1650
Epoch 251/350
46/46 [==============================] - 0s 890us/step - loss: 0.1029 - accuracy: 0.9537 - mae: 0.1029 - pearson_correlation: 0.6963 - euclidean_distance: 0.1661
Epoch 252/350
46/46 [==============================] - 0s 893us/step - loss: 0.1028 - accuracy: 0.9515 - mae: 0.1028 - pearson_correlation: 0.6911 - euclidean_distance: 0.1662
Epoch 253/350
46/46 [==============================] - 0s 893us/step - loss: 0.1024 - accuracy: 0.9475 - mae: 0.1024 - pearson_correlation: 0.6945 - euclidean_distance: 0.1654
Epoch 254/350
46/46 [==============================] - 0s 892us/step - loss: 0.1013 - accuracy: 0.9502 - mae: 0.1013 - pearson_correlation: 0.7004 - euclidean_distance: 0.1640
Epoch 255/350
46/46 [==============================] - 0s 897us/step - loss: 0.1015 - accuracy: 0.9515 - mae: 0.1015 - pearson_correlation: 0.6995 - euclidean_distance: 0.1639
Epoch 256/350
46/46 [==============================] - 0s 893us/step - loss: 0.1051 - accuracy: 0.9506 - mae: 0.1051 - pearson_correlation: 0.6896 - euclidean_distance: 0.1689
Epoch 257/350
46/46 [==============================] - 0s 927us/step - loss: 0.0998 - accuracy: 0.9506 - mae: 0.0998 - pearson_correlation: 0.7076 - euclidean_distance: 0.1615
Epoch 258/350
46/46 [==============================] - 0s 912us/step - loss: 0.0988 - accuracy: 0.9519 - mae: 0.0988 - pearson_correlation: 0.7027 - euclidean_distance: 0.1596
Epoch 259/350
46/46 [==============================] - 0s 889us/step - loss: 0.0975 - accuracy: 0.9502 - mae: 0.0975 - pearson_correlation: 0.7095 - euclidean_distance: 0.1580
Epoch 260/350
46/46 [==============================] - 0s 897us/step - loss: 0.0989 - accuracy: 0.9524 - mae: 0.0989 - pearson_correlation: 0.7022 - euclidean_distance: 0.1608
Epoch 261/350
46/46 [==============================] - 0s 896us/step - loss: 0.1009 - accuracy: 0.9537 - mae: 0.1009 - pearson_correlation: 0.7012 - euclidean_distance: 0.1629
Epoch 262/350
46/46 [==============================] - 0s 901us/step - loss: 0.0980 - accuracy: 0.9511 - mae: 0.0980 - pearson_correlation: 0.7065 - euclidean_distance: 0.1592
Epoch 263/350
46/46 [==============================] - 0s 902us/step - loss: 0.0999 - accuracy: 0.9528 - mae: 0.0999 - pearson_correlation: 0.7087 - euclidean_distance: 0.1615
Epoch 264/350
46/46 [==============================] - 0s 894us/step - loss: 0.0976 - accuracy: 0.9515 - mae: 0.0976 - pearson_correlation: 0.7077 - euclidean_distance: 0.1584
Epoch 265/350
46/46 [==============================] - 0s 895us/step - loss: 0.0995 - accuracy: 0.9524 - mae: 0.0995 - pearson_correlation: 0.7052 - euclidean_distance: 0.1604
Epoch 266/350
46/46 [==============================] - 0s 890us/step - loss: 0.1002 - accuracy: 0.9533 - mae: 0.1002 - pearson_correlation: 0.7022 - euclidean_distance: 0.1621
Epoch 267/350
46/46 [==============================] - 0s 895us/step - loss: 0.1002 - accuracy: 0.9524 - mae: 0.1002 - pearson_correlation: 0.7063 - euclidean_distance: 0.1624
Epoch 268/350
46/46 [==============================] - 0s 894us/step - loss: 0.0973 - accuracy: 0.9519 - mae: 0.0973 - pearson_correlation: 0.7091 - euclidean_distance: 0.1578
Epoch 269/350
46/46 [==============================] - 0s 899us/step - loss: 0.0975 - accuracy: 0.9506 - mae: 0.0975 - pearson_correlation: 0.7144 - euclidean_distance: 0.1579
Epoch 270/350
46/46 [==============================] - 0s 894us/step - loss: 0.0977 - accuracy: 0.9537 - mae: 0.0977 - pearson_correlation: 0.7111 - euclidean_distance: 0.1584
Epoch 271/350
46/46 [==============================] - 0s 895us/step - loss: 0.0967 - accuracy: 0.9511 - mae: 0.0967 - pearson_correlation: 0.7118 - euclidean_distance: 0.1569
Epoch 272/350
46/46 [==============================] - 0s 891us/step - loss: 0.0958 - accuracy: 0.9541 - mae: 0.0958 - pearson_correlation: 0.7153 - euclidean_distance: 0.1549
Epoch 273/350
46/46 [==============================] - 0s 894us/step - loss: 0.0959 - accuracy: 0.9528 - mae: 0.0959 - pearson_correlation: 0.7139 - euclidean_distance: 0.1560
Epoch 274/350
46/46 [==============================] - 0s 896us/step - loss: 0.1011 - accuracy: 0.9515 - mae: 0.1011 - pearson_correlation: 0.7045 - euclidean_distance: 0.1631
Epoch 275/350
46/46 [==============================] - 0s 899us/step - loss: 0.0947 - accuracy: 0.9519 - mae: 0.0947 - pearson_correlation: 0.7180 - euclidean_distance: 0.1531
Epoch 276/350
46/46 [==============================] - 0s 895us/step - loss: 0.0997 - accuracy: 0.9528 - mae: 0.0997 - pearson_correlation: 0.7080 - euclidean_distance: 0.1613
Epoch 277/350
46/46 [==============================] - 0s 894us/step - loss: 0.0967 - accuracy: 0.9502 - mae: 0.0967 - pearson_correlation: 0.7165 - euclidean_distance: 0.1567
Epoch 278/350
46/46 [==============================] - 0s 893us/step - loss: 0.0988 - accuracy: 0.9541 - mae: 0.0988 - pearson_correlation: 0.7129 - euclidean_distance: 0.1597
Epoch 279/350
46/46 [==============================] - 0s 922us/step - loss: 0.0962 - accuracy: 0.9546 - mae: 0.0962 - pearson_correlation: 0.7216 - euclidean_distance: 0.1559
Epoch 280/350
46/46 [==============================] - 0s 903us/step - loss: 0.0940 - accuracy: 0.9546 - mae: 0.0940 - pearson_correlation: 0.7211 - euclidean_distance: 0.1522
Epoch 281/350
46/46 [==============================] - 0s 892us/step - loss: 0.0943 - accuracy: 0.9519 - mae: 0.0943 - pearson_correlation: 0.7151 - euclidean_distance: 0.1537
Epoch 282/350
46/46 [==============================] - 0s 898us/step - loss: 0.0950 - accuracy: 0.9524 - mae: 0.0950 - pearson_correlation: 0.7234 - euclidean_distance: 0.1540
Epoch 283/350
46/46 [==============================] - 0s 901us/step - loss: 0.0964 - accuracy: 0.9537 - mae: 0.0964 - pearson_correlation: 0.7158 - euclidean_distance: 0.1564
Epoch 284/350
46/46 [==============================] - 0s 923us/step - loss: 0.0952 - accuracy: 0.9537 - mae: 0.0952 - pearson_correlation: 0.7172 - euclidean_distance: 0.1541
Epoch 285/350
46/46 [==============================] - 0s 903us/step - loss: 0.0952 - accuracy: 0.9528 - mae: 0.0952 - pearson_correlation: 0.7198 - euclidean_distance: 0.1542
Epoch 286/350
46/46 [==============================] - 0s 908us/step - loss: 0.0942 - accuracy: 0.9528 - mae: 0.0942 - pearson_correlation: 0.7146 - euclidean_distance: 0.1528
Epoch 287/350
46/46 [==============================] - 0s 903us/step - loss: 0.0967 - accuracy: 0.9537 - mae: 0.0967 - pearson_correlation: 0.7186 - euclidean_distance: 0.1565
Epoch 288/350
46/46 [==============================] - 0s 902us/step - loss: 0.0942 - accuracy: 0.9546 - mae: 0.0942 - pearson_correlation: 0.7223 - euclidean_distance: 0.1527
Epoch 289/350
46/46 [==============================] - 0s 897us/step - loss: 0.0959 - accuracy: 0.9546 - mae: 0.0959 - pearson_correlation: 0.7256 - euclidean_distance: 0.1551
Epoch 290/350
46/46 [==============================] - 0s 892us/step - loss: 0.0922 - accuracy: 0.9546 - mae: 0.0922 - pearson_correlation: 0.7273 - euclidean_distance: 0.1498
Epoch 291/350
46/46 [==============================] - 0s 896us/step - loss: 0.0937 - accuracy: 0.9541 - mae: 0.0937 - pearson_correlation: 0.7216 - euclidean_distance: 0.1521
Epoch 292/350
46/46 [==============================] - 0s 890us/step - loss: 0.0942 - accuracy: 0.9541 - mae: 0.0942 - pearson_correlation: 0.7217 - euclidean_distance: 0.1528
Epoch 293/350
46/46 [==============================] - 0s 887us/step - loss: 0.0950 - accuracy: 0.9533 - mae: 0.0950 - pearson_correlation: 0.7219 - euclidean_distance: 0.1538
Epoch 294/350
46/46 [==============================] - 0s 898us/step - loss: 0.0912 - accuracy: 0.9546 - mae: 0.0912 - pearson_correlation: 0.7345 - euclidean_distance: 0.1483
Epoch 295/350
46/46 [==============================] - 0s 901us/step - loss: 0.0920 - accuracy: 0.9555 - mae: 0.0920 - pearson_correlation: 0.7251 - euclidean_distance: 0.1498
Epoch 296/350
46/46 [==============================] - 0s 899us/step - loss: 0.0914 - accuracy: 0.9568 - mae: 0.0914 - pearson_correlation: 0.7328 - euclidean_distance: 0.1484
Epoch 297/350
46/46 [==============================] - 0s 889us/step - loss: 0.0905 - accuracy: 0.9563 - mae: 0.0905 - pearson_correlation: 0.7330 - euclidean_distance: 0.1473
Epoch 298/350
46/46 [==============================] - 0s 890us/step - loss: 0.0906 - accuracy: 0.9546 - mae: 0.0906 - pearson_correlation: 0.7260 - euclidean_distance: 0.1474
Epoch 299/350
46/46 [==============================] - 0s 890us/step - loss: 0.0935 - accuracy: 0.9550 - mae: 0.0935 - pearson_correlation: 0.7285 - euclidean_distance: 0.1516
Epoch 300/350
46/46 [==============================] - 0s 897us/step - loss: 0.0917 - accuracy: 0.9559 - mae: 0.0917 - pearson_correlation: 0.7305 - euclidean_distance: 0.1493
Epoch 301/350
46/46 [==============================] - 0s 900us/step - loss: 0.0922 - accuracy: 0.9541 - mae: 0.0922 - pearson_correlation: 0.7356 - euclidean_distance: 0.1502
Epoch 302/350
46/46 [==============================] - 0s 890us/step - loss: 0.0937 - accuracy: 0.9550 - mae: 0.0937 - pearson_correlation: 0.7260 - euclidean_distance: 0.1520
Epoch 303/350
46/46 [==============================] - 0s 903us/step - loss: 0.0919 - accuracy: 0.9559 - mae: 0.0919 - pearson_correlation: 0.7257 - euclidean_distance: 0.1494
Epoch 304/350
46/46 [==============================] - 0s 898us/step - loss: 0.0912 - accuracy: 0.9546 - mae: 0.0912 - pearson_correlation: 0.7329 - euclidean_distance: 0.1481
Epoch 305/350
46/46 [==============================] - 0s 903us/step - loss: 0.0928 - accuracy: 0.9541 - mae: 0.0928 - pearson_correlation: 0.7280 - euclidean_distance: 0.1509
Epoch 306/350
46/46 [==============================] - 0s 897us/step - loss: 0.0904 - accuracy: 0.9550 - mae: 0.0904 - pearson_correlation: 0.7327 - euclidean_distance: 0.1470
Epoch 307/350
46/46 [==============================] - 0s 892us/step - loss: 0.0905 - accuracy: 0.9550 - mae: 0.0905 - pearson_correlation: 0.7356 - euclidean_distance: 0.1468
Epoch 308/350
46/46 [==============================] - 0s 899us/step - loss: 0.0895 - accuracy: 0.9559 - mae: 0.0895 - pearson_correlation: 0.7369 - euclidean_distance: 0.1458
Epoch 309/350
46/46 [==============================] - 0s 893us/step - loss: 0.0900 - accuracy: 0.9537 - mae: 0.0900 - pearson_correlation: 0.7351 - euclidean_distance: 0.1466
Epoch 310/350
46/46 [==============================] - 0s 894us/step - loss: 0.0893 - accuracy: 0.9550 - mae: 0.0893 - pearson_correlation: 0.7411 - euclidean_distance: 0.1454
Epoch 311/350
46/46 [==============================] - 0s 890us/step - loss: 0.0902 - accuracy: 0.9555 - mae: 0.0902 - pearson_correlation: 0.7384 - euclidean_distance: 0.1464
Epoch 312/350
46/46 [==============================] - 0s 893us/step - loss: 0.0909 - accuracy: 0.9550 - mae: 0.0909 - pearson_correlation: 0.7314 - euclidean_distance: 0.1473
Epoch 313/350
46/46 [==============================] - 0s 899us/step - loss: 0.0898 - accuracy: 0.9555 - mae: 0.0898 - pearson_correlation: 0.7342 - euclidean_distance: 0.1464
Epoch 314/350
46/46 [==============================] - 0s 900us/step - loss: 0.0884 - accuracy: 0.9546 - mae: 0.0884 - pearson_correlation: 0.7375 - euclidean_distance: 0.1439
Epoch 315/350
46/46 [==============================] - 0s 886us/step - loss: 0.0890 - accuracy: 0.9555 - mae: 0.0890 - pearson_correlation: 0.7400 - euclidean_distance: 0.1449
Epoch 316/350
46/46 [==============================] - 0s 897us/step - loss: 0.0889 - accuracy: 0.9550 - mae: 0.0889 - pearson_correlation: 0.7391 - euclidean_distance: 0.1449
Epoch 317/350
46/46 [==============================] - 0s 886us/step - loss: 0.0878 - accuracy: 0.9555 - mae: 0.0878 - pearson_correlation: 0.7391 - euclidean_distance: 0.1428
Epoch 318/350
46/46 [==============================] - 0s 896us/step - loss: 0.0923 - accuracy: 0.9555 - mae: 0.0923 - pearson_correlation: 0.7361 - euclidean_distance: 0.1497
Epoch 319/350
46/46 [==============================] - 0s 887us/step - loss: 0.0875 - accuracy: 0.9546 - mae: 0.0875 - pearson_correlation: 0.7439 - euclidean_distance: 0.1423
Epoch 320/350
46/46 [==============================] - 0s 884us/step - loss: 0.0884 - accuracy: 0.9563 - mae: 0.0884 - pearson_correlation: 0.7412 - euclidean_distance: 0.1435
Epoch 321/350
46/46 [==============================] - 0s 889us/step - loss: 0.0887 - accuracy: 0.9550 - mae: 0.0887 - pearson_correlation: 0.7392 - euclidean_distance: 0.1444
Epoch 322/350
46/46 [==============================] - 0s 891us/step - loss: 0.0897 - accuracy: 0.9555 - mae: 0.0897 - pearson_correlation: 0.7386 - euclidean_distance: 0.1454
Epoch 323/350
46/46 [==============================] - 0s 897us/step - loss: 0.0871 - accuracy: 0.9550 - mae: 0.0871 - pearson_correlation: 0.7466 - euclidean_distance: 0.1415
Epoch 324/350
46/46 [==============================] - 0s 887us/step - loss: 0.0883 - accuracy: 0.9559 - mae: 0.0883 - pearson_correlation: 0.7335 - euclidean_distance: 0.1440
Epoch 325/350
46/46 [==============================] - 0s 889us/step - loss: 0.0867 - accuracy: 0.9550 - mae: 0.0867 - pearson_correlation: 0.7465 - euclidean_distance: 0.1414
Epoch 326/350
46/46 [==============================] - 0s 926us/step - loss: 0.0875 - accuracy: 0.9559 - mae: 0.0875 - pearson_correlation: 0.7448 - euclidean_distance: 0.1423
Epoch 327/350
46/46 [==============================] - 0s 914us/step - loss: 0.0858 - accuracy: 0.9550 - mae: 0.0858 - pearson_correlation: 0.7470 - euclidean_distance: 0.1398
Epoch 328/350
46/46 [==============================] - 0s 893us/step - loss: 0.0877 - accuracy: 0.9559 - mae: 0.0877 - pearson_correlation: 0.7465 - euclidean_distance: 0.1425
Epoch 329/350
46/46 [==============================] - 0s 892us/step - loss: 0.0861 - accuracy: 0.9555 - mae: 0.0861 - pearson_correlation: 0.7422 - euclidean_distance: 0.1406
Epoch 330/350
46/46 [==============================] - 0s 895us/step - loss: 0.0867 - accuracy: 0.9555 - mae: 0.0867 - pearson_correlation: 0.7473 - euclidean_distance: 0.1413
Epoch 331/350
46/46 [==============================] - 0s 902us/step - loss: 0.0863 - accuracy: 0.9559 - mae: 0.0863 - pearson_correlation: 0.7497 - euclidean_distance: 0.1408
Epoch 332/350
46/46 [==============================] - 0s 895us/step - loss: 0.0843 - accuracy: 0.9559 - mae: 0.0843 - pearson_correlation: 0.7497 - euclidean_distance: 0.1379
Epoch 333/350
46/46 [==============================] - 0s 892us/step - loss: 0.0876 - accuracy: 0.9559 - mae: 0.0876 - pearson_correlation: 0.7455 - euclidean_distance: 0.1422
Epoch 334/350
46/46 [==============================] - 0s 900us/step - loss: 0.0869 - accuracy: 0.9550 - mae: 0.0869 - pearson_correlation: 0.7499 - euclidean_distance: 0.1410
Epoch 335/350
46/46 [==============================] - 0s 896us/step - loss: 0.0856 - accuracy: 0.9555 - mae: 0.0856 - pearson_correlation: 0.7488 - euclidean_distance: 0.1399
Epoch 336/350
46/46 [==============================] - 0s 893us/step - loss: 0.0882 - accuracy: 0.9559 - mae: 0.0882 - pearson_correlation: 0.7428 - euclidean_distance: 0.1435
Epoch 337/350
46/46 [==============================] - 0s 893us/step - loss: 0.0834 - accuracy: 0.9555 - mae: 0.0834 - pearson_correlation: 0.7569 - euclidean_distance: 0.1361
Epoch 338/350
46/46 [==============================] - 0s 903us/step - loss: 0.0852 - accuracy: 0.9546 - mae: 0.0852 - pearson_correlation: 0.7491 - euclidean_distance: 0.1390
Epoch 339/350
46/46 [==============================] - 0s 891us/step - loss: 0.0883 - accuracy: 0.9559 - mae: 0.0883 - pearson_correlation: 0.7457 - euclidean_distance: 0.1437
Epoch 340/350
46/46 [==============================] - 0s 896us/step - loss: 0.0878 - accuracy: 0.9559 - mae: 0.0878 - pearson_correlation: 0.7465 - euclidean_distance: 0.1425
Epoch 341/350
46/46 [==============================] - 0s 900us/step - loss: 0.0854 - accuracy: 0.9559 - mae: 0.0854 - pearson_correlation: 0.7516 - euclidean_distance: 0.1392
Epoch 342/350
46/46 [==============================] - 0s 889us/step - loss: 0.0850 - accuracy: 0.9550 - mae: 0.0850 - pearson_correlation: 0.7488 - euclidean_distance: 0.1386
Epoch 343/350
46/46 [==============================] - 0s 897us/step - loss: 0.0880 - accuracy: 0.9563 - mae: 0.0880 - pearson_correlation: 0.7442 - euclidean_distance: 0.1437
Epoch 344/350
46/46 [==============================] - 0s 889us/step - loss: 0.0879 - accuracy: 0.9546 - mae: 0.0879 - pearson_correlation: 0.7456 - euclidean_distance: 0.1428
Epoch 345/350
46/46 [==============================] - 0s 891us/step - loss: 0.0881 - accuracy: 0.9555 - mae: 0.0881 - pearson_correlation: 0.7439 - euclidean_distance: 0.1426
Epoch 346/350
46/46 [==============================] - 0s 896us/step - loss: 0.0868 - accuracy: 0.9563 - mae: 0.0868 - pearson_correlation: 0.7470 - euclidean_distance: 0.1412
Epoch 347/350
46/46 [==============================] - 0s 899us/step - loss: 0.0837 - accuracy: 0.9559 - mae: 0.0837 - pearson_correlation: 0.7549 - euclidean_distance: 0.1366
Epoch 348/350
46/46 [==============================] - 0s 891us/step - loss: 0.0852 - accuracy: 0.9559 - mae: 0.0852 - pearson_correlation: 0.7534 - euclidean_distance: 0.1385
Epoch 349/350
46/46 [==============================] - 0s 913us/step - loss: 0.0830 - accuracy: 0.9559 - mae: 0.0830 - pearson_correlation: 0.7581 - euclidean_distance: 0.1354
Epoch 350/350
46/46 [==============================] - 0s 930us/step - loss: 0.0864 - accuracy: 0.9555 - mae: 0.0864 - pearson_correlation: 0.7471 - euclidean_distance: 0.1406
23/23 [==============================] - 0s 549us/step
Epoch 1/100
38/38 [==============================] - 1s 896us/step - loss: 0.5270 - accuracy: 0.2219 - mae: 0.5270 - pearson_correlation: -0.5087 - euclidean_distance: 0.8872
Epoch 2/100
38/38 [==============================] - 0s 838us/step - loss: 0.5253 - accuracy: 0.2219 - mae: 0.5253 - pearson_correlation: -0.5053 - euclidean_distance: 0.8850
Epoch 3/100
38/38 [==============================] - 0s 875us/step - loss: 0.5242 - accuracy: 0.2325 - mae: 0.5242 - pearson_correlation: -0.4987 - euclidean_distance: 0.8816
Epoch 4/100
38/38 [==============================] - 0s 910us/step - loss: 0.5219 - accuracy: 0.2267 - mae: 0.5219 - pearson_correlation: -0.4950 - euclidean_distance: 0.8783
Epoch 5/100
38/38 [==============================] - 0s 917us/step - loss: 0.5193 - accuracy: 0.2285 - mae: 0.5193 - pearson_correlation: -0.4896 - euclidean_distance: 0.8747
Epoch 6/100
38/38 [==============================] - 0s 913us/step - loss: 0.5180 - accuracy: 0.2320 - mae: 0.5180 - pearson_correlation: -0.4894 - euclidean_distance: 0.8722
Epoch 7/100
38/38 [==============================] - 0s 912us/step - loss: 0.5157 - accuracy: 0.2294 - mae: 0.5157 - pearson_correlation: -0.4864 - euclidean_distance: 0.8690
Epoch 8/100
38/38 [==============================] - 0s 911us/step - loss: 0.5142 - accuracy: 0.2360 - mae: 0.5142 - pearson_correlation: -0.4837 - euclidean_distance: 0.8657
Epoch 9/100
38/38 [==============================] - 0s 911us/step - loss: 0.5113 - accuracy: 0.2373 - mae: 0.5113 - pearson_correlation: -0.4807 - euclidean_distance: 0.8614
Epoch 10/100
38/38 [==============================] - 0s 907us/step - loss: 0.5095 - accuracy: 0.2373 - mae: 0.5095 - pearson_correlation: -0.4777 - euclidean_distance: 0.8587
Epoch 11/100
38/38 [==============================] - 0s 906us/step - loss: 0.5086 - accuracy: 0.2356 - mae: 0.5086 - pearson_correlation: -0.4770 - euclidean_distance: 0.8560
Epoch 12/100
38/38 [==============================] - 0s 913us/step - loss: 0.5061 - accuracy: 0.2391 - mae: 0.5061 - pearson_correlation: -0.4679 - euclidean_distance: 0.8521
Epoch 13/100
38/38 [==============================] - 0s 917us/step - loss: 0.5048 - accuracy: 0.2360 - mae: 0.5048 - pearson_correlation: -0.4707 - euclidean_distance: 0.8499
Epoch 14/100
38/38 [==============================] - 0s 915us/step - loss: 0.5022 - accuracy: 0.2395 - mae: 0.5022 - pearson_correlation: -0.4673 - euclidean_distance: 0.8459
Epoch 15/100
38/38 [==============================] - 0s 898us/step - loss: 0.5000 - accuracy: 0.2439 - mae: 0.5000 - pearson_correlation: -0.4590 - euclidean_distance: 0.8427
Epoch 16/100
38/38 [==============================] - 0s 906us/step - loss: 0.4988 - accuracy: 0.2439 - mae: 0.4988 - pearson_correlation: -0.4513 - euclidean_distance: 0.8400
Epoch 17/100
38/38 [==============================] - 0s 908us/step - loss: 0.4968 - accuracy: 0.2439 - mae: 0.4968 - pearson_correlation: -0.4514 - euclidean_distance: 0.8369
Epoch 18/100
38/38 [==============================] - 0s 908us/step - loss: 0.4938 - accuracy: 0.2492 - mae: 0.4938 - pearson_correlation: -0.4505 - euclidean_distance: 0.8328
Epoch 19/100
38/38 [==============================] - 0s 920us/step - loss: 0.4931 - accuracy: 0.2475 - mae: 0.4931 - pearson_correlation: -0.4457 - euclidean_distance: 0.8302
Epoch 20/100
38/38 [==============================] - 0s 907us/step - loss: 0.4899 - accuracy: 0.2532 - mae: 0.4899 - pearson_correlation: -0.4382 - euclidean_distance: 0.8266
Epoch 21/100
38/38 [==============================] - 0s 915us/step - loss: 0.4891 - accuracy: 0.2519 - mae: 0.4891 - pearson_correlation: -0.4361 - euclidean_distance: 0.8238
Epoch 22/100
38/38 [==============================] - 0s 914us/step - loss: 0.4871 - accuracy: 0.2558 - mae: 0.4871 - pearson_correlation: -0.4353 - euclidean_distance: 0.8209
Epoch 23/100
38/38 [==============================] - 0s 910us/step - loss: 0.4843 - accuracy: 0.2461 - mae: 0.4843 - pearson_correlation: -0.4286 - euclidean_distance: 0.8171
Epoch 24/100
38/38 [==============================] - 0s 917us/step - loss: 0.4831 - accuracy: 0.2554 - mae: 0.4831 - pearson_correlation: -0.4251 - euclidean_distance: 0.8144
Epoch 25/100
38/38 [==============================] - 0s 904us/step - loss: 0.4805 - accuracy: 0.2558 - mae: 0.4805 - pearson_correlation: -0.4189 - euclidean_distance: 0.8107
Epoch 26/100
38/38 [==============================] - 0s 912us/step - loss: 0.4787 - accuracy: 0.2603 - mae: 0.4787 - pearson_correlation: -0.4148 - euclidean_distance: 0.8079
Epoch 27/100
38/38 [==============================] - 0s 921us/step - loss: 0.4763 - accuracy: 0.2607 - mae: 0.4763 - pearson_correlation: -0.4106 - euclidean_distance: 0.8036
Epoch 28/100
38/38 [==============================] - 0s 916us/step - loss: 0.4759 - accuracy: 0.2603 - mae: 0.4759 - pearson_correlation: -0.4067 - euclidean_distance: 0.8019
Epoch 29/100
38/38 [==============================] - 0s 901us/step - loss: 0.4724 - accuracy: 0.2616 - mae: 0.4724 - pearson_correlation: -0.3986 - euclidean_distance: 0.7980
Epoch 30/100
38/38 [==============================] - 0s 925us/step - loss: 0.4705 - accuracy: 0.2598 - mae: 0.4705 - pearson_correlation: -0.3997 - euclidean_distance: 0.7950
Epoch 31/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4692 - accuracy: 0.2598 - mae: 0.4692 - pearson_correlation: -0.3880 - euclidean_distance: 0.7917
Epoch 32/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4685 - accuracy: 0.2633 - mae: 0.4685 - pearson_correlation: -0.3847 - euclidean_distance: 0.7894
Epoch 33/100
38/38 [==============================] - 0s 984us/step - loss: 0.4657 - accuracy: 0.2655 - mae: 0.4657 - pearson_correlation: -0.3867 - euclidean_distance: 0.7863
Epoch 34/100
38/38 [==============================] - 0s 981us/step - loss: 0.4629 - accuracy: 0.2616 - mae: 0.4629 - pearson_correlation: -0.3803 - euclidean_distance: 0.7825
Epoch 35/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4610 - accuracy: 0.2678 - mae: 0.4610 - pearson_correlation: -0.3776 - euclidean_distance: 0.7795
Epoch 36/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4609 - accuracy: 0.2686 - mae: 0.4609 - pearson_correlation: -0.3771 - euclidean_distance: 0.7776
Epoch 37/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4591 - accuracy: 0.2717 - mae: 0.4591 - pearson_correlation: -0.3686 - euclidean_distance: 0.7748
Epoch 38/100
38/38 [==============================] - 0s 961us/step - loss: 0.4556 - accuracy: 0.2704 - mae: 0.4556 - pearson_correlation: -0.3637 - euclidean_distance: 0.7706
Epoch 39/100
38/38 [==============================] - 0s 909us/step - loss: 0.4556 - accuracy: 0.2770 - mae: 0.4556 - pearson_correlation: -0.3611 - euclidean_distance: 0.7680
Epoch 40/100
38/38 [==============================] - 0s 956us/step - loss: 0.4530 - accuracy: 0.2775 - mae: 0.4530 - pearson_correlation: -0.3557 - euclidean_distance: 0.7653
Epoch 41/100
38/38 [==============================] - 0s 925us/step - loss: 0.4501 - accuracy: 0.2655 - mae: 0.4501 - pearson_correlation: -0.3514 - euclidean_distance: 0.7613
Epoch 42/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4489 - accuracy: 0.2766 - mae: 0.4489 - pearson_correlation: -0.3502 - euclidean_distance: 0.7601
Epoch 43/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4460 - accuracy: 0.2739 - mae: 0.4460 - pearson_correlation: -0.3488 - euclidean_distance: 0.7556
Epoch 44/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4459 - accuracy: 0.2744 - mae: 0.4459 - pearson_correlation: -0.3419 - euclidean_distance: 0.7532
Epoch 45/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4427 - accuracy: 0.2788 - mae: 0.4427 - pearson_correlation: -0.3320 - euclidean_distance: 0.7483
Epoch 46/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4419 - accuracy: 0.2832 - mae: 0.4419 - pearson_correlation: -0.3314 - euclidean_distance: 0.7473
Epoch 47/100
38/38 [==============================] - 0s 976us/step - loss: 0.4396 - accuracy: 0.2797 - mae: 0.4396 - pearson_correlation: -0.3290 - euclidean_distance: 0.7432
Epoch 48/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4369 - accuracy: 0.2885 - mae: 0.4369 - pearson_correlation: -0.3200 - euclidean_distance: 0.7403
Epoch 49/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4368 - accuracy: 0.2828 - mae: 0.4368 - pearson_correlation: -0.3191 - euclidean_distance: 0.7383
Epoch 50/100
38/38 [==============================] - 0s 942us/step - loss: 0.4342 - accuracy: 0.2823 - mae: 0.4342 - pearson_correlation: -0.3112 - euclidean_distance: 0.7347
Epoch 51/100
38/38 [==============================] - 0s 924us/step - loss: 0.4314 - accuracy: 0.2872 - mae: 0.4314 - pearson_correlation: -0.3043 - euclidean_distance: 0.7303
Epoch 52/100
38/38 [==============================] - 0s 935us/step - loss: 0.4299 - accuracy: 0.2863 - mae: 0.4299 - pearson_correlation: -0.3003 - euclidean_distance: 0.7276
Epoch 53/100
38/38 [==============================] - 0s 912us/step - loss: 0.4279 - accuracy: 0.2880 - mae: 0.4279 - pearson_correlation: -0.3001 - euclidean_distance: 0.7252
Epoch 54/100
38/38 [==============================] - 0s 908us/step - loss: 0.4273 - accuracy: 0.2951 - mae: 0.4273 - pearson_correlation: -0.2939 - euclidean_distance: 0.7231
Epoch 55/100
38/38 [==============================] - 0s 911us/step - loss: 0.4252 - accuracy: 0.2920 - mae: 0.4252 - pearson_correlation: -0.2871 - euclidean_distance: 0.7188
Epoch 56/100
38/38 [==============================] - 0s 907us/step - loss: 0.4236 - accuracy: 0.2969 - mae: 0.4236 - pearson_correlation: -0.2768 - euclidean_distance: 0.7160
Epoch 57/100
38/38 [==============================] - 0s 909us/step - loss: 0.4208 - accuracy: 0.2942 - mae: 0.4208 - pearson_correlation: -0.2781 - euclidean_distance: 0.7128
Epoch 58/100
38/38 [==============================] - 0s 945us/step - loss: 0.4198 - accuracy: 0.3004 - mae: 0.4198 - pearson_correlation: -0.2690 - euclidean_distance: 0.7102
Epoch 59/100
38/38 [==============================] - 0s 917us/step - loss: 0.4165 - accuracy: 0.3052 - mae: 0.4165 - pearson_correlation: -0.2679 - euclidean_distance: 0.7060
Epoch 60/100
38/38 [==============================] - 0s 907us/step - loss: 0.4160 - accuracy: 0.3004 - mae: 0.4160 - pearson_correlation: -0.2661 - euclidean_distance: 0.7045
Epoch 61/100
38/38 [==============================] - 0s 915us/step - loss: 0.4143 - accuracy: 0.3017 - mae: 0.4143 - pearson_correlation: -0.2549 - euclidean_distance: 0.7021
Epoch 62/100
38/38 [==============================] - 0s 897us/step - loss: 0.4125 - accuracy: 0.2991 - mae: 0.4125 - pearson_correlation: -0.2525 - euclidean_distance: 0.6984
Epoch 63/100
38/38 [==============================] - 0s 905us/step - loss: 0.4100 - accuracy: 0.3013 - mae: 0.4100 - pearson_correlation: -0.2557 - euclidean_distance: 0.6948
Epoch 64/100
38/38 [==============================] - 0s 904us/step - loss: 0.4090 - accuracy: 0.3079 - mae: 0.4090 - pearson_correlation: -0.2490 - euclidean_distance: 0.6927
Epoch 65/100
38/38 [==============================] - 0s 907us/step - loss: 0.4057 - accuracy: 0.3114 - mae: 0.4057 - pearson_correlation: -0.2341 - euclidean_distance: 0.6879
Epoch 66/100
38/38 [==============================] - 0s 901us/step - loss: 0.4048 - accuracy: 0.3066 - mae: 0.4048 - pearson_correlation: -0.2300 - euclidean_distance: 0.6856
Epoch 67/100
38/38 [==============================] - 0s 888us/step - loss: 0.4021 - accuracy: 0.3163 - mae: 0.4021 - pearson_correlation: -0.2278 - euclidean_distance: 0.6820
Epoch 68/100
38/38 [==============================] - 0s 905us/step - loss: 0.4002 - accuracy: 0.3105 - mae: 0.4002 - pearson_correlation: -0.2211 - euclidean_distance: 0.6794
Epoch 69/100
38/38 [==============================] - 0s 904us/step - loss: 0.3978 - accuracy: 0.3194 - mae: 0.3978 - pearson_correlation: -0.2157 - euclidean_distance: 0.6753
Epoch 70/100
38/38 [==============================] - 0s 909us/step - loss: 0.3978 - accuracy: 0.3238 - mae: 0.3978 - pearson_correlation: -0.2128 - euclidean_distance: 0.6734
Epoch 71/100
38/38 [==============================] - 0s 897us/step - loss: 0.3961 - accuracy: 0.3145 - mae: 0.3961 - pearson_correlation: -0.2049 - euclidean_distance: 0.6707
Epoch 72/100
38/38 [==============================] - 0s 904us/step - loss: 0.3951 - accuracy: 0.3264 - mae: 0.3951 - pearson_correlation: -0.1966 - euclidean_distance: 0.6674
Epoch 73/100
38/38 [==============================] - 0s 906us/step - loss: 0.3922 - accuracy: 0.3255 - mae: 0.3922 - pearson_correlation: -0.1930 - euclidean_distance: 0.6643
Epoch 74/100
38/38 [==============================] - 0s 897us/step - loss: 0.3896 - accuracy: 0.3295 - mae: 0.3896 - pearson_correlation: -0.1894 - euclidean_distance: 0.6604
Epoch 75/100
38/38 [==============================] - 0s 912us/step - loss: 0.3884 - accuracy: 0.3335 - mae: 0.3884 - pearson_correlation: -0.1841 - euclidean_distance: 0.6580
Epoch 76/100
38/38 [==============================] - 0s 939us/step - loss: 0.3880 - accuracy: 0.3335 - mae: 0.3880 - pearson_correlation: -0.1759 - euclidean_distance: 0.6556
Epoch 77/100
38/38 [==============================] - 0s 1ms/step - loss: 0.3841 - accuracy: 0.3427 - mae: 0.3841 - pearson_correlation: -0.1721 - euclidean_distance: 0.6515
Epoch 78/100
38/38 [==============================] - 0s 921us/step - loss: 0.3819 - accuracy: 0.3405 - mae: 0.3819 - pearson_correlation: -0.1697 - euclidean_distance: 0.6480
Epoch 79/100
38/38 [==============================] - 0s 965us/step - loss: 0.3798 - accuracy: 0.3494 - mae: 0.3798 - pearson_correlation: -0.1610 - euclidean_distance: 0.6447
Epoch 80/100
38/38 [==============================] - 0s 922us/step - loss: 0.3789 - accuracy: 0.3397 - mae: 0.3789 - pearson_correlation: -0.1537 - euclidean_distance: 0.6419
Epoch 81/100
38/38 [==============================] - 0s 899us/step - loss: 0.3766 - accuracy: 0.3494 - mae: 0.3766 - pearson_correlation: -0.1482 - euclidean_distance: 0.6394
Epoch 82/100
38/38 [==============================] - 0s 906us/step - loss: 0.3756 - accuracy: 0.3494 - mae: 0.3756 - pearson_correlation: -0.1445 - euclidean_distance: 0.6373
Epoch 83/100
38/38 [==============================] - 0s 903us/step - loss: 0.3738 - accuracy: 0.3467 - mae: 0.3738 - pearson_correlation: -0.1382 - euclidean_distance: 0.6339
Epoch 84/100
38/38 [==============================] - 0s 946us/step - loss: 0.3724 - accuracy: 0.3480 - mae: 0.3724 - pearson_correlation: -0.1338 - euclidean_distance: 0.6312
Epoch 85/100
38/38 [==============================] - 0s 909us/step - loss: 0.3688 - accuracy: 0.3542 - mae: 0.3688 - pearson_correlation: -0.1291 - euclidean_distance: 0.6272
Epoch 86/100
38/38 [==============================] - 0s 908us/step - loss: 0.3683 - accuracy: 0.3599 - mae: 0.3683 - pearson_correlation: -0.1219 - euclidean_distance: 0.6245
Epoch 87/100
38/38 [==============================] - 0s 906us/step - loss: 0.3678 - accuracy: 0.3507 - mae: 0.3678 - pearson_correlation: -0.1242 - euclidean_distance: 0.6239
Epoch 88/100
38/38 [==============================] - 0s 916us/step - loss: 0.3670 - accuracy: 0.3608 - mae: 0.3670 - pearson_correlation: -0.1140 - euclidean_distance: 0.6215
Epoch 89/100
38/38 [==============================] - 0s 907us/step - loss: 0.3636 - accuracy: 0.3679 - mae: 0.3636 - pearson_correlation: -0.1079 - euclidean_distance: 0.6178
Epoch 90/100
38/38 [==============================] - 0s 912us/step - loss: 0.3616 - accuracy: 0.3613 - mae: 0.3616 - pearson_correlation: -0.1019 - euclidean_distance: 0.6142
Epoch 91/100
38/38 [==============================] - 0s 910us/step - loss: 0.3603 - accuracy: 0.3723 - mae: 0.3603 - pearson_correlation: -0.0970 - euclidean_distance: 0.6123
Epoch 92/100
38/38 [==============================] - 0s 908us/step - loss: 0.3598 - accuracy: 0.3652 - mae: 0.3598 - pearson_correlation: -0.0961 - euclidean_distance: 0.6099
Epoch 93/100
38/38 [==============================] - 0s 907us/step - loss: 0.3573 - accuracy: 0.3714 - mae: 0.3573 - pearson_correlation: -0.0884 - euclidean_distance: 0.6070
Epoch 94/100
38/38 [==============================] - 0s 905us/step - loss: 0.3558 - accuracy: 0.3723 - mae: 0.3558 - pearson_correlation: -0.0914 - euclidean_distance: 0.6041
Epoch 95/100
38/38 [==============================] - 0s 898us/step - loss: 0.3530 - accuracy: 0.3842 - mae: 0.3530 - pearson_correlation: -0.0847 - euclidean_distance: 0.6009
Epoch 96/100
38/38 [==============================] - 0s 908us/step - loss: 0.3520 - accuracy: 0.3882 - mae: 0.3520 - pearson_correlation: -0.0790 - euclidean_distance: 0.5982
Epoch 97/100
38/38 [==============================] - 0s 903us/step - loss: 0.3514 - accuracy: 0.3842 - mae: 0.3514 - pearson_correlation: -0.0781 - euclidean_distance: 0.5971
Epoch 98/100
38/38 [==============================] - 0s 904us/step - loss: 0.3495 - accuracy: 0.3846 - mae: 0.3495 - pearson_correlation: -0.0683 - euclidean_distance: 0.5942
Epoch 99/100
38/38 [==============================] - 0s 899us/step - loss: 0.3480 - accuracy: 0.3838 - mae: 0.3480 - pearson_correlation: -0.0620 - euclidean_distance: 0.5918
Epoch 100/100
38/38 [==============================] - 0s 899us/step - loss: 0.3493 - accuracy: 0.3952 - mae: 0.3493 - pearson_correlation: -0.0650 - euclidean_distance: 0.5913
19/19 [==============================] - 0s 567us/step
Epoch 1/100
38/38 [==============================] - 1s 1ms/step - loss: 0.5365 - accuracy: 0.1173 - mae: 0.5365 - pearson_correlation: -0.5653 - euclidean_distance: 0.8921
Epoch 2/100
38/38 [==============================] - 0s 908us/step - loss: 0.5325 - accuracy: 0.1112 - mae: 0.5325 - pearson_correlation: -0.5680 - euclidean_distance: 0.8860
Epoch 3/100
38/38 [==============================] - 0s 863us/step - loss: 0.5285 - accuracy: 0.1156 - mae: 0.5285 - pearson_correlation: -0.5651 - euclidean_distance: 0.8807
Epoch 4/100
38/38 [==============================] - 0s 917us/step - loss: 0.5253 - accuracy: 0.1138 - mae: 0.5253 - pearson_correlation: -0.5659 - euclidean_distance: 0.8762
Epoch 5/100
38/38 [==============================] - 0s 911us/step - loss: 0.5229 - accuracy: 0.1156 - mae: 0.5229 - pearson_correlation: -0.5644 - euclidean_distance: 0.8727
Epoch 6/100
38/38 [==============================] - 0s 922us/step - loss: 0.5187 - accuracy: 0.1156 - mae: 0.5187 - pearson_correlation: -0.5645 - euclidean_distance: 0.8664
Epoch 7/100
38/38 [==============================] - 0s 912us/step - loss: 0.5158 - accuracy: 0.1173 - mae: 0.5158 - pearson_correlation: -0.5656 - euclidean_distance: 0.8626
Epoch 8/100
38/38 [==============================] - 0s 917us/step - loss: 0.5125 - accuracy: 0.1178 - mae: 0.5125 - pearson_correlation: -0.5651 - euclidean_distance: 0.8576
Epoch 9/100
38/38 [==============================] - 0s 919us/step - loss: 0.5091 - accuracy: 0.1142 - mae: 0.5091 - pearson_correlation: -0.5623 - euclidean_distance: 0.8523
Epoch 10/100
38/38 [==============================] - 0s 917us/step - loss: 0.5044 - accuracy: 0.1231 - mae: 0.5044 - pearson_correlation: -0.5585 - euclidean_distance: 0.8462
Epoch 11/100
38/38 [==============================] - 0s 907us/step - loss: 0.5019 - accuracy: 0.1231 - mae: 0.5019 - pearson_correlation: -0.5544 - euclidean_distance: 0.8419
Epoch 12/100
38/38 [==============================] - 0s 920us/step - loss: 0.4983 - accuracy: 0.1231 - mae: 0.4983 - pearson_correlation: -0.5556 - euclidean_distance: 0.8358
Epoch 13/100
38/38 [==============================] - 0s 910us/step - loss: 0.4950 - accuracy: 0.1235 - mae: 0.4950 - pearson_correlation: -0.5507 - euclidean_distance: 0.8314
Epoch 14/100
38/38 [==============================] - 0s 904us/step - loss: 0.4916 - accuracy: 0.1270 - mae: 0.4916 - pearson_correlation: -0.5490 - euclidean_distance: 0.8262
Epoch 15/100
38/38 [==============================] - 0s 938us/step - loss: 0.4878 - accuracy: 0.1187 - mae: 0.4878 - pearson_correlation: -0.5402 - euclidean_distance: 0.8206
Epoch 16/100
38/38 [==============================] - 0s 908us/step - loss: 0.4849 - accuracy: 0.1240 - mae: 0.4849 - pearson_correlation: -0.5444 - euclidean_distance: 0.8162
Epoch 17/100
38/38 [==============================] - 0s 915us/step - loss: 0.4793 - accuracy: 0.1266 - mae: 0.4793 - pearson_correlation: -0.5433 - euclidean_distance: 0.8089
Epoch 18/100
38/38 [==============================] - 0s 910us/step - loss: 0.4749 - accuracy: 0.1337 - mae: 0.4749 - pearson_correlation: -0.5385 - euclidean_distance: 0.8027
Epoch 19/100
38/38 [==============================] - 0s 919us/step - loss: 0.4717 - accuracy: 0.1301 - mae: 0.4717 - pearson_correlation: -0.5335 - euclidean_distance: 0.7970
Epoch 20/100
38/38 [==============================] - 0s 922us/step - loss: 0.4691 - accuracy: 0.1310 - mae: 0.4691 - pearson_correlation: -0.5345 - euclidean_distance: 0.7936
Epoch 21/100
38/38 [==============================] - 0s 914us/step - loss: 0.4641 - accuracy: 0.1385 - mae: 0.4641 - pearson_correlation: -0.5239 - euclidean_distance: 0.7852
Epoch 22/100
38/38 [==============================] - 0s 908us/step - loss: 0.4604 - accuracy: 0.1403 - mae: 0.4604 - pearson_correlation: -0.5261 - euclidean_distance: 0.7810
Epoch 23/100
38/38 [==============================] - 0s 939us/step - loss: 0.4562 - accuracy: 0.1407 - mae: 0.4562 - pearson_correlation: -0.5226 - euclidean_distance: 0.7745
Epoch 24/100
38/38 [==============================] - 0s 904us/step - loss: 0.4519 - accuracy: 0.1394 - mae: 0.4519 - pearson_correlation: -0.5176 - euclidean_distance: 0.7685
Epoch 25/100
38/38 [==============================] - 0s 917us/step - loss: 0.4494 - accuracy: 0.1394 - mae: 0.4494 - pearson_correlation: -0.5131 - euclidean_distance: 0.7646
Epoch 26/100
38/38 [==============================] - 0s 920us/step - loss: 0.4463 - accuracy: 0.1420 - mae: 0.4463 - pearson_correlation: -0.5088 - euclidean_distance: 0.7601
Epoch 27/100
38/38 [==============================] - 0s 910us/step - loss: 0.4413 - accuracy: 0.1500 - mae: 0.4413 - pearson_correlation: -0.5023 - euclidean_distance: 0.7524
Epoch 28/100
38/38 [==============================] - 0s 901us/step - loss: 0.4374 - accuracy: 0.1500 - mae: 0.4374 - pearson_correlation: -0.4990 - euclidean_distance: 0.7466
Epoch 29/100
38/38 [==============================] - 0s 912us/step - loss: 0.4353 - accuracy: 0.1522 - mae: 0.4353 - pearson_correlation: -0.4894 - euclidean_distance: 0.7430
Epoch 30/100
38/38 [==============================] - 0s 911us/step - loss: 0.4299 - accuracy: 0.1487 - mae: 0.4299 - pearson_correlation: -0.4889 - euclidean_distance: 0.7354
Epoch 31/100
38/38 [==============================] - 0s 909us/step - loss: 0.4265 - accuracy: 0.1566 - mae: 0.4265 - pearson_correlation: -0.4840 - euclidean_distance: 0.7302
Epoch 32/100
38/38 [==============================] - 0s 905us/step - loss: 0.4241 - accuracy: 0.1531 - mae: 0.4241 - pearson_correlation: -0.4808 - euclidean_distance: 0.7268
Epoch 33/100
38/38 [==============================] - 0s 909us/step - loss: 0.4205 - accuracy: 0.1522 - mae: 0.4205 - pearson_correlation: -0.4699 - euclidean_distance: 0.7203
Epoch 34/100
38/38 [==============================] - 0s 914us/step - loss: 0.4178 - accuracy: 0.1623 - mae: 0.4178 - pearson_correlation: -0.4640 - euclidean_distance: 0.7150
Epoch 35/100
38/38 [==============================] - 0s 907us/step - loss: 0.4130 - accuracy: 0.1681 - mae: 0.4130 - pearson_correlation: -0.4567 - euclidean_distance: 0.7091
Epoch 36/100
38/38 [==============================] - 0s 910us/step - loss: 0.4099 - accuracy: 0.1764 - mae: 0.4099 - pearson_correlation: -0.4507 - euclidean_distance: 0.7042
Epoch 37/100
38/38 [==============================] - 0s 907us/step - loss: 0.4062 - accuracy: 0.1707 - mae: 0.4062 - pearson_correlation: -0.4454 - euclidean_distance: 0.6977
Epoch 38/100
38/38 [==============================] - 0s 908us/step - loss: 0.4022 - accuracy: 0.1839 - mae: 0.4022 - pearson_correlation: -0.4433 - euclidean_distance: 0.6921
Epoch 39/100
38/38 [==============================] - 0s 904us/step - loss: 0.3997 - accuracy: 0.1813 - mae: 0.3997 - pearson_correlation: -0.4333 - euclidean_distance: 0.6880
Epoch 40/100
38/38 [==============================] - 0s 906us/step - loss: 0.3966 - accuracy: 0.1884 - mae: 0.3966 - pearson_correlation: -0.4274 - euclidean_distance: 0.6829
Epoch 41/100
38/38 [==============================] - 0s 916us/step - loss: 0.3937 - accuracy: 0.1844 - mae: 0.3937 - pearson_correlation: -0.4189 - euclidean_distance: 0.6781
Epoch 42/100
38/38 [==============================] - 0s 907us/step - loss: 0.3899 - accuracy: 0.1989 - mae: 0.3899 - pearson_correlation: -0.4197 - euclidean_distance: 0.6727
Epoch 43/100
38/38 [==============================] - 0s 907us/step - loss: 0.3870 - accuracy: 0.2020 - mae: 0.3870 - pearson_correlation: -0.4096 - euclidean_distance: 0.6672
Epoch 44/100
38/38 [==============================] - 0s 898us/step - loss: 0.3827 - accuracy: 0.2038 - mae: 0.3827 - pearson_correlation: -0.4026 - euclidean_distance: 0.6627
Epoch 45/100
38/38 [==============================] - 0s 908us/step - loss: 0.3809 - accuracy: 0.2064 - mae: 0.3809 - pearson_correlation: -0.4016 - euclidean_distance: 0.6575
Epoch 46/100
38/38 [==============================] - 0s 913us/step - loss: 0.3779 - accuracy: 0.2117 - mae: 0.3779 - pearson_correlation: -0.3870 - euclidean_distance: 0.6530
Epoch 47/100
38/38 [==============================] - 0s 878us/step - loss: 0.3752 - accuracy: 0.2228 - mae: 0.3752 - pearson_correlation: -0.3863 - euclidean_distance: 0.6489
Epoch 48/100
38/38 [==============================] - 0s 922us/step - loss: 0.3702 - accuracy: 0.2232 - mae: 0.3702 - pearson_correlation: -0.3798 - euclidean_distance: 0.6418
Epoch 49/100
38/38 [==============================] - 0s 916us/step - loss: 0.3687 - accuracy: 0.2228 - mae: 0.3687 - pearson_correlation: -0.3735 - euclidean_distance: 0.6385
Epoch 50/100
38/38 [==============================] - 0s 925us/step - loss: 0.3668 - accuracy: 0.2338 - mae: 0.3668 - pearson_correlation: -0.3666 - euclidean_distance: 0.6348
Epoch 51/100
38/38 [==============================] - 0s 900us/step - loss: 0.3606 - accuracy: 0.2329 - mae: 0.3606 - pearson_correlation: -0.3575 - euclidean_distance: 0.6247
Epoch 52/100
38/38 [==============================] - 0s 924us/step - loss: 0.3605 - accuracy: 0.2386 - mae: 0.3605 - pearson_correlation: -0.3560 - euclidean_distance: 0.6242
Epoch 53/100
38/38 [==============================] - 0s 999us/step - loss: 0.3570 - accuracy: 0.2470 - mae: 0.3570 - pearson_correlation: -0.3395 - euclidean_distance: 0.6185
Epoch 54/100
38/38 [==============================] - 0s 905us/step - loss: 0.3547 - accuracy: 0.2558 - mae: 0.3547 - pearson_correlation: -0.3337 - euclidean_distance: 0.6148
Epoch 55/100
38/38 [==============================] - 0s 965us/step - loss: 0.3517 - accuracy: 0.2479 - mae: 0.3517 - pearson_correlation: -0.3364 - euclidean_distance: 0.6098
Epoch 56/100
38/38 [==============================] - 0s 924us/step - loss: 0.3506 - accuracy: 0.2514 - mae: 0.3506 - pearson_correlation: -0.3296 - euclidean_distance: 0.6080
Epoch 57/100
38/38 [==============================] - 0s 921us/step - loss: 0.3471 - accuracy: 0.2625 - mae: 0.3471 - pearson_correlation: -0.3175 - euclidean_distance: 0.6013
Epoch 58/100
38/38 [==============================] - 0s 912us/step - loss: 0.3439 - accuracy: 0.2603 - mae: 0.3439 - pearson_correlation: -0.3151 - euclidean_distance: 0.5964
Epoch 59/100
38/38 [==============================] - 0s 924us/step - loss: 0.3425 - accuracy: 0.2682 - mae: 0.3425 - pearson_correlation: -0.3021 - euclidean_distance: 0.5929
Epoch 60/100
38/38 [==============================] - 0s 909us/step - loss: 0.3398 - accuracy: 0.2757 - mae: 0.3398 - pearson_correlation: -0.2946 - euclidean_distance: 0.5883
Epoch 61/100
38/38 [==============================] - 0s 908us/step - loss: 0.3369 - accuracy: 0.2867 - mae: 0.3369 - pearson_correlation: -0.2928 - euclidean_distance: 0.5838
Epoch 62/100
38/38 [==============================] - 0s 901us/step - loss: 0.3347 - accuracy: 0.2907 - mae: 0.3347 - pearson_correlation: -0.2847 - euclidean_distance: 0.5792
Epoch 63/100
38/38 [==============================] - 0s 906us/step - loss: 0.3329 - accuracy: 0.2947 - mae: 0.3329 - pearson_correlation: -0.2835 - euclidean_distance: 0.5759
Epoch 64/100
38/38 [==============================] - 0s 911us/step - loss: 0.3312 - accuracy: 0.3004 - mae: 0.3312 - pearson_correlation: -0.2700 - euclidean_distance: 0.5728
Epoch 65/100
38/38 [==============================] - 0s 900us/step - loss: 0.3286 - accuracy: 0.3004 - mae: 0.3286 - pearson_correlation: -0.2654 - euclidean_distance: 0.5681
Epoch 66/100
38/38 [==============================] - 0s 914us/step - loss: 0.3253 - accuracy: 0.3035 - mae: 0.3253 - pearson_correlation: -0.2646 - euclidean_distance: 0.5634
Epoch 67/100
38/38 [==============================] - 0s 911us/step - loss: 0.3226 - accuracy: 0.3150 - mae: 0.3226 - pearson_correlation: -0.2498 - euclidean_distance: 0.5581
Epoch 68/100
38/38 [==============================] - 0s 910us/step - loss: 0.3212 - accuracy: 0.3198 - mae: 0.3212 - pearson_correlation: -0.2533 - euclidean_distance: 0.5551
Epoch 69/100
38/38 [==============================] - 0s 915us/step - loss: 0.3187 - accuracy: 0.3220 - mae: 0.3187 - pearson_correlation: -0.2389 - euclidean_distance: 0.5514
Epoch 70/100
38/38 [==============================] - 0s 914us/step - loss: 0.3151 - accuracy: 0.3449 - mae: 0.3151 - pearson_correlation: -0.2304 - euclidean_distance: 0.5451
Epoch 71/100
38/38 [==============================] - 0s 914us/step - loss: 0.3134 - accuracy: 0.3467 - mae: 0.3134 - pearson_correlation: -0.2263 - euclidean_distance: 0.5413
Epoch 72/100
38/38 [==============================] - 0s 916us/step - loss: 0.3136 - accuracy: 0.3414 - mae: 0.3136 - pearson_correlation: -0.2143 - euclidean_distance: 0.5399
Epoch 73/100
38/38 [==============================] - 0s 906us/step - loss: 0.3098 - accuracy: 0.3432 - mae: 0.3098 - pearson_correlation: -0.2157 - euclidean_distance: 0.5349
Epoch 74/100
38/38 [==============================] - 0s 912us/step - loss: 0.3077 - accuracy: 0.3441 - mae: 0.3077 - pearson_correlation: -0.2005 - euclidean_distance: 0.5308
Epoch 75/100
38/38 [==============================] - 0s 920us/step - loss: 0.3051 - accuracy: 0.3555 - mae: 0.3051 - pearson_correlation: -0.1921 - euclidean_distance: 0.5257
Epoch 76/100
38/38 [==============================] - 0s 908us/step - loss: 0.3039 - accuracy: 0.3573 - mae: 0.3039 - pearson_correlation: -0.1856 - euclidean_distance: 0.5226
Epoch 77/100
38/38 [==============================] - 0s 900us/step - loss: 0.3015 - accuracy: 0.3652 - mae: 0.3015 - pearson_correlation: -0.1774 - euclidean_distance: 0.5181
Epoch 78/100
38/38 [==============================] - 0s 904us/step - loss: 0.2990 - accuracy: 0.3723 - mae: 0.2990 - pearson_correlation: -0.1752 - euclidean_distance: 0.5147
Epoch 79/100
38/38 [==============================] - 0s 909us/step - loss: 0.2964 - accuracy: 0.3816 - mae: 0.2964 - pearson_correlation: -0.1679 - euclidean_distance: 0.5106
Epoch 80/100
38/38 [==============================] - 0s 907us/step - loss: 0.2944 - accuracy: 0.3798 - mae: 0.2944 - pearson_correlation: -0.1641 - euclidean_distance: 0.5069
Epoch 81/100
38/38 [==============================] - 0s 905us/step - loss: 0.2932 - accuracy: 0.3846 - mae: 0.2932 - pearson_correlation: -0.1469 - euclidean_distance: 0.5038
Epoch 82/100
38/38 [==============================] - 0s 922us/step - loss: 0.2907 - accuracy: 0.3895 - mae: 0.2907 - pearson_correlation: -0.1390 - euclidean_distance: 0.4986
Epoch 83/100
38/38 [==============================] - 0s 912us/step - loss: 0.2895 - accuracy: 0.4014 - mae: 0.2895 - pearson_correlation: -0.1335 - euclidean_distance: 0.4963
Epoch 84/100
38/38 [==============================] - 0s 918us/step - loss: 0.2858 - accuracy: 0.3988 - mae: 0.2858 - pearson_correlation: -0.1229 - euclidean_distance: 0.4910
Epoch 85/100
38/38 [==============================] - 0s 913us/step - loss: 0.2853 - accuracy: 0.4098 - mae: 0.2853 - pearson_correlation: -0.1176 - euclidean_distance: 0.4883
Epoch 86/100
38/38 [==============================] - 0s 903us/step - loss: 0.2811 - accuracy: 0.4164 - mae: 0.2811 - pearson_correlation: -0.1097 - euclidean_distance: 0.4824
Epoch 87/100
38/38 [==============================] - 0s 910us/step - loss: 0.2802 - accuracy: 0.4221 - mae: 0.2802 - pearson_correlation: -0.0959 - euclidean_distance: 0.4791
Epoch 88/100
38/38 [==============================] - 0s 909us/step - loss: 0.2797 - accuracy: 0.4332 - mae: 0.2797 - pearson_correlation: -0.0875 - euclidean_distance: 0.4777
Epoch 89/100
38/38 [==============================] - 0s 906us/step - loss: 0.2764 - accuracy: 0.4380 - mae: 0.2764 - pearson_correlation: -0.0836 - euclidean_distance: 0.4727
Epoch 90/100
38/38 [==============================] - 0s 911us/step - loss: 0.2741 - accuracy: 0.4376 - mae: 0.2741 - pearson_correlation: -0.0771 - euclidean_distance: 0.4688
Epoch 91/100
38/38 [==============================] - 0s 907us/step - loss: 0.2697 - accuracy: 0.4416 - mae: 0.2697 - pearson_correlation: -0.0663 - euclidean_distance: 0.4618
Epoch 92/100
38/38 [==============================] - 0s 921us/step - loss: 0.2692 - accuracy: 0.4486 - mae: 0.2692 - pearson_correlation: -0.0613 - euclidean_distance: 0.4602
Epoch 93/100
38/38 [==============================] - 0s 907us/step - loss: 0.2676 - accuracy: 0.4521 - mae: 0.2676 - pearson_correlation: -0.0554 - euclidean_distance: 0.4574
Epoch 94/100
38/38 [==============================] - 0s 907us/step - loss: 0.2650 - accuracy: 0.4610 - mae: 0.2650 - pearson_correlation: -0.0472 - euclidean_distance: 0.4534
Epoch 95/100
38/38 [==============================] - 0s 912us/step - loss: 0.2632 - accuracy: 0.4610 - mae: 0.2632 - pearson_correlation: -0.0393 - euclidean_distance: 0.4500
Epoch 96/100
38/38 [==============================] - 0s 915us/step - loss: 0.2618 - accuracy: 0.4671 - mae: 0.2618 - pearson_correlation: -0.0279 - euclidean_distance: 0.4459
Epoch 97/100
38/38 [==============================] - 0s 906us/step - loss: 0.2591 - accuracy: 0.4742 - mae: 0.2591 - pearson_correlation: -0.0172 - euclidean_distance: 0.4411
Epoch 98/100
38/38 [==============================] - 0s 898us/step - loss: 0.2573 - accuracy: 0.4888 - mae: 0.2573 - pearson_correlation: -0.0104 - euclidean_distance: 0.4384
Epoch 99/100
38/38 [==============================] - 0s 907us/step - loss: 0.2565 - accuracy: 0.5002 - mae: 0.2565 - pearson_correlation: -0.0064 - euclidean_distance: 0.4358
Epoch 100/100
38/38 [==============================] - 0s 908us/step - loss: 0.2520 - accuracy: 0.4949 - mae: 0.2520 - pearson_correlation: 0.0106 - euclidean_distance: 0.4297
19/19 [==============================] - 0s 513us/step
Epoch 1/100
38/38 [==============================] - 1s 907us/step - loss: 0.5612 - accuracy: 0.9277 - mae: 0.5612 - pearson_correlation: 0.6389 - euclidean_distance: 0.8599
Epoch 2/100
38/38 [==============================] - 0s 831us/step - loss: 0.5584 - accuracy: 0.9224 - mae: 0.5584 - pearson_correlation: 0.6372 - euclidean_distance: 0.8561
Epoch 3/100
38/38 [==============================] - 0s 866us/step - loss: 0.5567 - accuracy: 0.9167 - mae: 0.5567 - pearson_correlation: 0.6399 - euclidean_distance: 0.8527
Epoch 4/100
38/38 [==============================] - 0s 898us/step - loss: 0.5542 - accuracy: 0.9220 - mae: 0.5542 - pearson_correlation: 0.6392 - euclidean_distance: 0.8487
Epoch 5/100
38/38 [==============================] - 0s 903us/step - loss: 0.5515 - accuracy: 0.9162 - mae: 0.5515 - pearson_correlation: 0.6369 - euclidean_distance: 0.8448
Epoch 6/100
38/38 [==============================] - 0s 888us/step - loss: 0.5485 - accuracy: 0.9158 - mae: 0.5485 - pearson_correlation: 0.6372 - euclidean_distance: 0.8402
Epoch 7/100
38/38 [==============================] - 0s 903us/step - loss: 0.5465 - accuracy: 0.9105 - mae: 0.5465 - pearson_correlation: 0.6390 - euclidean_distance: 0.8370
Epoch 8/100
38/38 [==============================] - 0s 903us/step - loss: 0.5439 - accuracy: 0.9136 - mae: 0.5439 - pearson_correlation: 0.6339 - euclidean_distance: 0.8324
Epoch 9/100
38/38 [==============================] - 0s 900us/step - loss: 0.5427 - accuracy: 0.9061 - mae: 0.5427 - pearson_correlation: 0.6345 - euclidean_distance: 0.8313
Epoch 10/100
38/38 [==============================] - 0s 906us/step - loss: 0.5396 - accuracy: 0.9105 - mae: 0.5396 - pearson_correlation: 0.6357 - euclidean_distance: 0.8258
Epoch 11/100
38/38 [==============================] - 0s 932us/step - loss: 0.5379 - accuracy: 0.9096 - mae: 0.5379 - pearson_correlation: 0.6319 - euclidean_distance: 0.8235
Epoch 12/100
38/38 [==============================] - 0s 1ms/step - loss: 0.5349 - accuracy: 0.9096 - mae: 0.5349 - pearson_correlation: 0.6375 - euclidean_distance: 0.8181
Epoch 13/100
38/38 [==============================] - 0s 944us/step - loss: 0.5327 - accuracy: 0.9048 - mae: 0.5327 - pearson_correlation: 0.6326 - euclidean_distance: 0.8157
Epoch 14/100
38/38 [==============================] - 0s 899us/step - loss: 0.5292 - accuracy: 0.9026 - mae: 0.5292 - pearson_correlation: 0.6348 - euclidean_distance: 0.8094
Epoch 15/100
38/38 [==============================] - 0s 902us/step - loss: 0.5276 - accuracy: 0.9030 - mae: 0.5276 - pearson_correlation: 0.6356 - euclidean_distance: 0.8070
Epoch 16/100
38/38 [==============================] - 0s 891us/step - loss: 0.5240 - accuracy: 0.8942 - mae: 0.5240 - pearson_correlation: 0.6307 - euclidean_distance: 0.8020
Epoch 17/100
38/38 [==============================] - 0s 899us/step - loss: 0.5215 - accuracy: 0.8942 - mae: 0.5215 - pearson_correlation: 0.6337 - euclidean_distance: 0.7985
Epoch 18/100
38/38 [==============================] - 0s 904us/step - loss: 0.5190 - accuracy: 0.8884 - mae: 0.5190 - pearson_correlation: 0.6305 - euclidean_distance: 0.7943
Epoch 19/100
38/38 [==============================] - 0s 895us/step - loss: 0.5167 - accuracy: 0.8858 - mae: 0.5167 - pearson_correlation: 0.6312 - euclidean_distance: 0.7902
Epoch 20/100
38/38 [==============================] - 0s 895us/step - loss: 0.5134 - accuracy: 0.8867 - mae: 0.5134 - pearson_correlation: 0.6328 - euclidean_distance: 0.7861
Epoch 21/100
38/38 [==============================] - 0s 900us/step - loss: 0.5103 - accuracy: 0.8880 - mae: 0.5103 - pearson_correlation: 0.6331 - euclidean_distance: 0.7814
Epoch 22/100
38/38 [==============================] - 0s 908us/step - loss: 0.5096 - accuracy: 0.8951 - mae: 0.5096 - pearson_correlation: 0.6328 - euclidean_distance: 0.7786
Epoch 23/100
38/38 [==============================] - 0s 900us/step - loss: 0.5061 - accuracy: 0.8893 - mae: 0.5061 - pearson_correlation: 0.6328 - euclidean_distance: 0.7743
Epoch 24/100
38/38 [==============================] - 0s 895us/step - loss: 0.5034 - accuracy: 0.8854 - mae: 0.5034 - pearson_correlation: 0.6292 - euclidean_distance: 0.7704
Epoch 25/100
38/38 [==============================] - 0s 902us/step - loss: 0.5011 - accuracy: 0.8862 - mae: 0.5011 - pearson_correlation: 0.6302 - euclidean_distance: 0.7665
Epoch 26/100
38/38 [==============================] - 0s 903us/step - loss: 0.4975 - accuracy: 0.8832 - mae: 0.4975 - pearson_correlation: 0.6305 - euclidean_distance: 0.7618
Epoch 27/100
38/38 [==============================] - 0s 895us/step - loss: 0.4952 - accuracy: 0.8810 - mae: 0.4952 - pearson_correlation: 0.6302 - euclidean_distance: 0.7577
Epoch 28/100
38/38 [==============================] - 0s 894us/step - loss: 0.4927 - accuracy: 0.8823 - mae: 0.4927 - pearson_correlation: 0.6296 - euclidean_distance: 0.7540
Epoch 29/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4902 - accuracy: 0.8774 - mae: 0.4902 - pearson_correlation: 0.6271 - euclidean_distance: 0.7502
Epoch 30/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4872 - accuracy: 0.8792 - mae: 0.4872 - pearson_correlation: 0.6279 - euclidean_distance: 0.7460
Epoch 31/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4843 - accuracy: 0.8726 - mae: 0.4843 - pearson_correlation: 0.6304 - euclidean_distance: 0.7414
Epoch 32/100
38/38 [==============================] - 0s 946us/step - loss: 0.4822 - accuracy: 0.8726 - mae: 0.4822 - pearson_correlation: 0.6279 - euclidean_distance: 0.7377
Epoch 33/100
38/38 [==============================] - 0s 2ms/step - loss: 0.4788 - accuracy: 0.8783 - mae: 0.4788 - pearson_correlation: 0.6263 - euclidean_distance: 0.7326
Epoch 34/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4760 - accuracy: 0.8761 - mae: 0.4760 - pearson_correlation: 0.6281 - euclidean_distance: 0.7285
Epoch 35/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4738 - accuracy: 0.8682 - mae: 0.4738 - pearson_correlation: 0.6266 - euclidean_distance: 0.7247
Epoch 36/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4720 - accuracy: 0.8686 - mae: 0.4720 - pearson_correlation: 0.6242 - euclidean_distance: 0.7215
Epoch 37/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4687 - accuracy: 0.8690 - mae: 0.4687 - pearson_correlation: 0.6250 - euclidean_distance: 0.7171
Epoch 38/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4664 - accuracy: 0.8717 - mae: 0.4664 - pearson_correlation: 0.6258 - euclidean_distance: 0.7136
Epoch 39/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4639 - accuracy: 0.8765 - mae: 0.4639 - pearson_correlation: 0.6261 - euclidean_distance: 0.7098
Epoch 40/100
38/38 [==============================] - 0s 2ms/step - loss: 0.4615 - accuracy: 0.8660 - mae: 0.4615 - pearson_correlation: 0.6223 - euclidean_distance: 0.7054
Epoch 41/100
38/38 [==============================] - 0s 2ms/step - loss: 0.4584 - accuracy: 0.8708 - mae: 0.4584 - pearson_correlation: 0.6298 - euclidean_distance: 0.7007
Epoch 42/100
38/38 [==============================] - 0s 914us/step - loss: 0.4552 - accuracy: 0.8752 - mae: 0.4552 - pearson_correlation: 0.6257 - euclidean_distance: 0.6961
Epoch 43/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4531 - accuracy: 0.8708 - mae: 0.4531 - pearson_correlation: 0.6247 - euclidean_distance: 0.6928
Epoch 44/100
38/38 [==============================] - 0s 1ms/step - loss: 0.4500 - accuracy: 0.8642 - mae: 0.4500 - pearson_correlation: 0.6232 - euclidean_distance: 0.6885
Epoch 45/100
38/38 [==============================] - 0s 906us/step - loss: 0.4473 - accuracy: 0.8651 - mae: 0.4473 - pearson_correlation: 0.6235 - euclidean_distance: 0.6843
Epoch 46/100
38/38 [==============================] - 0s 887us/step - loss: 0.4448 - accuracy: 0.8602 - mae: 0.4448 - pearson_correlation: 0.6218 - euclidean_distance: 0.6809
Epoch 47/100
38/38 [==============================] - 0s 883us/step - loss: 0.4428 - accuracy: 0.8668 - mae: 0.4428 - pearson_correlation: 0.6218 - euclidean_distance: 0.6777
Epoch 48/100
38/38 [==============================] - 0s 914us/step - loss: 0.4399 - accuracy: 0.8664 - mae: 0.4399 - pearson_correlation: 0.6234 - euclidean_distance: 0.6728
Epoch 49/100
38/38 [==============================] - 0s 911us/step - loss: 0.4379 - accuracy: 0.8673 - mae: 0.4379 - pearson_correlation: 0.6210 - euclidean_distance: 0.6694
Epoch 50/100
38/38 [==============================] - 0s 914us/step - loss: 0.4344 - accuracy: 0.8629 - mae: 0.4344 - pearson_correlation: 0.6234 - euclidean_distance: 0.6640
Epoch 51/100
38/38 [==============================] - 0s 902us/step - loss: 0.4316 - accuracy: 0.8593 - mae: 0.4316 - pearson_correlation: 0.6204 - euclidean_distance: 0.6613
Epoch 52/100
38/38 [==============================] - 0s 952us/step - loss: 0.4297 - accuracy: 0.8682 - mae: 0.4297 - pearson_correlation: 0.6207 - euclidean_distance: 0.6567
Epoch 53/100
38/38 [==============================] - 0s 858us/step - loss: 0.4263 - accuracy: 0.8660 - mae: 0.4263 - pearson_correlation: 0.6208 - euclidean_distance: 0.6527
Epoch 54/100
38/38 [==============================] - 0s 881us/step - loss: 0.4251 - accuracy: 0.8642 - mae: 0.4251 - pearson_correlation: 0.6195 - euclidean_distance: 0.6495
Epoch 55/100
38/38 [==============================] - 0s 890us/step - loss: 0.4223 - accuracy: 0.8611 - mae: 0.4223 - pearson_correlation: 0.6223 - euclidean_distance: 0.6460
Epoch 56/100
38/38 [==============================] - 0s 899us/step - loss: 0.4183 - accuracy: 0.8620 - mae: 0.4183 - pearson_correlation: 0.6204 - euclidean_distance: 0.6404
Epoch 57/100
38/38 [==============================] - 0s 967us/step - loss: 0.4159 - accuracy: 0.8585 - mae: 0.4159 - pearson_correlation: 0.6211 - euclidean_distance: 0.6372
Epoch 58/100
38/38 [==============================] - 0s 861us/step - loss: 0.4143 - accuracy: 0.8664 - mae: 0.4143 - pearson_correlation: 0.6187 - euclidean_distance: 0.6338
Epoch 59/100
38/38 [==============================] - 0s 911us/step - loss: 0.4102 - accuracy: 0.8593 - mae: 0.4102 - pearson_correlation: 0.6172 - euclidean_distance: 0.6285
Epoch 60/100
38/38 [==============================] - 0s 861us/step - loss: 0.4087 - accuracy: 0.8646 - mae: 0.4087 - pearson_correlation: 0.6179 - euclidean_distance: 0.6255
Epoch 61/100
38/38 [==============================] - 0s 883us/step - loss: 0.4062 - accuracy: 0.8602 - mae: 0.4062 - pearson_correlation: 0.6182 - euclidean_distance: 0.6214
Epoch 62/100
38/38 [==============================] - 0s 882us/step - loss: 0.4031 - accuracy: 0.8629 - mae: 0.4031 - pearson_correlation: 0.6184 - euclidean_distance: 0.6168
Epoch 63/100
38/38 [==============================] - 0s 872us/step - loss: 0.4005 - accuracy: 0.8616 - mae: 0.4005 - pearson_correlation: 0.6167 - euclidean_distance: 0.6131
Epoch 64/100
38/38 [==============================] - 0s 904us/step - loss: 0.3969 - accuracy: 0.8598 - mae: 0.3969 - pearson_correlation: 0.6181 - euclidean_distance: 0.6080
Epoch 65/100
38/38 [==============================] - 0s 864us/step - loss: 0.3922 - accuracy: 0.8589 - mae: 0.3922 - pearson_correlation: 0.6159 - euclidean_distance: 0.6022
Epoch 66/100
38/38 [==============================] - 0s 886us/step - loss: 0.3918 - accuracy: 0.8629 - mae: 0.3918 - pearson_correlation: 0.6158 - euclidean_distance: 0.6001
Epoch 67/100
38/38 [==============================] - 0s 889us/step - loss: 0.3895 - accuracy: 0.8585 - mae: 0.3895 - pearson_correlation: 0.6178 - euclidean_distance: 0.5966
Epoch 68/100
38/38 [==============================] - 0s 882us/step - loss: 0.3858 - accuracy: 0.8620 - mae: 0.3858 - pearson_correlation: 0.6144 - euclidean_distance: 0.5917
Epoch 69/100
38/38 [==============================] - 0s 902us/step - loss: 0.3825 - accuracy: 0.8660 - mae: 0.3825 - pearson_correlation: 0.6152 - euclidean_distance: 0.5865
Epoch 70/100
38/38 [==============================] - 0s 859us/step - loss: 0.3810 - accuracy: 0.8646 - mae: 0.3810 - pearson_correlation: 0.6133 - euclidean_distance: 0.5836
Epoch 71/100
38/38 [==============================] - 0s 901us/step - loss: 0.3775 - accuracy: 0.8607 - mae: 0.3775 - pearson_correlation: 0.6145 - euclidean_distance: 0.5787
Epoch 72/100
38/38 [==============================] - 0s 893us/step - loss: 0.3740 - accuracy: 0.8616 - mae: 0.3740 - pearson_correlation: 0.6131 - euclidean_distance: 0.5742
Epoch 73/100
38/38 [==============================] - 0s 861us/step - loss: 0.3729 - accuracy: 0.8580 - mae: 0.3729 - pearson_correlation: 0.6131 - euclidean_distance: 0.5717
Epoch 74/100
38/38 [==============================] - 0s 909us/step - loss: 0.3688 - accuracy: 0.8598 - mae: 0.3688 - pearson_correlation: 0.6132 - euclidean_distance: 0.5660
Epoch 75/100
38/38 [==============================] - 0s 866us/step - loss: 0.3667 - accuracy: 0.8580 - mae: 0.3667 - pearson_correlation: 0.6120 - euclidean_distance: 0.5632
Epoch 76/100
38/38 [==============================] - 0s 905us/step - loss: 0.3636 - accuracy: 0.8580 - mae: 0.3636 - pearson_correlation: 0.6087 - euclidean_distance: 0.5585
Epoch 77/100
38/38 [==============================] - 0s 904us/step - loss: 0.3617 - accuracy: 0.8585 - mae: 0.3617 - pearson_correlation: 0.6089 - euclidean_distance: 0.5557
Epoch 78/100
38/38 [==============================] - 0s 918us/step - loss: 0.3584 - accuracy: 0.8585 - mae: 0.3584 - pearson_correlation: 0.6117 - euclidean_distance: 0.5505
Epoch 79/100
38/38 [==============================] - 0s 918us/step - loss: 0.3549 - accuracy: 0.8593 - mae: 0.3549 - pearson_correlation: 0.6117 - euclidean_distance: 0.5449
Epoch 80/100
38/38 [==============================] - 0s 891us/step - loss: 0.3526 - accuracy: 0.8576 - mae: 0.3526 - pearson_correlation: 0.6115 - euclidean_distance: 0.5418
Epoch 81/100
38/38 [==============================] - 0s 893us/step - loss: 0.3513 - accuracy: 0.8598 - mae: 0.3513 - pearson_correlation: 0.6084 - euclidean_distance: 0.5391
Epoch 82/100
38/38 [==============================] - 0s 863us/step - loss: 0.3472 - accuracy: 0.8580 - mae: 0.3472 - pearson_correlation: 0.6059 - euclidean_distance: 0.5341
Epoch 83/100
38/38 [==============================] - 0s 881us/step - loss: 0.3440 - accuracy: 0.8598 - mae: 0.3440 - pearson_correlation: 0.6084 - euclidean_distance: 0.5284
Epoch 84/100
38/38 [==============================] - 0s 898us/step - loss: 0.3423 - accuracy: 0.8580 - mae: 0.3423 - pearson_correlation: 0.6074 - euclidean_distance: 0.5260
Epoch 85/100
38/38 [==============================] - 0s 888us/step - loss: 0.3380 - accuracy: 0.8589 - mae: 0.3380 - pearson_correlation: 0.6074 - euclidean_distance: 0.5203
Epoch 86/100
38/38 [==============================] - 0s 884us/step - loss: 0.3354 - accuracy: 0.8589 - mae: 0.3354 - pearson_correlation: 0.6060 - euclidean_distance: 0.5164
Epoch 87/100
38/38 [==============================] - 0s 919us/step - loss: 0.3334 - accuracy: 0.8554 - mae: 0.3334 - pearson_correlation: 0.6027 - euclidean_distance: 0.5130
Epoch 88/100
38/38 [==============================] - 0s 913us/step - loss: 0.3305 - accuracy: 0.8589 - mae: 0.3305 - pearson_correlation: 0.6035 - euclidean_distance: 0.5086
Epoch 89/100
38/38 [==============================] - 0s 923us/step - loss: 0.3279 - accuracy: 0.8607 - mae: 0.3279 - pearson_correlation: 0.6033 - euclidean_distance: 0.5051
Epoch 90/100
38/38 [==============================] - 0s 907us/step - loss: 0.3245 - accuracy: 0.8549 - mae: 0.3245 - pearson_correlation: 0.6001 - euclidean_distance: 0.5003
Epoch 91/100
38/38 [==============================] - 0s 896us/step - loss: 0.3215 - accuracy: 0.8536 - mae: 0.3215 - pearson_correlation: 0.6013 - euclidean_distance: 0.4959
Epoch 92/100
38/38 [==============================] - 0s 882us/step - loss: 0.3185 - accuracy: 0.8545 - mae: 0.3185 - pearson_correlation: 0.5989 - euclidean_distance: 0.4920
Epoch 93/100
38/38 [==============================] - 0s 878us/step - loss: 0.3158 - accuracy: 0.8554 - mae: 0.3158 - pearson_correlation: 0.6009 - euclidean_distance: 0.4871
Epoch 94/100
38/38 [==============================] - 0s 878us/step - loss: 0.3128 - accuracy: 0.8616 - mae: 0.3128 - pearson_correlation: 0.5961 - euclidean_distance: 0.4829
Epoch 95/100
38/38 [==============================] - 0s 888us/step - loss: 0.3102 - accuracy: 0.8646 - mae: 0.3102 - pearson_correlation: 0.5971 - euclidean_distance: 0.4791
Epoch 96/100
38/38 [==============================] - 0s 888us/step - loss: 0.3070 - accuracy: 0.8580 - mae: 0.3070 - pearson_correlation: 0.5970 - euclidean_distance: 0.4739
Epoch 97/100
38/38 [==============================] - 0s 896us/step - loss: 0.3035 - accuracy: 0.8545 - mae: 0.3035 - pearson_correlation: 0.5947 - euclidean_distance: 0.4699
Epoch 98/100
38/38 [==============================] - 0s 863us/step - loss: 0.2998 - accuracy: 0.8545 - mae: 0.2998 - pearson_correlation: 0.5960 - euclidean_distance: 0.4638
Epoch 99/100
38/38 [==============================] - 0s 895us/step - loss: 0.2971 - accuracy: 0.8532 - mae: 0.2971 - pearson_correlation: 0.5937 - euclidean_distance: 0.4600
Epoch 100/100
38/38 [==============================] - 0s 890us/step - loss: 0.2961 - accuracy: 0.8545 - mae: 0.2961 - pearson_correlation: 0.5937 - euclidean_distance: 0.4576
19/19 [==============================] - 0s 514us/step
Epoch 1/150
38/38 [==============================] - 1s 895us/step - loss: 0.5033 - accuracy: 0.5095 - mae: 0.5033 - pearson_correlation: 0.0581 - euclidean_distance: 0.7577
Epoch 2/150
38/38 [==============================] - 0s 833us/step - loss: 0.4997 - accuracy: 0.4976 - mae: 0.4997 - pearson_correlation: 0.0589 - euclidean_distance: 0.7532
Epoch 3/150
38/38 [==============================] - 0s 837us/step - loss: 0.4966 - accuracy: 0.5024 - mae: 0.4966 - pearson_correlation: 0.0568 - euclidean_distance: 0.7490
Epoch 4/150
38/38 [==============================] - 0s 888us/step - loss: 0.4928 - accuracy: 0.4967 - mae: 0.4928 - pearson_correlation: 0.0540 - euclidean_distance: 0.7443
Epoch 5/150
38/38 [==============================] - 0s 883us/step - loss: 0.4891 - accuracy: 0.4985 - mae: 0.4891 - pearson_correlation: 0.0528 - euclidean_distance: 0.7392
Epoch 6/150
38/38 [==============================] - 0s 899us/step - loss: 0.4856 - accuracy: 0.4976 - mae: 0.4856 - pearson_correlation: 0.0523 - euclidean_distance: 0.7348
Epoch 7/150
38/38 [==============================] - 0s 892us/step - loss: 0.4814 - accuracy: 0.4914 - mae: 0.4814 - pearson_correlation: 0.0526 - euclidean_distance: 0.7292
Epoch 8/150
38/38 [==============================] - 0s 941us/step - loss: 0.4776 - accuracy: 0.4865 - mae: 0.4776 - pearson_correlation: 0.0488 - euclidean_distance: 0.7243
Epoch 9/150
38/38 [==============================] - 0s 917us/step - loss: 0.4730 - accuracy: 0.4857 - mae: 0.4730 - pearson_correlation: 0.0475 - euclidean_distance: 0.7184
Epoch 10/150
38/38 [==============================] - 0s 881us/step - loss: 0.4690 - accuracy: 0.4905 - mae: 0.4690 - pearson_correlation: 0.0474 - euclidean_distance: 0.7133
Epoch 11/150
38/38 [==============================] - 0s 953us/step - loss: 0.4658 - accuracy: 0.4865 - mae: 0.4658 - pearson_correlation: 0.0457 - euclidean_distance: 0.7090
Epoch 12/150
38/38 [==============================] - 0s 908us/step - loss: 0.4601 - accuracy: 0.4817 - mae: 0.4601 - pearson_correlation: 0.0453 - euclidean_distance: 0.7019
Epoch 13/150
38/38 [==============================] - 0s 901us/step - loss: 0.4560 - accuracy: 0.4720 - mae: 0.4560 - pearson_correlation: 0.0402 - euclidean_distance: 0.6967
Epoch 14/150
38/38 [==============================] - 0s 915us/step - loss: 0.4512 - accuracy: 0.4751 - mae: 0.4512 - pearson_correlation: 0.0442 - euclidean_distance: 0.6906
Epoch 15/150
38/38 [==============================] - 0s 890us/step - loss: 0.4484 - accuracy: 0.4724 - mae: 0.4484 - pearson_correlation: 0.0430 - euclidean_distance: 0.6867
Epoch 16/150
38/38 [==============================] - 0s 895us/step - loss: 0.4434 - accuracy: 0.4689 - mae: 0.4434 - pearson_correlation: 0.0379 - euclidean_distance: 0.6802
Epoch 17/150
38/38 [==============================] - 0s 892us/step - loss: 0.4405 - accuracy: 0.4698 - mae: 0.4405 - pearson_correlation: 0.0419 - euclidean_distance: 0.6762
Epoch 18/150
38/38 [==============================] - 0s 887us/step - loss: 0.4354 - accuracy: 0.4689 - mae: 0.4354 - pearson_correlation: 0.0386 - euclidean_distance: 0.6695
Epoch 19/150
38/38 [==============================] - 0s 872us/step - loss: 0.4313 - accuracy: 0.4654 - mae: 0.4313 - pearson_correlation: 0.0411 - euclidean_distance: 0.6644
Epoch 20/150
38/38 [==============================] - 0s 903us/step - loss: 0.4278 - accuracy: 0.4649 - mae: 0.4278 - pearson_correlation: 0.0377 - euclidean_distance: 0.6591
Epoch 21/150
38/38 [==============================] - 0s 900us/step - loss: 0.4232 - accuracy: 0.4680 - mae: 0.4232 - pearson_correlation: 0.0364 - euclidean_distance: 0.6536
Epoch 22/150
38/38 [==============================] - 0s 940us/step - loss: 0.4205 - accuracy: 0.4618 - mae: 0.4205 - pearson_correlation: 0.0381 - euclidean_distance: 0.6490
Epoch 23/150
38/38 [==============================] - 0s 884us/step - loss: 0.4170 - accuracy: 0.4663 - mae: 0.4170 - pearson_correlation: 0.0429 - euclidean_distance: 0.6441
Epoch 24/150
38/38 [==============================] - 0s 904us/step - loss: 0.4123 - accuracy: 0.4627 - mae: 0.4123 - pearson_correlation: 0.0376 - euclidean_distance: 0.6381
Epoch 25/150
38/38 [==============================] - 0s 869us/step - loss: 0.4084 - accuracy: 0.4676 - mae: 0.4084 - pearson_correlation: 0.0387 - euclidean_distance: 0.6328
Epoch 26/150
38/38 [==============================] - 0s 896us/step - loss: 0.4058 - accuracy: 0.4702 - mae: 0.4058 - pearson_correlation: 0.0394 - euclidean_distance: 0.6289
Epoch 27/150
38/38 [==============================] - 0s 910us/step - loss: 0.4028 - accuracy: 0.4654 - mae: 0.4028 - pearson_correlation: 0.0390 - euclidean_distance: 0.6247
Epoch 28/150
38/38 [==============================] - 0s 885us/step - loss: 0.3979 - accuracy: 0.4640 - mae: 0.3979 - pearson_correlation: 0.0409 - euclidean_distance: 0.6181
Epoch 29/150
38/38 [==============================] - 0s 903us/step - loss: 0.3941 - accuracy: 0.4627 - mae: 0.3941 - pearson_correlation: 0.0408 - euclidean_distance: 0.6130
Epoch 30/150
38/38 [==============================] - 0s 973us/step - loss: 0.3910 - accuracy: 0.4640 - mae: 0.3910 - pearson_correlation: 0.0404 - euclidean_distance: 0.6085
Epoch 31/150
38/38 [==============================] - 0s 902us/step - loss: 0.3885 - accuracy: 0.4685 - mae: 0.3885 - pearson_correlation: 0.0384 - euclidean_distance: 0.6049
Epoch 32/150
38/38 [==============================] - 0s 904us/step - loss: 0.3856 - accuracy: 0.4707 - mae: 0.3856 - pearson_correlation: 0.0376 - euclidean_distance: 0.6010
Epoch 33/150
38/38 [==============================] - 0s 904us/step - loss: 0.3833 - accuracy: 0.4685 - mae: 0.3833 - pearson_correlation: 0.0424 - euclidean_distance: 0.5974
Epoch 34/150
38/38 [==============================] - 0s 888us/step - loss: 0.3787 - accuracy: 0.4720 - mae: 0.3787 - pearson_correlation: 0.0466 - euclidean_distance: 0.5905
Epoch 35/150
38/38 [==============================] - 0s 904us/step - loss: 0.3746 - accuracy: 0.4671 - mae: 0.3746 - pearson_correlation: 0.0435 - euclidean_distance: 0.5852
Epoch 36/150
38/38 [==============================] - 0s 903us/step - loss: 0.3719 - accuracy: 0.4685 - mae: 0.3719 - pearson_correlation: 0.0435 - euclidean_distance: 0.5815
Epoch 37/150
38/38 [==============================] - 0s 861us/step - loss: 0.3696 - accuracy: 0.4773 - mae: 0.3696 - pearson_correlation: 0.0434 - euclidean_distance: 0.5783
Epoch 38/150
38/38 [==============================] - 0s 914us/step - loss: 0.3648 - accuracy: 0.4724 - mae: 0.3648 - pearson_correlation: 0.0446 - euclidean_distance: 0.5716
Epoch 39/150
38/38 [==============================] - 0s 901us/step - loss: 0.3629 - accuracy: 0.4760 - mae: 0.3629 - pearson_correlation: 0.0450 - euclidean_distance: 0.5684
Epoch 40/150
38/38 [==============================] - 0s 901us/step - loss: 0.3591 - accuracy: 0.4685 - mae: 0.3591 - pearson_correlation: 0.0483 - euclidean_distance: 0.5629
Epoch 41/150
38/38 [==============================] - 0s 914us/step - loss: 0.3559 - accuracy: 0.4676 - mae: 0.3559 - pearson_correlation: 0.0482 - euclidean_distance: 0.5586
Epoch 42/150
38/38 [==============================] - 0s 899us/step - loss: 0.3531 - accuracy: 0.4760 - mae: 0.3531 - pearson_correlation: 0.0467 - euclidean_distance: 0.5541
Epoch 43/150
38/38 [==============================] - 0s 891us/step - loss: 0.3508 - accuracy: 0.4720 - mae: 0.3508 - pearson_correlation: 0.0465 - euclidean_distance: 0.5509
Epoch 44/150
38/38 [==============================] - 0s 877us/step - loss: 0.3477 - accuracy: 0.4760 - mae: 0.3477 - pearson_correlation: 0.0475 - euclidean_distance: 0.5465
Epoch 45/150
38/38 [==============================] - 0s 899us/step - loss: 0.3441 - accuracy: 0.4795 - mae: 0.3441 - pearson_correlation: 0.0501 - euclidean_distance: 0.5412
Epoch 46/150
38/38 [==============================] - 0s 939us/step - loss: 0.3420 - accuracy: 0.4790 - mae: 0.3420 - pearson_correlation: 0.0505 - euclidean_distance: 0.5381
Epoch 47/150
38/38 [==============================] - 0s 905us/step - loss: 0.3377 - accuracy: 0.4733 - mae: 0.3377 - pearson_correlation: 0.0529 - euclidean_distance: 0.5321
Epoch 48/150
38/38 [==============================] - 0s 912us/step - loss: 0.3355 - accuracy: 0.4795 - mae: 0.3355 - pearson_correlation: 0.0608 - euclidean_distance: 0.5293
Epoch 49/150
38/38 [==============================] - 0s 887us/step - loss: 0.3315 - accuracy: 0.4760 - mae: 0.3315 - pearson_correlation: 0.0546 - euclidean_distance: 0.5240
Epoch 50/150
38/38 [==============================] - 0s 907us/step - loss: 0.3293 - accuracy: 0.4830 - mae: 0.3293 - pearson_correlation: 0.0605 - euclidean_distance: 0.5201
Epoch 51/150
38/38 [==============================] - 0s 933us/step - loss: 0.3264 - accuracy: 0.4839 - mae: 0.3264 - pearson_correlation: 0.0638 - euclidean_distance: 0.5155
Epoch 52/150
38/38 [==============================] - 0s 929us/step - loss: 0.3225 - accuracy: 0.4808 - mae: 0.3225 - pearson_correlation: 0.0649 - euclidean_distance: 0.5102
Epoch 53/150
38/38 [==============================] - 0s 871us/step - loss: 0.3218 - accuracy: 0.4888 - mae: 0.3218 - pearson_correlation: 0.0612 - euclidean_distance: 0.5089
Epoch 54/150
38/38 [==============================] - 0s 924us/step - loss: 0.3162 - accuracy: 0.4852 - mae: 0.3162 - pearson_correlation: 0.0702 - euclidean_distance: 0.5015
Epoch 55/150
38/38 [==============================] - 0s 861us/step - loss: 0.3125 - accuracy: 0.4879 - mae: 0.3125 - pearson_correlation: 0.0733 - euclidean_distance: 0.4960
Epoch 56/150
38/38 [==============================] - 0s 898us/step - loss: 0.3095 - accuracy: 0.4861 - mae: 0.3095 - pearson_correlation: 0.0752 - euclidean_distance: 0.4922
Epoch 57/150
38/38 [==============================] - 0s 880us/step - loss: 0.3077 - accuracy: 0.4896 - mae: 0.3077 - pearson_correlation: 0.0769 - euclidean_distance: 0.4891
Epoch 58/150
38/38 [==============================] - 0s 900us/step - loss: 0.3044 - accuracy: 0.4963 - mae: 0.3044 - pearson_correlation: 0.0753 - euclidean_distance: 0.4848
Epoch 59/150
38/38 [==============================] - 0s 904us/step - loss: 0.3020 - accuracy: 0.4923 - mae: 0.3020 - pearson_correlation: 0.0777 - euclidean_distance: 0.4812
Epoch 60/150
38/38 [==============================] - 0s 895us/step - loss: 0.2992 - accuracy: 0.4918 - mae: 0.2992 - pearson_correlation: 0.0816 - euclidean_distance: 0.4774
Epoch 61/150
38/38 [==============================] - 0s 903us/step - loss: 0.2959 - accuracy: 0.4901 - mae: 0.2959 - pearson_correlation: 0.0854 - euclidean_distance: 0.4721
Epoch 62/150
38/38 [==============================] - 0s 930us/step - loss: 0.2924 - accuracy: 0.4998 - mae: 0.2924 - pearson_correlation: 0.0910 - euclidean_distance: 0.4672
Epoch 63/150
38/38 [==============================] - 0s 857us/step - loss: 0.2916 - accuracy: 0.4976 - mae: 0.2916 - pearson_correlation: 0.0913 - euclidean_distance: 0.4663
Epoch 64/150
38/38 [==============================] - 0s 939us/step - loss: 0.2888 - accuracy: 0.5024 - mae: 0.2888 - pearson_correlation: 0.0937 - euclidean_distance: 0.4622
Epoch 65/150
38/38 [==============================] - 0s 850us/step - loss: 0.2870 - accuracy: 0.5007 - mae: 0.2870 - pearson_correlation: 0.0971 - euclidean_distance: 0.4600
Epoch 66/150
38/38 [==============================] - 0s 851us/step - loss: 0.2812 - accuracy: 0.5055 - mae: 0.2812 - pearson_correlation: 0.1001 - euclidean_distance: 0.4523
Epoch 67/150
38/38 [==============================] - 0s 942us/step - loss: 0.2809 - accuracy: 0.5024 - mae: 0.2809 - pearson_correlation: 0.1055 - euclidean_distance: 0.4511
Epoch 68/150
38/38 [==============================] - 0s 915us/step - loss: 0.2777 - accuracy: 0.5046 - mae: 0.2777 - pearson_correlation: 0.1072 - euclidean_distance: 0.4467
Epoch 69/150
38/38 [==============================] - 0s 918us/step - loss: 0.2760 - accuracy: 0.5117 - mae: 0.2760 - pearson_correlation: 0.1103 - euclidean_distance: 0.4445
Epoch 70/150
38/38 [==============================] - 0s 889us/step - loss: 0.2721 - accuracy: 0.5108 - mae: 0.2721 - pearson_correlation: 0.1126 - euclidean_distance: 0.4393
Epoch 71/150
38/38 [==============================] - 0s 979us/step - loss: 0.2709 - accuracy: 0.5077 - mae: 0.2709 - pearson_correlation: 0.1146 - euclidean_distance: 0.4374
Epoch 72/150
38/38 [==============================] - 0s 897us/step - loss: 0.2693 - accuracy: 0.5161 - mae: 0.2693 - pearson_correlation: 0.1200 - euclidean_distance: 0.4347
Epoch 73/150
38/38 [==============================] - 0s 932us/step - loss: 0.2656 - accuracy: 0.5157 - mae: 0.2656 - pearson_correlation: 0.1231 - euclidean_distance: 0.4291
Epoch 74/150
38/38 [==============================] - 0s 864us/step - loss: 0.2624 - accuracy: 0.5174 - mae: 0.2624 - pearson_correlation: 0.1258 - euclidean_distance: 0.4246
Epoch 75/150
38/38 [==============================] - 0s 867us/step - loss: 0.2615 - accuracy: 0.5232 - mae: 0.2615 - pearson_correlation: 0.1275 - euclidean_distance: 0.4238
Epoch 76/150
38/38 [==============================] - 0s 902us/step - loss: 0.2598 - accuracy: 0.5258 - mae: 0.2598 - pearson_correlation: 0.1263 - euclidean_distance: 0.4211
Epoch 77/150
38/38 [==============================] - 0s 902us/step - loss: 0.2573 - accuracy: 0.5223 - mae: 0.2573 - pearson_correlation: 0.1366 - euclidean_distance: 0.4172
Epoch 78/150
38/38 [==============================] - 0s 924us/step - loss: 0.2560 - accuracy: 0.5262 - mae: 0.2560 - pearson_correlation: 0.1365 - euclidean_distance: 0.4144
Epoch 79/150
38/38 [==============================] - 0s 903us/step - loss: 0.2540 - accuracy: 0.5346 - mae: 0.2540 - pearson_correlation: 0.1360 - euclidean_distance: 0.4123
Epoch 80/150
38/38 [==============================] - 0s 915us/step - loss: 0.2517 - accuracy: 0.5298 - mae: 0.2517 - pearson_correlation: 0.1472 - euclidean_distance: 0.4083
Epoch 81/150
38/38 [==============================] - 0s 895us/step - loss: 0.2491 - accuracy: 0.5342 - mae: 0.2491 - pearson_correlation: 0.1496 - euclidean_distance: 0.4046
Epoch 82/150
38/38 [==============================] - 0s 886us/step - loss: 0.2471 - accuracy: 0.5439 - mae: 0.2471 - pearson_correlation: 0.1525 - euclidean_distance: 0.4008
Epoch 83/150
38/38 [==============================] - 0s 996us/step - loss: 0.2450 - accuracy: 0.5465 - mae: 0.2450 - pearson_correlation: 0.1565 - euclidean_distance: 0.3981
Epoch 84/150
38/38 [==============================] - 0s 971us/step - loss: 0.2430 - accuracy: 0.5461 - mae: 0.2430 - pearson_correlation: 0.1607 - euclidean_distance: 0.3953
Epoch 85/150
38/38 [==============================] - 0s 983us/step - loss: 0.2419 - accuracy: 0.5536 - mae: 0.2419 - pearson_correlation: 0.1625 - euclidean_distance: 0.3931
Epoch 86/150
38/38 [==============================] - 0s 940us/step - loss: 0.2400 - accuracy: 0.5545 - mae: 0.2400 - pearson_correlation: 0.1634 - euclidean_distance: 0.3903
Epoch 87/150
38/38 [==============================] - 0s 969us/step - loss: 0.2386 - accuracy: 0.5664 - mae: 0.2386 - pearson_correlation: 0.1668 - euclidean_distance: 0.3876
Epoch 88/150
38/38 [==============================] - 0s 930us/step - loss: 0.2376 - accuracy: 0.5651 - mae: 0.2376 - pearson_correlation: 0.1703 - euclidean_distance: 0.3865
Epoch 89/150
38/38 [==============================] - 0s 961us/step - loss: 0.2357 - accuracy: 0.5673 - mae: 0.2357 - pearson_correlation: 0.1737 - euclidean_distance: 0.3829
Epoch 90/150
38/38 [==============================] - 0s 932us/step - loss: 0.2336 - accuracy: 0.5726 - mae: 0.2336 - pearson_correlation: 0.1756 - euclidean_distance: 0.3799
Epoch 91/150
38/38 [==============================] - 0s 904us/step - loss: 0.2321 - accuracy: 0.5876 - mae: 0.2321 - pearson_correlation: 0.1845 - euclidean_distance: 0.3784
Epoch 92/150
38/38 [==============================] - 0s 896us/step - loss: 0.2306 - accuracy: 0.5743 - mae: 0.2306 - pearson_correlation: 0.1817 - euclidean_distance: 0.3758
Epoch 93/150
38/38 [==============================] - 0s 899us/step - loss: 0.2304 - accuracy: 0.5959 - mae: 0.2304 - pearson_correlation: 0.1867 - euclidean_distance: 0.3739
Epoch 94/150
38/38 [==============================] - 0s 936us/step - loss: 0.2267 - accuracy: 0.6105 - mae: 0.2267 - pearson_correlation: 0.1929 - euclidean_distance: 0.3692
Epoch 95/150
38/38 [==============================] - 0s 967us/step - loss: 0.2257 - accuracy: 0.6123 - mae: 0.2257 - pearson_correlation: 0.1994 - euclidean_distance: 0.3662
Epoch 96/150
38/38 [==============================] - 0s 888us/step - loss: 0.2233 - accuracy: 0.6109 - mae: 0.2233 - pearson_correlation: 0.2019 - euclidean_distance: 0.3629
Epoch 97/150
38/38 [==============================] - 0s 880us/step - loss: 0.2227 - accuracy: 0.6255 - mae: 0.2227 - pearson_correlation: 0.2026 - euclidean_distance: 0.3614
Epoch 98/150
38/38 [==============================] - 0s 905us/step - loss: 0.2213 - accuracy: 0.6392 - mae: 0.2213 - pearson_correlation: 0.2095 - euclidean_distance: 0.3587
Epoch 99/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2207 - accuracy: 0.6453 - mae: 0.2207 - pearson_correlation: 0.2141 - euclidean_distance: 0.3586
Epoch 100/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2189 - accuracy: 0.6480 - mae: 0.2189 - pearson_correlation: 0.2110 - euclidean_distance: 0.3552
Epoch 101/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2167 - accuracy: 0.6564 - mae: 0.2167 - pearson_correlation: 0.2185 - euclidean_distance: 0.3516
Epoch 102/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2156 - accuracy: 0.6634 - mae: 0.2156 - pearson_correlation: 0.2220 - euclidean_distance: 0.3499
Epoch 103/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2142 - accuracy: 0.6630 - mae: 0.2142 - pearson_correlation: 0.2273 - euclidean_distance: 0.3477
Epoch 104/150
38/38 [==============================] - 0s 995us/step - loss: 0.2124 - accuracy: 0.6780 - mae: 0.2124 - pearson_correlation: 0.2291 - euclidean_distance: 0.3447
Epoch 105/150
38/38 [==============================] - 0s 979us/step - loss: 0.2111 - accuracy: 0.6758 - mae: 0.2111 - pearson_correlation: 0.2313 - euclidean_distance: 0.3425
Epoch 106/150
38/38 [==============================] - 0s 984us/step - loss: 0.2107 - accuracy: 0.6859 - mae: 0.2107 - pearson_correlation: 0.2386 - euclidean_distance: 0.3414
Epoch 107/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2092 - accuracy: 0.6970 - mae: 0.2092 - pearson_correlation: 0.2408 - euclidean_distance: 0.3392
Epoch 108/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2082 - accuracy: 0.7031 - mae: 0.2082 - pearson_correlation: 0.2443 - euclidean_distance: 0.3375
Epoch 109/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2063 - accuracy: 0.7036 - mae: 0.2063 - pearson_correlation: 0.2461 - euclidean_distance: 0.3351
Epoch 110/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2049 - accuracy: 0.7142 - mae: 0.2049 - pearson_correlation: 0.2530 - euclidean_distance: 0.3326
Epoch 111/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2053 - accuracy: 0.7164 - mae: 0.2053 - pearson_correlation: 0.2541 - euclidean_distance: 0.3329
Epoch 112/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2020 - accuracy: 0.7208 - mae: 0.2020 - pearson_correlation: 0.2611 - euclidean_distance: 0.3281
Epoch 113/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2012 - accuracy: 0.7265 - mae: 0.2012 - pearson_correlation: 0.2626 - euclidean_distance: 0.3261
Epoch 114/150
38/38 [==============================] - 0s 999us/step - loss: 0.1992 - accuracy: 0.7340 - mae: 0.1992 - pearson_correlation: 0.2673 - euclidean_distance: 0.3234
Epoch 115/150
38/38 [==============================] - 0s 944us/step - loss: 0.2001 - accuracy: 0.7305 - mae: 0.2001 - pearson_correlation: 0.2697 - euclidean_distance: 0.3240
Epoch 116/150
38/38 [==============================] - 0s 893us/step - loss: 0.1974 - accuracy: 0.7424 - mae: 0.1974 - pearson_correlation: 0.2699 - euclidean_distance: 0.3197
Epoch 117/150
38/38 [==============================] - 0s 907us/step - loss: 0.1955 - accuracy: 0.7446 - mae: 0.1955 - pearson_correlation: 0.2802 - euclidean_distance: 0.3167
Epoch 118/150
38/38 [==============================] - 0s 905us/step - loss: 0.1952 - accuracy: 0.7539 - mae: 0.1952 - pearson_correlation: 0.2807 - euclidean_distance: 0.3163
Epoch 119/150
38/38 [==============================] - 0s 920us/step - loss: 0.1950 - accuracy: 0.7534 - mae: 0.1950 - pearson_correlation: 0.2835 - euclidean_distance: 0.3160
Epoch 120/150
38/38 [==============================] - 0s 880us/step - loss: 0.1953 - accuracy: 0.7609 - mae: 0.1953 - pearson_correlation: 0.2872 - euclidean_distance: 0.3155
Epoch 121/150
38/38 [==============================] - 0s 904us/step - loss: 0.1916 - accuracy: 0.7578 - mae: 0.1916 - pearson_correlation: 0.2966 - euclidean_distance: 0.3102
Epoch 122/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1903 - accuracy: 0.7693 - mae: 0.1903 - pearson_correlation: 0.2967 - euclidean_distance: 0.3082
Epoch 123/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1914 - accuracy: 0.7733 - mae: 0.1914 - pearson_correlation: 0.2967 - euclidean_distance: 0.3094
Epoch 124/150
38/38 [==============================] - 0s 940us/step - loss: 0.1879 - accuracy: 0.7781 - mae: 0.1879 - pearson_correlation: 0.3076 - euclidean_distance: 0.3036
Epoch 125/150
38/38 [==============================] - 0s 957us/step - loss: 0.1881 - accuracy: 0.7843 - mae: 0.1881 - pearson_correlation: 0.3052 - euclidean_distance: 0.3044
Epoch 126/150
38/38 [==============================] - 0s 915us/step - loss: 0.1870 - accuracy: 0.7852 - mae: 0.1870 - pearson_correlation: 0.3061 - euclidean_distance: 0.3022
Epoch 127/150
38/38 [==============================] - 0s 951us/step - loss: 0.1862 - accuracy: 0.7891 - mae: 0.1862 - pearson_correlation: 0.3142 - euclidean_distance: 0.3008
Epoch 128/150
38/38 [==============================] - 0s 920us/step - loss: 0.1832 - accuracy: 0.7905 - mae: 0.1832 - pearson_correlation: 0.3188 - euclidean_distance: 0.2970
Epoch 129/150
38/38 [==============================] - 0s 909us/step - loss: 0.1833 - accuracy: 0.7989 - mae: 0.1833 - pearson_correlation: 0.3195 - euclidean_distance: 0.2961
Epoch 130/150
38/38 [==============================] - 0s 900us/step - loss: 0.1828 - accuracy: 0.7962 - mae: 0.1828 - pearson_correlation: 0.3237 - euclidean_distance: 0.2944
Epoch 131/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1822 - accuracy: 0.8011 - mae: 0.1822 - pearson_correlation: 0.3264 - euclidean_distance: 0.2941
Epoch 132/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1802 - accuracy: 0.7984 - mae: 0.1802 - pearson_correlation: 0.3336 - euclidean_distance: 0.2911
Epoch 133/150
38/38 [==============================] - 0s 962us/step - loss: 0.1785 - accuracy: 0.8134 - mae: 0.1785 - pearson_correlation: 0.3331 - euclidean_distance: 0.2881
Epoch 134/150
38/38 [==============================] - 0s 981us/step - loss: 0.1776 - accuracy: 0.8090 - mae: 0.1776 - pearson_correlation: 0.3407 - euclidean_distance: 0.2872
Epoch 135/150
38/38 [==============================] - 0s 979us/step - loss: 0.1763 - accuracy: 0.8134 - mae: 0.1763 - pearson_correlation: 0.3462 - euclidean_distance: 0.2853
Epoch 136/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1760 - accuracy: 0.8183 - mae: 0.1760 - pearson_correlation: 0.3459 - euclidean_distance: 0.2842
Epoch 137/150
38/38 [==============================] - 0s 2ms/step - loss: 0.1767 - accuracy: 0.8227 - mae: 0.1767 - pearson_correlation: 0.3502 - euclidean_distance: 0.2851
Epoch 138/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1746 - accuracy: 0.8244 - mae: 0.1746 - pearson_correlation: 0.3528 - euclidean_distance: 0.2820
Epoch 139/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1747 - accuracy: 0.8244 - mae: 0.1747 - pearson_correlation: 0.3544 - euclidean_distance: 0.2820
Epoch 140/150
38/38 [==============================] - 0s 2ms/step - loss: 0.1742 - accuracy: 0.8262 - mae: 0.1742 - pearson_correlation: 0.3577 - euclidean_distance: 0.2818
Epoch 141/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1711 - accuracy: 0.8249 - mae: 0.1711 - pearson_correlation: 0.3650 - euclidean_distance: 0.2765
Epoch 142/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1724 - accuracy: 0.8302 - mae: 0.1724 - pearson_correlation: 0.3654 - euclidean_distance: 0.2777
Epoch 143/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1698 - accuracy: 0.8386 - mae: 0.1698 - pearson_correlation: 0.3658 - euclidean_distance: 0.2739
Epoch 144/150
38/38 [==============================] - 0s 941us/step - loss: 0.1686 - accuracy: 0.8403 - mae: 0.1686 - pearson_correlation: 0.3711 - euclidean_distance: 0.2725
Epoch 145/150
38/38 [==============================] - 0s 1ms/step - loss: 0.1666 - accuracy: 0.8425 - mae: 0.1666 - pearson_correlation: 0.3790 - euclidean_distance: 0.2692
Epoch 146/150
38/38 [==============================] - 0s 946us/step - loss: 0.1675 - accuracy: 0.8487 - mae: 0.1675 - pearson_correlation: 0.3809 - euclidean_distance: 0.2706
Epoch 147/150
38/38 [==============================] - 0s 943us/step - loss: 0.1661 - accuracy: 0.8496 - mae: 0.1661 - pearson_correlation: 0.3807 - euclidean_distance: 0.2684
Epoch 148/150
38/38 [==============================] - 0s 983us/step - loss: 0.1659 - accuracy: 0.8553 - mae: 0.1659 - pearson_correlation: 0.3848 - euclidean_distance: 0.2682
Epoch 149/150
38/38 [==============================] - 0s 891us/step - loss: 0.1639 - accuracy: 0.8522 - mae: 0.1639 - pearson_correlation: 0.3932 - euclidean_distance: 0.2643
Epoch 150/150
38/38 [==============================] - 0s 931us/step - loss: 0.1623 - accuracy: 0.8522 - mae: 0.1623 - pearson_correlation: 0.3966 - euclidean_distance: 0.2619
19/19 [==============================] - 0s 673us/step
Epoch 1/150
38/38 [==============================] - 1s 955us/step - loss: 0.6976 - accuracy: 0.9502 - mae: 0.6976 - pearson_correlation: 0.6567 - euclidean_distance: 1.0206
Epoch 2/150
38/38 [==============================] - 0s 840us/step - loss: 0.6957 - accuracy: 0.9510 - mae: 0.6957 - pearson_correlation: 0.6590 - euclidean_distance: 1.0181
Epoch 3/150
38/38 [==============================] - 0s 873us/step - loss: 0.6931 - accuracy: 0.9515 - mae: 0.6931 - pearson_correlation: 0.6523 - euclidean_distance: 1.0142
Epoch 4/150
38/38 [==============================] - 0s 959us/step - loss: 0.6911 - accuracy: 0.9515 - mae: 0.6911 - pearson_correlation: 0.6534 - euclidean_distance: 1.0116
Epoch 5/150
38/38 [==============================] - 0s 898us/step - loss: 0.6869 - accuracy: 0.9493 - mae: 0.6869 - pearson_correlation: 0.6536 - euclidean_distance: 1.0060
Epoch 6/150
38/38 [==============================] - 0s 884us/step - loss: 0.6860 - accuracy: 0.9497 - mae: 0.6860 - pearson_correlation: 0.6548 - euclidean_distance: 1.0044
Epoch 7/150
38/38 [==============================] - 0s 914us/step - loss: 0.6832 - accuracy: 0.9493 - mae: 0.6832 - pearson_correlation: 0.6557 - euclidean_distance: 1.0005
Epoch 8/150
38/38 [==============================] - 0s 917us/step - loss: 0.6795 - accuracy: 0.9422 - mae: 0.6795 - pearson_correlation: 0.6514 - euclidean_distance: 0.9959
Epoch 9/150
38/38 [==============================] - 0s 916us/step - loss: 0.6779 - accuracy: 0.9484 - mae: 0.6779 - pearson_correlation: 0.6563 - euclidean_distance: 0.9928
Epoch 10/150
38/38 [==============================] - 0s 909us/step - loss: 0.6751 - accuracy: 0.9488 - mae: 0.6751 - pearson_correlation: 0.6552 - euclidean_distance: 0.9889
Epoch 11/150
38/38 [==============================] - 0s 1ms/step - loss: 0.6715 - accuracy: 0.9493 - mae: 0.6715 - pearson_correlation: 0.6539 - euclidean_distance: 0.9840
Epoch 12/150
38/38 [==============================] - 0s 1ms/step - loss: 0.6693 - accuracy: 0.9488 - mae: 0.6693 - pearson_correlation: 0.6507 - euclidean_distance: 0.9812
Epoch 13/150
38/38 [==============================] - 0s 1ms/step - loss: 0.6651 - accuracy: 0.9457 - mae: 0.6651 - pearson_correlation: 0.6500 - euclidean_distance: 0.9756
Epoch 14/150
38/38 [==============================] - 0s 974us/step - loss: 0.6636 - accuracy: 0.9431 - mae: 0.6636 - pearson_correlation: 0.6541 - euclidean_distance: 0.9732
Epoch 15/150
38/38 [==============================] - 0s 979us/step - loss: 0.6604 - accuracy: 0.9462 - mae: 0.6604 - pearson_correlation: 0.6516 - euclidean_distance: 0.9688
Epoch 16/150
38/38 [==============================] - 0s 924us/step - loss: 0.6570 - accuracy: 0.9444 - mae: 0.6570 - pearson_correlation: 0.6507 - euclidean_distance: 0.9645
Epoch 17/150
38/38 [==============================] - 0s 953us/step - loss: 0.6541 - accuracy: 0.9440 - mae: 0.6541 - pearson_correlation: 0.6523 - euclidean_distance: 0.9604
Epoch 18/150
38/38 [==============================] - 0s 925us/step - loss: 0.6516 - accuracy: 0.9427 - mae: 0.6516 - pearson_correlation: 0.6476 - euclidean_distance: 0.9569
Epoch 19/150
38/38 [==============================] - 0s 875us/step - loss: 0.6490 - accuracy: 0.9457 - mae: 0.6490 - pearson_correlation: 0.6511 - euclidean_distance: 0.9527
Epoch 20/150
38/38 [==============================] - 0s 910us/step - loss: 0.6470 - accuracy: 0.9462 - mae: 0.6470 - pearson_correlation: 0.6515 - euclidean_distance: 0.9502
Epoch 21/150
38/38 [==============================] - 0s 909us/step - loss: 0.6432 - accuracy: 0.9422 - mae: 0.6432 - pearson_correlation: 0.6524 - euclidean_distance: 0.9452
Epoch 22/150
38/38 [==============================] - 0s 917us/step - loss: 0.6408 - accuracy: 0.9413 - mae: 0.6408 - pearson_correlation: 0.6474 - euclidean_distance: 0.9415
Epoch 23/150
38/38 [==============================] - 0s 899us/step - loss: 0.6372 - accuracy: 0.9422 - mae: 0.6372 - pearson_correlation: 0.6497 - euclidean_distance: 0.9360
Epoch 24/150
38/38 [==============================] - 0s 912us/step - loss: 0.6345 - accuracy: 0.9457 - mae: 0.6345 - pearson_correlation: 0.6483 - euclidean_distance: 0.9324
Epoch 25/150
38/38 [==============================] - 0s 902us/step - loss: 0.6312 - accuracy: 0.9444 - mae: 0.6312 - pearson_correlation: 0.6466 - euclidean_distance: 0.9282
Epoch 26/150
38/38 [==============================] - 0s 921us/step - loss: 0.6297 - accuracy: 0.9409 - mae: 0.6297 - pearson_correlation: 0.6473 - euclidean_distance: 0.9251
Epoch 27/150
38/38 [==============================] - 0s 885us/step - loss: 0.6263 - accuracy: 0.9404 - mae: 0.6263 - pearson_correlation: 0.6488 - euclidean_distance: 0.9209
Epoch 28/150
38/38 [==============================] - 0s 884us/step - loss: 0.6236 - accuracy: 0.9400 - mae: 0.6236 - pearson_correlation: 0.6472 - euclidean_distance: 0.9175
Epoch 29/150
38/38 [==============================] - 0s 870us/step - loss: 0.6208 - accuracy: 0.9427 - mae: 0.6208 - pearson_correlation: 0.6451 - euclidean_distance: 0.9127
Epoch 30/150
38/38 [==============================] - 0s 899us/step - loss: 0.6174 - accuracy: 0.9462 - mae: 0.6174 - pearson_correlation: 0.6454 - euclidean_distance: 0.9080
Epoch 31/150
38/38 [==============================] - 0s 890us/step - loss: 0.6141 - accuracy: 0.9400 - mae: 0.6141 - pearson_correlation: 0.6445 - euclidean_distance: 0.9037
Epoch 32/150
38/38 [==============================] - 0s 900us/step - loss: 0.6110 - accuracy: 0.9396 - mae: 0.6110 - pearson_correlation: 0.6395 - euclidean_distance: 0.8991
Epoch 33/150
38/38 [==============================] - 0s 884us/step - loss: 0.6082 - accuracy: 0.9400 - mae: 0.6082 - pearson_correlation: 0.6399 - euclidean_distance: 0.8952
Epoch 34/150
38/38 [==============================] - 0s 890us/step - loss: 0.6059 - accuracy: 0.9453 - mae: 0.6059 - pearson_correlation: 0.6428 - euclidean_distance: 0.8913
Epoch 35/150
38/38 [==============================] - 0s 942us/step - loss: 0.6020 - accuracy: 0.9422 - mae: 0.6020 - pearson_correlation: 0.6448 - euclidean_distance: 0.8864
Epoch 36/150
38/38 [==============================] - 0s 928us/step - loss: 0.5982 - accuracy: 0.9418 - mae: 0.5982 - pearson_correlation: 0.6410 - euclidean_distance: 0.8807
Epoch 37/150
38/38 [==============================] - 0s 906us/step - loss: 0.5964 - accuracy: 0.9431 - mae: 0.5964 - pearson_correlation: 0.6402 - euclidean_distance: 0.8775
Epoch 38/150
38/38 [==============================] - 0s 890us/step - loss: 0.5926 - accuracy: 0.9400 - mae: 0.5926 - pearson_correlation: 0.6397 - euclidean_distance: 0.8729
Epoch 39/150
38/38 [==============================] - 0s 898us/step - loss: 0.5890 - accuracy: 0.9431 - mae: 0.5890 - pearson_correlation: 0.6375 - euclidean_distance: 0.8672
Epoch 40/150
38/38 [==============================] - 0s 904us/step - loss: 0.5871 - accuracy: 0.9444 - mae: 0.5871 - pearson_correlation: 0.6383 - euclidean_distance: 0.8643
Epoch 41/150
38/38 [==============================] - 0s 900us/step - loss: 0.5825 - accuracy: 0.9427 - mae: 0.5825 - pearson_correlation: 0.6377 - euclidean_distance: 0.8582
Epoch 42/150
38/38 [==============================] - 0s 885us/step - loss: 0.5806 - accuracy: 0.9427 - mae: 0.5806 - pearson_correlation: 0.6366 - euclidean_distance: 0.8544
Epoch 43/150
38/38 [==============================] - 0s 900us/step - loss: 0.5764 - accuracy: 0.9378 - mae: 0.5764 - pearson_correlation: 0.6356 - euclidean_distance: 0.8493
Epoch 44/150
38/38 [==============================] - 0s 897us/step - loss: 0.5731 - accuracy: 0.9404 - mae: 0.5731 - pearson_correlation: 0.6332 - euclidean_distance: 0.8446
Epoch 45/150
38/38 [==============================] - 0s 915us/step - loss: 0.5703 - accuracy: 0.9365 - mae: 0.5703 - pearson_correlation: 0.6324 - euclidean_distance: 0.8402
Epoch 46/150
38/38 [==============================] - 0s 885us/step - loss: 0.5666 - accuracy: 0.9435 - mae: 0.5666 - pearson_correlation: 0.6318 - euclidean_distance: 0.8349
Epoch 47/150
38/38 [==============================] - 0s 898us/step - loss: 0.5649 - accuracy: 0.9418 - mae: 0.5649 - pearson_correlation: 0.6314 - euclidean_distance: 0.8320
Epoch 48/150
38/38 [==============================] - 0s 901us/step - loss: 0.5612 - accuracy: 0.9413 - mae: 0.5612 - pearson_correlation: 0.6296 - euclidean_distance: 0.8270
Epoch 49/150
38/38 [==============================] - 0s 896us/step - loss: 0.5580 - accuracy: 0.9431 - mae: 0.5580 - pearson_correlation: 0.6309 - euclidean_distance: 0.8223
Epoch 50/150
38/38 [==============================] - 0s 940us/step - loss: 0.5541 - accuracy: 0.9440 - mae: 0.5541 - pearson_correlation: 0.6272 - euclidean_distance: 0.8168
Epoch 51/150
38/38 [==============================] - 0s 862us/step - loss: 0.5521 - accuracy: 0.9391 - mae: 0.5521 - pearson_correlation: 0.6246 - euclidean_distance: 0.8133
Epoch 52/150
38/38 [==============================] - 0s 900us/step - loss: 0.5479 - accuracy: 0.9413 - mae: 0.5479 - pearson_correlation: 0.6238 - euclidean_distance: 0.8079
Epoch 53/150
38/38 [==============================] - 0s 925us/step - loss: 0.5455 - accuracy: 0.9427 - mae: 0.5455 - pearson_correlation: 0.6207 - euclidean_distance: 0.8040
Epoch 54/150
38/38 [==============================] - 0s 876us/step - loss: 0.5421 - accuracy: 0.9382 - mae: 0.5421 - pearson_correlation: 0.6221 - euclidean_distance: 0.7995
Epoch 55/150
38/38 [==============================] - 0s 893us/step - loss: 0.5382 - accuracy: 0.9431 - mae: 0.5382 - pearson_correlation: 0.6196 - euclidean_distance: 0.7937
Epoch 56/150
38/38 [==============================] - 0s 917us/step - loss: 0.5362 - accuracy: 0.9413 - mae: 0.5362 - pearson_correlation: 0.6183 - euclidean_distance: 0.7899
Epoch 57/150
38/38 [==============================] - 0s 878us/step - loss: 0.5325 - accuracy: 0.9400 - mae: 0.5325 - pearson_correlation: 0.6152 - euclidean_distance: 0.7854
Epoch 58/150
38/38 [==============================] - 0s 894us/step - loss: 0.5289 - accuracy: 0.9431 - mae: 0.5289 - pearson_correlation: 0.6177 - euclidean_distance: 0.7795
Epoch 59/150
38/38 [==============================] - 0s 898us/step - loss: 0.5265 - accuracy: 0.9440 - mae: 0.5265 - pearson_correlation: 0.6161 - euclidean_distance: 0.7756
Epoch 60/150
38/38 [==============================] - 0s 902us/step - loss: 0.5221 - accuracy: 0.9391 - mae: 0.5221 - pearson_correlation: 0.6120 - euclidean_distance: 0.7697
Epoch 61/150
38/38 [==============================] - 0s 893us/step - loss: 0.5190 - accuracy: 0.9404 - mae: 0.5190 - pearson_correlation: 0.6118 - euclidean_distance: 0.7650
Epoch 62/150
38/38 [==============================] - 0s 883us/step - loss: 0.5157 - accuracy: 0.9427 - mae: 0.5157 - pearson_correlation: 0.6155 - euclidean_distance: 0.7607
Epoch 63/150
38/38 [==============================] - 0s 908us/step - loss: 0.5125 - accuracy: 0.9435 - mae: 0.5125 - pearson_correlation: 0.6125 - euclidean_distance: 0.7555
Epoch 64/150
38/38 [==============================] - 0s 896us/step - loss: 0.5085 - accuracy: 0.9440 - mae: 0.5085 - pearson_correlation: 0.6090 - euclidean_distance: 0.7499
Epoch 65/150
38/38 [==============================] - 0s 896us/step - loss: 0.5059 - accuracy: 0.9427 - mae: 0.5059 - pearson_correlation: 0.6090 - euclidean_distance: 0.7463
Epoch 66/150
38/38 [==============================] - 0s 906us/step - loss: 0.5025 - accuracy: 0.9400 - mae: 0.5025 - pearson_correlation: 0.6071 - euclidean_distance: 0.7414
Epoch 67/150
38/38 [==============================] - 0s 891us/step - loss: 0.4991 - accuracy: 0.9418 - mae: 0.4991 - pearson_correlation: 0.6035 - euclidean_distance: 0.7363
Epoch 68/150
38/38 [==============================] - 0s 900us/step - loss: 0.4961 - accuracy: 0.9418 - mae: 0.4961 - pearson_correlation: 0.6037 - euclidean_distance: 0.7322
Epoch 69/150
38/38 [==============================] - 0s 915us/step - loss: 0.4917 - accuracy: 0.9435 - mae: 0.4917 - pearson_correlation: 0.6036 - euclidean_distance: 0.7261
Epoch 70/150
38/38 [==============================] - 0s 896us/step - loss: 0.4879 - accuracy: 0.9400 - mae: 0.4879 - pearson_correlation: 0.5986 - euclidean_distance: 0.7211
Epoch 71/150
38/38 [==============================] - 0s 946us/step - loss: 0.4838 - accuracy: 0.9422 - mae: 0.4838 - pearson_correlation: 0.5973 - euclidean_distance: 0.7146
Epoch 72/150
38/38 [==============================] - 0s 959us/step - loss: 0.4815 - accuracy: 0.9404 - mae: 0.4815 - pearson_correlation: 0.5918 - euclidean_distance: 0.7116
Epoch 73/150
38/38 [==============================] - 0s 930us/step - loss: 0.4779 - accuracy: 0.9422 - mae: 0.4779 - pearson_correlation: 0.5950 - euclidean_distance: 0.7061
Epoch 74/150
38/38 [==============================] - 0s 866us/step - loss: 0.4744 - accuracy: 0.9404 - mae: 0.4744 - pearson_correlation: 0.5900 - euclidean_distance: 0.7011
Epoch 75/150
38/38 [==============================] - 0s 895us/step - loss: 0.4715 - accuracy: 0.9413 - mae: 0.4715 - pearson_correlation: 0.5904 - euclidean_distance: 0.6967
Epoch 76/150
38/38 [==============================] - 0s 900us/step - loss: 0.4664 - accuracy: 0.9427 - mae: 0.4664 - pearson_correlation: 0.5859 - euclidean_distance: 0.6904
Epoch 77/150
38/38 [==============================] - 0s 897us/step - loss: 0.4632 - accuracy: 0.9378 - mae: 0.4632 - pearson_correlation: 0.5858 - euclidean_distance: 0.6858
Epoch 78/150
38/38 [==============================] - 0s 907us/step - loss: 0.4591 - accuracy: 0.9400 - mae: 0.4591 - pearson_correlation: 0.5857 - euclidean_distance: 0.6800
Epoch 79/150
38/38 [==============================] - 0s 913us/step - loss: 0.4557 - accuracy: 0.9356 - mae: 0.4557 - pearson_correlation: 0.5817 - euclidean_distance: 0.6750
Epoch 80/150
38/38 [==============================] - 0s 909us/step - loss: 0.4519 - accuracy: 0.9360 - mae: 0.4519 - pearson_correlation: 0.5834 - euclidean_distance: 0.6696
Epoch 81/150
38/38 [==============================] - 0s 887us/step - loss: 0.4475 - accuracy: 0.9378 - mae: 0.4475 - pearson_correlation: 0.5818 - euclidean_distance: 0.6633
Epoch 82/150
38/38 [==============================] - 0s 898us/step - loss: 0.4440 - accuracy: 0.9422 - mae: 0.4440 - pearson_correlation: 0.5789 - euclidean_distance: 0.6581
Epoch 83/150
38/38 [==============================] - 0s 892us/step - loss: 0.4411 - accuracy: 0.9427 - mae: 0.4411 - pearson_correlation: 0.5786 - euclidean_distance: 0.6544
Epoch 84/150
38/38 [==============================] - 0s 904us/step - loss: 0.4372 - accuracy: 0.9378 - mae: 0.4372 - pearson_correlation: 0.5722 - euclidean_distance: 0.6480
Epoch 85/150
38/38 [==============================] - 0s 912us/step - loss: 0.4335 - accuracy: 0.9378 - mae: 0.4335 - pearson_correlation: 0.5738 - euclidean_distance: 0.6431
Epoch 86/150
38/38 [==============================] - 0s 900us/step - loss: 0.4300 - accuracy: 0.9404 - mae: 0.4300 - pearson_correlation: 0.5708 - euclidean_distance: 0.6379
Epoch 87/150
38/38 [==============================] - 0s 906us/step - loss: 0.4263 - accuracy: 0.9422 - mae: 0.4263 - pearson_correlation: 0.5685 - euclidean_distance: 0.6326
Epoch 88/150
38/38 [==============================] - 0s 922us/step - loss: 0.4229 - accuracy: 0.9360 - mae: 0.4229 - pearson_correlation: 0.5678 - euclidean_distance: 0.6276
Epoch 89/150
38/38 [==============================] - 0s 897us/step - loss: 0.4184 - accuracy: 0.9378 - mae: 0.4184 - pearson_correlation: 0.5643 - euclidean_distance: 0.6216
Epoch 90/150
38/38 [==============================] - 0s 873us/step - loss: 0.4158 - accuracy: 0.9440 - mae: 0.4158 - pearson_correlation: 0.5661 - euclidean_distance: 0.6176
Epoch 91/150
38/38 [==============================] - 0s 903us/step - loss: 0.4132 - accuracy: 0.9338 - mae: 0.4132 - pearson_correlation: 0.5601 - euclidean_distance: 0.6143
Epoch 92/150
38/38 [==============================] - 0s 876us/step - loss: 0.4087 - accuracy: 0.9409 - mae: 0.4087 - pearson_correlation: 0.5633 - euclidean_distance: 0.6076
Epoch 93/150
38/38 [==============================] - 0s 905us/step - loss: 0.4042 - accuracy: 0.9409 - mae: 0.4042 - pearson_correlation: 0.5622 - euclidean_distance: 0.6014
Epoch 94/150
38/38 [==============================] - 0s 901us/step - loss: 0.4014 - accuracy: 0.9374 - mae: 0.4014 - pearson_correlation: 0.5544 - euclidean_distance: 0.5978
Epoch 95/150
38/38 [==============================] - 0s 906us/step - loss: 0.3993 - accuracy: 0.9391 - mae: 0.3993 - pearson_correlation: 0.5541 - euclidean_distance: 0.5941
Epoch 96/150
38/38 [==============================] - 0s 933us/step - loss: 0.3965 - accuracy: 0.9435 - mae: 0.3965 - pearson_correlation: 0.5535 - euclidean_distance: 0.5904
Epoch 97/150
38/38 [==============================] - 0s 942us/step - loss: 0.3923 - accuracy: 0.9400 - mae: 0.3923 - pearson_correlation: 0.5483 - euclidean_distance: 0.5842
Epoch 98/150
38/38 [==============================] - 0s 939us/step - loss: 0.3909 - accuracy: 0.9400 - mae: 0.3909 - pearson_correlation: 0.5493 - euclidean_distance: 0.5820
Epoch 99/150
38/38 [==============================] - 0s 872us/step - loss: 0.3857 - accuracy: 0.9396 - mae: 0.3857 - pearson_correlation: 0.5473 - euclidean_distance: 0.5751
Epoch 100/150
38/38 [==============================] - 0s 897us/step - loss: 0.3819 - accuracy: 0.9404 - mae: 0.3819 - pearson_correlation: 0.5472 - euclidean_distance: 0.5699
Epoch 101/150
38/38 [==============================] - 0s 897us/step - loss: 0.3809 - accuracy: 0.9396 - mae: 0.3809 - pearson_correlation: 0.5438 - euclidean_distance: 0.5680
Epoch 102/150
38/38 [==============================] - 0s 898us/step - loss: 0.3764 - accuracy: 0.9413 - mae: 0.3764 - pearson_correlation: 0.5421 - euclidean_distance: 0.5616
Epoch 103/150
38/38 [==============================] - 0s 944us/step - loss: 0.3723 - accuracy: 0.9431 - mae: 0.3723 - pearson_correlation: 0.5418 - euclidean_distance: 0.5564
Epoch 104/150
38/38 [==============================] - 0s 868us/step - loss: 0.3704 - accuracy: 0.9400 - mae: 0.3704 - pearson_correlation: 0.5368 - euclidean_distance: 0.5532
Epoch 105/150
38/38 [==============================] - 0s 904us/step - loss: 0.3664 - accuracy: 0.9431 - mae: 0.3664 - pearson_correlation: 0.5355 - euclidean_distance: 0.5476
Epoch 106/150
38/38 [==============================] - 0s 905us/step - loss: 0.3641 - accuracy: 0.9427 - mae: 0.3641 - pearson_correlation: 0.5332 - euclidean_distance: 0.5445
Epoch 107/150
38/38 [==============================] - 0s 902us/step - loss: 0.3615 - accuracy: 0.9404 - mae: 0.3615 - pearson_correlation: 0.5320 - euclidean_distance: 0.5407
Epoch 108/150
38/38 [==============================] - 0s 899us/step - loss: 0.3585 - accuracy: 0.9404 - mae: 0.3585 - pearson_correlation: 0.5278 - euclidean_distance: 0.5360
Epoch 109/150
38/38 [==============================] - 0s 910us/step - loss: 0.3561 - accuracy: 0.9400 - mae: 0.3561 - pearson_correlation: 0.5300 - euclidean_distance: 0.5330
Epoch 110/150
38/38 [==============================] - 0s 1ms/step - loss: 0.3530 - accuracy: 0.9440 - mae: 0.3530 - pearson_correlation: 0.5287 - euclidean_distance: 0.5287
Epoch 111/150
38/38 [==============================] - 0s 1ms/step - loss: 0.3500 - accuracy: 0.9400 - mae: 0.3500 - pearson_correlation: 0.5263 - euclidean_distance: 0.5246
Epoch 112/150
38/38 [==============================] - 0s 978us/step - loss: 0.3469 - accuracy: 0.9427 - mae: 0.3469 - pearson_correlation: 0.5243 - euclidean_distance: 0.5204
Epoch 113/150
38/38 [==============================] - 0s 968us/step - loss: 0.3443 - accuracy: 0.9391 - mae: 0.3443 - pearson_correlation: 0.5230 - euclidean_distance: 0.5164
Epoch 114/150
38/38 [==============================] - 0s 959us/step - loss: 0.3407 - accuracy: 0.9382 - mae: 0.3407 - pearson_correlation: 0.5229 - euclidean_distance: 0.5115
Epoch 115/150
38/38 [==============================] - 0s 976us/step - loss: 0.3391 - accuracy: 0.9404 - mae: 0.3391 - pearson_correlation: 0.5238 - euclidean_distance: 0.5096
Epoch 116/150
38/38 [==============================] - 0s 961us/step - loss: 0.3365 - accuracy: 0.9404 - mae: 0.3365 - pearson_correlation: 0.5229 - euclidean_distance: 0.5048
Epoch 117/150
38/38 [==============================] - 0s 998us/step - loss: 0.3340 - accuracy: 0.9435 - mae: 0.3340 - pearson_correlation: 0.5170 - euclidean_distance: 0.5026
Epoch 118/150
38/38 [==============================] - 0s 911us/step - loss: 0.3318 - accuracy: 0.9431 - mae: 0.3318 - pearson_correlation: 0.5188 - euclidean_distance: 0.4982
Epoch 119/150
38/38 [==============================] - 0s 950us/step - loss: 0.3288 - accuracy: 0.9404 - mae: 0.3288 - pearson_correlation: 0.5185 - euclidean_distance: 0.4952
Epoch 120/150
38/38 [==============================] - 0s 914us/step - loss: 0.3265 - accuracy: 0.9413 - mae: 0.3265 - pearson_correlation: 0.5134 - euclidean_distance: 0.4914
Epoch 121/150
38/38 [==============================] - 0s 907us/step - loss: 0.3249 - accuracy: 0.9449 - mae: 0.3249 - pearson_correlation: 0.5163 - euclidean_distance: 0.4887
Epoch 122/150
38/38 [==============================] - 0s 908us/step - loss: 0.3224 - accuracy: 0.9422 - mae: 0.3224 - pearson_correlation: 0.5155 - euclidean_distance: 0.4854
Epoch 123/150
38/38 [==============================] - 0s 1ms/step - loss: 0.3183 - accuracy: 0.9427 - mae: 0.3183 - pearson_correlation: 0.5179 - euclidean_distance: 0.4794
Epoch 124/150
38/38 [==============================] - 0s 915us/step - loss: 0.3171 - accuracy: 0.9457 - mae: 0.3171 - pearson_correlation: 0.5209 - euclidean_distance: 0.4778
Epoch 125/150
38/38 [==============================] - 0s 912us/step - loss: 0.3136 - accuracy: 0.9418 - mae: 0.3136 - pearson_correlation: 0.5167 - euclidean_distance: 0.4731
Epoch 126/150
38/38 [==============================] - 0s 907us/step - loss: 0.3128 - accuracy: 0.9396 - mae: 0.3128 - pearson_correlation: 0.5148 - euclidean_distance: 0.4716
Epoch 127/150
38/38 [==============================] - 0s 919us/step - loss: 0.3103 - accuracy: 0.9387 - mae: 0.3103 - pearson_correlation: 0.5153 - euclidean_distance: 0.4685
Epoch 128/150
38/38 [==============================] - 0s 875us/step - loss: 0.3069 - accuracy: 0.9449 - mae: 0.3069 - pearson_correlation: 0.5153 - euclidean_distance: 0.4634
Epoch 129/150
38/38 [==============================] - 0s 930us/step - loss: 0.3053 - accuracy: 0.9431 - mae: 0.3053 - pearson_correlation: 0.5174 - euclidean_distance: 0.4607
Epoch 130/150
38/38 [==============================] - 0s 906us/step - loss: 0.3020 - accuracy: 0.9422 - mae: 0.3020 - pearson_correlation: 0.5159 - euclidean_distance: 0.4569
Epoch 131/150
38/38 [==============================] - 0s 899us/step - loss: 0.3004 - accuracy: 0.9413 - mae: 0.3004 - pearson_correlation: 0.5136 - euclidean_distance: 0.4539
Epoch 132/150
38/38 [==============================] - 0s 903us/step - loss: 0.2972 - accuracy: 0.9449 - mae: 0.2972 - pearson_correlation: 0.5165 - euclidean_distance: 0.4498
Epoch 133/150
38/38 [==============================] - 0s 906us/step - loss: 0.2977 - accuracy: 0.9431 - mae: 0.2977 - pearson_correlation: 0.5141 - euclidean_distance: 0.4498
Epoch 134/150
38/38 [==============================] - 0s 899us/step - loss: 0.2949 - accuracy: 0.9440 - mae: 0.2949 - pearson_correlation: 0.5128 - euclidean_distance: 0.4455
Epoch 135/150
38/38 [==============================] - 0s 902us/step - loss: 0.2929 - accuracy: 0.9409 - mae: 0.2929 - pearson_correlation: 0.5165 - euclidean_distance: 0.4430
Epoch 136/150
38/38 [==============================] - 0s 905us/step - loss: 0.2905 - accuracy: 0.9422 - mae: 0.2905 - pearson_correlation: 0.5143 - euclidean_distance: 0.4395
Epoch 137/150
38/38 [==============================] - 0s 895us/step - loss: 0.2873 - accuracy: 0.9431 - mae: 0.2873 - pearson_correlation: 0.5160 - euclidean_distance: 0.4347
Epoch 138/150
38/38 [==============================] - 0s 904us/step - loss: 0.2845 - accuracy: 0.9391 - mae: 0.2845 - pearson_correlation: 0.5168 - euclidean_distance: 0.4311
Epoch 139/150
38/38 [==============================] - 0s 899us/step - loss: 0.2822 - accuracy: 0.9409 - mae: 0.2822 - pearson_correlation: 0.5186 - euclidean_distance: 0.4269
Epoch 140/150
38/38 [==============================] - 0s 904us/step - loss: 0.2804 - accuracy: 0.9444 - mae: 0.2804 - pearson_correlation: 0.5196 - euclidean_distance: 0.4244
Epoch 141/150
38/38 [==============================] - 0s 940us/step - loss: 0.2776 - accuracy: 0.9387 - mae: 0.2776 - pearson_correlation: 0.5177 - euclidean_distance: 0.4205
Epoch 142/150
38/38 [==============================] - 0s 913us/step - loss: 0.2758 - accuracy: 0.9449 - mae: 0.2758 - pearson_correlation: 0.5197 - euclidean_distance: 0.4184
Epoch 143/150
38/38 [==============================] - 0s 938us/step - loss: 0.2726 - accuracy: 0.9391 - mae: 0.2726 - pearson_correlation: 0.5214 - euclidean_distance: 0.4132
Epoch 144/150
38/38 [==============================] - 0s 959us/step - loss: 0.2728 - accuracy: 0.9440 - mae: 0.2728 - pearson_correlation: 0.5161 - euclidean_distance: 0.4130
Epoch 145/150
38/38 [==============================] - 0s 934us/step - loss: 0.2692 - accuracy: 0.9400 - mae: 0.2692 - pearson_correlation: 0.5195 - euclidean_distance: 0.4078
Epoch 146/150
38/38 [==============================] - 0s 947us/step - loss: 0.2667 - accuracy: 0.9409 - mae: 0.2667 - pearson_correlation: 0.5203 - euclidean_distance: 0.4048
Epoch 147/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2637 - accuracy: 0.9427 - mae: 0.2637 - pearson_correlation: 0.5203 - euclidean_distance: 0.4002
Epoch 148/150
38/38 [==============================] - 0s 933us/step - loss: 0.2631 - accuracy: 0.9409 - mae: 0.2631 - pearson_correlation: 0.5199 - euclidean_distance: 0.3993
Epoch 149/150
38/38 [==============================] - 0s 922us/step - loss: 0.2593 - accuracy: 0.9404 - mae: 0.2593 - pearson_correlation: 0.5187 - euclidean_distance: 0.3942
Epoch 150/150
38/38 [==============================] - 0s 905us/step - loss: 0.2582 - accuracy: 0.9374 - mae: 0.2582 - pearson_correlation: 0.5167 - euclidean_distance: 0.3919
19/19 [==============================] - 0s 505us/step
Epoch 1/150
38/38 [==============================] - 1s 1ms/step - loss: 0.4876 - accuracy: 0.9462 - mae: 0.4876 - pearson_correlation: 0.6831 - euclidean_distance: 0.7453
Epoch 2/150
38/38 [==============================] - 0s 1ms/step - loss: 0.4855 - accuracy: 0.9444 - mae: 0.4855 - pearson_correlation: 0.6807 - euclidean_distance: 0.7428
Epoch 3/150
38/38 [==============================] - 0s 867us/step - loss: 0.4835 - accuracy: 0.9427 - mae: 0.4835 - pearson_correlation: 0.6848 - euclidean_distance: 0.7398
Epoch 4/150
38/38 [==============================] - 0s 976us/step - loss: 0.4826 - accuracy: 0.9444 - mae: 0.4826 - pearson_correlation: 0.6802 - euclidean_distance: 0.7369
Epoch 5/150
38/38 [==============================] - 0s 919us/step - loss: 0.4795 - accuracy: 0.9449 - mae: 0.4795 - pearson_correlation: 0.6844 - euclidean_distance: 0.7332
Epoch 6/150
38/38 [==============================] - 0s 925us/step - loss: 0.4764 - accuracy: 0.9440 - mae: 0.4764 - pearson_correlation: 0.6842 - euclidean_distance: 0.7292
Epoch 7/150
38/38 [==============================] - 0s 928us/step - loss: 0.4755 - accuracy: 0.9489 - mae: 0.4755 - pearson_correlation: 0.6862 - euclidean_distance: 0.7270
Epoch 8/150
38/38 [==============================] - 0s 923us/step - loss: 0.4732 - accuracy: 0.9462 - mae: 0.4732 - pearson_correlation: 0.6868 - euclidean_distance: 0.7240
Epoch 9/150
38/38 [==============================] - 0s 923us/step - loss: 0.4718 - accuracy: 0.9458 - mae: 0.4718 - pearson_correlation: 0.6821 - euclidean_distance: 0.7210
Epoch 10/150
38/38 [==============================] - 0s 912us/step - loss: 0.4687 - accuracy: 0.9480 - mae: 0.4687 - pearson_correlation: 0.6826 - euclidean_distance: 0.7175
Epoch 11/150
38/38 [==============================] - 0s 893us/step - loss: 0.4671 - accuracy: 0.9436 - mae: 0.4671 - pearson_correlation: 0.6853 - euclidean_distance: 0.7145
Epoch 12/150
38/38 [==============================] - 0s 914us/step - loss: 0.4635 - accuracy: 0.9453 - mae: 0.4635 - pearson_correlation: 0.6834 - euclidean_distance: 0.7101
Epoch 13/150
38/38 [==============================] - 0s 865us/step - loss: 0.4618 - accuracy: 0.9458 - mae: 0.4618 - pearson_correlation: 0.6795 - euclidean_distance: 0.7073
Epoch 14/150
38/38 [==============================] - 0s 904us/step - loss: 0.4607 - accuracy: 0.9489 - mae: 0.4607 - pearson_correlation: 0.6842 - euclidean_distance: 0.7043
Epoch 15/150
38/38 [==============================] - 0s 894us/step - loss: 0.4576 - accuracy: 0.9440 - mae: 0.4576 - pearson_correlation: 0.6829 - euclidean_distance: 0.7005
Epoch 16/150
38/38 [==============================] - 0s 900us/step - loss: 0.4568 - accuracy: 0.9480 - mae: 0.4568 - pearson_correlation: 0.6846 - euclidean_distance: 0.6982
Epoch 17/150
38/38 [==============================] - 0s 926us/step - loss: 0.4537 - accuracy: 0.9475 - mae: 0.4537 - pearson_correlation: 0.6821 - euclidean_distance: 0.6946
Epoch 18/150
38/38 [==============================] - 0s 880us/step - loss: 0.4509 - accuracy: 0.9484 - mae: 0.4509 - pearson_correlation: 0.6860 - euclidean_distance: 0.6910
Epoch 19/150
38/38 [==============================] - 0s 996us/step - loss: 0.4487 - accuracy: 0.9458 - mae: 0.4487 - pearson_correlation: 0.6842 - euclidean_distance: 0.6871
Epoch 20/150
38/38 [==============================] - 0s 907us/step - loss: 0.4464 - accuracy: 0.9466 - mae: 0.4464 - pearson_correlation: 0.6861 - euclidean_distance: 0.6831
Epoch 21/150
38/38 [==============================] - 0s 897us/step - loss: 0.4449 - accuracy: 0.9466 - mae: 0.4449 - pearson_correlation: 0.6868 - euclidean_distance: 0.6811
Epoch 22/150
38/38 [==============================] - 0s 903us/step - loss: 0.4414 - accuracy: 0.9444 - mae: 0.4414 - pearson_correlation: 0.6882 - euclidean_distance: 0.6762
Epoch 23/150
38/38 [==============================] - 0s 913us/step - loss: 0.4390 - accuracy: 0.9462 - mae: 0.4390 - pearson_correlation: 0.6866 - euclidean_distance: 0.6732
Epoch 24/150
38/38 [==============================] - 0s 908us/step - loss: 0.4356 - accuracy: 0.9475 - mae: 0.4356 - pearson_correlation: 0.6890 - euclidean_distance: 0.6685
Epoch 25/150
38/38 [==============================] - 0s 909us/step - loss: 0.4338 - accuracy: 0.9493 - mae: 0.4338 - pearson_correlation: 0.6879 - euclidean_distance: 0.6652
Epoch 26/150
38/38 [==============================] - 0s 932us/step - loss: 0.4313 - accuracy: 0.9506 - mae: 0.4313 - pearson_correlation: 0.6889 - euclidean_distance: 0.6615
Epoch 27/150
38/38 [==============================] - 0s 874us/step - loss: 0.4303 - accuracy: 0.9497 - mae: 0.4303 - pearson_correlation: 0.6854 - euclidean_distance: 0.6597
Epoch 28/150
38/38 [==============================] - 0s 907us/step - loss: 0.4267 - accuracy: 0.9497 - mae: 0.4267 - pearson_correlation: 0.6961 - euclidean_distance: 0.6543
Epoch 29/150
38/38 [==============================] - 0s 894us/step - loss: 0.4249 - accuracy: 0.9462 - mae: 0.4249 - pearson_correlation: 0.6875 - euclidean_distance: 0.6521
Epoch 30/150
38/38 [==============================] - 0s 900us/step - loss: 0.4217 - accuracy: 0.9449 - mae: 0.4217 - pearson_correlation: 0.6878 - euclidean_distance: 0.6478
Epoch 31/150
38/38 [==============================] - 0s 903us/step - loss: 0.4199 - accuracy: 0.9462 - mae: 0.4199 - pearson_correlation: 0.6882 - euclidean_distance: 0.6447
Epoch 32/150
38/38 [==============================] - 0s 884us/step - loss: 0.4172 - accuracy: 0.9480 - mae: 0.4172 - pearson_correlation: 0.6876 - euclidean_distance: 0.6411
Epoch 33/150
38/38 [==============================] - 0s 890us/step - loss: 0.4135 - accuracy: 0.9480 - mae: 0.4135 - pearson_correlation: 0.6894 - euclidean_distance: 0.6355
Epoch 34/150
38/38 [==============================] - 0s 908us/step - loss: 0.4132 - accuracy: 0.9502 - mae: 0.4132 - pearson_correlation: 0.6865 - euclidean_distance: 0.6344
Epoch 35/150
38/38 [==============================] - 0s 901us/step - loss: 0.4102 - accuracy: 0.9493 - mae: 0.4102 - pearson_correlation: 0.6892 - euclidean_distance: 0.6295
Epoch 36/150
38/38 [==============================] - 0s 904us/step - loss: 0.4074 - accuracy: 0.9497 - mae: 0.4074 - pearson_correlation: 0.6857 - euclidean_distance: 0.6258
Epoch 37/150
38/38 [==============================] - 0s 904us/step - loss: 0.4030 - accuracy: 0.9480 - mae: 0.4030 - pearson_correlation: 0.6879 - euclidean_distance: 0.6202
Epoch 38/150
38/38 [==============================] - 0s 897us/step - loss: 0.4035 - accuracy: 0.9502 - mae: 0.4035 - pearson_correlation: 0.6927 - euclidean_distance: 0.6189
Epoch 39/150
38/38 [==============================] - 0s 889us/step - loss: 0.3984 - accuracy: 0.9493 - mae: 0.3984 - pearson_correlation: 0.6943 - euclidean_distance: 0.6132
Epoch 40/150
38/38 [==============================] - 0s 899us/step - loss: 0.3974 - accuracy: 0.9506 - mae: 0.3974 - pearson_correlation: 0.6885 - euclidean_distance: 0.6110
Epoch 41/150
38/38 [==============================] - 0s 895us/step - loss: 0.3939 - accuracy: 0.9502 - mae: 0.3939 - pearson_correlation: 0.6925 - euclidean_distance: 0.6068
Epoch 42/150
38/38 [==============================] - 0s 885us/step - loss: 0.3926 - accuracy: 0.9524 - mae: 0.3926 - pearson_correlation: 0.6882 - euclidean_distance: 0.6041
Epoch 43/150
38/38 [==============================] - 0s 902us/step - loss: 0.3896 - accuracy: 0.9511 - mae: 0.3896 - pearson_correlation: 0.6864 - euclidean_distance: 0.5995
Epoch 44/150
38/38 [==============================] - 0s 901us/step - loss: 0.3862 - accuracy: 0.9466 - mae: 0.3862 - pearson_correlation: 0.6911 - euclidean_distance: 0.5954
Epoch 45/150
38/38 [==============================] - 0s 900us/step - loss: 0.3839 - accuracy: 0.9533 - mae: 0.3839 - pearson_correlation: 0.6880 - euclidean_distance: 0.5916
Epoch 46/150
38/38 [==============================] - 0s 938us/step - loss: 0.3821 - accuracy: 0.9515 - mae: 0.3821 - pearson_correlation: 0.6892 - euclidean_distance: 0.5880
Epoch 47/150
38/38 [==============================] - 0s 858us/step - loss: 0.3783 - accuracy: 0.9502 - mae: 0.3783 - pearson_correlation: 0.6906 - euclidean_distance: 0.5834
Epoch 48/150
38/38 [==============================] - 0s 891us/step - loss: 0.3767 - accuracy: 0.9493 - mae: 0.3767 - pearson_correlation: 0.6893 - euclidean_distance: 0.5811
Epoch 49/150
38/38 [==============================] - 0s 911us/step - loss: 0.3727 - accuracy: 0.9528 - mae: 0.3727 - pearson_correlation: 0.6939 - euclidean_distance: 0.5744
Epoch 50/150
38/38 [==============================] - 0s 905us/step - loss: 0.3702 - accuracy: 0.9506 - mae: 0.3702 - pearson_correlation: 0.6908 - euclidean_distance: 0.5717
Epoch 51/150
38/38 [==============================] - 0s 911us/step - loss: 0.3685 - accuracy: 0.9519 - mae: 0.3685 - pearson_correlation: 0.6893 - euclidean_distance: 0.5683
Epoch 52/150
38/38 [==============================] - 0s 907us/step - loss: 0.3642 - accuracy: 0.9533 - mae: 0.3642 - pearson_correlation: 0.6904 - euclidean_distance: 0.5631
Epoch 53/150
38/38 [==============================] - 0s 911us/step - loss: 0.3625 - accuracy: 0.9489 - mae: 0.3625 - pearson_correlation: 0.6917 - euclidean_distance: 0.5601
Epoch 54/150
38/38 [==============================] - 0s 911us/step - loss: 0.3615 - accuracy: 0.9511 - mae: 0.3615 - pearson_correlation: 0.6888 - euclidean_distance: 0.5574
Epoch 55/150
38/38 [==============================] - 0s 905us/step - loss: 0.3584 - accuracy: 0.9506 - mae: 0.3584 - pearson_correlation: 0.6852 - euclidean_distance: 0.5532
Epoch 56/150
38/38 [==============================] - 0s 908us/step - loss: 0.3546 - accuracy: 0.9493 - mae: 0.3546 - pearson_correlation: 0.6888 - euclidean_distance: 0.5489
Epoch 57/150
38/38 [==============================] - 0s 908us/step - loss: 0.3527 - accuracy: 0.9506 - mae: 0.3527 - pearson_correlation: 0.6887 - euclidean_distance: 0.5449
Epoch 58/150
38/38 [==============================] - 0s 917us/step - loss: 0.3491 - accuracy: 0.9506 - mae: 0.3491 - pearson_correlation: 0.6917 - euclidean_distance: 0.5404
Epoch 59/150
38/38 [==============================] - 0s 898us/step - loss: 0.3482 - accuracy: 0.9528 - mae: 0.3482 - pearson_correlation: 0.6868 - euclidean_distance: 0.5387
Epoch 60/150
38/38 [==============================] - 0s 905us/step - loss: 0.3452 - accuracy: 0.9480 - mae: 0.3452 - pearson_correlation: 0.6872 - euclidean_distance: 0.5350
Epoch 61/150
38/38 [==============================] - 0s 901us/step - loss: 0.3425 - accuracy: 0.9511 - mae: 0.3425 - pearson_correlation: 0.6881 - euclidean_distance: 0.5300
Epoch 62/150
38/38 [==============================] - 0s 908us/step - loss: 0.3405 - accuracy: 0.9502 - mae: 0.3405 - pearson_correlation: 0.6882 - euclidean_distance: 0.5270
Epoch 63/150
38/38 [==============================] - 0s 903us/step - loss: 0.3382 - accuracy: 0.9515 - mae: 0.3382 - pearson_correlation: 0.6899 - euclidean_distance: 0.5229
Epoch 64/150
38/38 [==============================] - 0s 925us/step - loss: 0.3337 - accuracy: 0.9493 - mae: 0.3337 - pearson_correlation: 0.6873 - euclidean_distance: 0.5171
Epoch 65/150
38/38 [==============================] - 0s 931us/step - loss: 0.3332 - accuracy: 0.9493 - mae: 0.3332 - pearson_correlation: 0.6861 - euclidean_distance: 0.5160
Epoch 66/150
38/38 [==============================] - 0s 906us/step - loss: 0.3301 - accuracy: 0.9506 - mae: 0.3301 - pearson_correlation: 0.6820 - euclidean_distance: 0.5119
Epoch 67/150
38/38 [==============================] - 0s 896us/step - loss: 0.3267 - accuracy: 0.9502 - mae: 0.3267 - pearson_correlation: 0.6866 - euclidean_distance: 0.5069
Epoch 68/150
38/38 [==============================] - 0s 920us/step - loss: 0.3251 - accuracy: 0.9528 - mae: 0.3251 - pearson_correlation: 0.6856 - euclidean_distance: 0.5039
Epoch 69/150
38/38 [==============================] - 0s 865us/step - loss: 0.3237 - accuracy: 0.9497 - mae: 0.3237 - pearson_correlation: 0.6849 - euclidean_distance: 0.5023
Epoch 70/150
38/38 [==============================] - 0s 905us/step - loss: 0.3213 - accuracy: 0.9506 - mae: 0.3213 - pearson_correlation: 0.6793 - euclidean_distance: 0.4984
Epoch 71/150
38/38 [==============================] - 0s 899us/step - loss: 0.3188 - accuracy: 0.9524 - mae: 0.3188 - pearson_correlation: 0.6833 - euclidean_distance: 0.4943
Epoch 72/150
38/38 [==============================] - 0s 901us/step - loss: 0.3141 - accuracy: 0.9524 - mae: 0.3141 - pearson_correlation: 0.6847 - euclidean_distance: 0.4882
Epoch 73/150
38/38 [==============================] - 0s 904us/step - loss: 0.3159 - accuracy: 0.9511 - mae: 0.3159 - pearson_correlation: 0.6817 - euclidean_distance: 0.4890
Epoch 74/150
38/38 [==============================] - 0s 903us/step - loss: 0.3102 - accuracy: 0.9515 - mae: 0.3102 - pearson_correlation: 0.6843 - euclidean_distance: 0.4826
Epoch 75/150
38/38 [==============================] - 0s 906us/step - loss: 0.3088 - accuracy: 0.9511 - mae: 0.3088 - pearson_correlation: 0.6827 - euclidean_distance: 0.4799
Epoch 76/150
38/38 [==============================] - 0s 913us/step - loss: 0.3071 - accuracy: 0.9497 - mae: 0.3071 - pearson_correlation: 0.6802 - euclidean_distance: 0.4772
Epoch 77/150
38/38 [==============================] - 0s 903us/step - loss: 0.3055 - accuracy: 0.9519 - mae: 0.3055 - pearson_correlation: 0.6763 - euclidean_distance: 0.4747
Epoch 78/150
38/38 [==============================] - 0s 901us/step - loss: 0.3008 - accuracy: 0.9533 - mae: 0.3008 - pearson_correlation: 0.6823 - euclidean_distance: 0.4681
Epoch 79/150
38/38 [==============================] - 0s 892us/step - loss: 0.3015 - accuracy: 0.9519 - mae: 0.3015 - pearson_correlation: 0.6795 - euclidean_distance: 0.4687
Epoch 80/150
38/38 [==============================] - 0s 903us/step - loss: 0.2979 - accuracy: 0.9528 - mae: 0.2979 - pearson_correlation: 0.6787 - euclidean_distance: 0.4645
Epoch 81/150
38/38 [==============================] - 0s 903us/step - loss: 0.2977 - accuracy: 0.9511 - mae: 0.2977 - pearson_correlation: 0.6788 - euclidean_distance: 0.4618
Epoch 82/150
38/38 [==============================] - 0s 907us/step - loss: 0.2932 - accuracy: 0.9515 - mae: 0.2932 - pearson_correlation: 0.6781 - euclidean_distance: 0.4565
Epoch 83/150
38/38 [==============================] - 0s 920us/step - loss: 0.2909 - accuracy: 0.9506 - mae: 0.2909 - pearson_correlation: 0.6772 - euclidean_distance: 0.4538
Epoch 84/150
38/38 [==============================] - 0s 974us/step - loss: 0.2894 - accuracy: 0.9519 - mae: 0.2894 - pearson_correlation: 0.6762 - euclidean_distance: 0.4508
Epoch 85/150
38/38 [==============================] - 0s 918us/step - loss: 0.2874 - accuracy: 0.9506 - mae: 0.2874 - pearson_correlation: 0.6716 - euclidean_distance: 0.4490
Epoch 86/150
38/38 [==============================] - 0s 907us/step - loss: 0.2857 - accuracy: 0.9524 - mae: 0.2857 - pearson_correlation: 0.6769 - euclidean_distance: 0.4456
Epoch 87/150
38/38 [==============================] - 0s 905us/step - loss: 0.2842 - accuracy: 0.9533 - mae: 0.2842 - pearson_correlation: 0.6759 - euclidean_distance: 0.4433
Epoch 88/150
38/38 [==============================] - 0s 902us/step - loss: 0.2812 - accuracy: 0.9515 - mae: 0.2812 - pearson_correlation: 0.6774 - euclidean_distance: 0.4387
Epoch 89/150
38/38 [==============================] - 0s 901us/step - loss: 0.2817 - accuracy: 0.9524 - mae: 0.2817 - pearson_correlation: 0.6747 - euclidean_distance: 0.4393
Epoch 90/150
38/38 [==============================] - 0s 919us/step - loss: 0.2776 - accuracy: 0.9506 - mae: 0.2776 - pearson_correlation: 0.6742 - euclidean_distance: 0.4339
Epoch 91/150
38/38 [==============================] - 0s 908us/step - loss: 0.2749 - accuracy: 0.9515 - mae: 0.2749 - pearson_correlation: 0.6763 - euclidean_distance: 0.4305
Epoch 92/150
38/38 [==============================] - 0s 899us/step - loss: 0.2759 - accuracy: 0.9524 - mae: 0.2759 - pearson_correlation: 0.6708 - euclidean_distance: 0.4308
Epoch 93/150
38/38 [==============================] - 0s 897us/step - loss: 0.2709 - accuracy: 0.9493 - mae: 0.2709 - pearson_correlation: 0.6757 - euclidean_distance: 0.4246
Epoch 94/150
38/38 [==============================] - 0s 898us/step - loss: 0.2696 - accuracy: 0.9515 - mae: 0.2696 - pearson_correlation: 0.6766 - euclidean_distance: 0.4219
Epoch 95/150
38/38 [==============================] - 0s 906us/step - loss: 0.2677 - accuracy: 0.9497 - mae: 0.2677 - pearson_correlation: 0.6717 - euclidean_distance: 0.4194
Epoch 96/150
38/38 [==============================] - 0s 899us/step - loss: 0.2672 - accuracy: 0.9502 - mae: 0.2672 - pearson_correlation: 0.6773 - euclidean_distance: 0.4181
Epoch 97/150
38/38 [==============================] - 0s 901us/step - loss: 0.2666 - accuracy: 0.9506 - mae: 0.2666 - pearson_correlation: 0.6702 - euclidean_distance: 0.4164
Epoch 98/150
38/38 [==============================] - 0s 906us/step - loss: 0.2624 - accuracy: 0.9519 - mae: 0.2624 - pearson_correlation: 0.6745 - euclidean_distance: 0.4115
Epoch 99/150
38/38 [==============================] - 0s 903us/step - loss: 0.2631 - accuracy: 0.9524 - mae: 0.2631 - pearson_correlation: 0.6694 - euclidean_distance: 0.4116
Epoch 100/150
38/38 [==============================] - 0s 889us/step - loss: 0.2609 - accuracy: 0.9528 - mae: 0.2609 - pearson_correlation: 0.6709 - euclidean_distance: 0.4080
Epoch 101/150
38/38 [==============================] - 0s 895us/step - loss: 0.2580 - accuracy: 0.9497 - mae: 0.2580 - pearson_correlation: 0.6714 - euclidean_distance: 0.4049
Epoch 102/150
38/38 [==============================] - 0s 921us/step - loss: 0.2572 - accuracy: 0.9519 - mae: 0.2572 - pearson_correlation: 0.6708 - euclidean_distance: 0.4027
Epoch 103/150
38/38 [==============================] - 0s 851us/step - loss: 0.2572 - accuracy: 0.9506 - mae: 0.2572 - pearson_correlation: 0.6694 - euclidean_distance: 0.4022
Epoch 104/150
38/38 [==============================] - 0s 901us/step - loss: 0.2521 - accuracy: 0.9515 - mae: 0.2521 - pearson_correlation: 0.6728 - euclidean_distance: 0.3961
Epoch 105/150
38/38 [==============================] - 0s 905us/step - loss: 0.2523 - accuracy: 0.9511 - mae: 0.2523 - pearson_correlation: 0.6673 - euclidean_distance: 0.3952
Epoch 106/150
38/38 [==============================] - 0s 883us/step - loss: 0.2496 - accuracy: 0.9506 - mae: 0.2496 - pearson_correlation: 0.6721 - euclidean_distance: 0.3921
Epoch 107/150
38/38 [==============================] - 0s 908us/step - loss: 0.2483 - accuracy: 0.9541 - mae: 0.2483 - pearson_correlation: 0.6716 - euclidean_distance: 0.3894
Epoch 108/150
38/38 [==============================] - 0s 872us/step - loss: 0.2484 - accuracy: 0.9524 - mae: 0.2484 - pearson_correlation: 0.6715 - euclidean_distance: 0.3892
Epoch 109/150
38/38 [==============================] - 0s 877us/step - loss: 0.2436 - accuracy: 0.9524 - mae: 0.2436 - pearson_correlation: 0.6723 - euclidean_distance: 0.3828
Epoch 110/150
38/38 [==============================] - 0s 895us/step - loss: 0.2453 - accuracy: 0.9511 - mae: 0.2453 - pearson_correlation: 0.6694 - euclidean_distance: 0.3852
Epoch 111/150
38/38 [==============================] - 0s 901us/step - loss: 0.2418 - accuracy: 0.9528 - mae: 0.2418 - pearson_correlation: 0.6723 - euclidean_distance: 0.3803
Epoch 112/150
38/38 [==============================] - 0s 902us/step - loss: 0.2417 - accuracy: 0.9524 - mae: 0.2417 - pearson_correlation: 0.6712 - euclidean_distance: 0.3798
Epoch 113/150
38/38 [==============================] - 0s 867us/step - loss: 0.2385 - accuracy: 0.9502 - mae: 0.2385 - pearson_correlation: 0.6735 - euclidean_distance: 0.3754
Epoch 114/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2374 - accuracy: 0.9511 - mae: 0.2374 - pearson_correlation: 0.6716 - euclidean_distance: 0.3740
Epoch 115/150
38/38 [==============================] - 0s 948us/step - loss: 0.2370 - accuracy: 0.9502 - mae: 0.2370 - pearson_correlation: 0.6707 - euclidean_distance: 0.3727
Epoch 116/150
38/38 [==============================] - 0s 909us/step - loss: 0.2332 - accuracy: 0.9511 - mae: 0.2332 - pearson_correlation: 0.6744 - euclidean_distance: 0.3673
Epoch 117/150
38/38 [==============================] - 0s 920us/step - loss: 0.2335 - accuracy: 0.9519 - mae: 0.2335 - pearson_correlation: 0.6682 - euclidean_distance: 0.3686
Epoch 118/150
38/38 [==============================] - 0s 906us/step - loss: 0.2320 - accuracy: 0.9506 - mae: 0.2320 - pearson_correlation: 0.6699 - euclidean_distance: 0.3651
Epoch 119/150
38/38 [==============================] - 0s 906us/step - loss: 0.2278 - accuracy: 0.9515 - mae: 0.2278 - pearson_correlation: 0.6716 - euclidean_distance: 0.3616
Epoch 120/150
38/38 [==============================] - 0s 908us/step - loss: 0.2282 - accuracy: 0.9493 - mae: 0.2282 - pearson_correlation: 0.6712 - euclidean_distance: 0.3604
Epoch 121/150
38/38 [==============================] - 0s 901us/step - loss: 0.2266 - accuracy: 0.9528 - mae: 0.2266 - pearson_correlation: 0.6712 - euclidean_distance: 0.3576
Epoch 122/150
38/38 [==============================] - 0s 902us/step - loss: 0.2264 - accuracy: 0.9524 - mae: 0.2264 - pearson_correlation: 0.6693 - euclidean_distance: 0.3572
Epoch 123/150
38/38 [==============================] - 0s 935us/step - loss: 0.2246 - accuracy: 0.9528 - mae: 0.2246 - pearson_correlation: 0.6736 - euclidean_distance: 0.3547
Epoch 124/150
38/38 [==============================] - 0s 905us/step - loss: 0.2258 - accuracy: 0.9515 - mae: 0.2258 - pearson_correlation: 0.6683 - euclidean_distance: 0.3560
Epoch 125/150
38/38 [==============================] - 0s 904us/step - loss: 0.2218 - accuracy: 0.9533 - mae: 0.2218 - pearson_correlation: 0.6730 - euclidean_distance: 0.3506
Epoch 126/150
38/38 [==============================] - 0s 1ms/step - loss: 0.2195 - accuracy: 0.9506 - mae: 0.2195 - pearson_correlation: 0.6703 - euclidean_distance: 0.3468
Epoch 127/150
38/38 [==============================] - 0s 921us/step - loss: 0.2173 - accuracy: 0.9524 - mae: 0.2173 - pearson_correlation: 0.6748 - euclidean_distance: 0.3433
Epoch 128/150
38/38 [==============================] - 0s 968us/step - loss: 0.2158 - accuracy: 0.9519 - mae: 0.2158 - pearson_correlation: 0.6765 - euclidean_distance: 0.3420
Epoch 129/150
38/38 [==============================] - 0s 919us/step - loss: 0.2169 - accuracy: 0.9515 - mae: 0.2169 - pearson_correlation: 0.6735 - euclidean_distance: 0.3427
Epoch 130/150
38/38 [==============================] - 0s 903us/step - loss: 0.2163 - accuracy: 0.9524 - mae: 0.2163 - pearson_correlation: 0.6692 - euclidean_distance: 0.3413
Epoch 131/150
38/38 [==============================] - 0s 903us/step - loss: 0.2130 - accuracy: 0.9528 - mae: 0.2130 - pearson_correlation: 0.6731 - euclidean_distance: 0.3375
Epoch 132/150
38/38 [==============================] - 0s 906us/step - loss: 0.2124 - accuracy: 0.9515 - mae: 0.2124 - pearson_correlation: 0.6724 - euclidean_distance: 0.3355
Epoch 133/150
38/38 [==============================] - 0s 900us/step - loss: 0.2092 - accuracy: 0.9515 - mae: 0.2092 - pearson_correlation: 0.6740 - euclidean_distance: 0.3310
Epoch 134/150
38/38 [==============================] - 0s 894us/step - loss: 0.2083 - accuracy: 0.9519 - mae: 0.2083 - pearson_correlation: 0.6735 - euclidean_distance: 0.3307
Epoch 135/150
38/38 [==============================] - 0s 896us/step - loss: 0.2080 - accuracy: 0.9519 - mae: 0.2080 - pearson_correlation: 0.6692 - euclidean_distance: 0.3291
Epoch 136/150
38/38 [==============================] - 0s 917us/step - loss: 0.2074 - accuracy: 0.9524 - mae: 0.2074 - pearson_correlation: 0.6732 - euclidean_distance: 0.3286
Epoch 137/150
38/38 [==============================] - 0s 911us/step - loss: 0.2058 - accuracy: 0.9502 - mae: 0.2058 - pearson_correlation: 0.6694 - euclidean_distance: 0.3262
Epoch 138/150
38/38 [==============================] - 0s 916us/step - loss: 0.2041 - accuracy: 0.9519 - mae: 0.2041 - pearson_correlation: 0.6720 - euclidean_distance: 0.3230
Epoch 139/150
38/38 [==============================] - 0s 899us/step - loss: 0.2029 - accuracy: 0.9493 - mae: 0.2029 - pearson_correlation: 0.6672 - euclidean_distance: 0.3223
Epoch 140/150
38/38 [==============================] - 0s 895us/step - loss: 0.2008 - accuracy: 0.9511 - mae: 0.2008 - pearson_correlation: 0.6735 - euclidean_distance: 0.3189
Epoch 141/150
38/38 [==============================] - 0s 903us/step - loss: 0.1993 - accuracy: 0.9537 - mae: 0.1993 - pearson_correlation: 0.6744 - euclidean_distance: 0.3167
Epoch 142/150
38/38 [==============================] - 0s 901us/step - loss: 0.2002 - accuracy: 0.9524 - mae: 0.2002 - pearson_correlation: 0.6668 - euclidean_distance: 0.3173
Epoch 143/150
38/38 [==============================] - 0s 897us/step - loss: 0.1975 - accuracy: 0.9519 - mae: 0.1975 - pearson_correlation: 0.6747 - euclidean_distance: 0.3131
Epoch 144/150
38/38 [==============================] - 0s 898us/step - loss: 0.1971 - accuracy: 0.9493 - mae: 0.1971 - pearson_correlation: 0.6715 - euclidean_distance: 0.3131
Epoch 145/150
38/38 [==============================] - 0s 905us/step - loss: 0.1959 - accuracy: 0.9515 - mae: 0.1959 - pearson_correlation: 0.6733 - euclidean_distance: 0.3107
Epoch 146/150
38/38 [==============================] - 0s 920us/step - loss: 0.1929 - accuracy: 0.9515 - mae: 0.1929 - pearson_correlation: 0.6747 - euclidean_distance: 0.3062
Epoch 147/150
38/38 [==============================] - 0s 901us/step - loss: 0.1920 - accuracy: 0.9533 - mae: 0.1920 - pearson_correlation: 0.6699 - euclidean_distance: 0.3044
Epoch 148/150
38/38 [==============================] - 0s 900us/step - loss: 0.1907 - accuracy: 0.9497 - mae: 0.1907 - pearson_correlation: 0.6747 - euclidean_distance: 0.3025
Epoch 149/150
38/38 [==============================] - 0s 902us/step - loss: 0.1898 - accuracy: 0.9511 - mae: 0.1898 - pearson_correlation: 0.6735 - euclidean_distance: 0.3020
Epoch 150/150
38/38 [==============================] - 0s 904us/step - loss: 0.1880 - accuracy: 0.9519 - mae: 0.1880 - pearson_correlation: 0.6761 - euclidean_distance: 0.2996
19/19 [==============================] - 0s 522us/step
Epoch 1/200
38/38 [==============================] - 1s 930us/step - loss: 0.5517 - accuracy: 0.1513 - mae: 0.5517 - pearson_correlation: -0.5510 - euclidean_distance: 0.9330
Epoch 2/200
38/38 [==============================] - 0s 854us/step - loss: 0.5489 - accuracy: 0.1473 - mae: 0.5489 - pearson_correlation: -0.5503 - euclidean_distance: 0.9285
Epoch 3/200
38/38 [==============================] - 0s 878us/step - loss: 0.5465 - accuracy: 0.1460 - mae: 0.5465 - pearson_correlation: -0.5517 - euclidean_distance: 0.9256
Epoch 4/200
38/38 [==============================] - 0s 898us/step - loss: 0.5442 - accuracy: 0.1517 - mae: 0.5442 - pearson_correlation: -0.5535 - euclidean_distance: 0.9217
Epoch 5/200
38/38 [==============================] - 0s 927us/step - loss: 0.5410 - accuracy: 0.1442 - mae: 0.5410 - pearson_correlation: -0.5578 - euclidean_distance: 0.9178
Epoch 6/200
38/38 [==============================] - 0s 871us/step - loss: 0.5396 - accuracy: 0.1434 - mae: 0.5396 - pearson_correlation: -0.5532 - euclidean_distance: 0.9147
Epoch 7/200
38/38 [==============================] - 0s 910us/step - loss: 0.5352 - accuracy: 0.1359 - mae: 0.5352 - pearson_correlation: -0.5615 - euclidean_distance: 0.9098
Epoch 8/200
38/38 [==============================] - 0s 911us/step - loss: 0.5355 - accuracy: 0.1412 - mae: 0.5355 - pearson_correlation: -0.5595 - euclidean_distance: 0.9083
Epoch 9/200
38/38 [==============================] - 0s 891us/step - loss: 0.5320 - accuracy: 0.1425 - mae: 0.5320 - pearson_correlation: -0.5609 - euclidean_distance: 0.9041
Epoch 10/200
38/38 [==============================] - 0s 908us/step - loss: 0.5307 - accuracy: 0.1363 - mae: 0.5307 - pearson_correlation: -0.5638 - euclidean_distance: 0.9017
Epoch 11/200
38/38 [==============================] - 0s 898us/step - loss: 0.5276 - accuracy: 0.1381 - mae: 0.5276 - pearson_correlation: -0.5637 - euclidean_distance: 0.8982
Epoch 12/200
38/38 [==============================] - 0s 968us/step - loss: 0.5259 - accuracy: 0.1376 - mae: 0.5259 - pearson_correlation: -0.5677 - euclidean_distance: 0.8946
Epoch 13/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5234 - accuracy: 0.1407 - mae: 0.5234 - pearson_correlation: -0.5669 - euclidean_distance: 0.8911
Epoch 14/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5200 - accuracy: 0.1323 - mae: 0.5200 - pearson_correlation: -0.5731 - euclidean_distance: 0.8873
Epoch 15/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5181 - accuracy: 0.1288 - mae: 0.5181 - pearson_correlation: -0.5736 - euclidean_distance: 0.8833
Epoch 16/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5153 - accuracy: 0.1310 - mae: 0.5153 - pearson_correlation: -0.5745 - euclidean_distance: 0.8805
Epoch 17/200
38/38 [==============================] - 0s 991us/step - loss: 0.5126 - accuracy: 0.1301 - mae: 0.5126 - pearson_correlation: -0.5785 - euclidean_distance: 0.8773
Epoch 18/200
38/38 [==============================] - 0s 989us/step - loss: 0.5109 - accuracy: 0.1270 - mae: 0.5109 - pearson_correlation: -0.5793 - euclidean_distance: 0.8740
Epoch 19/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5094 - accuracy: 0.1306 - mae: 0.5094 - pearson_correlation: -0.5779 - euclidean_distance: 0.8707
Epoch 20/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5066 - accuracy: 0.1315 - mae: 0.5066 - pearson_correlation: -0.5786 - euclidean_distance: 0.8682
Epoch 21/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5034 - accuracy: 0.1301 - mae: 0.5034 - pearson_correlation: -0.5817 - euclidean_distance: 0.8639
Epoch 22/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5019 - accuracy: 0.1275 - mae: 0.5019 - pearson_correlation: -0.5867 - euclidean_distance: 0.8618
Epoch 23/200
38/38 [==============================] - 0s 1ms/step - loss: 0.5014 - accuracy: 0.1262 - mae: 0.5014 - pearson_correlation: -0.5849 - euclidean_distance: 0.8596
Epoch 24/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4984 - accuracy: 0.1275 - mae: 0.4984 - pearson_correlation: -0.5864 - euclidean_distance: 0.8557
Epoch 25/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4958 - accuracy: 0.1253 - mae: 0.4958 - pearson_correlation: -0.5904 - euclidean_distance: 0.8527
Epoch 26/200
38/38 [==============================] - 0s 933us/step - loss: 0.4938 - accuracy: 0.1240 - mae: 0.4938 - pearson_correlation: -0.5917 - euclidean_distance: 0.8501
Epoch 27/200
38/38 [==============================] - 0s 921us/step - loss: 0.4918 - accuracy: 0.1284 - mae: 0.4918 - pearson_correlation: -0.5928 - euclidean_distance: 0.8476
Epoch 28/200
38/38 [==============================] - 0s 909us/step - loss: 0.4893 - accuracy: 0.1262 - mae: 0.4893 - pearson_correlation: -0.5940 - euclidean_distance: 0.8435
Epoch 29/200
38/38 [==============================] - 0s 903us/step - loss: 0.4877 - accuracy: 0.1248 - mae: 0.4877 - pearson_correlation: -0.5934 - euclidean_distance: 0.8415
Epoch 30/200
38/38 [==============================] - 0s 904us/step - loss: 0.4841 - accuracy: 0.1240 - mae: 0.4841 - pearson_correlation: -0.5979 - euclidean_distance: 0.8373
Epoch 31/200
38/38 [==============================] - 0s 893us/step - loss: 0.4835 - accuracy: 0.1222 - mae: 0.4835 - pearson_correlation: -0.5975 - euclidean_distance: 0.8350
Epoch 32/200
38/38 [==============================] - 0s 905us/step - loss: 0.4823 - accuracy: 0.1306 - mae: 0.4823 - pearson_correlation: -0.5969 - euclidean_distance: 0.8326
Epoch 33/200
38/38 [==============================] - 0s 906us/step - loss: 0.4782 - accuracy: 0.1262 - mae: 0.4782 - pearson_correlation: -0.6034 - euclidean_distance: 0.8284
Epoch 34/200
38/38 [==============================] - 0s 903us/step - loss: 0.4766 - accuracy: 0.1213 - mae: 0.4766 - pearson_correlation: -0.6004 - euclidean_distance: 0.8258
Epoch 35/200
38/38 [==============================] - 0s 909us/step - loss: 0.4751 - accuracy: 0.1217 - mae: 0.4751 - pearson_correlation: -0.6031 - euclidean_distance: 0.8234
Epoch 36/200
38/38 [==============================] - 0s 903us/step - loss: 0.4737 - accuracy: 0.1191 - mae: 0.4737 - pearson_correlation: -0.6010 - euclidean_distance: 0.8209
Epoch 37/200
38/38 [==============================] - 0s 907us/step - loss: 0.4707 - accuracy: 0.1191 - mae: 0.4707 - pearson_correlation: -0.6068 - euclidean_distance: 0.8172
Epoch 38/200
38/38 [==============================] - 0s 896us/step - loss: 0.4693 - accuracy: 0.1222 - mae: 0.4693 - pearson_correlation: -0.6062 - euclidean_distance: 0.8140
Epoch 39/200
38/38 [==============================] - 0s 900us/step - loss: 0.4677 - accuracy: 0.1200 - mae: 0.4677 - pearson_correlation: -0.6051 - euclidean_distance: 0.8123
Epoch 40/200
38/38 [==============================] - 0s 909us/step - loss: 0.4649 - accuracy: 0.1244 - mae: 0.4649 - pearson_correlation: -0.6079 - euclidean_distance: 0.8090
Epoch 41/200
38/38 [==============================] - 0s 904us/step - loss: 0.4643 - accuracy: 0.1235 - mae: 0.4643 - pearson_correlation: -0.6085 - euclidean_distance: 0.8072
Epoch 42/200
38/38 [==============================] - 0s 901us/step - loss: 0.4619 - accuracy: 0.1222 - mae: 0.4619 - pearson_correlation: -0.6108 - euclidean_distance: 0.8034
Epoch 43/200
38/38 [==============================] - 0s 911us/step - loss: 0.4610 - accuracy: 0.1195 - mae: 0.4610 - pearson_correlation: -0.6096 - euclidean_distance: 0.8011
Epoch 44/200
38/38 [==============================] - 0s 902us/step - loss: 0.4583 - accuracy: 0.1173 - mae: 0.4583 - pearson_correlation: -0.6140 - euclidean_distance: 0.7986
Epoch 45/200
38/38 [==============================] - 0s 944us/step - loss: 0.4563 - accuracy: 0.1209 - mae: 0.4563 - pearson_correlation: -0.6141 - euclidean_distance: 0.7954
Epoch 46/200
38/38 [==============================] - 0s 897us/step - loss: 0.4550 - accuracy: 0.1217 - mae: 0.4550 - pearson_correlation: -0.6106 - euclidean_distance: 0.7928
Epoch 47/200
38/38 [==============================] - 0s 919us/step - loss: 0.4533 - accuracy: 0.1187 - mae: 0.4533 - pearson_correlation: -0.6129 - euclidean_distance: 0.7905
Epoch 48/200
38/38 [==============================] - 0s 907us/step - loss: 0.4518 - accuracy: 0.1191 - mae: 0.4518 - pearson_correlation: -0.6118 - euclidean_distance: 0.7884
Epoch 49/200
38/38 [==============================] - 0s 912us/step - loss: 0.4501 - accuracy: 0.1204 - mae: 0.4501 - pearson_correlation: -0.6151 - euclidean_distance: 0.7854
Epoch 50/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4477 - accuracy: 0.1200 - mae: 0.4477 - pearson_correlation: -0.6114 - euclidean_distance: 0.7826
Epoch 51/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4463 - accuracy: 0.1222 - mae: 0.4463 - pearson_correlation: -0.6157 - euclidean_distance: 0.7806
Epoch 52/200
38/38 [==============================] - 0s 963us/step - loss: 0.4447 - accuracy: 0.1240 - mae: 0.4447 - pearson_correlation: -0.6174 - euclidean_distance: 0.7770
Epoch 53/200
38/38 [==============================] - 0s 946us/step - loss: 0.4428 - accuracy: 0.1240 - mae: 0.4428 - pearson_correlation: -0.6156 - euclidean_distance: 0.7747
Epoch 54/200
38/38 [==============================] - 0s 931us/step - loss: 0.4416 - accuracy: 0.1213 - mae: 0.4416 - pearson_correlation: -0.6191 - euclidean_distance: 0.7726
Epoch 55/200
38/38 [==============================] - 0s 917us/step - loss: 0.4397 - accuracy: 0.1191 - mae: 0.4397 - pearson_correlation: -0.6186 - euclidean_distance: 0.7693
Epoch 56/200
38/38 [==============================] - 0s 967us/step - loss: 0.4371 - accuracy: 0.1204 - mae: 0.4371 - pearson_correlation: -0.6140 - euclidean_distance: 0.7659
Epoch 57/200
38/38 [==============================] - 0s 918us/step - loss: 0.4347 - accuracy: 0.1191 - mae: 0.4347 - pearson_correlation: -0.6240 - euclidean_distance: 0.7634
Epoch 58/200
38/38 [==============================] - 0s 901us/step - loss: 0.4348 - accuracy: 0.1187 - mae: 0.4348 - pearson_correlation: -0.6158 - euclidean_distance: 0.7614
Epoch 59/200
38/38 [==============================] - 0s 911us/step - loss: 0.4324 - accuracy: 0.1213 - mae: 0.4324 - pearson_correlation: -0.6172 - euclidean_distance: 0.7591
Epoch 60/200
38/38 [==============================] - 0s 909us/step - loss: 0.4306 - accuracy: 0.1178 - mae: 0.4306 - pearson_correlation: -0.6206 - euclidean_distance: 0.7564
Epoch 61/200
38/38 [==============================] - 0s 913us/step - loss: 0.4303 - accuracy: 0.1200 - mae: 0.4303 - pearson_correlation: -0.6199 - euclidean_distance: 0.7553
Epoch 62/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4278 - accuracy: 0.1191 - mae: 0.4278 - pearson_correlation: -0.6187 - euclidean_distance: 0.7517
Epoch 63/200
38/38 [==============================] - 0s 999us/step - loss: 0.4271 - accuracy: 0.1191 - mae: 0.4271 - pearson_correlation: -0.6156 - euclidean_distance: 0.7496
Epoch 64/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4252 - accuracy: 0.1213 - mae: 0.4252 - pearson_correlation: -0.6202 - euclidean_distance: 0.7480
Epoch 65/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4242 - accuracy: 0.1169 - mae: 0.4242 - pearson_correlation: -0.6225 - euclidean_distance: 0.7449
Epoch 66/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4219 - accuracy: 0.1173 - mae: 0.4219 - pearson_correlation: -0.6193 - euclidean_distance: 0.7422
Epoch 67/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4200 - accuracy: 0.1200 - mae: 0.4200 - pearson_correlation: -0.6197 - euclidean_distance: 0.7399
Epoch 68/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4178 - accuracy: 0.1195 - mae: 0.4178 - pearson_correlation: -0.6219 - euclidean_distance: 0.7368
Epoch 69/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4170 - accuracy: 0.1209 - mae: 0.4170 - pearson_correlation: -0.6200 - euclidean_distance: 0.7353
Epoch 70/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4152 - accuracy: 0.1187 - mae: 0.4152 - pearson_correlation: -0.6207 - euclidean_distance: 0.7325
Epoch 71/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4147 - accuracy: 0.1182 - mae: 0.4147 - pearson_correlation: -0.6220 - euclidean_distance: 0.7306
Epoch 72/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4135 - accuracy: 0.1182 - mae: 0.4135 - pearson_correlation: -0.6185 - euclidean_distance: 0.7282
Epoch 73/200
38/38 [==============================] - 0s 942us/step - loss: 0.4125 - accuracy: 0.1217 - mae: 0.4125 - pearson_correlation: -0.6164 - euclidean_distance: 0.7259
Epoch 74/200
38/38 [==============================] - 0s 915us/step - loss: 0.4108 - accuracy: 0.1213 - mae: 0.4108 - pearson_correlation: -0.6204 - euclidean_distance: 0.7236
Epoch 75/200
38/38 [==============================] - 0s 904us/step - loss: 0.4101 - accuracy: 0.1165 - mae: 0.4101 - pearson_correlation: -0.6162 - euclidean_distance: 0.7224
Epoch 76/200
38/38 [==============================] - 0s 924us/step - loss: 0.4078 - accuracy: 0.1191 - mae: 0.4078 - pearson_correlation: -0.6175 - euclidean_distance: 0.7192
Epoch 77/200
38/38 [==============================] - 0s 988us/step - loss: 0.4076 - accuracy: 0.1204 - mae: 0.4076 - pearson_correlation: -0.6151 - euclidean_distance: 0.7174
Epoch 78/200
38/38 [==============================] - 0s 941us/step - loss: 0.4057 - accuracy: 0.1253 - mae: 0.4057 - pearson_correlation: -0.6141 - euclidean_distance: 0.7157
Epoch 79/200
38/38 [==============================] - 0s 909us/step - loss: 0.4034 - accuracy: 0.1209 - mae: 0.4034 - pearson_correlation: -0.6206 - euclidean_distance: 0.7124
Epoch 80/200
38/38 [==============================] - 0s 927us/step - loss: 0.4037 - accuracy: 0.1240 - mae: 0.4037 - pearson_correlation: -0.6158 - euclidean_distance: 0.7117
Epoch 81/200
38/38 [==============================] - 0s 916us/step - loss: 0.4010 - accuracy: 0.1191 - mae: 0.4010 - pearson_correlation: -0.6149 - euclidean_distance: 0.7084
Epoch 82/200
38/38 [==============================] - 0s 909us/step - loss: 0.3995 - accuracy: 0.1182 - mae: 0.3995 - pearson_correlation: -0.6195 - euclidean_distance: 0.7062
Epoch 83/200
38/38 [==============================] - 0s 950us/step - loss: 0.3992 - accuracy: 0.1195 - mae: 0.3992 - pearson_correlation: -0.6151 - euclidean_distance: 0.7042
Epoch 84/200
38/38 [==============================] - 0s 922us/step - loss: 0.3982 - accuracy: 0.1200 - mae: 0.3982 - pearson_correlation: -0.6201 - euclidean_distance: 0.7029
Epoch 85/200
38/38 [==============================] - 0s 896us/step - loss: 0.3946 - accuracy: 0.1204 - mae: 0.3946 - pearson_correlation: -0.6167 - euclidean_distance: 0.6996
Epoch 86/200
38/38 [==============================] - 0s 937us/step - loss: 0.3945 - accuracy: 0.1244 - mae: 0.3945 - pearson_correlation: -0.6095 - euclidean_distance: 0.6977
Epoch 87/200
38/38 [==============================] - 0s 918us/step - loss: 0.3942 - accuracy: 0.1213 - mae: 0.3942 - pearson_correlation: -0.6130 - euclidean_distance: 0.6966
Epoch 88/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3914 - accuracy: 0.1213 - mae: 0.3914 - pearson_correlation: -0.6139 - euclidean_distance: 0.6944
Epoch 89/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3898 - accuracy: 0.1187 - mae: 0.3898 - pearson_correlation: -0.6173 - euclidean_distance: 0.6916
Epoch 90/200
38/38 [==============================] - 0s 977us/step - loss: 0.3905 - accuracy: 0.1200 - mae: 0.3905 - pearson_correlation: -0.6123 - euclidean_distance: 0.6912
Epoch 91/200
38/38 [==============================] - 0s 988us/step - loss: 0.3891 - accuracy: 0.1204 - mae: 0.3891 - pearson_correlation: -0.6094 - euclidean_distance: 0.6880
Epoch 92/200
38/38 [==============================] - 0s 925us/step - loss: 0.3876 - accuracy: 0.1178 - mae: 0.3876 - pearson_correlation: -0.6113 - euclidean_distance: 0.6868
Epoch 93/200
38/38 [==============================] - 0s 928us/step - loss: 0.3859 - accuracy: 0.1248 - mae: 0.3859 - pearson_correlation: -0.6064 - euclidean_distance: 0.6834
Epoch 94/200
38/38 [==============================] - 0s 925us/step - loss: 0.3843 - accuracy: 0.1244 - mae: 0.3843 - pearson_correlation: -0.6065 - euclidean_distance: 0.6819
Epoch 95/200
38/38 [==============================] - 0s 931us/step - loss: 0.3830 - accuracy: 0.1240 - mae: 0.3830 - pearson_correlation: -0.6052 - euclidean_distance: 0.6795
Epoch 96/200
38/38 [==============================] - 0s 947us/step - loss: 0.3830 - accuracy: 0.1200 - mae: 0.3830 - pearson_correlation: -0.6102 - euclidean_distance: 0.6790
Epoch 97/200
38/38 [==============================] - 0s 906us/step - loss: 0.3819 - accuracy: 0.1244 - mae: 0.3819 - pearson_correlation: -0.6020 - euclidean_distance: 0.6767
Epoch 98/200
38/38 [==============================] - 0s 898us/step - loss: 0.3803 - accuracy: 0.1253 - mae: 0.3803 - pearson_correlation: -0.6003 - euclidean_distance: 0.6746
Epoch 99/200
38/38 [==============================] - 0s 892us/step - loss: 0.3787 - accuracy: 0.1200 - mae: 0.3787 - pearson_correlation: -0.5994 - euclidean_distance: 0.6723
Epoch 100/200
38/38 [==============================] - 0s 897us/step - loss: 0.3778 - accuracy: 0.1244 - mae: 0.3778 - pearson_correlation: -0.6005 - euclidean_distance: 0.6701
Epoch 101/200
38/38 [==============================] - 0s 909us/step - loss: 0.3781 - accuracy: 0.1226 - mae: 0.3781 - pearson_correlation: -0.6042 - euclidean_distance: 0.6697
Epoch 102/200
38/38 [==============================] - 0s 922us/step - loss: 0.3773 - accuracy: 0.1257 - mae: 0.3773 - pearson_correlation: -0.5967 - euclidean_distance: 0.6680
Epoch 103/200
38/38 [==============================] - 0s 922us/step - loss: 0.3745 - accuracy: 0.1248 - mae: 0.3745 - pearson_correlation: -0.5993 - euclidean_distance: 0.6653
Epoch 104/200
38/38 [==============================] - 0s 916us/step - loss: 0.3727 - accuracy: 0.1248 - mae: 0.3727 - pearson_correlation: -0.5884 - euclidean_distance: 0.6627
Epoch 105/200
38/38 [==============================] - 0s 907us/step - loss: 0.3710 - accuracy: 0.1248 - mae: 0.3710 - pearson_correlation: -0.5946 - euclidean_distance: 0.6609
Epoch 106/200
38/38 [==============================] - 0s 909us/step - loss: 0.3714 - accuracy: 0.1266 - mae: 0.3714 - pearson_correlation: -0.5960 - euclidean_distance: 0.6596
Epoch 107/200
38/38 [==============================] - 0s 934us/step - loss: 0.3694 - accuracy: 0.1323 - mae: 0.3694 - pearson_correlation: -0.5878 - euclidean_distance: 0.6567
Epoch 108/200
38/38 [==============================] - 0s 948us/step - loss: 0.3680 - accuracy: 0.1288 - mae: 0.3680 - pearson_correlation: -0.5908 - euclidean_distance: 0.6550
Epoch 109/200
38/38 [==============================] - 0s 934us/step - loss: 0.3684 - accuracy: 0.1301 - mae: 0.3684 - pearson_correlation: -0.5851 - euclidean_distance: 0.6538
Epoch 110/200
38/38 [==============================] - 0s 937us/step - loss: 0.3680 - accuracy: 0.1284 - mae: 0.3680 - pearson_correlation: -0.5832 - euclidean_distance: 0.6529
Epoch 111/200
38/38 [==============================] - 0s 944us/step - loss: 0.3656 - accuracy: 0.1275 - mae: 0.3656 - pearson_correlation: -0.5875 - euclidean_distance: 0.6502
Epoch 112/200
38/38 [==============================] - 0s 944us/step - loss: 0.3637 - accuracy: 0.1306 - mae: 0.3637 - pearson_correlation: -0.5792 - euclidean_distance: 0.6479
Epoch 113/200
38/38 [==============================] - 0s 950us/step - loss: 0.3643 - accuracy: 0.1306 - mae: 0.3643 - pearson_correlation: -0.5737 - euclidean_distance: 0.6461
Epoch 114/200
38/38 [==============================] - 0s 925us/step - loss: 0.3614 - accuracy: 0.1332 - mae: 0.3614 - pearson_correlation: -0.5779 - euclidean_distance: 0.6434
Epoch 115/200
38/38 [==============================] - 0s 905us/step - loss: 0.3608 - accuracy: 0.1359 - mae: 0.3608 - pearson_correlation: -0.5726 - euclidean_distance: 0.6413
Epoch 116/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3596 - accuracy: 0.1332 - mae: 0.3596 - pearson_correlation: -0.5693 - euclidean_distance: 0.6395
Epoch 117/200
38/38 [==============================] - 0s 907us/step - loss: 0.3603 - accuracy: 0.1288 - mae: 0.3603 - pearson_correlation: -0.5680 - euclidean_distance: 0.6399
Epoch 118/200
38/38 [==============================] - 0s 908us/step - loss: 0.3590 - accuracy: 0.1288 - mae: 0.3590 - pearson_correlation: -0.5652 - euclidean_distance: 0.6368
Epoch 119/200
38/38 [==============================] - 0s 907us/step - loss: 0.3563 - accuracy: 0.1363 - mae: 0.3563 - pearson_correlation: -0.5734 - euclidean_distance: 0.6349
Epoch 120/200
38/38 [==============================] - 0s 900us/step - loss: 0.3574 - accuracy: 0.1332 - mae: 0.3574 - pearson_correlation: -0.5574 - euclidean_distance: 0.6330
Epoch 121/200
38/38 [==============================] - 0s 920us/step - loss: 0.3548 - accuracy: 0.1350 - mae: 0.3548 - pearson_correlation: -0.5555 - euclidean_distance: 0.6305
Epoch 122/200
38/38 [==============================] - 0s 903us/step - loss: 0.3528 - accuracy: 0.1354 - mae: 0.3528 - pearson_correlation: -0.5549 - euclidean_distance: 0.6290
Epoch 123/200
38/38 [==============================] - 0s 910us/step - loss: 0.3526 - accuracy: 0.1328 - mae: 0.3526 - pearson_correlation: -0.5597 - euclidean_distance: 0.6278
Epoch 124/200
38/38 [==============================] - 0s 913us/step - loss: 0.3505 - accuracy: 0.1385 - mae: 0.3505 - pearson_correlation: -0.5491 - euclidean_distance: 0.6250
Epoch 125/200
38/38 [==============================] - 0s 904us/step - loss: 0.3507 - accuracy: 0.1341 - mae: 0.3507 - pearson_correlation: -0.5506 - euclidean_distance: 0.6246
Epoch 126/200
38/38 [==============================] - 0s 918us/step - loss: 0.3497 - accuracy: 0.1403 - mae: 0.3497 - pearson_correlation: -0.5451 - euclidean_distance: 0.6217
Epoch 127/200
38/38 [==============================] - 0s 931us/step - loss: 0.3480 - accuracy: 0.1412 - mae: 0.3480 - pearson_correlation: -0.5434 - euclidean_distance: 0.6194
Epoch 128/200
38/38 [==============================] - 0s 948us/step - loss: 0.3469 - accuracy: 0.1394 - mae: 0.3469 - pearson_correlation: -0.5408 - euclidean_distance: 0.6182
Epoch 129/200
38/38 [==============================] - 0s 934us/step - loss: 0.3464 - accuracy: 0.1407 - mae: 0.3464 - pearson_correlation: -0.5414 - euclidean_distance: 0.6171
Epoch 130/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3446 - accuracy: 0.1412 - mae: 0.3446 - pearson_correlation: -0.5352 - euclidean_distance: 0.6147
Epoch 131/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3438 - accuracy: 0.1442 - mae: 0.3438 - pearson_correlation: -0.5367 - euclidean_distance: 0.6129
Epoch 132/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3432 - accuracy: 0.1416 - mae: 0.3432 - pearson_correlation: -0.5317 - euclidean_distance: 0.6119
Epoch 133/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3417 - accuracy: 0.1407 - mae: 0.3417 - pearson_correlation: -0.5288 - euclidean_distance: 0.6097
Epoch 134/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3388 - accuracy: 0.1460 - mae: 0.3388 - pearson_correlation: -0.5216 - euclidean_distance: 0.6056
Epoch 135/200
38/38 [==============================] - 0s 924us/step - loss: 0.3407 - accuracy: 0.1425 - mae: 0.3407 - pearson_correlation: -0.5213 - euclidean_distance: 0.6065
Epoch 136/200
38/38 [==============================] - 0s 903us/step - loss: 0.3386 - accuracy: 0.1460 - mae: 0.3386 - pearson_correlation: -0.5194 - euclidean_distance: 0.6042
Epoch 137/200
38/38 [==============================] - 0s 893us/step - loss: 0.3377 - accuracy: 0.1478 - mae: 0.3377 - pearson_correlation: -0.5101 - euclidean_distance: 0.6016
Epoch 138/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3356 - accuracy: 0.1504 - mae: 0.3356 - pearson_correlation: -0.5114 - euclidean_distance: 0.6000
Epoch 139/200
38/38 [==============================] - 0s 943us/step - loss: 0.3365 - accuracy: 0.1473 - mae: 0.3365 - pearson_correlation: -0.5134 - euclidean_distance: 0.5996
Epoch 140/200
38/38 [==============================] - 0s 918us/step - loss: 0.3339 - accuracy: 0.1473 - mae: 0.3339 - pearson_correlation: -0.5082 - euclidean_distance: 0.5961
Epoch 141/200
38/38 [==============================] - 0s 895us/step - loss: 0.3339 - accuracy: 0.1429 - mae: 0.3339 - pearson_correlation: -0.5072 - euclidean_distance: 0.5952
Epoch 142/200
38/38 [==============================] - 0s 893us/step - loss: 0.3327 - accuracy: 0.1491 - mae: 0.3327 - pearson_correlation: -0.4985 - euclidean_distance: 0.5937
Epoch 143/200
38/38 [==============================] - 0s 937us/step - loss: 0.3327 - accuracy: 0.1464 - mae: 0.3327 - pearson_correlation: -0.4992 - euclidean_distance: 0.5922
Epoch 144/200
38/38 [==============================] - 0s 895us/step - loss: 0.3315 - accuracy: 0.1491 - mae: 0.3315 - pearson_correlation: -0.4915 - euclidean_distance: 0.5898
Epoch 145/200
38/38 [==============================] - 0s 953us/step - loss: 0.3298 - accuracy: 0.1522 - mae: 0.3298 - pearson_correlation: -0.4915 - euclidean_distance: 0.5880
Epoch 146/200
38/38 [==============================] - 0s 921us/step - loss: 0.3280 - accuracy: 0.1557 - mae: 0.3280 - pearson_correlation: -0.4882 - euclidean_distance: 0.5856
Epoch 147/200
38/38 [==============================] - 0s 891us/step - loss: 0.3276 - accuracy: 0.1588 - mae: 0.3276 - pearson_correlation: -0.4827 - euclidean_distance: 0.5849
Epoch 148/200
38/38 [==============================] - 0s 880us/step - loss: 0.3275 - accuracy: 0.1557 - mae: 0.3275 - pearson_correlation: -0.4824 - euclidean_distance: 0.5838
Epoch 149/200
38/38 [==============================] - 0s 874us/step - loss: 0.3269 - accuracy: 0.1566 - mae: 0.3269 - pearson_correlation: -0.4784 - euclidean_distance: 0.5821
Epoch 150/200
38/38 [==============================] - 0s 872us/step - loss: 0.3242 - accuracy: 0.1535 - mae: 0.3242 - pearson_correlation: -0.4717 - euclidean_distance: 0.5794
Epoch 151/200
38/38 [==============================] - 0s 872us/step - loss: 0.3243 - accuracy: 0.1579 - mae: 0.3243 - pearson_correlation: -0.4769 - euclidean_distance: 0.5779
Epoch 152/200
38/38 [==============================] - 0s 922us/step - loss: 0.3231 - accuracy: 0.1557 - mae: 0.3231 - pearson_correlation: -0.4680 - euclidean_distance: 0.5763
Epoch 153/200
38/38 [==============================] - 0s 919us/step - loss: 0.3228 - accuracy: 0.1584 - mae: 0.3228 - pearson_correlation: -0.4677 - euclidean_distance: 0.5749
Epoch 154/200
38/38 [==============================] - 0s 923us/step - loss: 0.3232 - accuracy: 0.1579 - mae: 0.3232 - pearson_correlation: -0.4611 - euclidean_distance: 0.5754
Epoch 155/200
38/38 [==============================] - 0s 915us/step - loss: 0.3207 - accuracy: 0.1601 - mae: 0.3207 - pearson_correlation: -0.4586 - euclidean_distance: 0.5724
Epoch 156/200
38/38 [==============================] - 0s 912us/step - loss: 0.3192 - accuracy: 0.1614 - mae: 0.3192 - pearson_correlation: -0.4589 - euclidean_distance: 0.5699
Epoch 157/200
38/38 [==============================] - 0s 908us/step - loss: 0.3184 - accuracy: 0.1632 - mae: 0.3184 - pearson_correlation: -0.4491 - euclidean_distance: 0.5684
Epoch 158/200
38/38 [==============================] - 0s 908us/step - loss: 0.3174 - accuracy: 0.1623 - mae: 0.3174 - pearson_correlation: -0.4519 - euclidean_distance: 0.5666
Epoch 159/200
38/38 [==============================] - 0s 900us/step - loss: 0.3173 - accuracy: 0.1628 - mae: 0.3173 - pearson_correlation: -0.4442 - euclidean_distance: 0.5653
Epoch 160/200
38/38 [==============================] - 0s 951us/step - loss: 0.3143 - accuracy: 0.1623 - mae: 0.3143 - pearson_correlation: -0.4509 - euclidean_distance: 0.5635
Epoch 161/200
38/38 [==============================] - 0s 919us/step - loss: 0.3141 - accuracy: 0.1650 - mae: 0.3141 - pearson_correlation: -0.4373 - euclidean_distance: 0.5617
Epoch 162/200
38/38 [==============================] - 0s 881us/step - loss: 0.3137 - accuracy: 0.1632 - mae: 0.3137 - pearson_correlation: -0.4364 - euclidean_distance: 0.5595
Epoch 163/200
38/38 [==============================] - 0s 901us/step - loss: 0.3136 - accuracy: 0.1632 - mae: 0.3136 - pearson_correlation: -0.4313 - euclidean_distance: 0.5584
Epoch 164/200
38/38 [==============================] - 0s 918us/step - loss: 0.3111 - accuracy: 0.1614 - mae: 0.3111 - pearson_correlation: -0.4354 - euclidean_distance: 0.5565
Epoch 165/200
38/38 [==============================] - 0s 904us/step - loss: 0.3112 - accuracy: 0.1707 - mae: 0.3112 - pearson_correlation: -0.4276 - euclidean_distance: 0.5554
Epoch 166/200
38/38 [==============================] - 0s 913us/step - loss: 0.3110 - accuracy: 0.1694 - mae: 0.3110 - pearson_correlation: -0.4295 - euclidean_distance: 0.5545
Epoch 167/200
38/38 [==============================] - 0s 906us/step - loss: 0.3104 - accuracy: 0.1676 - mae: 0.3104 - pearson_correlation: -0.4151 - euclidean_distance: 0.5537
Epoch 168/200
38/38 [==============================] - 0s 900us/step - loss: 0.3085 - accuracy: 0.1654 - mae: 0.3085 - pearson_correlation: -0.4193 - euclidean_distance: 0.5511
Epoch 169/200
38/38 [==============================] - 0s 908us/step - loss: 0.3095 - accuracy: 0.1698 - mae: 0.3095 - pearson_correlation: -0.4145 - euclidean_distance: 0.5509
Epoch 170/200
38/38 [==============================] - 0s 907us/step - loss: 0.3086 - accuracy: 0.1676 - mae: 0.3086 - pearson_correlation: -0.4085 - euclidean_distance: 0.5489
Epoch 171/200
38/38 [==============================] - 0s 906us/step - loss: 0.3049 - accuracy: 0.1694 - mae: 0.3049 - pearson_correlation: -0.4094 - euclidean_distance: 0.5458
Epoch 172/200
38/38 [==============================] - 0s 908us/step - loss: 0.3061 - accuracy: 0.1685 - mae: 0.3061 - pearson_correlation: -0.4074 - euclidean_distance: 0.5455
Epoch 173/200
38/38 [==============================] - 0s 907us/step - loss: 0.3044 - accuracy: 0.1707 - mae: 0.3044 - pearson_correlation: -0.4039 - euclidean_distance: 0.5435
Epoch 174/200
38/38 [==============================] - 0s 904us/step - loss: 0.3036 - accuracy: 0.1689 - mae: 0.3036 - pearson_correlation: -0.4014 - euclidean_distance: 0.5418
Epoch 175/200
38/38 [==============================] - 0s 909us/step - loss: 0.3029 - accuracy: 0.1791 - mae: 0.3029 - pearson_correlation: -0.3964 - euclidean_distance: 0.5402
Epoch 176/200
38/38 [==============================] - 0s 910us/step - loss: 0.3026 - accuracy: 0.1729 - mae: 0.3026 - pearson_correlation: -0.3954 - euclidean_distance: 0.5394
Epoch 177/200
38/38 [==============================] - 0s 890us/step - loss: 0.3021 - accuracy: 0.1773 - mae: 0.3021 - pearson_correlation: -0.3890 - euclidean_distance: 0.5377
Epoch 178/200
38/38 [==============================] - 0s 903us/step - loss: 0.3016 - accuracy: 0.1751 - mae: 0.3016 - pearson_correlation: -0.3875 - euclidean_distance: 0.5368
Epoch 179/200
38/38 [==============================] - 0s 901us/step - loss: 0.3018 - accuracy: 0.1787 - mae: 0.3018 - pearson_correlation: -0.3818 - euclidean_distance: 0.5357
Epoch 180/200
38/38 [==============================] - 0s 931us/step - loss: 0.2996 - accuracy: 0.1742 - mae: 0.2996 - pearson_correlation: -0.3852 - euclidean_distance: 0.5338
Epoch 181/200
38/38 [==============================] - 0s 959us/step - loss: 0.2984 - accuracy: 0.1835 - mae: 0.2984 - pearson_correlation: -0.3759 - euclidean_distance: 0.5318
Epoch 182/200
38/38 [==============================] - 0s 903us/step - loss: 0.2972 - accuracy: 0.1800 - mae: 0.2972 - pearson_correlation: -0.3667 - euclidean_distance: 0.5293
Epoch 183/200
38/38 [==============================] - 0s 904us/step - loss: 0.2964 - accuracy: 0.1839 - mae: 0.2964 - pearson_correlation: -0.3705 - euclidean_distance: 0.5288
Epoch 184/200
38/38 [==============================] - 0s 935us/step - loss: 0.2955 - accuracy: 0.1844 - mae: 0.2955 - pearson_correlation: -0.3690 - euclidean_distance: 0.5273
Epoch 185/200
38/38 [==============================] - 0s 905us/step - loss: 0.2956 - accuracy: 0.1813 - mae: 0.2956 - pearson_correlation: -0.3667 - euclidean_distance: 0.5265
Epoch 186/200
38/38 [==============================] - 0s 917us/step - loss: 0.2951 - accuracy: 0.1831 - mae: 0.2951 - pearson_correlation: -0.3614 - euclidean_distance: 0.5250
Epoch 187/200
38/38 [==============================] - 0s 900us/step - loss: 0.2936 - accuracy: 0.1875 - mae: 0.2936 - pearson_correlation: -0.3569 - euclidean_distance: 0.5229
Epoch 188/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2923 - accuracy: 0.1870 - mae: 0.2923 - pearson_correlation: -0.3447 - euclidean_distance: 0.5210
Epoch 189/200
38/38 [==============================] - 0s 959us/step - loss: 0.2931 - accuracy: 0.1888 - mae: 0.2931 - pearson_correlation: -0.3503 - euclidean_distance: 0.5213
Epoch 190/200
38/38 [==============================] - 0s 903us/step - loss: 0.2919 - accuracy: 0.1892 - mae: 0.2919 - pearson_correlation: -0.3471 - euclidean_distance: 0.5190
Epoch 191/200
38/38 [==============================] - 0s 905us/step - loss: 0.2907 - accuracy: 0.1981 - mae: 0.2907 - pearson_correlation: -0.3447 - euclidean_distance: 0.5172
Epoch 192/200
38/38 [==============================] - 0s 901us/step - loss: 0.2908 - accuracy: 0.1959 - mae: 0.2908 - pearson_correlation: -0.3363 - euclidean_distance: 0.5169
Epoch 193/200
38/38 [==============================] - 0s 899us/step - loss: 0.2898 - accuracy: 0.2042 - mae: 0.2898 - pearson_correlation: -0.3318 - euclidean_distance: 0.5146
Epoch 194/200
38/38 [==============================] - 0s 898us/step - loss: 0.2895 - accuracy: 0.1963 - mae: 0.2895 - pearson_correlation: -0.3352 - euclidean_distance: 0.5140
Epoch 195/200
38/38 [==============================] - 0s 902us/step - loss: 0.2878 - accuracy: 0.1994 - mae: 0.2878 - pearson_correlation: -0.3271 - euclidean_distance: 0.5124
Epoch 196/200
38/38 [==============================] - 0s 908us/step - loss: 0.2879 - accuracy: 0.2042 - mae: 0.2879 - pearson_correlation: -0.3260 - euclidean_distance: 0.5110
Epoch 197/200
38/38 [==============================] - 0s 910us/step - loss: 0.2852 - accuracy: 0.2069 - mae: 0.2852 - pearson_correlation: -0.3291 - euclidean_distance: 0.5081
Epoch 198/200
38/38 [==============================] - 0s 902us/step - loss: 0.2851 - accuracy: 0.2056 - mae: 0.2851 - pearson_correlation: -0.3144 - euclidean_distance: 0.5078
Epoch 199/200
38/38 [==============================] - 0s 906us/step - loss: 0.2849 - accuracy: 0.2034 - mae: 0.2849 - pearson_correlation: -0.3132 - euclidean_distance: 0.5062
Epoch 200/200
38/38 [==============================] - 0s 915us/step - loss: 0.2841 - accuracy: 0.2113 - mae: 0.2841 - pearson_correlation: -0.3103 - euclidean_distance: 0.5047
19/19 [==============================] - 0s 588us/step
Epoch 1/200
38/38 [==============================] - 1s 919us/step - loss: 0.3226 - accuracy: 0.7380 - mae: 0.3226 - pearson_correlation: 0.2339 - euclidean_distance: 0.5003
Epoch 2/200
38/38 [==============================] - 0s 882us/step - loss: 0.3203 - accuracy: 0.7331 - mae: 0.3203 - pearson_correlation: 0.2367 - euclidean_distance: 0.4966
Epoch 3/200
38/38 [==============================] - 0s 853us/step - loss: 0.3167 - accuracy: 0.7221 - mae: 0.3167 - pearson_correlation: 0.2399 - euclidean_distance: 0.4918
Epoch 4/200
38/38 [==============================] - 0s 915us/step - loss: 0.3156 - accuracy: 0.7318 - mae: 0.3156 - pearson_correlation: 0.2403 - euclidean_distance: 0.4902
Epoch 5/200
38/38 [==============================] - 0s 899us/step - loss: 0.3109 - accuracy: 0.7336 - mae: 0.3109 - pearson_correlation: 0.2450 - euclidean_distance: 0.4835
Epoch 6/200
38/38 [==============================] - 0s 911us/step - loss: 0.3052 - accuracy: 0.7406 - mae: 0.3052 - pearson_correlation: 0.2525 - euclidean_distance: 0.4750
Epoch 7/200
38/38 [==============================] - 0s 904us/step - loss: 0.3065 - accuracy: 0.7327 - mae: 0.3065 - pearson_correlation: 0.2474 - euclidean_distance: 0.4772
Epoch 8/200
38/38 [==============================] - 0s 921us/step - loss: 0.3021 - accuracy: 0.7349 - mae: 0.3021 - pearson_correlation: 0.2497 - euclidean_distance: 0.4711
Epoch 9/200
38/38 [==============================] - 0s 921us/step - loss: 0.2982 - accuracy: 0.7380 - mae: 0.2982 - pearson_correlation: 0.2515 - euclidean_distance: 0.4655
Epoch 10/200
38/38 [==============================] - 0s 898us/step - loss: 0.2960 - accuracy: 0.7397 - mae: 0.2960 - pearson_correlation: 0.2560 - euclidean_distance: 0.4619
Epoch 11/200
38/38 [==============================] - 0s 903us/step - loss: 0.2927 - accuracy: 0.7437 - mae: 0.2927 - pearson_correlation: 0.2562 - euclidean_distance: 0.4574
Epoch 12/200
38/38 [==============================] - 0s 907us/step - loss: 0.2893 - accuracy: 0.7406 - mae: 0.2893 - pearson_correlation: 0.2597 - euclidean_distance: 0.4526
Epoch 13/200
38/38 [==============================] - 0s 905us/step - loss: 0.2872 - accuracy: 0.7402 - mae: 0.2872 - pearson_correlation: 0.2612 - euclidean_distance: 0.4495
Epoch 14/200
38/38 [==============================] - 0s 912us/step - loss: 0.2854 - accuracy: 0.7596 - mae: 0.2854 - pearson_correlation: 0.2638 - euclidean_distance: 0.4467
Epoch 15/200
38/38 [==============================] - 0s 904us/step - loss: 0.2821 - accuracy: 0.7499 - mae: 0.2821 - pearson_correlation: 0.2682 - euclidean_distance: 0.4425
Epoch 16/200
38/38 [==============================] - 0s 912us/step - loss: 0.2774 - accuracy: 0.7490 - mae: 0.2774 - pearson_correlation: 0.2692 - euclidean_distance: 0.4358
Epoch 17/200
38/38 [==============================] - 0s 905us/step - loss: 0.2771 - accuracy: 0.7565 - mae: 0.2771 - pearson_correlation: 0.2698 - euclidean_distance: 0.4350
Epoch 18/200
38/38 [==============================] - 0s 911us/step - loss: 0.2723 - accuracy: 0.7503 - mae: 0.2723 - pearson_correlation: 0.2729 - euclidean_distance: 0.4286
Epoch 19/200
38/38 [==============================] - 0s 908us/step - loss: 0.2713 - accuracy: 0.7552 - mae: 0.2713 - pearson_correlation: 0.2749 - euclidean_distance: 0.4265
Epoch 20/200
38/38 [==============================] - 0s 910us/step - loss: 0.2669 - accuracy: 0.7596 - mae: 0.2669 - pearson_correlation: 0.2730 - euclidean_distance: 0.4201
Epoch 21/200
38/38 [==============================] - 0s 908us/step - loss: 0.2640 - accuracy: 0.7609 - mae: 0.2640 - pearson_correlation: 0.2798 - euclidean_distance: 0.4163
Epoch 22/200
38/38 [==============================] - 0s 906us/step - loss: 0.2647 - accuracy: 0.7600 - mae: 0.2647 - pearson_correlation: 0.2818 - euclidean_distance: 0.4174
Epoch 23/200
38/38 [==============================] - 0s 901us/step - loss: 0.2595 - accuracy: 0.7631 - mae: 0.2595 - pearson_correlation: 0.2851 - euclidean_distance: 0.4095
Epoch 24/200
38/38 [==============================] - 0s 881us/step - loss: 0.2550 - accuracy: 0.7680 - mae: 0.2550 - pearson_correlation: 0.2882 - euclidean_distance: 0.4041
Epoch 25/200
38/38 [==============================] - 0s 909us/step - loss: 0.2519 - accuracy: 0.7697 - mae: 0.2519 - pearson_correlation: 0.2977 - euclidean_distance: 0.3988
Epoch 26/200
38/38 [==============================] - 0s 904us/step - loss: 0.2505 - accuracy: 0.7653 - mae: 0.2505 - pearson_correlation: 0.2920 - euclidean_distance: 0.3957
Epoch 27/200
38/38 [==============================] - 0s 900us/step - loss: 0.2485 - accuracy: 0.7640 - mae: 0.2485 - pearson_correlation: 0.2942 - euclidean_distance: 0.3941
Epoch 28/200
38/38 [==============================] - 0s 907us/step - loss: 0.2448 - accuracy: 0.7759 - mae: 0.2448 - pearson_correlation: 0.3002 - euclidean_distance: 0.3879
Epoch 29/200
38/38 [==============================] - 0s 896us/step - loss: 0.2426 - accuracy: 0.7786 - mae: 0.2426 - pearson_correlation: 0.3031 - euclidean_distance: 0.3855
Epoch 30/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2395 - accuracy: 0.7830 - mae: 0.2395 - pearson_correlation: 0.3072 - euclidean_distance: 0.3812
Epoch 31/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2361 - accuracy: 0.7816 - mae: 0.2361 - pearson_correlation: 0.3050 - euclidean_distance: 0.3768
Epoch 32/200
38/38 [==============================] - 0s 2ms/step - loss: 0.2350 - accuracy: 0.7803 - mae: 0.2350 - pearson_correlation: 0.3103 - euclidean_distance: 0.3735
Epoch 33/200
38/38 [==============================] - 0s 926us/step - loss: 0.2331 - accuracy: 0.7896 - mae: 0.2331 - pearson_correlation: 0.3142 - euclidean_distance: 0.3702
Epoch 34/200
38/38 [==============================] - 0s 900us/step - loss: 0.2294 - accuracy: 0.7874 - mae: 0.2294 - pearson_correlation: 0.3168 - euclidean_distance: 0.3665
Epoch 35/200
38/38 [==============================] - 0s 909us/step - loss: 0.2288 - accuracy: 0.7940 - mae: 0.2288 - pearson_correlation: 0.3216 - euclidean_distance: 0.3643
Epoch 36/200
38/38 [==============================] - 0s 918us/step - loss: 0.2251 - accuracy: 0.7975 - mae: 0.2251 - pearson_correlation: 0.3250 - euclidean_distance: 0.3589
Epoch 37/200
38/38 [==============================] - 0s 920us/step - loss: 0.2248 - accuracy: 0.8006 - mae: 0.2248 - pearson_correlation: 0.3279 - euclidean_distance: 0.3590
Epoch 38/200
38/38 [==============================] - 0s 912us/step - loss: 0.2224 - accuracy: 0.8011 - mae: 0.2224 - pearson_correlation: 0.3262 - euclidean_distance: 0.3549
Epoch 39/200
38/38 [==============================] - 0s 904us/step - loss: 0.2206 - accuracy: 0.7975 - mae: 0.2206 - pearson_correlation: 0.3340 - euclidean_distance: 0.3520
Epoch 40/200
38/38 [==============================] - 0s 903us/step - loss: 0.2144 - accuracy: 0.8011 - mae: 0.2144 - pearson_correlation: 0.3368 - euclidean_distance: 0.3444
Epoch 41/200
38/38 [==============================] - 0s 904us/step - loss: 0.2137 - accuracy: 0.8072 - mae: 0.2137 - pearson_correlation: 0.3441 - euclidean_distance: 0.3416
Epoch 42/200
38/38 [==============================] - 0s 911us/step - loss: 0.2105 - accuracy: 0.8147 - mae: 0.2105 - pearson_correlation: 0.3486 - euclidean_distance: 0.3375
Epoch 43/200
38/38 [==============================] - 0s 903us/step - loss: 0.2108 - accuracy: 0.8130 - mae: 0.2108 - pearson_correlation: 0.3493 - euclidean_distance: 0.3371
Epoch 44/200
38/38 [==============================] - 0s 904us/step - loss: 0.2049 - accuracy: 0.8094 - mae: 0.2049 - pearson_correlation: 0.3532 - euclidean_distance: 0.3297
Epoch 45/200
38/38 [==============================] - 0s 905us/step - loss: 0.2052 - accuracy: 0.8183 - mae: 0.2052 - pearson_correlation: 0.3556 - euclidean_distance: 0.3288
Epoch 46/200
38/38 [==============================] - 0s 919us/step - loss: 0.2019 - accuracy: 0.8169 - mae: 0.2019 - pearson_correlation: 0.3584 - euclidean_distance: 0.3253
Epoch 47/200
38/38 [==============================] - 0s 907us/step - loss: 0.2002 - accuracy: 0.8271 - mae: 0.2002 - pearson_correlation: 0.3675 - euclidean_distance: 0.3222
Epoch 48/200
38/38 [==============================] - 0s 905us/step - loss: 0.1979 - accuracy: 0.8196 - mae: 0.1979 - pearson_correlation: 0.3722 - euclidean_distance: 0.3179
Epoch 49/200
38/38 [==============================] - 0s 900us/step - loss: 0.1961 - accuracy: 0.8191 - mae: 0.1961 - pearson_correlation: 0.3717 - euclidean_distance: 0.3165
Epoch 50/200
38/38 [==============================] - 0s 905us/step - loss: 0.1945 - accuracy: 0.8240 - mae: 0.1945 - pearson_correlation: 0.3773 - euclidean_distance: 0.3128
Epoch 51/200
38/38 [==============================] - 0s 902us/step - loss: 0.1920 - accuracy: 0.8258 - mae: 0.1920 - pearson_correlation: 0.3849 - euclidean_distance: 0.3088
Epoch 52/200
38/38 [==============================] - 0s 899us/step - loss: 0.1911 - accuracy: 0.8218 - mae: 0.1911 - pearson_correlation: 0.3838 - euclidean_distance: 0.3084
Epoch 53/200
38/38 [==============================] - 0s 908us/step - loss: 0.1905 - accuracy: 0.8280 - mae: 0.1905 - pearson_correlation: 0.3884 - euclidean_distance: 0.3065
Epoch 54/200
38/38 [==============================] - 0s 906us/step - loss: 0.1876 - accuracy: 0.8280 - mae: 0.1876 - pearson_correlation: 0.3928 - euclidean_distance: 0.3030
Epoch 55/200
38/38 [==============================] - 0s 905us/step - loss: 0.1866 - accuracy: 0.8280 - mae: 0.1866 - pearson_correlation: 0.3980 - euclidean_distance: 0.3010
Epoch 56/200
38/38 [==============================] - 0s 964us/step - loss: 0.1825 - accuracy: 0.8377 - mae: 0.1825 - pearson_correlation: 0.4049 - euclidean_distance: 0.2947
Epoch 57/200
38/38 [==============================] - 0s 920us/step - loss: 0.1841 - accuracy: 0.8346 - mae: 0.1841 - pearson_correlation: 0.4057 - euclidean_distance: 0.2966
Epoch 58/200
38/38 [==============================] - 0s 910us/step - loss: 0.1821 - accuracy: 0.8386 - mae: 0.1821 - pearson_correlation: 0.4077 - euclidean_distance: 0.2945
Epoch 59/200
38/38 [==============================] - 0s 905us/step - loss: 0.1808 - accuracy: 0.8394 - mae: 0.1808 - pearson_correlation: 0.4095 - euclidean_distance: 0.2921
Epoch 60/200
38/38 [==============================] - 0s 902us/step - loss: 0.1766 - accuracy: 0.8412 - mae: 0.1766 - pearson_correlation: 0.4167 - euclidean_distance: 0.2860
Epoch 61/200
38/38 [==============================] - 0s 902us/step - loss: 0.1765 - accuracy: 0.8412 - mae: 0.1765 - pearson_correlation: 0.4210 - euclidean_distance: 0.2847
Epoch 62/200
38/38 [==============================] - 0s 902us/step - loss: 0.1745 - accuracy: 0.8443 - mae: 0.1745 - pearson_correlation: 0.4259 - euclidean_distance: 0.2821
Epoch 63/200
38/38 [==============================] - 0s 900us/step - loss: 0.1729 - accuracy: 0.8438 - mae: 0.1729 - pearson_correlation: 0.4332 - euclidean_distance: 0.2796
Epoch 64/200
38/38 [==============================] - 0s 904us/step - loss: 0.1741 - accuracy: 0.8456 - mae: 0.1741 - pearson_correlation: 0.4276 - euclidean_distance: 0.2815
Epoch 65/200
38/38 [==============================] - 0s 907us/step - loss: 0.1744 - accuracy: 0.8483 - mae: 0.1744 - pearson_correlation: 0.4314 - euclidean_distance: 0.2811
Epoch 66/200
38/38 [==============================] - 0s 916us/step - loss: 0.1695 - accuracy: 0.8443 - mae: 0.1695 - pearson_correlation: 0.4391 - euclidean_distance: 0.2745
Epoch 67/200
38/38 [==============================] - 0s 911us/step - loss: 0.1684 - accuracy: 0.8500 - mae: 0.1684 - pearson_correlation: 0.4473 - euclidean_distance: 0.2722
Epoch 68/200
38/38 [==============================] - 0s 907us/step - loss: 0.1681 - accuracy: 0.8487 - mae: 0.1681 - pearson_correlation: 0.4469 - euclidean_distance: 0.2715
Epoch 69/200
38/38 [==============================] - 0s 916us/step - loss: 0.1661 - accuracy: 0.8540 - mae: 0.1661 - pearson_correlation: 0.4504 - euclidean_distance: 0.2689
Epoch 70/200
38/38 [==============================] - 0s 906us/step - loss: 0.1647 - accuracy: 0.8518 - mae: 0.1647 - pearson_correlation: 0.4573 - euclidean_distance: 0.2666
Epoch 71/200
38/38 [==============================] - 0s 909us/step - loss: 0.1635 - accuracy: 0.8509 - mae: 0.1635 - pearson_correlation: 0.4595 - euclidean_distance: 0.2650
Epoch 72/200
38/38 [==============================] - 0s 907us/step - loss: 0.1671 - accuracy: 0.8575 - mae: 0.1671 - pearson_correlation: 0.4575 - euclidean_distance: 0.2697
Epoch 73/200
38/38 [==============================] - 0s 904us/step - loss: 0.1635 - accuracy: 0.8558 - mae: 0.1635 - pearson_correlation: 0.4610 - euclidean_distance: 0.2649
Epoch 74/200
38/38 [==============================] - 0s 904us/step - loss: 0.1605 - accuracy: 0.8562 - mae: 0.1605 - pearson_correlation: 0.4664 - euclidean_distance: 0.2598
Epoch 75/200
38/38 [==============================] - 0s 895us/step - loss: 0.1606 - accuracy: 0.8584 - mae: 0.1606 - pearson_correlation: 0.4730 - euclidean_distance: 0.2603
Epoch 76/200
38/38 [==============================] - 0s 901us/step - loss: 0.1587 - accuracy: 0.8615 - mae: 0.1587 - pearson_correlation: 0.4807 - euclidean_distance: 0.2574
Epoch 77/200
38/38 [==============================] - 0s 908us/step - loss: 0.1579 - accuracy: 0.8606 - mae: 0.1579 - pearson_correlation: 0.4804 - euclidean_distance: 0.2554
Epoch 78/200
38/38 [==============================] - 0s 906us/step - loss: 0.1572 - accuracy: 0.8602 - mae: 0.1572 - pearson_correlation: 0.4859 - euclidean_distance: 0.2554
Epoch 79/200
38/38 [==============================] - 0s 918us/step - loss: 0.1575 - accuracy: 0.8650 - mae: 0.1575 - pearson_correlation: 0.4830 - euclidean_distance: 0.2553
Epoch 80/200
38/38 [==============================] - 0s 901us/step - loss: 0.1532 - accuracy: 0.8646 - mae: 0.1532 - pearson_correlation: 0.4912 - euclidean_distance: 0.2488
Epoch 81/200
38/38 [==============================] - 0s 896us/step - loss: 0.1547 - accuracy: 0.8659 - mae: 0.1547 - pearson_correlation: 0.4954 - euclidean_distance: 0.2509
Epoch 82/200
38/38 [==============================] - 0s 898us/step - loss: 0.1559 - accuracy: 0.8663 - mae: 0.1559 - pearson_correlation: 0.4929 - euclidean_distance: 0.2523
Epoch 83/200
38/38 [==============================] - 0s 907us/step - loss: 0.1523 - accuracy: 0.8663 - mae: 0.1523 - pearson_correlation: 0.4997 - euclidean_distance: 0.2466
Epoch 84/200
38/38 [==============================] - 0s 907us/step - loss: 0.1516 - accuracy: 0.8672 - mae: 0.1516 - pearson_correlation: 0.5016 - euclidean_distance: 0.2453
Epoch 85/200
38/38 [==============================] - 0s 901us/step - loss: 0.1510 - accuracy: 0.8690 - mae: 0.1510 - pearson_correlation: 0.5024 - euclidean_distance: 0.2455
Epoch 86/200
38/38 [==============================] - 0s 903us/step - loss: 0.1485 - accuracy: 0.8659 - mae: 0.1485 - pearson_correlation: 0.5117 - euclidean_distance: 0.2416
Epoch 87/200
38/38 [==============================] - 0s 903us/step - loss: 0.1501 - accuracy: 0.8641 - mae: 0.1501 - pearson_correlation: 0.5099 - euclidean_distance: 0.2434
Epoch 88/200
38/38 [==============================] - 0s 900us/step - loss: 0.1491 - accuracy: 0.8694 - mae: 0.1491 - pearson_correlation: 0.5139 - euclidean_distance: 0.2422
Epoch 89/200
38/38 [==============================] - 0s 904us/step - loss: 0.1476 - accuracy: 0.8721 - mae: 0.1476 - pearson_correlation: 0.5190 - euclidean_distance: 0.2393
Epoch 90/200
38/38 [==============================] - 0s 905us/step - loss: 0.1458 - accuracy: 0.8725 - mae: 0.1458 - pearson_correlation: 0.5213 - euclidean_distance: 0.2373
Epoch 91/200
38/38 [==============================] - 0s 894us/step - loss: 0.1450 - accuracy: 0.8703 - mae: 0.1450 - pearson_correlation: 0.5251 - euclidean_distance: 0.2353
Epoch 92/200
38/38 [==============================] - 0s 894us/step - loss: 0.1452 - accuracy: 0.8734 - mae: 0.1452 - pearson_correlation: 0.5258 - euclidean_distance: 0.2358
Epoch 93/200
38/38 [==============================] - 0s 902us/step - loss: 0.1433 - accuracy: 0.8730 - mae: 0.1433 - pearson_correlation: 0.5305 - euclidean_distance: 0.2329
Epoch 94/200
38/38 [==============================] - 0s 903us/step - loss: 0.1437 - accuracy: 0.8743 - mae: 0.1437 - pearson_correlation: 0.5332 - euclidean_distance: 0.2332
Epoch 95/200
38/38 [==============================] - 0s 904us/step - loss: 0.1438 - accuracy: 0.8765 - mae: 0.1438 - pearson_correlation: 0.5346 - euclidean_distance: 0.2331
Epoch 96/200
38/38 [==============================] - 0s 909us/step - loss: 0.1450 - accuracy: 0.8752 - mae: 0.1450 - pearson_correlation: 0.5268 - euclidean_distance: 0.2348
Epoch 97/200
38/38 [==============================] - 0s 895us/step - loss: 0.1446 - accuracy: 0.8760 - mae: 0.1446 - pearson_correlation: 0.5309 - euclidean_distance: 0.2350
Epoch 98/200
38/38 [==============================] - 0s 898us/step - loss: 0.1417 - accuracy: 0.8738 - mae: 0.1417 - pearson_correlation: 0.5385 - euclidean_distance: 0.2305
Epoch 99/200
38/38 [==============================] - 0s 903us/step - loss: 0.1413 - accuracy: 0.8787 - mae: 0.1413 - pearson_correlation: 0.5426 - euclidean_distance: 0.2293
Epoch 100/200
38/38 [==============================] - 0s 901us/step - loss: 0.1407 - accuracy: 0.8752 - mae: 0.1407 - pearson_correlation: 0.5455 - euclidean_distance: 0.2287
Epoch 101/200
38/38 [==============================] - 0s 910us/step - loss: 0.1388 - accuracy: 0.8769 - mae: 0.1388 - pearson_correlation: 0.5476 - euclidean_distance: 0.2265
Epoch 102/200
38/38 [==============================] - 0s 903us/step - loss: 0.1369 - accuracy: 0.8800 - mae: 0.1369 - pearson_correlation: 0.5552 - euclidean_distance: 0.2229
Epoch 103/200
38/38 [==============================] - 0s 897us/step - loss: 0.1377 - accuracy: 0.8774 - mae: 0.1377 - pearson_correlation: 0.5510 - euclidean_distance: 0.2240
Epoch 104/200
38/38 [==============================] - 0s 893us/step - loss: 0.1372 - accuracy: 0.8774 - mae: 0.1372 - pearson_correlation: 0.5587 - euclidean_distance: 0.2233
Epoch 105/200
38/38 [==============================] - 0s 896us/step - loss: 0.1364 - accuracy: 0.8813 - mae: 0.1364 - pearson_correlation: 0.5595 - euclidean_distance: 0.2218
Epoch 106/200
38/38 [==============================] - 0s 897us/step - loss: 0.1375 - accuracy: 0.8791 - mae: 0.1375 - pearson_correlation: 0.5597 - euclidean_distance: 0.2234
Epoch 107/200
38/38 [==============================] - 0s 890us/step - loss: 0.1348 - accuracy: 0.8840 - mae: 0.1348 - pearson_correlation: 0.5651 - euclidean_distance: 0.2193
Epoch 108/200
38/38 [==============================] - 0s 907us/step - loss: 0.1354 - accuracy: 0.8813 - mae: 0.1354 - pearson_correlation: 0.5664 - euclidean_distance: 0.2195
Epoch 109/200
38/38 [==============================] - 0s 905us/step - loss: 0.1354 - accuracy: 0.8813 - mae: 0.1354 - pearson_correlation: 0.5622 - euclidean_distance: 0.2204
Epoch 110/200
38/38 [==============================] - 0s 904us/step - loss: 0.1335 - accuracy: 0.8849 - mae: 0.1335 - pearson_correlation: 0.5712 - euclidean_distance: 0.2163
Epoch 111/200
38/38 [==============================] - 0s 896us/step - loss: 0.1333 - accuracy: 0.8796 - mae: 0.1333 - pearson_correlation: 0.5741 - euclidean_distance: 0.2171
Epoch 112/200
38/38 [==============================] - 0s 890us/step - loss: 0.1348 - accuracy: 0.8818 - mae: 0.1348 - pearson_correlation: 0.5701 - euclidean_distance: 0.2189
Epoch 113/200
38/38 [==============================] - 0s 903us/step - loss: 0.1319 - accuracy: 0.8853 - mae: 0.1319 - pearson_correlation: 0.5761 - euclidean_distance: 0.2143
Epoch 114/200
38/38 [==============================] - 0s 891us/step - loss: 0.1307 - accuracy: 0.8844 - mae: 0.1307 - pearson_correlation: 0.5787 - euclidean_distance: 0.2127
Epoch 115/200
38/38 [==============================] - 0s 900us/step - loss: 0.1311 - accuracy: 0.8858 - mae: 0.1311 - pearson_correlation: 0.5781 - euclidean_distance: 0.2134
Epoch 116/200
38/38 [==============================] - 0s 899us/step - loss: 0.1317 - accuracy: 0.8866 - mae: 0.1317 - pearson_correlation: 0.5760 - euclidean_distance: 0.2146
Epoch 117/200
38/38 [==============================] - 0s 909us/step - loss: 0.1302 - accuracy: 0.8844 - mae: 0.1302 - pearson_correlation: 0.5810 - euclidean_distance: 0.2116
Epoch 118/200
38/38 [==============================] - 0s 901us/step - loss: 0.1295 - accuracy: 0.8858 - mae: 0.1295 - pearson_correlation: 0.5850 - euclidean_distance: 0.2113
Epoch 119/200
38/38 [==============================] - 0s 908us/step - loss: 0.1304 - accuracy: 0.8866 - mae: 0.1304 - pearson_correlation: 0.5834 - euclidean_distance: 0.2127
Epoch 120/200
38/38 [==============================] - 0s 904us/step - loss: 0.1284 - accuracy: 0.8884 - mae: 0.1284 - pearson_correlation: 0.5893 - euclidean_distance: 0.2090
Epoch 121/200
38/38 [==============================] - 0s 903us/step - loss: 0.1291 - accuracy: 0.8919 - mae: 0.1291 - pearson_correlation: 0.5900 - euclidean_distance: 0.2100
Epoch 122/200
38/38 [==============================] - 0s 900us/step - loss: 0.1289 - accuracy: 0.8862 - mae: 0.1289 - pearson_correlation: 0.5926 - euclidean_distance: 0.2099
Epoch 123/200
38/38 [==============================] - 0s 906us/step - loss: 0.1257 - accuracy: 0.8919 - mae: 0.1257 - pearson_correlation: 0.5962 - euclidean_distance: 0.2051
Epoch 124/200
38/38 [==============================] - 0s 928us/step - loss: 0.1277 - accuracy: 0.8893 - mae: 0.1277 - pearson_correlation: 0.5972 - euclidean_distance: 0.2071
Epoch 125/200
38/38 [==============================] - 0s 905us/step - loss: 0.1267 - accuracy: 0.8950 - mae: 0.1267 - pearson_correlation: 0.6046 - euclidean_distance: 0.2058
Epoch 126/200
38/38 [==============================] - 0s 894us/step - loss: 0.1266 - accuracy: 0.8919 - mae: 0.1266 - pearson_correlation: 0.5992 - euclidean_distance: 0.2055
Epoch 127/200
38/38 [==============================] - 0s 898us/step - loss: 0.1259 - accuracy: 0.8946 - mae: 0.1259 - pearson_correlation: 0.6033 - euclidean_distance: 0.2048
Epoch 128/200
38/38 [==============================] - 0s 902us/step - loss: 0.1242 - accuracy: 0.8937 - mae: 0.1242 - pearson_correlation: 0.6051 - euclidean_distance: 0.2020
Epoch 129/200
38/38 [==============================] - 0s 921us/step - loss: 0.1244 - accuracy: 0.8972 - mae: 0.1244 - pearson_correlation: 0.6029 - euclidean_distance: 0.2022
Epoch 130/200
38/38 [==============================] - 0s 901us/step - loss: 0.1254 - accuracy: 0.8972 - mae: 0.1254 - pearson_correlation: 0.6043 - euclidean_distance: 0.2036
Epoch 131/200
38/38 [==============================] - 0s 887us/step - loss: 0.1235 - accuracy: 0.8963 - mae: 0.1235 - pearson_correlation: 0.6127 - euclidean_distance: 0.2010
Epoch 132/200
38/38 [==============================] - 0s 900us/step - loss: 0.1237 - accuracy: 0.8972 - mae: 0.1237 - pearson_correlation: 0.6111 - euclidean_distance: 0.2012
Epoch 133/200
38/38 [==============================] - 0s 904us/step - loss: 0.1214 - accuracy: 0.8946 - mae: 0.1214 - pearson_correlation: 0.6203 - euclidean_distance: 0.1977
Epoch 134/200
38/38 [==============================] - 0s 904us/step - loss: 0.1256 - accuracy: 0.8959 - mae: 0.1256 - pearson_correlation: 0.6075 - euclidean_distance: 0.2042
Epoch 135/200
38/38 [==============================] - 0s 904us/step - loss: 0.1241 - accuracy: 0.8994 - mae: 0.1241 - pearson_correlation: 0.6138 - euclidean_distance: 0.2022
Epoch 136/200
38/38 [==============================] - 0s 903us/step - loss: 0.1232 - accuracy: 0.9016 - mae: 0.1232 - pearson_correlation: 0.6177 - euclidean_distance: 0.1999
Epoch 137/200
38/38 [==============================] - 0s 899us/step - loss: 0.1245 - accuracy: 0.8999 - mae: 0.1245 - pearson_correlation: 0.6183 - euclidean_distance: 0.2015
Epoch 138/200
38/38 [==============================] - 0s 900us/step - loss: 0.1211 - accuracy: 0.8999 - mae: 0.1211 - pearson_correlation: 0.6190 - euclidean_distance: 0.1967
Epoch 139/200
38/38 [==============================] - 0s 904us/step - loss: 0.1217 - accuracy: 0.9016 - mae: 0.1217 - pearson_correlation: 0.6153 - euclidean_distance: 0.1987
Epoch 140/200
38/38 [==============================] - 0s 909us/step - loss: 0.1217 - accuracy: 0.9025 - mae: 0.1217 - pearson_correlation: 0.6192 - euclidean_distance: 0.1983
Epoch 141/200
38/38 [==============================] - 0s 901us/step - loss: 0.1206 - accuracy: 0.9082 - mae: 0.1206 - pearson_correlation: 0.6242 - euclidean_distance: 0.1960
Epoch 142/200
38/38 [==============================] - 0s 894us/step - loss: 0.1196 - accuracy: 0.9056 - mae: 0.1196 - pearson_correlation: 0.6239 - euclidean_distance: 0.1949
Epoch 143/200
38/38 [==============================] - 0s 902us/step - loss: 0.1228 - accuracy: 0.9052 - mae: 0.1228 - pearson_correlation: 0.6232 - euclidean_distance: 0.1988
Epoch 144/200
38/38 [==============================] - 0s 910us/step - loss: 0.1215 - accuracy: 0.9021 - mae: 0.1215 - pearson_correlation: 0.6268 - euclidean_distance: 0.1974
Epoch 145/200
38/38 [==============================] - 0s 901us/step - loss: 0.1183 - accuracy: 0.9047 - mae: 0.1183 - pearson_correlation: 0.6388 - euclidean_distance: 0.1923
Epoch 146/200
38/38 [==============================] - 0s 899us/step - loss: 0.1182 - accuracy: 0.9047 - mae: 0.1182 - pearson_correlation: 0.6297 - euclidean_distance: 0.1925
Epoch 147/200
38/38 [==============================] - 0s 907us/step - loss: 0.1210 - accuracy: 0.9087 - mae: 0.1210 - pearson_correlation: 0.6254 - euclidean_distance: 0.1968
Epoch 148/200
38/38 [==============================] - 0s 909us/step - loss: 0.1178 - accuracy: 0.9052 - mae: 0.1178 - pearson_correlation: 0.6395 - euclidean_distance: 0.1915
Epoch 149/200
38/38 [==============================] - 0s 905us/step - loss: 0.1162 - accuracy: 0.9109 - mae: 0.1162 - pearson_correlation: 0.6391 - euclidean_distance: 0.1892
Epoch 150/200
38/38 [==============================] - 0s 903us/step - loss: 0.1160 - accuracy: 0.9091 - mae: 0.1160 - pearson_correlation: 0.6399 - euclidean_distance: 0.1887
Epoch 151/200
38/38 [==============================] - 0s 896us/step - loss: 0.1155 - accuracy: 0.9118 - mae: 0.1155 - pearson_correlation: 0.6443 - euclidean_distance: 0.1875
Epoch 152/200
38/38 [==============================] - 0s 910us/step - loss: 0.1181 - accuracy: 0.9175 - mae: 0.1181 - pearson_correlation: 0.6350 - euclidean_distance: 0.1916
Epoch 153/200
38/38 [==============================] - 0s 902us/step - loss: 0.1175 - accuracy: 0.9118 - mae: 0.1175 - pearson_correlation: 0.6376 - euclidean_distance: 0.1906
Epoch 154/200
38/38 [==============================] - 0s 963us/step - loss: 0.1169 - accuracy: 0.9135 - mae: 0.1169 - pearson_correlation: 0.6448 - euclidean_distance: 0.1894
Epoch 155/200
38/38 [==============================] - 0s 938us/step - loss: 0.1154 - accuracy: 0.9100 - mae: 0.1154 - pearson_correlation: 0.6423 - euclidean_distance: 0.1880
Epoch 156/200
38/38 [==============================] - 0s 906us/step - loss: 0.1149 - accuracy: 0.9140 - mae: 0.1149 - pearson_correlation: 0.6451 - euclidean_distance: 0.1879
Epoch 157/200
38/38 [==============================] - 0s 897us/step - loss: 0.1168 - accuracy: 0.9180 - mae: 0.1168 - pearson_correlation: 0.6439 - euclidean_distance: 0.1897
Epoch 158/200
38/38 [==============================] - 0s 918us/step - loss: 0.1142 - accuracy: 0.9144 - mae: 0.1142 - pearson_correlation: 0.6426 - euclidean_distance: 0.1862
Epoch 159/200
38/38 [==============================] - 0s 890us/step - loss: 0.1144 - accuracy: 0.9140 - mae: 0.1144 - pearson_correlation: 0.6449 - euclidean_distance: 0.1865
Epoch 160/200
38/38 [==============================] - 0s 922us/step - loss: 0.1135 - accuracy: 0.9210 - mae: 0.1135 - pearson_correlation: 0.6516 - euclidean_distance: 0.1849
Epoch 161/200
38/38 [==============================] - 0s 900us/step - loss: 0.1133 - accuracy: 0.9206 - mae: 0.1133 - pearson_correlation: 0.6537 - euclidean_distance: 0.1848
Epoch 162/200
38/38 [==============================] - 0s 892us/step - loss: 0.1127 - accuracy: 0.9171 - mae: 0.1127 - pearson_correlation: 0.6513 - euclidean_distance: 0.1836
Epoch 163/200
38/38 [==============================] - 0s 906us/step - loss: 0.1138 - accuracy: 0.9175 - mae: 0.1138 - pearson_correlation: 0.6536 - euclidean_distance: 0.1852
Epoch 164/200
38/38 [==============================] - 0s 899us/step - loss: 0.1129 - accuracy: 0.9232 - mae: 0.1129 - pearson_correlation: 0.6538 - euclidean_distance: 0.1840
Epoch 165/200
38/38 [==============================] - 0s 907us/step - loss: 0.1153 - accuracy: 0.9224 - mae: 0.1153 - pearson_correlation: 0.6504 - euclidean_distance: 0.1872
Epoch 166/200
38/38 [==============================] - 0s 908us/step - loss: 0.1149 - accuracy: 0.9206 - mae: 0.1149 - pearson_correlation: 0.6500 - euclidean_distance: 0.1872
Epoch 167/200
38/38 [==============================] - 0s 904us/step - loss: 0.1114 - accuracy: 0.9228 - mae: 0.1114 - pearson_correlation: 0.6588 - euclidean_distance: 0.1812
Epoch 168/200
38/38 [==============================] - 0s 903us/step - loss: 0.1122 - accuracy: 0.9215 - mae: 0.1122 - pearson_correlation: 0.6581 - euclidean_distance: 0.1825
Epoch 169/200
38/38 [==============================] - 0s 904us/step - loss: 0.1111 - accuracy: 0.9255 - mae: 0.1111 - pearson_correlation: 0.6594 - euclidean_distance: 0.1814
Epoch 170/200
38/38 [==============================] - 0s 896us/step - loss: 0.1106 - accuracy: 0.9206 - mae: 0.1106 - pearson_correlation: 0.6575 - euclidean_distance: 0.1808
Epoch 171/200
38/38 [==============================] - 0s 893us/step - loss: 0.1101 - accuracy: 0.9246 - mae: 0.1101 - pearson_correlation: 0.6619 - euclidean_distance: 0.1797
Epoch 172/200
38/38 [==============================] - 0s 902us/step - loss: 0.1096 - accuracy: 0.9224 - mae: 0.1096 - pearson_correlation: 0.6633 - euclidean_distance: 0.1787
Epoch 173/200
38/38 [==============================] - 0s 908us/step - loss: 0.1117 - accuracy: 0.9290 - mae: 0.1117 - pearson_correlation: 0.6648 - euclidean_distance: 0.1814
Epoch 174/200
38/38 [==============================] - 0s 904us/step - loss: 0.1101 - accuracy: 0.9263 - mae: 0.1101 - pearson_correlation: 0.6620 - euclidean_distance: 0.1793
Epoch 175/200
38/38 [==============================] - 0s 900us/step - loss: 0.1077 - accuracy: 0.9250 - mae: 0.1077 - pearson_correlation: 0.6722 - euclidean_distance: 0.1755
Epoch 176/200
38/38 [==============================] - 0s 902us/step - loss: 0.1099 - accuracy: 0.9272 - mae: 0.1099 - pearson_correlation: 0.6676 - euclidean_distance: 0.1795
Epoch 177/200
38/38 [==============================] - 0s 902us/step - loss: 0.1110 - accuracy: 0.9307 - mae: 0.1110 - pearson_correlation: 0.6654 - euclidean_distance: 0.1802
Epoch 178/200
38/38 [==============================] - 0s 910us/step - loss: 0.1100 - accuracy: 0.9285 - mae: 0.1100 - pearson_correlation: 0.6688 - euclidean_distance: 0.1786
Epoch 179/200
38/38 [==============================] - 0s 881us/step - loss: 0.1087 - accuracy: 0.9285 - mae: 0.1087 - pearson_correlation: 0.6702 - euclidean_distance: 0.1769
Epoch 180/200
38/38 [==============================] - 0s 897us/step - loss: 0.1084 - accuracy: 0.9334 - mae: 0.1084 - pearson_correlation: 0.6716 - euclidean_distance: 0.1768
Epoch 181/200
38/38 [==============================] - 0s 894us/step - loss: 0.1091 - accuracy: 0.9303 - mae: 0.1091 - pearson_correlation: 0.6706 - euclidean_distance: 0.1777
Epoch 182/200
38/38 [==============================] - 0s 903us/step - loss: 0.1087 - accuracy: 0.9307 - mae: 0.1087 - pearson_correlation: 0.6716 - euclidean_distance: 0.1770
Epoch 183/200
38/38 [==============================] - 0s 902us/step - loss: 0.1091 - accuracy: 0.9307 - mae: 0.1091 - pearson_correlation: 0.6752 - euclidean_distance: 0.1774
Epoch 184/200
38/38 [==============================] - 0s 903us/step - loss: 0.1081 - accuracy: 0.9294 - mae: 0.1081 - pearson_correlation: 0.6729 - euclidean_distance: 0.1758
Epoch 185/200
38/38 [==============================] - 0s 921us/step - loss: 0.1069 - accuracy: 0.9303 - mae: 0.1069 - pearson_correlation: 0.6760 - euclidean_distance: 0.1744
Epoch 186/200
38/38 [==============================] - 0s 882us/step - loss: 0.1063 - accuracy: 0.9321 - mae: 0.1063 - pearson_correlation: 0.6799 - euclidean_distance: 0.1734
Epoch 187/200
38/38 [==============================] - 0s 900us/step - loss: 0.1076 - accuracy: 0.9347 - mae: 0.1076 - pearson_correlation: 0.6806 - euclidean_distance: 0.1756
Epoch 188/200
38/38 [==============================] - 0s 901us/step - loss: 0.1055 - accuracy: 0.9307 - mae: 0.1055 - pearson_correlation: 0.6827 - euclidean_distance: 0.1720
Epoch 189/200
38/38 [==============================] - 0s 904us/step - loss: 0.1064 - accuracy: 0.9330 - mae: 0.1064 - pearson_correlation: 0.6757 - euclidean_distance: 0.1741
Epoch 190/200
38/38 [==============================] - 0s 905us/step - loss: 0.1062 - accuracy: 0.9321 - mae: 0.1062 - pearson_correlation: 0.6786 - euclidean_distance: 0.1731
Epoch 191/200
38/38 [==============================] - 0s 897us/step - loss: 0.1072 - accuracy: 0.9352 - mae: 0.1072 - pearson_correlation: 0.6797 - euclidean_distance: 0.1751
Epoch 192/200
38/38 [==============================] - 0s 904us/step - loss: 0.1052 - accuracy: 0.9334 - mae: 0.1052 - pearson_correlation: 0.6820 - euclidean_distance: 0.1716
Epoch 193/200
38/38 [==============================] - 0s 894us/step - loss: 0.1073 - accuracy: 0.9356 - mae: 0.1073 - pearson_correlation: 0.6801 - euclidean_distance: 0.1745
Epoch 194/200
38/38 [==============================] - 0s 899us/step - loss: 0.1064 - accuracy: 0.9387 - mae: 0.1064 - pearson_correlation: 0.6805 - euclidean_distance: 0.1735
Epoch 195/200
38/38 [==============================] - 0s 887us/step - loss: 0.1066 - accuracy: 0.9378 - mae: 0.1066 - pearson_correlation: 0.6816 - euclidean_distance: 0.1731
Epoch 196/200
38/38 [==============================] - 0s 891us/step - loss: 0.1062 - accuracy: 0.9378 - mae: 0.1062 - pearson_correlation: 0.6798 - euclidean_distance: 0.1730
Epoch 197/200
38/38 [==============================] - 0s 907us/step - loss: 0.1040 - accuracy: 0.9396 - mae: 0.1040 - pearson_correlation: 0.6866 - euclidean_distance: 0.1698
Epoch 198/200
38/38 [==============================] - 0s 900us/step - loss: 0.1062 - accuracy: 0.9391 - mae: 0.1062 - pearson_correlation: 0.6809 - euclidean_distance: 0.1728
Epoch 199/200
38/38 [==============================] - 0s 897us/step - loss: 0.1054 - accuracy: 0.9404 - mae: 0.1054 - pearson_correlation: 0.6862 - euclidean_distance: 0.1713
Epoch 200/200
38/38 [==============================] - 0s 894us/step - loss: 0.1052 - accuracy: 0.9422 - mae: 0.1052 - pearson_correlation: 0.6896 - euclidean_distance: 0.1714
19/19 [==============================] - 0s 513us/step
Epoch 1/200
38/38 [==============================] - 1s 1ms/step - loss: 0.5054 - accuracy: 0.9004 - mae: 0.5054 - pearson_correlation: 0.6382 - euclidean_distance: 0.7676
Epoch 2/200
38/38 [==============================] - 0s 954us/step - loss: 0.5038 - accuracy: 0.8999 - mae: 0.5038 - pearson_correlation: 0.6429 - euclidean_distance: 0.7649
Epoch 3/200
38/38 [==============================] - 0s 899us/step - loss: 0.5029 - accuracy: 0.9039 - mae: 0.5029 - pearson_correlation: 0.6369 - euclidean_distance: 0.7633
Epoch 4/200
38/38 [==============================] - 0s 924us/step - loss: 0.5013 - accuracy: 0.9056 - mae: 0.5013 - pearson_correlation: 0.6405 - euclidean_distance: 0.7609
Epoch 5/200
38/38 [==============================] - 0s 960us/step - loss: 0.4993 - accuracy: 0.9101 - mae: 0.4993 - pearson_correlation: 0.6380 - euclidean_distance: 0.7585
Epoch 6/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4983 - accuracy: 0.9034 - mae: 0.4983 - pearson_correlation: 0.6440 - euclidean_distance: 0.7564
Epoch 7/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4966 - accuracy: 0.9021 - mae: 0.4966 - pearson_correlation: 0.6417 - euclidean_distance: 0.7539
Epoch 8/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4953 - accuracy: 0.9012 - mae: 0.4953 - pearson_correlation: 0.6392 - euclidean_distance: 0.7519
Epoch 9/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4933 - accuracy: 0.8942 - mae: 0.4933 - pearson_correlation: 0.6368 - euclidean_distance: 0.7498
Epoch 10/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4920 - accuracy: 0.9017 - mae: 0.4920 - pearson_correlation: 0.6414 - euclidean_distance: 0.7474
Epoch 11/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4893 - accuracy: 0.9026 - mae: 0.4893 - pearson_correlation: 0.6402 - euclidean_distance: 0.7439
Epoch 12/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4875 - accuracy: 0.9021 - mae: 0.4875 - pearson_correlation: 0.6420 - euclidean_distance: 0.7408
Epoch 13/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4863 - accuracy: 0.8981 - mae: 0.4863 - pearson_correlation: 0.6390 - euclidean_distance: 0.7393
Epoch 14/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4847 - accuracy: 0.8977 - mae: 0.4847 - pearson_correlation: 0.6384 - euclidean_distance: 0.7377
Epoch 15/200
38/38 [==============================] - 0s 1ms/step - loss: 0.4817 - accuracy: 0.9030 - mae: 0.4817 - pearson_correlation: 0.6395 - euclidean_distance: 0.7340
Epoch 16/200
38/38 [==============================] - 0s 912us/step - loss: 0.4801 - accuracy: 0.8937 - mae: 0.4801 - pearson_correlation: 0.6408 - euclidean_distance: 0.7311
Epoch 17/200
38/38 [==============================] - 0s 907us/step - loss: 0.4780 - accuracy: 0.8854 - mae: 0.4780 - pearson_correlation: 0.6366 - euclidean_distance: 0.7276
Epoch 18/200
38/38 [==============================] - 0s 915us/step - loss: 0.4757 - accuracy: 0.8951 - mae: 0.4757 - pearson_correlation: 0.6416 - euclidean_distance: 0.7251
Epoch 19/200
38/38 [==============================] - 0s 916us/step - loss: 0.4742 - accuracy: 0.8929 - mae: 0.4742 - pearson_correlation: 0.6398 - euclidean_distance: 0.7222
Epoch 20/200
38/38 [==============================] - 0s 908us/step - loss: 0.4724 - accuracy: 0.9004 - mae: 0.4724 - pearson_correlation: 0.6386 - euclidean_distance: 0.7199
Epoch 21/200
38/38 [==============================] - 0s 900us/step - loss: 0.4695 - accuracy: 0.8902 - mae: 0.4695 - pearson_correlation: 0.6388 - euclidean_distance: 0.7161
Epoch 22/200
38/38 [==============================] - 0s 916us/step - loss: 0.4670 - accuracy: 0.8898 - mae: 0.4670 - pearson_correlation: 0.6391 - euclidean_distance: 0.7127
Epoch 23/200
38/38 [==============================] - 0s 903us/step - loss: 0.4655 - accuracy: 0.8946 - mae: 0.4655 - pearson_correlation: 0.6409 - euclidean_distance: 0.7100
Epoch 24/200
38/38 [==============================] - 0s 899us/step - loss: 0.4630 - accuracy: 0.8893 - mae: 0.4630 - pearson_correlation: 0.6364 - euclidean_distance: 0.7073
Epoch 25/200
38/38 [==============================] - 0s 920us/step - loss: 0.4610 - accuracy: 0.8964 - mae: 0.4610 - pearson_correlation: 0.6357 - euclidean_distance: 0.7044
Epoch 26/200
38/38 [==============================] - 0s 907us/step - loss: 0.4584 - accuracy: 0.8951 - mae: 0.4584 - pearson_correlation: 0.6397 - euclidean_distance: 0.6999
Epoch 27/200
38/38 [==============================] - 0s 912us/step - loss: 0.4563 - accuracy: 0.8893 - mae: 0.4563 - pearson_correlation: 0.6368 - euclidean_distance: 0.6970
Epoch 28/200
38/38 [==============================] - 0s 909us/step - loss: 0.4532 - accuracy: 0.8915 - mae: 0.4532 - pearson_correlation: 0.6377 - euclidean_distance: 0.6932
Epoch 29/200
38/38 [==============================] - 0s 900us/step - loss: 0.4505 - accuracy: 0.8911 - mae: 0.4505 - pearson_correlation: 0.6375 - euclidean_distance: 0.6899
Epoch 30/200
38/38 [==============================] - 0s 911us/step - loss: 0.4481 - accuracy: 0.8942 - mae: 0.4481 - pearson_correlation: 0.6394 - euclidean_distance: 0.6865
Epoch 31/200
38/38 [==============================] - 0s 920us/step - loss: 0.4456 - accuracy: 0.8911 - mae: 0.4456 - pearson_correlation: 0.6345 - euclidean_distance: 0.6829
Epoch 32/200
38/38 [==============================] - 0s 911us/step - loss: 0.4429 - accuracy: 0.8929 - mae: 0.4429 - pearson_correlation: 0.6375 - euclidean_distance: 0.6792
Epoch 33/200
38/38 [==============================] - 0s 909us/step - loss: 0.4409 - accuracy: 0.8942 - mae: 0.4409 - pearson_correlation: 0.6366 - euclidean_distance: 0.6756
Epoch 34/200
38/38 [==============================] - 0s 907us/step - loss: 0.4378 - accuracy: 0.8889 - mae: 0.4378 - pearson_correlation: 0.6365 - euclidean_distance: 0.6723
Epoch 35/200
38/38 [==============================] - 0s 915us/step - loss: 0.4343 - accuracy: 0.8880 - mae: 0.4343 - pearson_correlation: 0.6373 - euclidean_distance: 0.6679
Epoch 36/200
38/38 [==============================] - 0s 904us/step - loss: 0.4317 - accuracy: 0.8832 - mae: 0.4317 - pearson_correlation: 0.6374 - euclidean_distance: 0.6643
Epoch 37/200
38/38 [==============================] - 0s 911us/step - loss: 0.4286 - accuracy: 0.8889 - mae: 0.4286 - pearson_correlation: 0.6384 - euclidean_distance: 0.6599
Epoch 38/200
38/38 [==============================] - 0s 911us/step - loss: 0.4257 - accuracy: 0.8933 - mae: 0.4257 - pearson_correlation: 0.6349 - euclidean_distance: 0.6558
Epoch 39/200
38/38 [==============================] - 0s 909us/step - loss: 0.4243 - accuracy: 0.8884 - mae: 0.4243 - pearson_correlation: 0.6329 - euclidean_distance: 0.6533
Epoch 40/200
38/38 [==============================] - 0s 917us/step - loss: 0.4197 - accuracy: 0.8810 - mae: 0.4197 - pearson_correlation: 0.6339 - euclidean_distance: 0.6478
Epoch 41/200
38/38 [==============================] - 0s 903us/step - loss: 0.4174 - accuracy: 0.8862 - mae: 0.4174 - pearson_correlation: 0.6340 - euclidean_distance: 0.6443
Epoch 42/200
38/38 [==============================] - 0s 894us/step - loss: 0.4154 - accuracy: 0.8884 - mae: 0.4154 - pearson_correlation: 0.6329 - euclidean_distance: 0.6416
Epoch 43/200
38/38 [==============================] - 0s 912us/step - loss: 0.4119 - accuracy: 0.8827 - mae: 0.4119 - pearson_correlation: 0.6370 - euclidean_distance: 0.6365
Epoch 44/200
38/38 [==============================] - 0s 994us/step - loss: 0.4093 - accuracy: 0.8924 - mae: 0.4093 - pearson_correlation: 0.6343 - euclidean_distance: 0.6326
Epoch 45/200
38/38 [==============================] - 0s 949us/step - loss: 0.4062 - accuracy: 0.8876 - mae: 0.4062 - pearson_correlation: 0.6340 - euclidean_distance: 0.6284
Epoch 46/200
38/38 [==============================] - 0s 912us/step - loss: 0.4037 - accuracy: 0.8823 - mae: 0.4037 - pearson_correlation: 0.6312 - euclidean_distance: 0.6249
Epoch 47/200
38/38 [==============================] - 0s 930us/step - loss: 0.3988 - accuracy: 0.8827 - mae: 0.3988 - pearson_correlation: 0.6348 - euclidean_distance: 0.6189
Epoch 48/200
38/38 [==============================] - 0s 966us/step - loss: 0.3979 - accuracy: 0.8920 - mae: 0.3979 - pearson_correlation: 0.6319 - euclidean_distance: 0.6161
Epoch 49/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3940 - accuracy: 0.8907 - mae: 0.3940 - pearson_correlation: 0.6333 - euclidean_distance: 0.6116
Epoch 50/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3910 - accuracy: 0.8840 - mae: 0.3910 - pearson_correlation: 0.6303 - euclidean_distance: 0.6075
Epoch 51/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3881 - accuracy: 0.8840 - mae: 0.3881 - pearson_correlation: 0.6295 - euclidean_distance: 0.6036
Epoch 52/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3849 - accuracy: 0.8779 - mae: 0.3849 - pearson_correlation: 0.6325 - euclidean_distance: 0.5993
Epoch 53/200
38/38 [==============================] - 0s 997us/step - loss: 0.3808 - accuracy: 0.8849 - mae: 0.3808 - pearson_correlation: 0.6302 - euclidean_distance: 0.5935
Epoch 54/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3782 - accuracy: 0.8832 - mae: 0.3782 - pearson_correlation: 0.6264 - euclidean_distance: 0.5896
Epoch 55/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3741 - accuracy: 0.8836 - mae: 0.3741 - pearson_correlation: 0.6310 - euclidean_distance: 0.5845
Epoch 56/200
38/38 [==============================] - 0s 996us/step - loss: 0.3718 - accuracy: 0.8796 - mae: 0.3718 - pearson_correlation: 0.6270 - euclidean_distance: 0.5807
Epoch 57/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3690 - accuracy: 0.8840 - mae: 0.3690 - pearson_correlation: 0.6288 - euclidean_distance: 0.5762
Epoch 58/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3649 - accuracy: 0.8783 - mae: 0.3649 - pearson_correlation: 0.6247 - euclidean_distance: 0.5711
Epoch 59/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3628 - accuracy: 0.8845 - mae: 0.3628 - pearson_correlation: 0.6252 - euclidean_distance: 0.5675
Epoch 60/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3584 - accuracy: 0.8796 - mae: 0.3584 - pearson_correlation: 0.6290 - euclidean_distance: 0.5609
Epoch 61/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3563 - accuracy: 0.8801 - mae: 0.3563 - pearson_correlation: 0.6238 - euclidean_distance: 0.5582
Epoch 62/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3528 - accuracy: 0.8884 - mae: 0.3528 - pearson_correlation: 0.6272 - euclidean_distance: 0.5532
Epoch 63/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3504 - accuracy: 0.8796 - mae: 0.3504 - pearson_correlation: 0.6243 - euclidean_distance: 0.5499
Epoch 64/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3470 - accuracy: 0.8836 - mae: 0.3470 - pearson_correlation: 0.6250 - euclidean_distance: 0.5447
Epoch 65/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3432 - accuracy: 0.8858 - mae: 0.3432 - pearson_correlation: 0.6273 - euclidean_distance: 0.5396
Epoch 66/200
38/38 [==============================] - 0s 1ms/step - loss: 0.3409 - accuracy: 0.8810 - mae: 0.3409 - pearson_correlation: 0.6236 - euclidean_distance: 0.5363
Epoch 67/200
38/38 [==============================] - 0s 918us/step - loss: 0.3384 - accuracy: 0.8836 - mae: 0.3384 - pearson_correlation: 0.6227 - euclidean_distance: 0.5319
Epoch 68/200
38/38 [==============================] - 0s 915us/step - loss: 0.3342 - accuracy: 0.8840 - mae: 0.3342 - pearson_correlation: 0.6270 - euclidean_distance: 0.5254
Epoch 69/200
38/38 [==============================] - 0s 921us/step - loss: 0.3320 - accuracy: 0.8880 - mae: 0.3320 - pearson_correlation: 0.6260 - euclidean_distance: 0.5222
Epoch 70/200
38/38 [==============================] - 0s 900us/step - loss: 0.3289 - accuracy: 0.8840 - mae: 0.3289 - pearson_correlation: 0.6254 - euclidean_distance: 0.5177
Epoch 71/200
38/38 [==============================] - 0s 911us/step - loss: 0.3255 - accuracy: 0.8880 - mae: 0.3255 - pearson_correlation: 0.6249 - euclidean_distance: 0.5133
Epoch 72/200
38/38 [==============================] - 0s 917us/step - loss: 0.3214 - accuracy: 0.8893 - mae: 0.3214 - pearson_correlation: 0.6257 - euclidean_distance: 0.5080
Epoch 73/200
38/38 [==============================] - 0s 887us/step - loss: 0.3189 - accuracy: 0.8924 - mae: 0.3189 - pearson_correlation: 0.6248 - euclidean_distance: 0.5043
Epoch 74/200
38/38 [==============================] - 0s 909us/step - loss: 0.3175 - accuracy: 0.8858 - mae: 0.3175 - pearson_correlation: 0.6243 - euclidean_distance: 0.5013
Epoch 75/200
38/38 [==============================] - 0s 910us/step - loss: 0.3146 - accuracy: 0.8880 - mae: 0.3146 - pearson_correlation: 0.6248 - euclidean_distance: 0.4973
Epoch 76/200
38/38 [==============================] - 0s 911us/step - loss: 0.3108 - accuracy: 0.8942 - mae: 0.3108 - pearson_correlation: 0.6242 - euclidean_distance: 0.4913
Epoch 77/200
38/38 [==============================] - 0s 903us/step - loss: 0.3068 - accuracy: 0.8884 - mae: 0.3068 - pearson_correlation: 0.6235 - euclidean_distance: 0.4861
Epoch 78/200
38/38 [==============================] - 0s 895us/step - loss: 0.3068 - accuracy: 0.8942 - mae: 0.3068 - pearson_correlation: 0.6252 - euclidean_distance: 0.4842
Epoch 79/200
38/38 [==============================] - 0s 899us/step - loss: 0.3018 - accuracy: 0.8937 - mae: 0.3018 - pearson_correlation: 0.6273 - euclidean_distance: 0.4784
Epoch 80/200
38/38 [==============================] - 0s 883us/step - loss: 0.2995 - accuracy: 0.8871 - mae: 0.2995 - pearson_correlation: 0.6234 - euclidean_distance: 0.4752
Epoch 81/200
38/38 [==============================] - 0s 894us/step - loss: 0.2959 - accuracy: 0.8937 - mae: 0.2959 - pearson_correlation: 0.6236 - euclidean_distance: 0.4703
Epoch 82/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2942 - accuracy: 0.8990 - mae: 0.2942 - pearson_correlation: 0.6260 - euclidean_distance: 0.4669
Epoch 83/200
38/38 [==============================] - 0s 979us/step - loss: 0.2916 - accuracy: 0.8973 - mae: 0.2916 - pearson_correlation: 0.6269 - euclidean_distance: 0.4630
Epoch 84/200
38/38 [==============================] - 0s 972us/step - loss: 0.2878 - accuracy: 0.8933 - mae: 0.2878 - pearson_correlation: 0.6248 - euclidean_distance: 0.4578
Epoch 85/200
38/38 [==============================] - 0s 979us/step - loss: 0.2862 - accuracy: 0.8986 - mae: 0.2862 - pearson_correlation: 0.6263 - euclidean_distance: 0.4546
Epoch 86/200
38/38 [==============================] - 0s 976us/step - loss: 0.2831 - accuracy: 0.9039 - mae: 0.2831 - pearson_correlation: 0.6297 - euclidean_distance: 0.4499
Epoch 87/200
38/38 [==============================] - 0s 986us/step - loss: 0.2810 - accuracy: 0.8986 - mae: 0.2810 - pearson_correlation: 0.6262 - euclidean_distance: 0.4474
Epoch 88/200
38/38 [==============================] - 0s 993us/step - loss: 0.2760 - accuracy: 0.8964 - mae: 0.2760 - pearson_correlation: 0.6300 - euclidean_distance: 0.4400
Epoch 89/200
38/38 [==============================] - 0s 983us/step - loss: 0.2759 - accuracy: 0.9039 - mae: 0.2759 - pearson_correlation: 0.6275 - euclidean_distance: 0.4390
Epoch 90/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2724 - accuracy: 0.9034 - mae: 0.2724 - pearson_correlation: 0.6326 - euclidean_distance: 0.4344
Epoch 91/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2684 - accuracy: 0.9012 - mae: 0.2684 - pearson_correlation: 0.6295 - euclidean_distance: 0.4290
Epoch 92/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2664 - accuracy: 0.9034 - mae: 0.2664 - pearson_correlation: 0.6317 - euclidean_distance: 0.4252
Epoch 93/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2645 - accuracy: 0.9123 - mae: 0.2645 - pearson_correlation: 0.6299 - euclidean_distance: 0.4215
Epoch 94/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2610 - accuracy: 0.9043 - mae: 0.2610 - pearson_correlation: 0.6301 - euclidean_distance: 0.4162
Epoch 95/200
38/38 [==============================] - 0s 962us/step - loss: 0.2567 - accuracy: 0.9149 - mae: 0.2567 - pearson_correlation: 0.6333 - euclidean_distance: 0.4117
Epoch 96/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2562 - accuracy: 0.9114 - mae: 0.2562 - pearson_correlation: 0.6338 - euclidean_distance: 0.4092
Epoch 97/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2532 - accuracy: 0.9070 - mae: 0.2532 - pearson_correlation: 0.6327 - euclidean_distance: 0.4050
Epoch 98/200
38/38 [==============================] - 0s 2ms/step - loss: 0.2499 - accuracy: 0.9118 - mae: 0.2499 - pearson_correlation: 0.6345 - euclidean_distance: 0.4004
Epoch 99/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2477 - accuracy: 0.9127 - mae: 0.2477 - pearson_correlation: 0.6336 - euclidean_distance: 0.3976
Epoch 100/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2447 - accuracy: 0.9131 - mae: 0.2447 - pearson_correlation: 0.6367 - euclidean_distance: 0.3932
Epoch 101/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2431 - accuracy: 0.9211 - mae: 0.2431 - pearson_correlation: 0.6347 - euclidean_distance: 0.3899
Epoch 102/200
38/38 [==============================] - 0s 914us/step - loss: 0.2406 - accuracy: 0.9242 - mae: 0.2406 - pearson_correlation: 0.6390 - euclidean_distance: 0.3858
Epoch 103/200
38/38 [==============================] - 0s 922us/step - loss: 0.2377 - accuracy: 0.9198 - mae: 0.2377 - pearson_correlation: 0.6377 - euclidean_distance: 0.3816
Epoch 104/200
38/38 [==============================] - 0s 929us/step - loss: 0.2354 - accuracy: 0.9189 - mae: 0.2354 - pearson_correlation: 0.6396 - euclidean_distance: 0.3785
Epoch 105/200
38/38 [==============================] - 0s 912us/step - loss: 0.2335 - accuracy: 0.9193 - mae: 0.2335 - pearson_correlation: 0.6401 - euclidean_distance: 0.3748
Epoch 106/200
38/38 [==============================] - 0s 920us/step - loss: 0.2300 - accuracy: 0.9215 - mae: 0.2300 - pearson_correlation: 0.6419 - euclidean_distance: 0.3697
Epoch 107/200
38/38 [==============================] - 0s 953us/step - loss: 0.2288 - accuracy: 0.9268 - mae: 0.2288 - pearson_correlation: 0.6404 - euclidean_distance: 0.3682
Epoch 108/200
38/38 [==============================] - 0s 946us/step - loss: 0.2266 - accuracy: 0.9211 - mae: 0.2266 - pearson_correlation: 0.6396 - euclidean_distance: 0.3646
Epoch 109/200
38/38 [==============================] - 0s 922us/step - loss: 0.2255 - accuracy: 0.9259 - mae: 0.2255 - pearson_correlation: 0.6413 - euclidean_distance: 0.3630
Epoch 110/200
38/38 [==============================] - 0s 914us/step - loss: 0.2225 - accuracy: 0.9211 - mae: 0.2225 - pearson_correlation: 0.6430 - euclidean_distance: 0.3579
Epoch 111/200
38/38 [==============================] - 0s 912us/step - loss: 0.2207 - accuracy: 0.9281 - mae: 0.2207 - pearson_correlation: 0.6497 - euclidean_distance: 0.3553
Epoch 112/200
38/38 [==============================] - 0s 957us/step - loss: 0.2182 - accuracy: 0.9308 - mae: 0.2182 - pearson_correlation: 0.6457 - euclidean_distance: 0.3516
Epoch 113/200
38/38 [==============================] - 0s 942us/step - loss: 0.2161 - accuracy: 0.9334 - mae: 0.2161 - pearson_correlation: 0.6440 - euclidean_distance: 0.3480
Epoch 114/200
38/38 [==============================] - 0s 950us/step - loss: 0.2143 - accuracy: 0.9295 - mae: 0.2143 - pearson_correlation: 0.6444 - euclidean_distance: 0.3450
Epoch 115/200
38/38 [==============================] - 0s 944us/step - loss: 0.2133 - accuracy: 0.9308 - mae: 0.2133 - pearson_correlation: 0.6462 - euclidean_distance: 0.3428
Epoch 116/200
38/38 [==============================] - 0s 932us/step - loss: 0.2110 - accuracy: 0.9290 - mae: 0.2110 - pearson_correlation: 0.6432 - euclidean_distance: 0.3400
Epoch 117/200
38/38 [==============================] - 0s 915us/step - loss: 0.2087 - accuracy: 0.9290 - mae: 0.2087 - pearson_correlation: 0.6462 - euclidean_distance: 0.3355
Epoch 118/200
38/38 [==============================] - 0s 898us/step - loss: 0.2071 - accuracy: 0.9343 - mae: 0.2071 - pearson_correlation: 0.6487 - euclidean_distance: 0.3332
Epoch 119/200
38/38 [==============================] - 0s 910us/step - loss: 0.2047 - accuracy: 0.9317 - mae: 0.2047 - pearson_correlation: 0.6516 - euclidean_distance: 0.3292
Epoch 120/200
38/38 [==============================] - 0s 912us/step - loss: 0.2036 - accuracy: 0.9330 - mae: 0.2036 - pearson_correlation: 0.6457 - euclidean_distance: 0.3276
Epoch 121/200
38/38 [==============================] - 0s 978us/step - loss: 0.2029 - accuracy: 0.9369 - mae: 0.2029 - pearson_correlation: 0.6495 - euclidean_distance: 0.3256
Epoch 122/200
38/38 [==============================] - 0s 1ms/step - loss: 0.2009 - accuracy: 0.9347 - mae: 0.2009 - pearson_correlation: 0.6488 - euclidean_distance: 0.3224
Epoch 123/200
38/38 [==============================] - 0s 977us/step - loss: 0.1994 - accuracy: 0.9325 - mae: 0.1994 - pearson_correlation: 0.6484 - euclidean_distance: 0.3203
Epoch 124/200
38/38 [==============================] - 0s 1ms/step - loss: 0.1975 - accuracy: 0.9343 - mae: 0.1975 - pearson_correlation: 0.6471 - euclidean_distance: 0.3179
Epoch 125/200
38/38 [==============================] - 0s 1ms/step - loss: 0.1950 - accuracy: 0.9339 - mae: 0.1950 - pearson_correlation: 0.6501 - euclidean_distance: 0.3139
Epoch 126/200
38/38 [==============================] - 0s 981us/step - loss: 0.1949 - accuracy: 0.9369 - mae: 0.1949 - pearson_correlation: 0.6497 - euclidean_distance: 0.3132
Epoch 127/200
38/38 [==============================] - 0s 973us/step - loss: 0.1923 - accuracy: 0.9352 - mae: 0.1923 - pearson_correlation: 0.6494 - euclidean_distance: 0.3100
Epoch 128/200
38/38 [==============================] - 0s 937us/step - loss: 0.1902 - accuracy: 0.9361 - mae: 0.1902 - pearson_correlation: 0.6488 - euclidean_distance: 0.3065
Epoch 129/200
38/38 [==============================] - 0s 918us/step - loss: 0.1900 - accuracy: 0.9387 - mae: 0.1900 - pearson_correlation: 0.6498 - euclidean_distance: 0.3052
Epoch 130/200
38/38 [==============================] - 0s 971us/step - loss: 0.1864 - accuracy: 0.9343 - mae: 0.1864 - pearson_correlation: 0.6532 - euclidean_distance: 0.3000
Epoch 131/200
38/38 [==============================] - 0s 992us/step - loss: 0.1869 - accuracy: 0.9356 - mae: 0.1869 - pearson_correlation: 0.6509 - euclidean_distance: 0.3009
Epoch 132/200
38/38 [==============================] - 0s 993us/step - loss: 0.1853 - accuracy: 0.9387 - mae: 0.1853 - pearson_correlation: 0.6489 - euclidean_distance: 0.2988
Epoch 133/200
38/38 [==============================] - 0s 992us/step - loss: 0.1833 - accuracy: 0.9378 - mae: 0.1833 - pearson_correlation: 0.6538 - euclidean_distance: 0.2950
Epoch 134/200
38/38 [==============================] - 0s 982us/step - loss: 0.1818 - accuracy: 0.9361 - mae: 0.1818 - pearson_correlation: 0.6538 - euclidean_distance: 0.2919
Epoch 135/200
38/38 [==============================] - 0s 988us/step - loss: 0.1826 - accuracy: 0.9396 - mae: 0.1826 - pearson_correlation: 0.6515 - euclidean_distance: 0.2938
Epoch 136/200
38/38 [==============================] - 0s 996us/step - loss: 0.1794 - accuracy: 0.9369 - mae: 0.1794 - pearson_correlation: 0.6518 - euclidean_distance: 0.2889
Epoch 137/200
38/38 [==============================] - 0s 974us/step - loss: 0.1801 - accuracy: 0.9361 - mae: 0.1801 - pearson_correlation: 0.6517 - euclidean_distance: 0.2894
Epoch 138/200
38/38 [==============================] - 0s 977us/step - loss: 0.1768 - accuracy: 0.9383 - mae: 0.1768 - pearson_correlation: 0.6530 - euclidean_distance: 0.2847
Epoch 139/200
38/38 [==============================] - 0s 920us/step - loss: 0.1757 - accuracy: 0.9374 - mae: 0.1757 - pearson_correlation: 0.6533 - euclidean_distance: 0.2822
Epoch 140/200
38/38 [==============================] - 0s 910us/step - loss: 0.1759 - accuracy: 0.9365 - mae: 0.1759 - pearson_correlation: 0.6526 - euclidean_distance: 0.2829
Epoch 141/200
38/38 [==============================] - 0s 923us/step - loss: 0.1741 - accuracy: 0.9369 - mae: 0.1741 - pearson_correlation: 0.6528 - euclidean_distance: 0.2796
Epoch 142/200
38/38 [==============================] - 0s 912us/step - loss: 0.1713 - accuracy: 0.9383 - mae: 0.1713 - pearson_correlation: 0.6582 - euclidean_distance: 0.2756
Epoch 143/200
38/38 [==============================] - 0s 901us/step - loss: 0.1715 - accuracy: 0.9374 - mae: 0.1715 - pearson_correlation: 0.6554 - euclidean_distance: 0.2760
Epoch 144/200
38/38 [==============================] - 0s 915us/step - loss: 0.1698 - accuracy: 0.9365 - mae: 0.1698 - pearson_correlation: 0.6524 - euclidean_distance: 0.2733
Epoch 145/200
38/38 [==============================] - 0s 909us/step - loss: 0.1711 - accuracy: 0.9365 - mae: 0.1711 - pearson_correlation: 0.6488 - euclidean_distance: 0.2753
Epoch 146/200
38/38 [==============================] - 0s 907us/step - loss: 0.1673 - accuracy: 0.9365 - mae: 0.1673 - pearson_correlation: 0.6532 - euclidean_distance: 0.2690
Epoch 147/200
38/38 [==============================] - 0s 919us/step - loss: 0.1649 - accuracy: 0.9374 - mae: 0.1649 - pearson_correlation: 0.6542 - euclidean_distance: 0.2662
Epoch 148/200
38/38 [==============================] - 0s 911us/step - loss: 0.1659 - accuracy: 0.9343 - mae: 0.1659 - pearson_correlation: 0.6515 - euclidean_distance: 0.2677
Epoch 149/200
38/38 [==============================] - 0s 907us/step - loss: 0.1643 - accuracy: 0.9396 - mae: 0.1643 - pearson_correlation: 0.6535 - euclidean_distance: 0.2646
Epoch 150/200
38/38 [==============================] - 0s 922us/step - loss: 0.1655 - accuracy: 0.9392 - mae: 0.1655 - pearson_correlation: 0.6499 - euclidean_distance: 0.2662
Epoch 151/200
38/38 [==============================] - 0s 904us/step - loss: 0.1616 - accuracy: 0.9374 - mae: 0.1616 - pearson_correlation: 0.6540 - euclidean_distance: 0.2609
Epoch 152/200
38/38 [==============================] - 0s 908us/step - loss: 0.1608 - accuracy: 0.9356 - mae: 0.1608 - pearson_correlation: 0.6504 - euclidean_distance: 0.2592
Epoch 153/200
38/38 [==============================] - 0s 918us/step - loss: 0.1608 - accuracy: 0.9369 - mae: 0.1608 - pearson_correlation: 0.6533 - euclidean_distance: 0.2585
Epoch 154/200
38/38 [==============================] - 0s 893us/step - loss: 0.1586 - accuracy: 0.9352 - mae: 0.1586 - pearson_correlation: 0.6534 - euclidean_distance: 0.2557
Epoch 155/200
38/38 [==============================] - 0s 910us/step - loss: 0.1598 - accuracy: 0.9392 - mae: 0.1598 - pearson_correlation: 0.6539 - euclidean_distance: 0.2574
Epoch 156/200
38/38 [==============================] - 0s 914us/step - loss: 0.1587 - accuracy: 0.9387 - mae: 0.1587 - pearson_correlation: 0.6569 - euclidean_distance: 0.2554
Epoch 157/200
38/38 [==============================] - 0s 912us/step - loss: 0.1581 - accuracy: 0.9378 - mae: 0.1581 - pearson_correlation: 0.6519 - euclidean_distance: 0.2546
Epoch 158/200
38/38 [==============================] - 0s 906us/step - loss: 0.1555 - accuracy: 0.9387 - mae: 0.1555 - pearson_correlation: 0.6500 - euclidean_distance: 0.2507
Epoch 159/200
38/38 [==============================] - 0s 910us/step - loss: 0.1553 - accuracy: 0.9369 - mae: 0.1553 - pearson_correlation: 0.6546 - euclidean_distance: 0.2505
Epoch 160/200
38/38 [==============================] - 0s 900us/step - loss: 0.1536 - accuracy: 0.9387 - mae: 0.1536 - pearson_correlation: 0.6532 - euclidean_distance: 0.2476
Epoch 161/200
38/38 [==============================] - 0s 902us/step - loss: 0.1525 - accuracy: 0.9361 - mae: 0.1525 - pearson_correlation: 0.6547 - euclidean_distance: 0.2457
Epoch 162/200
38/38 [==============================] - 0s 906us/step - loss: 0.1519 - accuracy: 0.9347 - mae: 0.1519 - pearson_correlation: 0.6559 - euclidean_distance: 0.2447
Epoch 163/200
38/38 [==============================] - 0s 906us/step - loss: 0.1510 - accuracy: 0.9383 - mae: 0.1510 - pearson_correlation: 0.6556 - euclidean_distance: 0.2434
Epoch 164/200
38/38 [==============================] - 0s 912us/step - loss: 0.1514 - accuracy: 0.9383 - mae: 0.1514 - pearson_correlation: 0.6567 - euclidean_distance: 0.2441
Epoch 165/200
38/38 [==============================] - 0s 940us/step - loss: 0.1482 - accuracy: 0.9369 - mae: 0.1482 - pearson_correlation: 0.6586 - euclidean_distance: 0.2395
Epoch 166/200
38/38 [==============================] - 0s 908us/step - loss: 0.1464 - accuracy: 0.9369 - mae: 0.1464 - pearson_correlation: 0.6560 - euclidean_distance: 0.2370
Epoch 167/200
38/38 [==============================] - 0s 896us/step - loss: 0.1470 - accuracy: 0.9365 - mae: 0.1470 - pearson_correlation: 0.6525 - euclidean_distance: 0.2381
Epoch 168/200
38/38 [==============================] - 0s 940us/step - loss: 0.1473 - accuracy: 0.9387 - mae: 0.1473 - pearson_correlation: 0.6558 - euclidean_distance: 0.2374
Epoch 169/200
38/38 [==============================] - 0s 925us/step - loss: 0.1465 - accuracy: 0.9387 - mae: 0.1465 - pearson_correlation: 0.6561 - euclidean_distance: 0.2368
Epoch 170/200
38/38 [==============================] - 0s 913us/step - loss: 0.1444 - accuracy: 0.9392 - mae: 0.1444 - pearson_correlation: 0.6554 - euclidean_distance: 0.2341
Epoch 171/200
38/38 [==============================] - 0s 911us/step - loss: 0.1445 - accuracy: 0.9356 - mae: 0.1445 - pearson_correlation: 0.6562 - euclidean_distance: 0.2330
Epoch 172/200
38/38 [==============================] - 0s 907us/step - loss: 0.1429 - accuracy: 0.9369 - mae: 0.1429 - pearson_correlation: 0.6578 - euclidean_distance: 0.2314
Epoch 173/200
38/38 [==============================] - 0s 914us/step - loss: 0.1429 - accuracy: 0.9369 - mae: 0.1429 - pearson_correlation: 0.6586 - euclidean_distance: 0.2306
Epoch 174/200
38/38 [==============================] - 0s 905us/step - loss: 0.1410 - accuracy: 0.9378 - mae: 0.1410 - pearson_correlation: 0.6606 - euclidean_distance: 0.2288
Epoch 175/200
38/38 [==============================] - 0s 913us/step - loss: 0.1431 - accuracy: 0.9356 - mae: 0.1431 - pearson_correlation: 0.6532 - euclidean_distance: 0.2312
Epoch 176/200
38/38 [==============================] - 0s 911us/step - loss: 0.1410 - accuracy: 0.9365 - mae: 0.1410 - pearson_correlation: 0.6608 - euclidean_distance: 0.2282
Epoch 177/200
38/38 [==============================] - 0s 903us/step - loss: 0.1400 - accuracy: 0.9369 - mae: 0.1400 - pearson_correlation: 0.6603 - euclidean_distance: 0.2261
Epoch 178/200
38/38 [==============================] - 0s 903us/step - loss: 0.1372 - accuracy: 0.9387 - mae: 0.1372 - pearson_correlation: 0.6564 - euclidean_distance: 0.2228
Epoch 179/200
38/38 [==============================] - 0s 907us/step - loss: 0.1384 - accuracy: 0.9365 - mae: 0.1384 - pearson_correlation: 0.6600 - euclidean_distance: 0.2237
Epoch 180/200
38/38 [==============================] - 0s 910us/step - loss: 0.1388 - accuracy: 0.9352 - mae: 0.1388 - pearson_correlation: 0.6607 - euclidean_distance: 0.2242
Epoch 181/200
38/38 [==============================] - 0s 907us/step - loss: 0.1374 - accuracy: 0.9356 - mae: 0.1374 - pearson_correlation: 0.6601 - euclidean_distance: 0.2224
Epoch 182/200
38/38 [==============================] - 0s 909us/step - loss: 0.1365 - accuracy: 0.9369 - mae: 0.1365 - pearson_correlation: 0.6641 - euclidean_distance: 0.2214
Epoch 183/200
38/38 [==============================] - 0s 907us/step - loss: 0.1343 - accuracy: 0.9374 - mae: 0.1343 - pearson_correlation: 0.6632 - euclidean_distance: 0.2178
Epoch 184/200
38/38 [==============================] - 0s 1ms/step - loss: 0.1379 - accuracy: 0.9361 - mae: 0.1379 - pearson_correlation: 0.6627 - euclidean_distance: 0.2225
Epoch 185/200
38/38 [==============================] - 0s 1ms/step - loss: 0.1330 - accuracy: 0.9383 - mae: 0.1330 - pearson_correlation: 0.6618 - euclidean_distance: 0.2156
Epoch 186/200
38/38 [==============================] - 0s 999us/step - loss: 0.1332 - accuracy: 0.9369 - mae: 0.1332 - pearson_correlation: 0.6595 - euclidean_distance: 0.2167
Epoch 187/200
38/38 [==============================] - 0s 1ms/step - loss: 0.1344 - accuracy: 0.9374 - mae: 0.1344 - pearson_correlation: 0.6599 - euclidean_distance: 0.2178
Epoch 188/200
38/38 [==============================] - 0s 977us/step - loss: 0.1345 - accuracy: 0.9365 - mae: 0.1345 - pearson_correlation: 0.6606 - euclidean_distance: 0.2178
Epoch 189/200
38/38 [==============================] - 0s 1ms/step - loss: 0.1340 - accuracy: 0.9352 - mae: 0.1340 - pearson_correlation: 0.6588 - euclidean_distance: 0.2173
Epoch 190/200
38/38 [==============================] - 0s 994us/step - loss: 0.1326 - accuracy: 0.9387 - mae: 0.1326 - pearson_correlation: 0.6645 - euclidean_distance: 0.2155
Epoch 191/200
38/38 [==============================] - 0s 947us/step - loss: 0.1310 - accuracy: 0.9369 - mae: 0.1310 - pearson_correlation: 0.6635 - euclidean_distance: 0.2124
Epoch 192/200
38/38 [==============================] - 0s 950us/step - loss: 0.1305 - accuracy: 0.9387 - mae: 0.1305 - pearson_correlation: 0.6631 - euclidean_distance: 0.2121
Epoch 193/200
38/38 [==============================] - 0s 945us/step - loss: 0.1300 - accuracy: 0.9374 - mae: 0.1300 - pearson_correlation: 0.6555 - euclidean_distance: 0.2113
Epoch 194/200
38/38 [==============================] - 0s 940us/step - loss: 0.1304 - accuracy: 0.9378 - mae: 0.1304 - pearson_correlation: 0.6644 - euclidean_distance: 0.2110
Epoch 195/200
38/38 [==============================] - 0s 959us/step - loss: 0.1283 - accuracy: 0.9343 - mae: 0.1283 - pearson_correlation: 0.6634 - euclidean_distance: 0.2081
Epoch 196/200
38/38 [==============================] - 0s 940us/step - loss: 0.1286 - accuracy: 0.9369 - mae: 0.1286 - pearson_correlation: 0.6642 - euclidean_distance: 0.2087
Epoch 197/200
38/38 [==============================] - 0s 930us/step - loss: 0.1296 - accuracy: 0.9392 - mae: 0.1296 - pearson_correlation: 0.6638 - euclidean_distance: 0.2102
Epoch 198/200
38/38 [==============================] - 0s 915us/step - loss: 0.1278 - accuracy: 0.9405 - mae: 0.1278 - pearson_correlation: 0.6657 - euclidean_distance: 0.2076
Epoch 199/200
38/38 [==============================] - 0s 904us/step - loss: 0.1271 - accuracy: 0.9374 - mae: 0.1271 - pearson_correlation: 0.6661 - euclidean_distance: 0.2069
Epoch 200/200
38/38 [==============================] - 0s 902us/step - loss: 0.1265 - accuracy: 0.9383 - mae: 0.1265 - pearson_correlation: 0.6680 - euclidean_distance: 0.2050
19/19 [==============================] - 6s 525us/step
Epoch 1/250
38/38 [==============================] - 1s 941us/step - loss: 0.6292 - accuracy: 0.0437 - mae: 0.6292 - pearson_correlation: -0.6948 - euclidean_distance: 1.1105
Epoch 2/250
38/38 [==============================] - 0s 872us/step - loss: 0.6266 - accuracy: 0.0446 - mae: 0.6266 - pearson_correlation: -0.6973 - euclidean_distance: 1.1076
Epoch 3/250
38/38 [==============================] - 0s 845us/step - loss: 0.6233 - accuracy: 0.0454 - mae: 0.6233 - pearson_correlation: -0.6980 - euclidean_distance: 1.1025
Epoch 4/250
38/38 [==============================] - 0s 945us/step - loss: 0.6210 - accuracy: 0.0450 - mae: 0.6210 - pearson_correlation: -0.7013 - euclidean_distance: 1.0999
Epoch 5/250
38/38 [==============================] - 0s 941us/step - loss: 0.6171 - accuracy: 0.0441 - mae: 0.6171 - pearson_correlation: -0.7023 - euclidean_distance: 1.0950
Epoch 6/250
38/38 [==============================] - 0s 930us/step - loss: 0.6160 - accuracy: 0.0441 - mae: 0.6160 - pearson_correlation: -0.7001 - euclidean_distance: 1.0922
Epoch 7/250
38/38 [==============================] - 0s 935us/step - loss: 0.6135 - accuracy: 0.0437 - mae: 0.6135 - pearson_correlation: -0.7001 - euclidean_distance: 1.0880
Epoch 8/250
38/38 [==============================] - 0s 924us/step - loss: 0.6092 - accuracy: 0.0459 - mae: 0.6092 - pearson_correlation: -0.7002 - euclidean_distance: 1.0823
Epoch 9/250
38/38 [==============================] - 0s 947us/step - loss: 0.6064 - accuracy: 0.0446 - mae: 0.6064 - pearson_correlation: -0.6995 - euclidean_distance: 1.0774
Epoch 10/250
38/38 [==============================] - 0s 943us/step - loss: 0.6047 - accuracy: 0.0437 - mae: 0.6047 - pearson_correlation: -0.7029 - euclidean_distance: 1.0738
Epoch 11/250
38/38 [==============================] - 0s 910us/step - loss: 0.6010 - accuracy: 0.0437 - mae: 0.6010 - pearson_correlation: -0.7020 - euclidean_distance: 1.0684
Epoch 12/250
38/38 [==============================] - 0s 943us/step - loss: 0.5975 - accuracy: 0.0441 - mae: 0.5975 - pearson_correlation: -0.7057 - euclidean_distance: 1.0637
Epoch 13/250
38/38 [==============================] - 0s 937us/step - loss: 0.5948 - accuracy: 0.0454 - mae: 0.5948 - pearson_correlation: -0.7047 - euclidean_distance: 1.0598
Epoch 14/250
38/38 [==============================] - 0s 911us/step - loss: 0.5912 - accuracy: 0.0437 - mae: 0.5912 - pearson_correlation: -0.7023 - euclidean_distance: 1.0550
Epoch 15/250
38/38 [==============================] - 0s 930us/step - loss: 0.5897 - accuracy: 0.0437 - mae: 0.5897 - pearson_correlation: -0.7037 - euclidean_distance: 1.0518
Epoch 16/250
38/38 [==============================] - 0s 936us/step - loss: 0.5885 - accuracy: 0.0432 - mae: 0.5885 - pearson_correlation: -0.7076 - euclidean_distance: 1.0483
Epoch 17/250
38/38 [==============================] - 0s 1ms/step - loss: 0.5853 - accuracy: 0.0468 - mae: 0.5853 - pearson_correlation: -0.7021 - euclidean_distance: 1.0434
Epoch 18/250
38/38 [==============================] - 0s 982us/step - loss: 0.5818 - accuracy: 0.0446 - mae: 0.5818 - pearson_correlation: -0.7059 - euclidean_distance: 1.0383
Epoch 19/250
38/38 [==============================] - 0s 955us/step - loss: 0.5785 - accuracy: 0.0441 - mae: 0.5785 - pearson_correlation: -0.7071 - euclidean_distance: 1.0338
Epoch 20/250
38/38 [==============================] - 0s 938us/step - loss: 0.5753 - accuracy: 0.0450 - mae: 0.5753 - pearson_correlation: -0.7079 - euclidean_distance: 1.0285
Epoch 21/250
38/38 [==============================] - 0s 1ms/step - loss: 0.5725 - accuracy: 0.0437 - mae: 0.5725 - pearson_correlation: -0.7098 - euclidean_distance: 1.0235
Epoch 22/250
38/38 [==============================] - 0s 980us/step - loss: 0.5695 - accuracy: 0.0446 - mae: 0.5695 - pearson_correlation: -0.7088 - euclidean_distance: 1.0193
Epoch 23/250
38/38 [==============================] - 0s 947us/step - loss: 0.5664 - accuracy: 0.0437 - mae: 0.5664 - pearson_correlation: -0.7073 - euclidean_distance: 1.0137
Epoch 24/250
38/38 [==============================] - 0s 939us/step - loss: 0.5635 - accuracy: 0.0437 - mae: 0.5635 - pearson_correlation: -0.7103 - euclidean_distance: 1.0103
Epoch 25/250
38/38 [==============================] - 0s 955us/step - loss: 0.5614 - accuracy: 0.0454 - mae: 0.5614 - pearson_correlation: -0.7098 - euclidean_distance: 1.0044
Epoch 26/250
38/38 [==============================] - 0s 914us/step - loss: 0.5585 - accuracy: 0.0437 - mae: 0.5585 - pearson_correlation: -0.7116 - euclidean_distance: 1.0016
Epoch 27/250
38/38 [==============================] - 0s 928us/step - loss: 0.5561 - accuracy: 0.0437 - mae: 0.5561 - pearson_correlation: -0.7087 - euclidean_distance: 0.9968
Epoch 28/250
38/38 [==============================] - 0s 930us/step - loss: 0.5541 - accuracy: 0.0437 - mae: 0.5541 - pearson_correlation: -0.7082 - euclidean_distance: 0.9930
Epoch 29/250
38/38 [==============================] - 0s 914us/step - loss: 0.5489 - accuracy: 0.0450 - mae: 0.5489 - pearson_correlation: -0.7124 - euclidean_distance: 0.9858
Epoch 30/250
38/38 [==============================] - 0s 936us/step - loss: 0.5466 - accuracy: 0.0437 - mae: 0.5466 - pearson_correlation: -0.7090 - euclidean_distance: 0.9822
Epoch 31/250
38/38 [==============================] - 0s 938us/step - loss: 0.5439 - accuracy: 0.0441 - mae: 0.5439 - pearson_correlation: -0.7110 - euclidean_distance: 0.9778
Epoch 32/250
38/38 [==============================] - 0s 967us/step - loss: 0.5417 - accuracy: 0.0437 - mae: 0.5417 - pearson_correlation: -0.7127 - euclidean_distance: 0.9737
Epoch 33/250
38/38 [==============================] - 0s 926us/step - loss: 0.5391 - accuracy: 0.0441 - mae: 0.5391 - pearson_correlation: -0.7112 - euclidean_distance: 0.9696
Epoch 34/250
38/38 [==============================] - 0s 925us/step - loss: 0.5362 - accuracy: 0.0441 - mae: 0.5362 - pearson_correlation: -0.7110 - euclidean_distance: 0.9638
Epoch 35/250
38/38 [==============================] - 0s 937us/step - loss: 0.5347 - accuracy: 0.0446 - mae: 0.5347 - pearson_correlation: -0.7076 - euclidean_distance: 0.9609
Epoch 36/250
38/38 [==============================] - 0s 941us/step - loss: 0.5321 - accuracy: 0.0441 - mae: 0.5321 - pearson_correlation: -0.7112 - euclidean_distance: 0.9565
Epoch 37/250
38/38 [==============================] - 0s 903us/step - loss: 0.5287 - accuracy: 0.0446 - mae: 0.5287 - pearson_correlation: -0.7117 - euclidean_distance: 0.9509
Epoch 38/250
38/38 [==============================] - 0s 905us/step - loss: 0.5268 - accuracy: 0.0450 - mae: 0.5268 - pearson_correlation: -0.7103 - euclidean_distance: 0.9467
Epoch 39/250
38/38 [==============================] - 0s 927us/step - loss: 0.5240 - accuracy: 0.0441 - mae: 0.5240 - pearson_correlation: -0.7124 - euclidean_distance: 0.9427
Epoch 40/250
38/38 [==============================] - 0s 971us/step - loss: 0.5232 - accuracy: 0.0446 - mae: 0.5232 - pearson_correlation: -0.7114 - euclidean_distance: 0.9392
Epoch 41/250
38/38 [==============================] - 0s 902us/step - loss: 0.5196 - accuracy: 0.0441 - mae: 0.5196 - pearson_correlation: -0.7092 - euclidean_distance: 0.9342
Epoch 42/250
38/38 [==============================] - 0s 927us/step - loss: 0.5178 - accuracy: 0.0441 - mae: 0.5178 - pearson_correlation: -0.7116 - euclidean_distance: 0.9303
Epoch 43/250
38/38 [==============================] - 0s 1ms/step - loss: 0.5156 - accuracy: 0.0441 - mae: 0.5156 - pearson_correlation: -0.7058 - euclidean_distance: 0.9267
Epoch 44/250
38/38 [==============================] - 0s 1ms/step - loss: 0.5125 - accuracy: 0.0441 - mae: 0.5125 - pearson_correlation: -0.7099 - euclidean_distance: 0.9219
Epoch 45/250
38/38 [==============================] - 0s 1ms/step - loss: 0.5106 - accuracy: 0.0446 - mae: 0.5106 - pearson_correlation: -0.7066 - euclidean_distance: 0.9179
Epoch 46/250
38/38 [==============================] - 0s 990us/step - loss: 0.5073 - accuracy: 0.0441 - mae: 0.5073 - pearson_correlation: -0.7100 - euclidean_distance: 0.9125
Epoch 47/250
38/38 [==============================] - 0s 1ms/step - loss: 0.5055 - accuracy: 0.0446 - mae: 0.5055 - pearson_correlation: -0.7091 - euclidean_distance: 0.9092
Epoch 48/250
38/38 [==============================] - 0s 1ms/step - loss: 0.5031 - accuracy: 0.0437 - mae: 0.5031 - pearson_correlation: -0.7081 - euclidean_distance: 0.9047
Epoch 49/250
38/38 [==============================] - 0s 941us/step - loss: 0.5000 - accuracy: 0.0446 - mae: 0.5000 - pearson_correlation: -0.7082 - euclidean_distance: 0.9000
Epoch 50/250
38/38 [==============================] - 0s 1ms/step - loss: 0.4989 - accuracy: 0.0441 - mae: 0.4989 - pearson_correlation: -0.7101 - euclidean_distance: 0.8966
Epoch 51/250
38/38 [==============================] - 0s 978us/step - loss: 0.4961 - accuracy: 0.0441 - mae: 0.4961 - pearson_correlation: -0.7082 - euclidean_distance: 0.8930
Epoch 52/250
38/38 [==============================] - 0s 1ms/step - loss: 0.4933 - accuracy: 0.0446 - mae: 0.4933 - pearson_correlation: -0.7073 - euclidean_distance: 0.8880
Epoch 53/250
38/38 [==============================] - 0s 1ms/step - loss: 0.4913 - accuracy: 0.0446 - mae: 0.4913 - pearson_correlation: -0.7105 - euclidean_distance: 0.8841
Epoch 54/250
38/38 [==============================] - 0s 1ms/step - loss: 0.4887 - accuracy: 0.0446 - mae: 0.4887 - pearson_correlation: -0.7059 - euclidean_distance: 0.8788
Epoch 55/250
38/38 [==============================] - 0s 1ms/step - loss: 0.4864 - accuracy: 0.0446 - mae: 0.4864 - pearson_correlation: -0.7085 - euclidean_distance: 0.8757
Epoch 56/250
38/38 [==============================] - 0s 1ms/step - loss: 0.4840 - accuracy: 0.0446 - mae: 0.4840 - pearson_correlation: -0.7070 - euclidean_distance: 0.8717
Epoch 57/250
38/38 [==============================] - 0s 1ms/step - loss: 0.4822 - accuracy: 0.0476 - mae: 0.4822 - pearson_correlation: -0.7032 - euclidean_distance: 0.8671
Epoch 58/250
38/38 [==============================] - 0s 1ms/step - loss: 0.4791 - accuracy: 0.0446 - mae: 0.4791 - pearson_correlation: -0.7032 - euclidean_distance: 0.8630
Epoch 59/250
38/38 [==============================] - 0s 941us/step - loss: 0.4778 - accuracy: 0.0450 - mae: 0.4778 - pearson_correlation: -0.7062 - euclidean_distance: 0.8591
Epoch 60/250
38/38 [==============================] - 0s 934us/step - loss: 0.4750 - accuracy: 0.0459 - mae: 0.4750 - pearson_correlation: -0.7021 - euclidean_distance: 0.8550
Epoch 61/250
38/38 [==============================] - 0s 936us/step - loss: 0.4726 - accuracy: 0.0454 - mae: 0.4726 - pearson_correlation: -0.7032 - euclidean_distance: 0.8504
Epoch 62/250
38/38 [==============================] - 0s 928us/step - loss: 0.4710 - accuracy: 0.0446 - mae: 0.4710 - pearson_correlation: -0.7055 - euclidean_distance: 0.8475
Epoch 63/250
38/38 [==============================] - 0s 930us/step - loss: 0.4692 - accuracy: 0.0450 - mae: 0.4692 - pearson_correlation: -0.7025 - euclidean_distance: 0.8426
Epoch 64/250
38/38 [==============================] - 0s 920us/step - loss: 0.4670 - accuracy: 0.0450 - mae: 0.4670 - pearson_correlation: -0.7012 - euclidean_distance: 0.8394
Epoch 65/250
38/38 [==============================] - 0s 923us/step - loss: 0.4641 - accuracy: 0.0463 - mae: 0.4641 - pearson_correlation: -0.6996 - euclidean_distance: 0.8340
Epoch 66/250
38/38 [==============================] - 0s 915us/step - loss: 0.4613 - accuracy: 0.0459 - mae: 0.4613 - pearson_correlation: -0.7007 - euclidean_distance: 0.8297
Epoch 67/250
38/38 [==============================] - 0s 941us/step - loss: 0.4595 - accuracy: 0.0472 - mae: 0.4595 - pearson_correlation: -0.7002 - euclidean_distance: 0.8263
Epoch 68/250
38/38 [==============================] - 0s 876us/step - loss: 0.4574 - accuracy: 0.0463 - mae: 0.4574 - pearson_correlation: -0.6998 - euclidean_distance: 0.8225
Epoch 69/250
38/38 [==============================] - 0s 914us/step - loss: 0.4542 - accuracy: 0.0468 - mae: 0.4542 - pearson_correlation: -0.6967 - euclidean_distance: 0.8177
Epoch 70/250
38/38 [==============================] - 0s 905us/step - loss: 0.4515 - accuracy: 0.0490 - mae: 0.4515 - pearson_correlation: -0.6996 - euclidean_distance: 0.8138
Epoch 71/250
38/38 [==============================] - 0s 942us/step - loss: 0.4517 - accuracy: 0.0454 - mae: 0.4517 - pearson_correlation: -0.6977 - euclidean_distance: 0.8120
Epoch 72/250
38/38 [==============================] - 0s 903us/step - loss: 0.4480 - accuracy: 0.0468 - mae: 0.4480 - pearson_correlation: -0.6978 - euclidean_distance: 0.8061
Epoch 73/250
38/38 [==============================] - 0s 927us/step - loss: 0.4463 - accuracy: 0.0481 - mae: 0.4463 - pearson_correlation: -0.6973 - euclidean_distance: 0.8023
Epoch 74/250
38/38 [==============================] - 0s 925us/step - loss: 0.4454 - accuracy: 0.0468 - mae: 0.4454 - pearson_correlation: -0.6922 - euclidean_distance: 0.7989
Epoch 75/250
38/38 [==============================] - 0s 920us/step - loss: 0.4430 - accuracy: 0.0503 - mae: 0.4430 - pearson_correlation: -0.6934 - euclidean_distance: 0.7949
Epoch 76/250
38/38 [==============================] - 0s 928us/step - loss: 0.4393 - accuracy: 0.0481 - mae: 0.4393 - pearson_correlation: -0.6934 - euclidean_distance: 0.7906
Epoch 77/250
38/38 [==============================] - 0s 924us/step - loss: 0.4371 - accuracy: 0.0490 - mae: 0.4371 - pearson_correlation: -0.6923 - euclidean_distance: 0.7865
Epoch 78/250
38/38 [==============================] - 0s 921us/step - loss: 0.4339 - accuracy: 0.0485 - mae: 0.4339 - pearson_correlation: -0.6914 - euclidean_distance: 0.7812
Epoch 79/250
38/38 [==============================] - 0s 920us/step - loss: 0.4322 - accuracy: 0.0481 - mae: 0.4322 - pearson_correlation: -0.6834 - euclidean_distance: 0.7772
Epoch 80/250
38/38 [==============================] - 0s 934us/step - loss: 0.4311 - accuracy: 0.0507 - mae: 0.4311 - pearson_correlation: -0.6876 - euclidean_distance: 0.7739
Epoch 81/250
38/38 [==============================] - 0s 930us/step - loss: 0.4276 - accuracy: 0.0512 - mae: 0.4276 - pearson_correlation: -0.6871 - euclidean_distance: 0.7695
Epoch 82/250
38/38 [==============================] - 0s 938us/step - loss: 0.4266 - accuracy: 0.0512 - mae: 0.4266 - pearson_correlation: -0.6822 - euclidean_distance: 0.7669
Epoch 83/250
38/38 [==============================] - 0s 920us/step - loss: 0.4231 - accuracy: 0.0494 - mae: 0.4231 - pearson_correlation: -0.6841 - euclidean_distance: 0.7611
Epoch 84/250
38/38 [==============================] - 0s 940us/step - loss: 0.4228 - accuracy: 0.0516 - mae: 0.4228 - pearson_correlation: -0.6808 - euclidean_distance: 0.7588
Epoch 85/250
38/38 [==============================] - 0s 885us/step - loss: 0.4198 - accuracy: 0.0573 - mae: 0.4198 - pearson_correlation: -0.6842 - euclidean_distance: 0.7541
Epoch 86/250
38/38 [==============================] - 0s 903us/step - loss: 0.4180 - accuracy: 0.0503 - mae: 0.4180 - pearson_correlation: -0.6801 - euclidean_distance: 0.7507
Epoch 87/250
38/38 [==============================] - 0s 934us/step - loss: 0.4167 - accuracy: 0.0578 - mae: 0.4167 - pearson_correlation: -0.6746 - euclidean_distance: 0.7475
Epoch 88/250
38/38 [==============================] - 0s 919us/step - loss: 0.4143 - accuracy: 0.0551 - mae: 0.4143 - pearson_correlation: -0.6744 - euclidean_distance: 0.7437
Epoch 89/250
38/38 [==============================] - 0s 934us/step - loss: 0.4114 - accuracy: 0.0543 - mae: 0.4114 - pearson_correlation: -0.6717 - euclidean_distance: 0.7386
Epoch 90/250
38/38 [==============================] - 0s 918us/step - loss: 0.4098 - accuracy: 0.0560 - mae: 0.4098 - pearson_correlation: -0.6781 - euclidean_distance: 0.7358
Epoch 91/250
38/38 [==============================] - 0s 933us/step - loss: 0.4070 - accuracy: 0.0582 - mae: 0.4070 - pearson_correlation: -0.6715 - euclidean_distance: 0.7309
Epoch 92/250
38/38 [==============================] - 0s 918us/step - loss: 0.4059 - accuracy: 0.0591 - mae: 0.4059 - pearson_correlation: -0.6689 - euclidean_distance: 0.7278
Epoch 93/250
38/38 [==============================] - 0s 916us/step - loss: 0.4030 - accuracy: 0.0609 - mae: 0.4030 - pearson_correlation: -0.6663 - euclidean_distance: 0.7235
Epoch 94/250
38/38 [==============================] - 0s 926us/step - loss: 0.3999 - accuracy: 0.0640 - mae: 0.3999 - pearson_correlation: -0.6642 - euclidean_distance: 0.7181
Epoch 95/250
38/38 [==============================] - 0s 923us/step - loss: 0.3992 - accuracy: 0.0679 - mae: 0.3992 - pearson_correlation: -0.6571 - euclidean_distance: 0.7154
Epoch 96/250
38/38 [==============================] - 0s 969us/step - loss: 0.3973 - accuracy: 0.0675 - mae: 0.3973 - pearson_correlation: -0.6603 - euclidean_distance: 0.7117
Epoch 97/250
38/38 [==============================] - 0s 900us/step - loss: 0.3935 - accuracy: 0.0635 - mae: 0.3935 - pearson_correlation: -0.6562 - euclidean_distance: 0.7067
Epoch 98/250
38/38 [==============================] - 0s 907us/step - loss: 0.3920 - accuracy: 0.0648 - mae: 0.3920 - pearson_correlation: -0.6533 - euclidean_distance: 0.7031
Epoch 99/250
38/38 [==============================] - 0s 921us/step - loss: 0.3895 - accuracy: 0.0697 - mae: 0.3895 - pearson_correlation: -0.6481 - euclidean_distance: 0.6986
Epoch 100/250
38/38 [==============================] - 0s 951us/step - loss: 0.3874 - accuracy: 0.0723 - mae: 0.3874 - pearson_correlation: -0.6499 - euclidean_distance: 0.6951
Epoch 101/250
38/38 [==============================] - 0s 869us/step - loss: 0.3865 - accuracy: 0.0768 - mae: 0.3865 - pearson_correlation: -0.6462 - euclidean_distance: 0.6916
Epoch 102/250
38/38 [==============================] - 0s 922us/step - loss: 0.3837 - accuracy: 0.0719 - mae: 0.3837 - pearson_correlation: -0.6413 - euclidean_distance: 0.6874
Epoch 103/250
38/38 [==============================] - 0s 933us/step - loss: 0.3817 - accuracy: 0.0776 - mae: 0.3817 - pearson_correlation: -0.6422 - euclidean_distance: 0.6840
Epoch 104/250
38/38 [==============================] - 0s 919us/step - loss: 0.3785 - accuracy: 0.0776 - mae: 0.3785 - pearson_correlation: -0.6369 - euclidean_distance: 0.6799
Epoch 105/250
38/38 [==============================] - 0s 927us/step - loss: 0.3775 - accuracy: 0.0834 - mae: 0.3775 - pearson_correlation: -0.6318 - euclidean_distance: 0.6753
Epoch 106/250
38/38 [==============================] - 0s 933us/step - loss: 0.3750 - accuracy: 0.0878 - mae: 0.3750 - pearson_correlation: -0.6309 - euclidean_distance: 0.6724
Epoch 107/250
38/38 [==============================] - 0s 927us/step - loss: 0.3729 - accuracy: 0.0922 - mae: 0.3729 - pearson_correlation: -0.6247 - euclidean_distance: 0.6678
Epoch 108/250
38/38 [==============================] - 0s 925us/step - loss: 0.3711 - accuracy: 0.0909 - mae: 0.3711 - pearson_correlation: -0.6216 - euclidean_distance: 0.6642
Epoch 109/250
38/38 [==============================] - 0s 929us/step - loss: 0.3686 - accuracy: 0.0948 - mae: 0.3686 - pearson_correlation: -0.6177 - euclidean_distance: 0.6596
Epoch 110/250
38/38 [==============================] - 0s 926us/step - loss: 0.3658 - accuracy: 0.0966 - mae: 0.3658 - pearson_correlation: -0.6178 - euclidean_distance: 0.6548
Epoch 111/250
38/38 [==============================] - 0s 918us/step - loss: 0.3642 - accuracy: 0.0993 - mae: 0.3642 - pearson_correlation: -0.6143 - euclidean_distance: 0.6520
Epoch 112/250
38/38 [==============================] - 0s 917us/step - loss: 0.3613 - accuracy: 0.1028 - mae: 0.3613 - pearson_correlation: -0.6021 - euclidean_distance: 0.6460
Epoch 113/250
38/38 [==============================] - 0s 918us/step - loss: 0.3594 - accuracy: 0.1072 - mae: 0.3594 - pearson_correlation: -0.5988 - euclidean_distance: 0.6428
Epoch 114/250
38/38 [==============================] - 0s 925us/step - loss: 0.3565 - accuracy: 0.1125 - mae: 0.3565 - pearson_correlation: -0.5958 - euclidean_distance: 0.6382
Epoch 115/250
38/38 [==============================] - 0s 919us/step - loss: 0.3548 - accuracy: 0.1134 - mae: 0.3548 - pearson_correlation: -0.5915 - euclidean_distance: 0.6342
Epoch 116/250
38/38 [==============================] - 0s 921us/step - loss: 0.3530 - accuracy: 0.1204 - mae: 0.3530 - pearson_correlation: -0.5796 - euclidean_distance: 0.6314
Epoch 117/250
38/38 [==============================] - 0s 928us/step - loss: 0.3499 - accuracy: 0.1191 - mae: 0.3499 - pearson_correlation: -0.5796 - euclidean_distance: 0.6263
Epoch 118/250
38/38 [==============================] - 0s 926us/step - loss: 0.3492 - accuracy: 0.1222 - mae: 0.3492 - pearson_correlation: -0.5749 - euclidean_distance: 0.6236
Epoch 119/250
38/38 [==============================] - 0s 925us/step - loss: 0.3463 - accuracy: 0.1248 - mae: 0.3463 - pearson_correlation: -0.5651 - euclidean_distance: 0.6190
Epoch 120/250
38/38 [==============================] - 0s 908us/step - loss: 0.3447 - accuracy: 0.1323 - mae: 0.3447 - pearson_correlation: -0.5661 - euclidean_distance: 0.6147
Epoch 121/250
38/38 [==============================] - 0s 942us/step - loss: 0.3420 - accuracy: 0.1319 - mae: 0.3420 - pearson_correlation: -0.5558 - euclidean_distance: 0.6099
Epoch 122/250
38/38 [==============================] - 0s 924us/step - loss: 0.3388 - accuracy: 0.1425 - mae: 0.3388 - pearson_correlation: -0.5481 - euclidean_distance: 0.6053
Epoch 123/250
38/38 [==============================] - 0s 927us/step - loss: 0.3374 - accuracy: 0.1442 - mae: 0.3374 - pearson_correlation: -0.5387 - euclidean_distance: 0.6022
Epoch 124/250
38/38 [==============================] - 0s 912us/step - loss: 0.3343 - accuracy: 0.1495 - mae: 0.3343 - pearson_correlation: -0.5357 - euclidean_distance: 0.5973
Epoch 125/250
38/38 [==============================] - 0s 923us/step - loss: 0.3330 - accuracy: 0.1460 - mae: 0.3330 - pearson_correlation: -0.5321 - euclidean_distance: 0.5930
Epoch 126/250
38/38 [==============================] - 0s 928us/step - loss: 0.3299 - accuracy: 0.1548 - mae: 0.3299 - pearson_correlation: -0.5221 - euclidean_distance: 0.5879
Epoch 127/250
38/38 [==============================] - 0s 933us/step - loss: 0.3274 - accuracy: 0.1584 - mae: 0.3274 - pearson_correlation: -0.5166 - euclidean_distance: 0.5840
Epoch 128/250
38/38 [==============================] - 0s 914us/step - loss: 0.3255 - accuracy: 0.1654 - mae: 0.3255 - pearson_correlation: -0.5054 - euclidean_distance: 0.5805
Epoch 129/250
38/38 [==============================] - 0s 921us/step - loss: 0.3233 - accuracy: 0.1698 - mae: 0.3233 - pearson_correlation: -0.4943 - euclidean_distance: 0.5765
Epoch 130/250
38/38 [==============================] - 0s 920us/step - loss: 0.3210 - accuracy: 0.1663 - mae: 0.3210 - pearson_correlation: -0.4843 - euclidean_distance: 0.5722
Epoch 131/250
38/38 [==============================] - 0s 920us/step - loss: 0.3183 - accuracy: 0.1747 - mae: 0.3183 - pearson_correlation: -0.4812 - euclidean_distance: 0.5677
Epoch 132/250
38/38 [==============================] - 0s 924us/step - loss: 0.3161 - accuracy: 0.1773 - mae: 0.3161 - pearson_correlation: -0.4743 - euclidean_distance: 0.5634
Epoch 133/250
38/38 [==============================] - 0s 926us/step - loss: 0.3142 - accuracy: 0.1844 - mae: 0.3142 - pearson_correlation: -0.4667 - euclidean_distance: 0.5596
Epoch 134/250
38/38 [==============================] - 0s 930us/step - loss: 0.3122 - accuracy: 0.1998 - mae: 0.3122 - pearson_correlation: -0.4520 - euclidean_distance: 0.5551
Epoch 135/250
38/38 [==============================] - 0s 970us/step - loss: 0.3076 - accuracy: 0.1989 - mae: 0.3076 - pearson_correlation: -0.4423 - euclidean_distance: 0.5489
Epoch 136/250
38/38 [==============================] - 0s 948us/step - loss: 0.3064 - accuracy: 0.2034 - mae: 0.3064 - pearson_correlation: -0.4312 - euclidean_distance: 0.5460
Epoch 137/250
38/38 [==============================] - 0s 928us/step - loss: 0.3049 - accuracy: 0.2131 - mae: 0.3049 - pearson_correlation: -0.4193 - euclidean_distance: 0.5421
Epoch 138/250
38/38 [==============================] - 0s 922us/step - loss: 0.3026 - accuracy: 0.2219 - mae: 0.3026 - pearson_correlation: -0.4165 - euclidean_distance: 0.5381
Epoch 139/250
38/38 [==============================] - 0s 928us/step - loss: 0.2988 - accuracy: 0.2263 - mae: 0.2988 - pearson_correlation: -0.4018 - euclidean_distance: 0.5318
Epoch 140/250
38/38 [==============================] - 0s 930us/step - loss: 0.2978 - accuracy: 0.2369 - mae: 0.2978 - pearson_correlation: -0.3887 - euclidean_distance: 0.5290
Epoch 141/250
38/38 [==============================] - 0s 906us/step - loss: 0.2950 - accuracy: 0.2298 - mae: 0.2950 - pearson_correlation: -0.3798 - euclidean_distance: 0.5247
Epoch 142/250
38/38 [==============================] - 0s 933us/step - loss: 0.2929 - accuracy: 0.2360 - mae: 0.2929 - pearson_correlation: -0.3748 - euclidean_distance: 0.5208
Epoch 143/250
38/38 [==============================] - 0s 926us/step - loss: 0.2912 - accuracy: 0.2523 - mae: 0.2912 - pearson_correlation: -0.3595 - euclidean_distance: 0.5174
Epoch 144/250
38/38 [==============================] - 0s 921us/step - loss: 0.2888 - accuracy: 0.2607 - mae: 0.2888 - pearson_correlation: -0.3520 - euclidean_distance: 0.5122
Epoch 145/250
38/38 [==============================] - 0s 939us/step - loss: 0.2864 - accuracy: 0.2629 - mae: 0.2864 - pearson_correlation: -0.3400 - euclidean_distance: 0.5080
Epoch 146/250
38/38 [==============================] - 0s 936us/step - loss: 0.2839 - accuracy: 0.2686 - mae: 0.2839 - pearson_correlation: -0.3287 - euclidean_distance: 0.5037
Epoch 147/250
38/38 [==============================] - 0s 915us/step - loss: 0.2808 - accuracy: 0.2757 - mae: 0.2808 - pearson_correlation: -0.3136 - euclidean_distance: 0.4991
Epoch 148/250
38/38 [==============================] - 0s 937us/step - loss: 0.2790 - accuracy: 0.2841 - mae: 0.2790 - pearson_correlation: -0.3034 - euclidean_distance: 0.4948
Epoch 149/250
38/38 [==============================] - 0s 935us/step - loss: 0.2769 - accuracy: 0.3083 - mae: 0.2769 - pearson_correlation: -0.2892 - euclidean_distance: 0.4913
Epoch 150/250
38/38 [==============================] - 0s 936us/step - loss: 0.2739 - accuracy: 0.3044 - mae: 0.2739 - pearson_correlation: -0.2791 - euclidean_distance: 0.4866
Epoch 151/250
38/38 [==============================] - 0s 922us/step - loss: 0.2722 - accuracy: 0.3180 - mae: 0.2722 - pearson_correlation: -0.2608 - euclidean_distance: 0.4823
Epoch 152/250
38/38 [==============================] - 0s 927us/step - loss: 0.2697 - accuracy: 0.3233 - mae: 0.2697 - pearson_correlation: -0.2515 - euclidean_distance: 0.4785
Epoch 153/250
38/38 [==============================] - 0s 922us/step - loss: 0.2686 - accuracy: 0.3260 - mae: 0.2686 - pearson_correlation: -0.2384 - euclidean_distance: 0.4751
Epoch 154/250
38/38 [==============================] - 0s 921us/step - loss: 0.2653 - accuracy: 0.3357 - mae: 0.2653 - pearson_correlation: -0.2301 - euclidean_distance: 0.4703
Epoch 155/250
38/38 [==============================] - 0s 922us/step - loss: 0.2637 - accuracy: 0.3476 - mae: 0.2637 - pearson_correlation: -0.2175 - euclidean_distance: 0.4664
Epoch 156/250
38/38 [==============================] - 0s 913us/step - loss: 0.2611 - accuracy: 0.3494 - mae: 0.2611 - pearson_correlation: -0.2053 - euclidean_distance: 0.4624
Epoch 157/250
38/38 [==============================] - 0s 914us/step - loss: 0.2603 - accuracy: 0.3529 - mae: 0.2603 - pearson_correlation: -0.1953 - euclidean_distance: 0.4595
Epoch 158/250
38/38 [==============================] - 0s 937us/step - loss: 0.2563 - accuracy: 0.3608 - mae: 0.2563 - pearson_correlation: -0.1777 - euclidean_distance: 0.4536
Epoch 159/250
38/38 [==============================] - 0s 924us/step - loss: 0.2552 - accuracy: 0.3639 - mae: 0.2552 - pearson_correlation: -0.1652 - euclidean_distance: 0.4514
Epoch 160/250
38/38 [==============================] - 0s 921us/step - loss: 0.2525 - accuracy: 0.3697 - mae: 0.2525 - pearson_correlation: -0.1543 - euclidean_distance: 0.4465
Epoch 161/250
38/38 [==============================] - 0s 925us/step - loss: 0.2518 - accuracy: 0.3772 - mae: 0.2518 - pearson_correlation: -0.1403 - euclidean_distance: 0.4439
Epoch 162/250
38/38 [==============================] - 0s 924us/step - loss: 0.2499 - accuracy: 0.3842 - mae: 0.2499 - pearson_correlation: -0.1309 - euclidean_distance: 0.4404
Epoch 163/250
38/38 [==============================] - 0s 929us/step - loss: 0.2472 - accuracy: 0.3877 - mae: 0.2472 - pearson_correlation: -0.1185 - euclidean_distance: 0.4358
Epoch 164/250
38/38 [==============================] - 0s 923us/step - loss: 0.2445 - accuracy: 0.3895 - mae: 0.2445 - pearson_correlation: -0.1098 - euclidean_distance: 0.4315
Epoch 165/250
38/38 [==============================] - 0s 912us/step - loss: 0.2423 - accuracy: 0.4071 - mae: 0.2423 - pearson_correlation: -0.0969 - euclidean_distance: 0.4274
Epoch 166/250
38/38 [==============================] - 0s 2ms/step - loss: 0.2407 - accuracy: 0.4076 - mae: 0.2407 - pearson_correlation: -0.0812 - euclidean_distance: 0.4236
Epoch 167/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2387 - accuracy: 0.4151 - mae: 0.2387 - pearson_correlation: -0.0672 - euclidean_distance: 0.4197
Epoch 168/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2365 - accuracy: 0.4213 - mae: 0.2365 - pearson_correlation: -0.0549 - euclidean_distance: 0.4163
Epoch 169/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2338 - accuracy: 0.4349 - mae: 0.2338 - pearson_correlation: -0.0449 - euclidean_distance: 0.4117
Epoch 170/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2334 - accuracy: 0.4407 - mae: 0.2334 - pearson_correlation: -0.0398 - euclidean_distance: 0.4102
Epoch 171/250
38/38 [==============================] - 0s 948us/step - loss: 0.2315 - accuracy: 0.4332 - mae: 0.2315 - pearson_correlation: -0.0207 - euclidean_distance: 0.4069
Epoch 172/250
38/38 [==============================] - 0s 954us/step - loss: 0.2296 - accuracy: 0.4504 - mae: 0.2296 - pearson_correlation: -0.0073 - euclidean_distance: 0.4030
Epoch 173/250
38/38 [==============================] - 0s 925us/step - loss: 0.2268 - accuracy: 0.4543 - mae: 0.2268 - pearson_correlation: 0.0062 - euclidean_distance: 0.3984
Epoch 174/250
38/38 [==============================] - 0s 927us/step - loss: 0.2249 - accuracy: 0.4702 - mae: 0.2249 - pearson_correlation: 0.0151 - euclidean_distance: 0.3950
Epoch 175/250
38/38 [==============================] - 0s 933us/step - loss: 0.2240 - accuracy: 0.4649 - mae: 0.2240 - pearson_correlation: 0.0221 - euclidean_distance: 0.3930
Epoch 176/250
38/38 [==============================] - 0s 913us/step - loss: 0.2214 - accuracy: 0.4804 - mae: 0.2214 - pearson_correlation: 0.0381 - euclidean_distance: 0.3876
Epoch 177/250
38/38 [==============================] - 0s 931us/step - loss: 0.2188 - accuracy: 0.4861 - mae: 0.2188 - pearson_correlation: 0.0495 - euclidean_distance: 0.3844
Epoch 178/250
38/38 [==============================] - 0s 921us/step - loss: 0.2175 - accuracy: 0.4936 - mae: 0.2175 - pearson_correlation: 0.0654 - euclidean_distance: 0.3807
Epoch 179/250
38/38 [==============================] - 0s 936us/step - loss: 0.2149 - accuracy: 0.4993 - mae: 0.2149 - pearson_correlation: 0.0738 - euclidean_distance: 0.3768
Epoch 180/250
38/38 [==============================] - 0s 920us/step - loss: 0.2141 - accuracy: 0.5170 - mae: 0.2141 - pearson_correlation: 0.0797 - euclidean_distance: 0.3746
Epoch 181/250
38/38 [==============================] - 0s 911us/step - loss: 0.2117 - accuracy: 0.5157 - mae: 0.2117 - pearson_correlation: 0.0855 - euclidean_distance: 0.3708
Epoch 182/250
38/38 [==============================] - 0s 931us/step - loss: 0.2109 - accuracy: 0.5280 - mae: 0.2109 - pearson_correlation: 0.0958 - euclidean_distance: 0.3693
Epoch 183/250
38/38 [==============================] - 0s 935us/step - loss: 0.2096 - accuracy: 0.5408 - mae: 0.2096 - pearson_correlation: 0.1092 - euclidean_distance: 0.3653
Epoch 184/250
38/38 [==============================] - 0s 919us/step - loss: 0.2066 - accuracy: 0.5452 - mae: 0.2066 - pearson_correlation: 0.1209 - euclidean_distance: 0.3611
Epoch 185/250
38/38 [==============================] - 0s 922us/step - loss: 0.2052 - accuracy: 0.5558 - mae: 0.2052 - pearson_correlation: 0.1393 - euclidean_distance: 0.3580
Epoch 186/250
38/38 [==============================] - 0s 917us/step - loss: 0.2037 - accuracy: 0.5584 - mae: 0.2037 - pearson_correlation: 0.1441 - euclidean_distance: 0.3552
Epoch 187/250
38/38 [==============================] - 0s 936us/step - loss: 0.2017 - accuracy: 0.5659 - mae: 0.2017 - pearson_correlation: 0.1526 - euclidean_distance: 0.3522
Epoch 188/250
38/38 [==============================] - 0s 910us/step - loss: 0.2004 - accuracy: 0.5748 - mae: 0.2004 - pearson_correlation: 0.1568 - euclidean_distance: 0.3489
Epoch 189/250
38/38 [==============================] - 0s 927us/step - loss: 0.1988 - accuracy: 0.5845 - mae: 0.1988 - pearson_correlation: 0.1714 - euclidean_distance: 0.3465
Epoch 190/250
38/38 [==============================] - 0s 926us/step - loss: 0.1980 - accuracy: 0.5933 - mae: 0.1980 - pearson_correlation: 0.1787 - euclidean_distance: 0.3442
Epoch 191/250
38/38 [==============================] - 0s 923us/step - loss: 0.1954 - accuracy: 0.6114 - mae: 0.1954 - pearson_correlation: 0.1943 - euclidean_distance: 0.3398
Epoch 192/250
38/38 [==============================] - 0s 943us/step - loss: 0.1948 - accuracy: 0.6118 - mae: 0.1948 - pearson_correlation: 0.2018 - euclidean_distance: 0.3378
Epoch 193/250
38/38 [==============================] - 0s 908us/step - loss: 0.1933 - accuracy: 0.6131 - mae: 0.1933 - pearson_correlation: 0.2087 - euclidean_distance: 0.3353
Epoch 194/250
38/38 [==============================] - 0s 913us/step - loss: 0.1922 - accuracy: 0.6242 - mae: 0.1922 - pearson_correlation: 0.2135 - euclidean_distance: 0.3329
Epoch 195/250
38/38 [==============================] - 0s 935us/step - loss: 0.1892 - accuracy: 0.6427 - mae: 0.1892 - pearson_correlation: 0.2254 - euclidean_distance: 0.3285
Epoch 196/250
38/38 [==============================] - 0s 927us/step - loss: 0.1874 - accuracy: 0.6414 - mae: 0.1874 - pearson_correlation: 0.2364 - euclidean_distance: 0.3254
Epoch 197/250
38/38 [==============================] - 0s 950us/step - loss: 0.1865 - accuracy: 0.6449 - mae: 0.1865 - pearson_correlation: 0.2440 - euclidean_distance: 0.3230
Epoch 198/250
38/38 [==============================] - 0s 903us/step - loss: 0.1850 - accuracy: 0.6595 - mae: 0.1850 - pearson_correlation: 0.2547 - euclidean_distance: 0.3204
Epoch 199/250
38/38 [==============================] - 0s 937us/step - loss: 0.1839 - accuracy: 0.6621 - mae: 0.1839 - pearson_correlation: 0.2611 - euclidean_distance: 0.3182
Epoch 200/250
38/38 [==============================] - 0s 934us/step - loss: 0.1832 - accuracy: 0.6714 - mae: 0.1832 - pearson_correlation: 0.2628 - euclidean_distance: 0.3170
Epoch 201/250
38/38 [==============================] - 0s 977us/step - loss: 0.1814 - accuracy: 0.6740 - mae: 0.1814 - pearson_correlation: 0.2786 - euclidean_distance: 0.3133
Epoch 202/250
38/38 [==============================] - 0s 948us/step - loss: 0.1790 - accuracy: 0.6881 - mae: 0.1790 - pearson_correlation: 0.2815 - euclidean_distance: 0.3100
Epoch 203/250
38/38 [==============================] - 0s 969us/step - loss: 0.1792 - accuracy: 0.6912 - mae: 0.1792 - pearson_correlation: 0.2928 - euclidean_distance: 0.3085
Epoch 204/250
38/38 [==============================] - 0s 900us/step - loss: 0.1763 - accuracy: 0.6965 - mae: 0.1763 - pearson_correlation: 0.2988 - euclidean_distance: 0.3046
Epoch 205/250
38/38 [==============================] - 0s 981us/step - loss: 0.1767 - accuracy: 0.6970 - mae: 0.1767 - pearson_correlation: 0.3080 - euclidean_distance: 0.3037
Epoch 206/250
38/38 [==============================] - 0s 970us/step - loss: 0.1748 - accuracy: 0.7036 - mae: 0.1748 - pearson_correlation: 0.3121 - euclidean_distance: 0.3009
Epoch 207/250
38/38 [==============================] - 0s 918us/step - loss: 0.1747 - accuracy: 0.7137 - mae: 0.1747 - pearson_correlation: 0.3165 - euclidean_distance: 0.3001
Epoch 208/250
38/38 [==============================] - 0s 915us/step - loss: 0.1728 - accuracy: 0.7203 - mae: 0.1728 - pearson_correlation: 0.3299 - euclidean_distance: 0.2965
Epoch 209/250
38/38 [==============================] - 0s 926us/step - loss: 0.1700 - accuracy: 0.7322 - mae: 0.1700 - pearson_correlation: 0.3382 - euclidean_distance: 0.2927
Epoch 210/250
38/38 [==============================] - 0s 918us/step - loss: 0.1709 - accuracy: 0.7221 - mae: 0.1709 - pearson_correlation: 0.3397 - euclidean_distance: 0.2931
Epoch 211/250
38/38 [==============================] - 0s 915us/step - loss: 0.1688 - accuracy: 0.7415 - mae: 0.1688 - pearson_correlation: 0.3497 - euclidean_distance: 0.2903
Epoch 212/250
38/38 [==============================] - 0s 955us/step - loss: 0.1671 - accuracy: 0.7490 - mae: 0.1671 - pearson_correlation: 0.3557 - euclidean_distance: 0.2868
Epoch 213/250
38/38 [==============================] - 0s 886us/step - loss: 0.1682 - accuracy: 0.7446 - mae: 0.1682 - pearson_correlation: 0.3545 - euclidean_distance: 0.2881
Epoch 214/250
38/38 [==============================] - 0s 894us/step - loss: 0.1654 - accuracy: 0.7521 - mae: 0.1654 - pearson_correlation: 0.3659 - euclidean_distance: 0.2842
Epoch 215/250
38/38 [==============================] - 0s 934us/step - loss: 0.1638 - accuracy: 0.7600 - mae: 0.1638 - pearson_correlation: 0.3717 - euclidean_distance: 0.2804
Epoch 216/250
38/38 [==============================] - 0s 925us/step - loss: 0.1648 - accuracy: 0.7662 - mae: 0.1648 - pearson_correlation: 0.3786 - euclidean_distance: 0.2816
Epoch 217/250
38/38 [==============================] - 0s 917us/step - loss: 0.1613 - accuracy: 0.7618 - mae: 0.1613 - pearson_correlation: 0.3876 - euclidean_distance: 0.2765
Epoch 218/250
38/38 [==============================] - 0s 917us/step - loss: 0.1610 - accuracy: 0.7772 - mae: 0.1610 - pearson_correlation: 0.3948 - euclidean_distance: 0.2759
Epoch 219/250
38/38 [==============================] - 0s 921us/step - loss: 0.1608 - accuracy: 0.7843 - mae: 0.1608 - pearson_correlation: 0.3948 - euclidean_distance: 0.2748
Epoch 220/250
38/38 [==============================] - 0s 935us/step - loss: 0.1585 - accuracy: 0.7794 - mae: 0.1585 - pearson_correlation: 0.4028 - euclidean_distance: 0.2711
Epoch 221/250
38/38 [==============================] - 0s 937us/step - loss: 0.1563 - accuracy: 0.7861 - mae: 0.1563 - pearson_correlation: 0.4135 - euclidean_distance: 0.2679
Epoch 222/250
38/38 [==============================] - 0s 892us/step - loss: 0.1579 - accuracy: 0.7953 - mae: 0.1579 - pearson_correlation: 0.4137 - euclidean_distance: 0.2692
Epoch 223/250
38/38 [==============================] - 0s 925us/step - loss: 0.1553 - accuracy: 0.7918 - mae: 0.1553 - pearson_correlation: 0.4242 - euclidean_distance: 0.2654
Epoch 224/250
38/38 [==============================] - 0s 937us/step - loss: 0.1535 - accuracy: 0.7971 - mae: 0.1535 - pearson_correlation: 0.4242 - euclidean_distance: 0.2628
Epoch 225/250
38/38 [==============================] - 0s 935us/step - loss: 0.1540 - accuracy: 0.8024 - mae: 0.1540 - pearson_correlation: 0.4289 - euclidean_distance: 0.2620
Epoch 226/250
38/38 [==============================] - 0s 930us/step - loss: 0.1522 - accuracy: 0.8072 - mae: 0.1522 - pearson_correlation: 0.4352 - euclidean_distance: 0.2594
Epoch 227/250
38/38 [==============================] - 0s 919us/step - loss: 0.1520 - accuracy: 0.8086 - mae: 0.1520 - pearson_correlation: 0.4418 - euclidean_distance: 0.2584
Epoch 228/250
38/38 [==============================] - 0s 972us/step - loss: 0.1510 - accuracy: 0.8183 - mae: 0.1510 - pearson_correlation: 0.4422 - euclidean_distance: 0.2571
Epoch 229/250
38/38 [==============================] - 0s 958us/step - loss: 0.1494 - accuracy: 0.8191 - mae: 0.1494 - pearson_correlation: 0.4508 - euclidean_distance: 0.2545
Epoch 230/250
38/38 [==============================] - 0s 955us/step - loss: 0.1483 - accuracy: 0.8240 - mae: 0.1483 - pearson_correlation: 0.4574 - euclidean_distance: 0.2526
Epoch 231/250
38/38 [==============================] - 0s 920us/step - loss: 0.1485 - accuracy: 0.8253 - mae: 0.1485 - pearson_correlation: 0.4624 - euclidean_distance: 0.2520
Epoch 232/250
38/38 [==============================] - 0s 926us/step - loss: 0.1461 - accuracy: 0.8231 - mae: 0.1461 - pearson_correlation: 0.4652 - euclidean_distance: 0.2493
Epoch 233/250
38/38 [==============================] - 0s 926us/step - loss: 0.1461 - accuracy: 0.8266 - mae: 0.1461 - pearson_correlation: 0.4697 - euclidean_distance: 0.2481
Epoch 234/250
38/38 [==============================] - 0s 979us/step - loss: 0.1467 - accuracy: 0.8297 - mae: 0.1467 - pearson_correlation: 0.4752 - euclidean_distance: 0.2484
Epoch 235/250
38/38 [==============================] - 0s 925us/step - loss: 0.1446 - accuracy: 0.8324 - mae: 0.1446 - pearson_correlation: 0.4766 - euclidean_distance: 0.2456
Epoch 236/250
38/38 [==============================] - 0s 950us/step - loss: 0.1443 - accuracy: 0.8341 - mae: 0.1443 - pearson_correlation: 0.4783 - euclidean_distance: 0.2445
Epoch 237/250
38/38 [==============================] - 0s 928us/step - loss: 0.1432 - accuracy: 0.8408 - mae: 0.1432 - pearson_correlation: 0.4846 - euclidean_distance: 0.2422
Epoch 238/250
38/38 [==============================] - 0s 922us/step - loss: 0.1430 - accuracy: 0.8474 - mae: 0.1430 - pearson_correlation: 0.4900 - euclidean_distance: 0.2426
Epoch 239/250
38/38 [==============================] - 0s 920us/step - loss: 0.1412 - accuracy: 0.8469 - mae: 0.1412 - pearson_correlation: 0.4960 - euclidean_distance: 0.2386
Epoch 240/250
38/38 [==============================] - 0s 927us/step - loss: 0.1403 - accuracy: 0.8461 - mae: 0.1403 - pearson_correlation: 0.4989 - euclidean_distance: 0.2377
Epoch 241/250
38/38 [==============================] - 0s 926us/step - loss: 0.1404 - accuracy: 0.8469 - mae: 0.1404 - pearson_correlation: 0.4985 - euclidean_distance: 0.2371
Epoch 242/250
38/38 [==============================] - 0s 931us/step - loss: 0.1393 - accuracy: 0.8496 - mae: 0.1393 - pearson_correlation: 0.5050 - euclidean_distance: 0.2351
Epoch 243/250
38/38 [==============================] - 0s 941us/step - loss: 0.1380 - accuracy: 0.8518 - mae: 0.1380 - pearson_correlation: 0.5114 - euclidean_distance: 0.2328
Epoch 244/250
38/38 [==============================] - 0s 905us/step - loss: 0.1375 - accuracy: 0.8518 - mae: 0.1375 - pearson_correlation: 0.5110 - euclidean_distance: 0.2324
Epoch 245/250
38/38 [==============================] - 0s 922us/step - loss: 0.1373 - accuracy: 0.8553 - mae: 0.1373 - pearson_correlation: 0.5108 - euclidean_distance: 0.2318
Epoch 246/250
38/38 [==============================] - 0s 922us/step - loss: 0.1343 - accuracy: 0.8637 - mae: 0.1343 - pearson_correlation: 0.5222 - euclidean_distance: 0.2277
Epoch 247/250
38/38 [==============================] - 0s 943us/step - loss: 0.1346 - accuracy: 0.8615 - mae: 0.1346 - pearson_correlation: 0.5268 - euclidean_distance: 0.2271
Epoch 248/250
38/38 [==============================] - 0s 928us/step - loss: 0.1332 - accuracy: 0.8646 - mae: 0.1332 - pearson_correlation: 0.5313 - euclidean_distance: 0.2246
Epoch 249/250
38/38 [==============================] - 0s 920us/step - loss: 0.1327 - accuracy: 0.8602 - mae: 0.1327 - pearson_correlation: 0.5338 - euclidean_distance: 0.2237
Epoch 250/250
38/38 [==============================] - 0s 917us/step - loss: 0.1317 - accuracy: 0.8747 - mae: 0.1317 - pearson_correlation: 0.5389 - euclidean_distance: 0.2222
19/19 [==============================] - 0s 567us/step
Epoch 1/250
38/38 [==============================] - 1s 938us/step - loss: 0.3987 - accuracy: 0.9030 - mae: 0.3987 - pearson_correlation: 0.3294 - euclidean_distance: 0.5974
Epoch 2/250
38/38 [==============================] - 0s 888us/step - loss: 0.3943 - accuracy: 0.9082 - mae: 0.3943 - pearson_correlation: 0.3291 - euclidean_distance: 0.5912
Epoch 3/250
38/38 [==============================] - 0s 857us/step - loss: 0.3890 - accuracy: 0.9021 - mae: 0.3890 - pearson_correlation: 0.3343 - euclidean_distance: 0.5837
Epoch 4/250
38/38 [==============================] - 0s 915us/step - loss: 0.3852 - accuracy: 0.9105 - mae: 0.3852 - pearson_correlation: 0.3316 - euclidean_distance: 0.5780
Epoch 5/250
38/38 [==============================] - 0s 914us/step - loss: 0.3783 - accuracy: 0.9047 - mae: 0.3783 - pearson_correlation: 0.3346 - euclidean_distance: 0.5679
Epoch 6/250
38/38 [==============================] - 0s 909us/step - loss: 0.3760 - accuracy: 0.9047 - mae: 0.3760 - pearson_correlation: 0.3368 - euclidean_distance: 0.5637
Epoch 7/250
38/38 [==============================] - 0s 957us/step - loss: 0.3680 - accuracy: 0.8990 - mae: 0.3680 - pearson_correlation: 0.3386 - euclidean_distance: 0.5539
Epoch 8/250
38/38 [==============================] - 0s 934us/step - loss: 0.3634 - accuracy: 0.9021 - mae: 0.3634 - pearson_correlation: 0.3418 - euclidean_distance: 0.5466
Epoch 9/250
38/38 [==============================] - 0s 921us/step - loss: 0.3609 - accuracy: 0.9025 - mae: 0.3609 - pearson_correlation: 0.3400 - euclidean_distance: 0.5425
Epoch 10/250
38/38 [==============================] - 0s 916us/step - loss: 0.3551 - accuracy: 0.9087 - mae: 0.3551 - pearson_correlation: 0.3425 - euclidean_distance: 0.5347
Epoch 11/250
38/38 [==============================] - 0s 908us/step - loss: 0.3502 - accuracy: 0.9078 - mae: 0.3502 - pearson_correlation: 0.3445 - euclidean_distance: 0.5279
Epoch 12/250
38/38 [==============================] - 0s 910us/step - loss: 0.3458 - accuracy: 0.9043 - mae: 0.3458 - pearson_correlation: 0.3451 - euclidean_distance: 0.5211
Epoch 13/250
38/38 [==============================] - 0s 912us/step - loss: 0.3435 - accuracy: 0.9003 - mae: 0.3435 - pearson_correlation: 0.3468 - euclidean_distance: 0.5178
Epoch 14/250
38/38 [==============================] - 0s 915us/step - loss: 0.3374 - accuracy: 0.9043 - mae: 0.3374 - pearson_correlation: 0.3453 - euclidean_distance: 0.5086
Epoch 15/250
38/38 [==============================] - 0s 926us/step - loss: 0.3318 - accuracy: 0.9091 - mae: 0.3318 - pearson_correlation: 0.3468 - euclidean_distance: 0.5008
Epoch 16/250
38/38 [==============================] - 0s 918us/step - loss: 0.3296 - accuracy: 0.9100 - mae: 0.3296 - pearson_correlation: 0.3533 - euclidean_distance: 0.4982
Epoch 17/250
38/38 [==============================] - 0s 945us/step - loss: 0.3231 - accuracy: 0.9109 - mae: 0.3231 - pearson_correlation: 0.3550 - euclidean_distance: 0.4887
Epoch 18/250
38/38 [==============================] - 0s 882us/step - loss: 0.3208 - accuracy: 0.9082 - mae: 0.3208 - pearson_correlation: 0.3560 - euclidean_distance: 0.4848
Epoch 19/250
38/38 [==============================] - 0s 989us/step - loss: 0.3157 - accuracy: 0.9135 - mae: 0.3157 - pearson_correlation: 0.3546 - euclidean_distance: 0.4777
Epoch 20/250
38/38 [==============================] - 0s 911us/step - loss: 0.3127 - accuracy: 0.9065 - mae: 0.3127 - pearson_correlation: 0.3579 - euclidean_distance: 0.4731
Epoch 21/250
38/38 [==============================] - 0s 930us/step - loss: 0.3084 - accuracy: 0.9105 - mae: 0.3084 - pearson_correlation: 0.3614 - euclidean_distance: 0.4670
Epoch 22/250
38/38 [==============================] - 0s 904us/step - loss: 0.3032 - accuracy: 0.9149 - mae: 0.3032 - pearson_correlation: 0.3658 - euclidean_distance: 0.4593
Epoch 23/250
38/38 [==============================] - 0s 914us/step - loss: 0.3023 - accuracy: 0.9091 - mae: 0.3023 - pearson_correlation: 0.3638 - euclidean_distance: 0.4584
Epoch 24/250
38/38 [==============================] - 0s 910us/step - loss: 0.2984 - accuracy: 0.9100 - mae: 0.2984 - pearson_correlation: 0.3653 - euclidean_distance: 0.4532
Epoch 25/250
38/38 [==============================] - 0s 909us/step - loss: 0.2937 - accuracy: 0.9157 - mae: 0.2937 - pearson_correlation: 0.3721 - euclidean_distance: 0.4456
Epoch 26/250
38/38 [==============================] - 0s 897us/step - loss: 0.2914 - accuracy: 0.9180 - mae: 0.2914 - pearson_correlation: 0.3757 - euclidean_distance: 0.4422
Epoch 27/250
38/38 [==============================] - 0s 916us/step - loss: 0.2868 - accuracy: 0.9096 - mae: 0.2868 - pearson_correlation: 0.3772 - euclidean_distance: 0.4363
Epoch 28/250
38/38 [==============================] - 0s 922us/step - loss: 0.2841 - accuracy: 0.9105 - mae: 0.2841 - pearson_correlation: 0.3831 - euclidean_distance: 0.4322
Epoch 29/250
38/38 [==============================] - 0s 914us/step - loss: 0.2791 - accuracy: 0.9175 - mae: 0.2791 - pearson_correlation: 0.3816 - euclidean_distance: 0.4246
Epoch 30/250
38/38 [==============================] - 0s 924us/step - loss: 0.2770 - accuracy: 0.9131 - mae: 0.2770 - pearson_correlation: 0.3844 - euclidean_distance: 0.4216
Epoch 31/250
38/38 [==============================] - 0s 909us/step - loss: 0.2741 - accuracy: 0.9149 - mae: 0.2741 - pearson_correlation: 0.3860 - euclidean_distance: 0.4178
Epoch 32/250
38/38 [==============================] - 0s 915us/step - loss: 0.2714 - accuracy: 0.9091 - mae: 0.2714 - pearson_correlation: 0.3885 - euclidean_distance: 0.4140
Epoch 33/250
38/38 [==============================] - 0s 907us/step - loss: 0.2684 - accuracy: 0.9171 - mae: 0.2684 - pearson_correlation: 0.3962 - euclidean_distance: 0.4096
Epoch 34/250
38/38 [==============================] - 0s 907us/step - loss: 0.2681 - accuracy: 0.9206 - mae: 0.2681 - pearson_correlation: 0.3936 - euclidean_distance: 0.4082
Epoch 35/250
38/38 [==============================] - 0s 913us/step - loss: 0.2641 - accuracy: 0.9180 - mae: 0.2641 - pearson_correlation: 0.3983 - euclidean_distance: 0.4039
Epoch 36/250
38/38 [==============================] - 0s 913us/step - loss: 0.2604 - accuracy: 0.9175 - mae: 0.2604 - pearson_correlation: 0.4037 - euclidean_distance: 0.3981
Epoch 37/250
38/38 [==============================] - 0s 921us/step - loss: 0.2589 - accuracy: 0.9206 - mae: 0.2589 - pearson_correlation: 0.3987 - euclidean_distance: 0.3959
Epoch 38/250
38/38 [==============================] - 0s 902us/step - loss: 0.2565 - accuracy: 0.9202 - mae: 0.2565 - pearson_correlation: 0.4025 - euclidean_distance: 0.3933
Epoch 39/250
38/38 [==============================] - 0s 918us/step - loss: 0.2537 - accuracy: 0.9206 - mae: 0.2537 - pearson_correlation: 0.4046 - euclidean_distance: 0.3890
Epoch 40/250
38/38 [==============================] - 0s 892us/step - loss: 0.2521 - accuracy: 0.9228 - mae: 0.2521 - pearson_correlation: 0.4085 - euclidean_distance: 0.3867
Epoch 41/250
38/38 [==============================] - 0s 913us/step - loss: 0.2496 - accuracy: 0.9268 - mae: 0.2496 - pearson_correlation: 0.4117 - euclidean_distance: 0.3827
Epoch 42/250
38/38 [==============================] - 0s 915us/step - loss: 0.2462 - accuracy: 0.9246 - mae: 0.2462 - pearson_correlation: 0.4167 - euclidean_distance: 0.3778
Epoch 43/250
38/38 [==============================] - 0s 903us/step - loss: 0.2437 - accuracy: 0.9237 - mae: 0.2437 - pearson_correlation: 0.4183 - euclidean_distance: 0.3740
Epoch 44/250
38/38 [==============================] - 0s 913us/step - loss: 0.2410 - accuracy: 0.9272 - mae: 0.2410 - pearson_correlation: 0.4176 - euclidean_distance: 0.3708
Epoch 45/250
38/38 [==============================] - 0s 913us/step - loss: 0.2391 - accuracy: 0.9263 - mae: 0.2391 - pearson_correlation: 0.4253 - euclidean_distance: 0.3678
Epoch 46/250
38/38 [==============================] - 0s 919us/step - loss: 0.2369 - accuracy: 0.9237 - mae: 0.2369 - pearson_correlation: 0.4255 - euclidean_distance: 0.3652
Epoch 47/250
38/38 [==============================] - 0s 913us/step - loss: 0.2345 - accuracy: 0.9255 - mae: 0.2345 - pearson_correlation: 0.4251 - euclidean_distance: 0.3620
Epoch 48/250
38/38 [==============================] - 0s 910us/step - loss: 0.2332 - accuracy: 0.9321 - mae: 0.2332 - pearson_correlation: 0.4273 - euclidean_distance: 0.3592
Epoch 49/250
38/38 [==============================] - 0s 911us/step - loss: 0.2319 - accuracy: 0.9268 - mae: 0.2319 - pearson_correlation: 0.4264 - euclidean_distance: 0.3582
Epoch 50/250
38/38 [==============================] - 0s 906us/step - loss: 0.2285 - accuracy: 0.9290 - mae: 0.2285 - pearson_correlation: 0.4361 - euclidean_distance: 0.3529
Epoch 51/250
38/38 [==============================] - 0s 912us/step - loss: 0.2265 - accuracy: 0.9285 - mae: 0.2265 - pearson_correlation: 0.4355 - euclidean_distance: 0.3500
Epoch 52/250
38/38 [==============================] - 0s 911us/step - loss: 0.2247 - accuracy: 0.9277 - mae: 0.2247 - pearson_correlation: 0.4362 - euclidean_distance: 0.3485
Epoch 53/250
38/38 [==============================] - 0s 902us/step - loss: 0.2204 - accuracy: 0.9338 - mae: 0.2204 - pearson_correlation: 0.4432 - euclidean_distance: 0.3414
Epoch 54/250
38/38 [==============================] - 0s 918us/step - loss: 0.2187 - accuracy: 0.9316 - mae: 0.2187 - pearson_correlation: 0.4442 - euclidean_distance: 0.3388
Epoch 55/250
38/38 [==============================] - 0s 916us/step - loss: 0.2199 - accuracy: 0.9356 - mae: 0.2199 - pearson_correlation: 0.4433 - euclidean_distance: 0.3406
Epoch 56/250
38/38 [==============================] - 0s 909us/step - loss: 0.2159 - accuracy: 0.9374 - mae: 0.2159 - pearson_correlation: 0.4493 - euclidean_distance: 0.3349
Epoch 57/250
38/38 [==============================] - 0s 908us/step - loss: 0.2132 - accuracy: 0.9360 - mae: 0.2132 - pearson_correlation: 0.4538 - euclidean_distance: 0.3305
Epoch 58/250
38/38 [==============================] - 0s 903us/step - loss: 0.2118 - accuracy: 0.9343 - mae: 0.2118 - pearson_correlation: 0.4540 - euclidean_distance: 0.3288
Epoch 59/250
38/38 [==============================] - 0s 909us/step - loss: 0.2094 - accuracy: 0.9347 - mae: 0.2094 - pearson_correlation: 0.4536 - euclidean_distance: 0.3262
Epoch 60/250
38/38 [==============================] - 0s 909us/step - loss: 0.2091 - accuracy: 0.9369 - mae: 0.2091 - pearson_correlation: 0.4587 - euclidean_distance: 0.3258
Epoch 61/250
38/38 [==============================] - 0s 912us/step - loss: 0.2070 - accuracy: 0.9365 - mae: 0.2070 - pearson_correlation: 0.4631 - euclidean_distance: 0.3226
Epoch 62/250
38/38 [==============================] - 0s 913us/step - loss: 0.2045 - accuracy: 0.9400 - mae: 0.2045 - pearson_correlation: 0.4634 - euclidean_distance: 0.3188
Epoch 63/250
38/38 [==============================] - 0s 912us/step - loss: 0.2029 - accuracy: 0.9356 - mae: 0.2029 - pearson_correlation: 0.4695 - euclidean_distance: 0.3156
Epoch 64/250
38/38 [==============================] - 0s 912us/step - loss: 0.2018 - accuracy: 0.9400 - mae: 0.2018 - pearson_correlation: 0.4667 - euclidean_distance: 0.3147
Epoch 65/250
38/38 [==============================] - 0s 909us/step - loss: 0.1998 - accuracy: 0.9396 - mae: 0.1998 - pearson_correlation: 0.4702 - euclidean_distance: 0.3127
Epoch 66/250
38/38 [==============================] - 0s 912us/step - loss: 0.1991 - accuracy: 0.9387 - mae: 0.1991 - pearson_correlation: 0.4746 - euclidean_distance: 0.3114
Epoch 67/250
38/38 [==============================] - 0s 917us/step - loss: 0.1963 - accuracy: 0.9365 - mae: 0.1963 - pearson_correlation: 0.4747 - euclidean_distance: 0.3067
Epoch 68/250
38/38 [==============================] - 0s 909us/step - loss: 0.1953 - accuracy: 0.9413 - mae: 0.1953 - pearson_correlation: 0.4801 - euclidean_distance: 0.3052
Epoch 69/250
38/38 [==============================] - 0s 910us/step - loss: 0.1938 - accuracy: 0.9413 - mae: 0.1938 - pearson_correlation: 0.4799 - euclidean_distance: 0.3037
Epoch 70/250
38/38 [==============================] - 0s 908us/step - loss: 0.1922 - accuracy: 0.9413 - mae: 0.1922 - pearson_correlation: 0.4831 - euclidean_distance: 0.3010
Epoch 71/250
38/38 [==============================] - 0s 918us/step - loss: 0.1905 - accuracy: 0.9435 - mae: 0.1905 - pearson_correlation: 0.4862 - euclidean_distance: 0.2992
Epoch 72/250
38/38 [==============================] - 0s 915us/step - loss: 0.1886 - accuracy: 0.9435 - mae: 0.1886 - pearson_correlation: 0.4864 - euclidean_distance: 0.2961
Epoch 73/250
38/38 [==============================] - 0s 910us/step - loss: 0.1876 - accuracy: 0.9422 - mae: 0.1876 - pearson_correlation: 0.4919 - euclidean_distance: 0.2945
Epoch 74/250
38/38 [==============================] - 0s 909us/step - loss: 0.1861 - accuracy: 0.9449 - mae: 0.1861 - pearson_correlation: 0.4893 - euclidean_distance: 0.2925
Epoch 75/250
38/38 [==============================] - 0s 914us/step - loss: 0.1839 - accuracy: 0.9435 - mae: 0.1839 - pearson_correlation: 0.4990 - euclidean_distance: 0.2898
Epoch 76/250
38/38 [==============================] - 0s 913us/step - loss: 0.1830 - accuracy: 0.9444 - mae: 0.1830 - pearson_correlation: 0.4966 - euclidean_distance: 0.2880
Epoch 77/250
38/38 [==============================] - 0s 913us/step - loss: 0.1814 - accuracy: 0.9418 - mae: 0.1814 - pearson_correlation: 0.4979 - euclidean_distance: 0.2853
Epoch 78/250
38/38 [==============================] - 0s 916us/step - loss: 0.1804 - accuracy: 0.9409 - mae: 0.1804 - pearson_correlation: 0.5010 - euclidean_distance: 0.2840
Epoch 79/250
38/38 [==============================] - 0s 903us/step - loss: 0.1780 - accuracy: 0.9453 - mae: 0.1780 - pearson_correlation: 0.5078 - euclidean_distance: 0.2813
Epoch 80/250
38/38 [==============================] - 0s 917us/step - loss: 0.1775 - accuracy: 0.9457 - mae: 0.1775 - pearson_correlation: 0.5028 - euclidean_distance: 0.2805
Epoch 81/250
38/38 [==============================] - 0s 932us/step - loss: 0.1764 - accuracy: 0.9431 - mae: 0.1764 - pearson_correlation: 0.5104 - euclidean_distance: 0.2785
Epoch 82/250
38/38 [==============================] - 0s 913us/step - loss: 0.1757 - accuracy: 0.9449 - mae: 0.1757 - pearson_correlation: 0.5108 - euclidean_distance: 0.2772
Epoch 83/250
38/38 [==============================] - 0s 921us/step - loss: 0.1770 - accuracy: 0.9449 - mae: 0.1770 - pearson_correlation: 0.5114 - euclidean_distance: 0.2797
Epoch 84/250
38/38 [==============================] - 0s 909us/step - loss: 0.1746 - accuracy: 0.9435 - mae: 0.1746 - pearson_correlation: 0.5119 - euclidean_distance: 0.2760
Epoch 85/250
38/38 [==============================] - 0s 917us/step - loss: 0.1728 - accuracy: 0.9466 - mae: 0.1728 - pearson_correlation: 0.5133 - euclidean_distance: 0.2734
Epoch 86/250
38/38 [==============================] - 0s 906us/step - loss: 0.1733 - accuracy: 0.9440 - mae: 0.1733 - pearson_correlation: 0.5138 - euclidean_distance: 0.2738
Epoch 87/250
38/38 [==============================] - 0s 904us/step - loss: 0.1722 - accuracy: 0.9449 - mae: 0.1722 - pearson_correlation: 0.5204 - euclidean_distance: 0.2728
Epoch 88/250
38/38 [==============================] - 0s 911us/step - loss: 0.1690 - accuracy: 0.9457 - mae: 0.1690 - pearson_correlation: 0.5196 - euclidean_distance: 0.2675
Epoch 89/250
38/38 [==============================] - 0s 984us/step - loss: 0.1688 - accuracy: 0.9475 - mae: 0.1688 - pearson_correlation: 0.5232 - euclidean_distance: 0.2664
Epoch 90/250
38/38 [==============================] - 0s 942us/step - loss: 0.1653 - accuracy: 0.9462 - mae: 0.1653 - pearson_correlation: 0.5284 - euclidean_distance: 0.2618
Epoch 91/250
38/38 [==============================] - 0s 915us/step - loss: 0.1682 - accuracy: 0.9444 - mae: 0.1682 - pearson_correlation: 0.5222 - euclidean_distance: 0.2665
Epoch 92/250
38/38 [==============================] - 0s 914us/step - loss: 0.1640 - accuracy: 0.9479 - mae: 0.1640 - pearson_correlation: 0.5295 - euclidean_distance: 0.2602
Epoch 93/250
38/38 [==============================] - 0s 905us/step - loss: 0.1638 - accuracy: 0.9488 - mae: 0.1638 - pearson_correlation: 0.5307 - euclidean_distance: 0.2598
Epoch 94/250
38/38 [==============================] - 0s 917us/step - loss: 0.1639 - accuracy: 0.9506 - mae: 0.1639 - pearson_correlation: 0.5363 - euclidean_distance: 0.2593
Epoch 95/250
38/38 [==============================] - 0s 919us/step - loss: 0.1606 - accuracy: 0.9466 - mae: 0.1606 - pearson_correlation: 0.5374 - euclidean_distance: 0.2551
Epoch 96/250
38/38 [==============================] - 0s 917us/step - loss: 0.1605 - accuracy: 0.9475 - mae: 0.1605 - pearson_correlation: 0.5329 - euclidean_distance: 0.2549
Epoch 97/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1597 - accuracy: 0.9471 - mae: 0.1597 - pearson_correlation: 0.5375 - euclidean_distance: 0.2543
Epoch 98/250
38/38 [==============================] - 0s 931us/step - loss: 0.1603 - accuracy: 0.9479 - mae: 0.1603 - pearson_correlation: 0.5433 - euclidean_distance: 0.2543
Epoch 99/250
38/38 [==============================] - 0s 917us/step - loss: 0.1596 - accuracy: 0.9488 - mae: 0.1596 - pearson_correlation: 0.5448 - euclidean_distance: 0.2533
Epoch 100/250
38/38 [==============================] - 0s 912us/step - loss: 0.1589 - accuracy: 0.9484 - mae: 0.1589 - pearson_correlation: 0.5534 - euclidean_distance: 0.2521
Epoch 101/250
38/38 [==============================] - 0s 905us/step - loss: 0.1564 - accuracy: 0.9462 - mae: 0.1564 - pearson_correlation: 0.5454 - euclidean_distance: 0.2492
Epoch 102/250
38/38 [==============================] - 0s 908us/step - loss: 0.1563 - accuracy: 0.9493 - mae: 0.1563 - pearson_correlation: 0.5456 - euclidean_distance: 0.2484
Epoch 103/250
38/38 [==============================] - 0s 912us/step - loss: 0.1547 - accuracy: 0.9497 - mae: 0.1547 - pearson_correlation: 0.5529 - euclidean_distance: 0.2464
Epoch 104/250
38/38 [==============================] - 0s 913us/step - loss: 0.1539 - accuracy: 0.9471 - mae: 0.1539 - pearson_correlation: 0.5522 - euclidean_distance: 0.2448
Epoch 105/250
38/38 [==============================] - 0s 916us/step - loss: 0.1524 - accuracy: 0.9488 - mae: 0.1524 - pearson_correlation: 0.5516 - euclidean_distance: 0.2424
Epoch 106/250
38/38 [==============================] - 0s 917us/step - loss: 0.1501 - accuracy: 0.9479 - mae: 0.1501 - pearson_correlation: 0.5562 - euclidean_distance: 0.2388
Epoch 107/250
38/38 [==============================] - 0s 912us/step - loss: 0.1506 - accuracy: 0.9479 - mae: 0.1506 - pearson_correlation: 0.5591 - euclidean_distance: 0.2398
Epoch 108/250
38/38 [==============================] - 0s 901us/step - loss: 0.1514 - accuracy: 0.9475 - mae: 0.1514 - pearson_correlation: 0.5606 - euclidean_distance: 0.2412
Epoch 109/250
38/38 [==============================] - 0s 910us/step - loss: 0.1480 - accuracy: 0.9497 - mae: 0.1480 - pearson_correlation: 0.5641 - euclidean_distance: 0.2361
Epoch 110/250
38/38 [==============================] - 0s 909us/step - loss: 0.1495 - accuracy: 0.9502 - mae: 0.1495 - pearson_correlation: 0.5677 - euclidean_distance: 0.2374
Epoch 111/250
38/38 [==============================] - 0s 914us/step - loss: 0.1483 - accuracy: 0.9497 - mae: 0.1483 - pearson_correlation: 0.5643 - euclidean_distance: 0.2361
Epoch 112/250
38/38 [==============================] - 0s 904us/step - loss: 0.1466 - accuracy: 0.9475 - mae: 0.1466 - pearson_correlation: 0.5718 - euclidean_distance: 0.2338
Epoch 113/250
38/38 [==============================] - 0s 916us/step - loss: 0.1470 - accuracy: 0.9488 - mae: 0.1470 - pearson_correlation: 0.5650 - euclidean_distance: 0.2342
Epoch 114/250
38/38 [==============================] - 0s 910us/step - loss: 0.1479 - accuracy: 0.9502 - mae: 0.1479 - pearson_correlation: 0.5670 - euclidean_distance: 0.2354
Epoch 115/250
38/38 [==============================] - 0s 913us/step - loss: 0.1449 - accuracy: 0.9506 - mae: 0.1449 - pearson_correlation: 0.5721 - euclidean_distance: 0.2310
Epoch 116/250
38/38 [==============================] - 0s 953us/step - loss: 0.1438 - accuracy: 0.9484 - mae: 0.1438 - pearson_correlation: 0.5757 - euclidean_distance: 0.2291
Epoch 117/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1443 - accuracy: 0.9493 - mae: 0.1443 - pearson_correlation: 0.5791 - euclidean_distance: 0.2296
Epoch 118/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1438 - accuracy: 0.9506 - mae: 0.1438 - pearson_correlation: 0.5810 - euclidean_distance: 0.2293
Epoch 119/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1401 - accuracy: 0.9488 - mae: 0.1401 - pearson_correlation: 0.5845 - euclidean_distance: 0.2235
Epoch 120/250
38/38 [==============================] - 0s 2ms/step - loss: 0.1413 - accuracy: 0.9493 - mae: 0.1413 - pearson_correlation: 0.5838 - euclidean_distance: 0.2257
Epoch 121/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1398 - accuracy: 0.9510 - mae: 0.1398 - pearson_correlation: 0.5863 - euclidean_distance: 0.2233
Epoch 122/250
38/38 [==============================] - 0s 911us/step - loss: 0.1384 - accuracy: 0.9497 - mae: 0.1384 - pearson_correlation: 0.5894 - euclidean_distance: 0.2218
Epoch 123/250
38/38 [==============================] - 0s 897us/step - loss: 0.1404 - accuracy: 0.9515 - mae: 0.1404 - pearson_correlation: 0.5863 - euclidean_distance: 0.2242
Epoch 124/250
38/38 [==============================] - 0s 891us/step - loss: 0.1395 - accuracy: 0.9510 - mae: 0.1395 - pearson_correlation: 0.5888 - euclidean_distance: 0.2231
Epoch 125/250
38/38 [==============================] - 0s 952us/step - loss: 0.1370 - accuracy: 0.9510 - mae: 0.1370 - pearson_correlation: 0.5907 - euclidean_distance: 0.2194
Epoch 126/250
38/38 [==============================] - 0s 929us/step - loss: 0.1378 - accuracy: 0.9502 - mae: 0.1378 - pearson_correlation: 0.5921 - euclidean_distance: 0.2197
Epoch 127/250
38/38 [==============================] - 0s 960us/step - loss: 0.1374 - accuracy: 0.9506 - mae: 0.1374 - pearson_correlation: 0.5900 - euclidean_distance: 0.2198
Epoch 128/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1358 - accuracy: 0.9502 - mae: 0.1358 - pearson_correlation: 0.5988 - euclidean_distance: 0.2163
Epoch 129/250
38/38 [==============================] - 0s 991us/step - loss: 0.1340 - accuracy: 0.9506 - mae: 0.1340 - pearson_correlation: 0.5975 - euclidean_distance: 0.2147
Epoch 130/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1346 - accuracy: 0.9497 - mae: 0.1346 - pearson_correlation: 0.5991 - euclidean_distance: 0.2157
Epoch 131/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1349 - accuracy: 0.9493 - mae: 0.1349 - pearson_correlation: 0.5995 - euclidean_distance: 0.2155
Epoch 132/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1350 - accuracy: 0.9506 - mae: 0.1350 - pearson_correlation: 0.5986 - euclidean_distance: 0.2156
Epoch 133/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1323 - accuracy: 0.9506 - mae: 0.1323 - pearson_correlation: 0.5978 - euclidean_distance: 0.2115
Epoch 134/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1309 - accuracy: 0.9515 - mae: 0.1309 - pearson_correlation: 0.6094 - euclidean_distance: 0.2098
Epoch 135/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1319 - accuracy: 0.9502 - mae: 0.1319 - pearson_correlation: 0.6055 - euclidean_distance: 0.2118
Epoch 136/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1300 - accuracy: 0.9519 - mae: 0.1300 - pearson_correlation: 0.6115 - euclidean_distance: 0.2084
Epoch 137/250
38/38 [==============================] - 0s 982us/step - loss: 0.1320 - accuracy: 0.9497 - mae: 0.1320 - pearson_correlation: 0.6077 - euclidean_distance: 0.2109
Epoch 138/250
38/38 [==============================] - 0s 991us/step - loss: 0.1312 - accuracy: 0.9502 - mae: 0.1312 - pearson_correlation: 0.6079 - euclidean_distance: 0.2100
Epoch 139/250
38/38 [==============================] - 0s 870us/step - loss: 0.1295 - accuracy: 0.9510 - mae: 0.1295 - pearson_correlation: 0.6154 - euclidean_distance: 0.2075
Epoch 140/250
38/38 [==============================] - 0s 907us/step - loss: 0.1282 - accuracy: 0.9532 - mae: 0.1282 - pearson_correlation: 0.6124 - euclidean_distance: 0.2052
Epoch 141/250
38/38 [==============================] - 0s 906us/step - loss: 0.1301 - accuracy: 0.9506 - mae: 0.1301 - pearson_correlation: 0.6093 - euclidean_distance: 0.2086
Epoch 142/250
38/38 [==============================] - 0s 939us/step - loss: 0.1275 - accuracy: 0.9506 - mae: 0.1275 - pearson_correlation: 0.6119 - euclidean_distance: 0.2046
Epoch 143/250
38/38 [==============================] - 0s 963us/step - loss: 0.1258 - accuracy: 0.9510 - mae: 0.1258 - pearson_correlation: 0.6209 - euclidean_distance: 0.2022
Epoch 144/250
38/38 [==============================] - 0s 923us/step - loss: 0.1266 - accuracy: 0.9528 - mae: 0.1266 - pearson_correlation: 0.6208 - euclidean_distance: 0.2030
Epoch 145/250
38/38 [==============================] - 0s 925us/step - loss: 0.1249 - accuracy: 0.9497 - mae: 0.1249 - pearson_correlation: 0.6281 - euclidean_distance: 0.2000
Epoch 146/250
38/38 [==============================] - 0s 952us/step - loss: 0.1259 - accuracy: 0.9515 - mae: 0.1259 - pearson_correlation: 0.6263 - euclidean_distance: 0.2019
Epoch 147/250
38/38 [==============================] - 0s 972us/step - loss: 0.1237 - accuracy: 0.9519 - mae: 0.1237 - pearson_correlation: 0.6276 - euclidean_distance: 0.1986
Epoch 148/250
38/38 [==============================] - 0s 3ms/step - loss: 0.1253 - accuracy: 0.9524 - mae: 0.1253 - pearson_correlation: 0.6217 - euclidean_distance: 0.2008
Epoch 149/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1245 - accuracy: 0.9502 - mae: 0.1245 - pearson_correlation: 0.6295 - euclidean_distance: 0.1996
Epoch 150/250
38/38 [==============================] - 0s 926us/step - loss: 0.1236 - accuracy: 0.9528 - mae: 0.1236 - pearson_correlation: 0.6253 - euclidean_distance: 0.1981
Epoch 151/250
38/38 [==============================] - 0s 903us/step - loss: 0.1244 - accuracy: 0.9497 - mae: 0.1244 - pearson_correlation: 0.6294 - euclidean_distance: 0.1985
Epoch 152/250
38/38 [==============================] - 0s 923us/step - loss: 0.1230 - accuracy: 0.9506 - mae: 0.1230 - pearson_correlation: 0.6249 - euclidean_distance: 0.1975
Epoch 153/250
38/38 [==============================] - 0s 893us/step - loss: 0.1198 - accuracy: 0.9506 - mae: 0.1198 - pearson_correlation: 0.6382 - euclidean_distance: 0.1926
Epoch 154/250
38/38 [==============================] - 0s 914us/step - loss: 0.1213 - accuracy: 0.9519 - mae: 0.1213 - pearson_correlation: 0.6326 - euclidean_distance: 0.1948
Epoch 155/250
38/38 [==============================] - 0s 891us/step - loss: 0.1231 - accuracy: 0.9515 - mae: 0.1231 - pearson_correlation: 0.6347 - euclidean_distance: 0.1977
Epoch 156/250
38/38 [==============================] - 0s 919us/step - loss: 0.1196 - accuracy: 0.9506 - mae: 0.1196 - pearson_correlation: 0.6392 - euclidean_distance: 0.1923
Epoch 157/250
38/38 [==============================] - 0s 903us/step - loss: 0.1199 - accuracy: 0.9519 - mae: 0.1199 - pearson_correlation: 0.6373 - euclidean_distance: 0.1929
Epoch 158/250
38/38 [==============================] - 0s 902us/step - loss: 0.1227 - accuracy: 0.9519 - mae: 0.1227 - pearson_correlation: 0.6323 - euclidean_distance: 0.1959
Epoch 159/250
38/38 [==============================] - 0s 911us/step - loss: 0.1205 - accuracy: 0.9506 - mae: 0.1205 - pearson_correlation: 0.6373 - euclidean_distance: 0.1936
Epoch 160/250
38/38 [==============================] - 0s 919us/step - loss: 0.1190 - accuracy: 0.9515 - mae: 0.1190 - pearson_correlation: 0.6446 - euclidean_distance: 0.1906
Epoch 161/250
38/38 [==============================] - 0s 912us/step - loss: 0.1197 - accuracy: 0.9497 - mae: 0.1197 - pearson_correlation: 0.6353 - euclidean_distance: 0.1922
Epoch 162/250
38/38 [==============================] - 0s 961us/step - loss: 0.1186 - accuracy: 0.9502 - mae: 0.1186 - pearson_correlation: 0.6460 - euclidean_distance: 0.1901
Epoch 163/250
38/38 [==============================] - 0s 976us/step - loss: 0.1163 - accuracy: 0.9502 - mae: 0.1163 - pearson_correlation: 0.6480 - euclidean_distance: 0.1868
Epoch 164/250
38/38 [==============================] - 0s 911us/step - loss: 0.1184 - accuracy: 0.9524 - mae: 0.1184 - pearson_correlation: 0.6451 - euclidean_distance: 0.1898
Epoch 165/250
38/38 [==============================] - 0s 914us/step - loss: 0.1170 - accuracy: 0.9524 - mae: 0.1170 - pearson_correlation: 0.6492 - euclidean_distance: 0.1873
Epoch 166/250
38/38 [==============================] - 0s 908us/step - loss: 0.1163 - accuracy: 0.9524 - mae: 0.1163 - pearson_correlation: 0.6492 - euclidean_distance: 0.1865
Epoch 167/250
38/38 [==============================] - 0s 912us/step - loss: 0.1179 - accuracy: 0.9524 - mae: 0.1179 - pearson_correlation: 0.6473 - euclidean_distance: 0.1886
Epoch 168/250
38/38 [==============================] - 0s 914us/step - loss: 0.1156 - accuracy: 0.9524 - mae: 0.1156 - pearson_correlation: 0.6516 - euclidean_distance: 0.1852
Epoch 169/250
38/38 [==============================] - 0s 916us/step - loss: 0.1164 - accuracy: 0.9515 - mae: 0.1164 - pearson_correlation: 0.6531 - euclidean_distance: 0.1864
Epoch 170/250
38/38 [==============================] - 0s 906us/step - loss: 0.1166 - accuracy: 0.9510 - mae: 0.1166 - pearson_correlation: 0.6482 - euclidean_distance: 0.1868
Epoch 171/250
38/38 [==============================] - 0s 909us/step - loss: 0.1153 - accuracy: 0.9519 - mae: 0.1153 - pearson_correlation: 0.6592 - euclidean_distance: 0.1845
Epoch 172/250
38/38 [==============================] - 0s 923us/step - loss: 0.1143 - accuracy: 0.9519 - mae: 0.1143 - pearson_correlation: 0.6547 - euclidean_distance: 0.1831
Epoch 173/250
38/38 [==============================] - 0s 913us/step - loss: 0.1146 - accuracy: 0.9528 - mae: 0.1146 - pearson_correlation: 0.6564 - euclidean_distance: 0.1834
Epoch 174/250
38/38 [==============================] - 0s 901us/step - loss: 0.1138 - accuracy: 0.9510 - mae: 0.1138 - pearson_correlation: 0.6546 - euclidean_distance: 0.1822
Epoch 175/250
38/38 [==============================] - 0s 915us/step - loss: 0.1131 - accuracy: 0.9519 - mae: 0.1131 - pearson_correlation: 0.6605 - euclidean_distance: 0.1811
Epoch 176/250
38/38 [==============================] - 0s 909us/step - loss: 0.1126 - accuracy: 0.9515 - mae: 0.1126 - pearson_correlation: 0.6581 - euclidean_distance: 0.1812
Epoch 177/250
38/38 [==============================] - 0s 910us/step - loss: 0.1131 - accuracy: 0.9524 - mae: 0.1131 - pearson_correlation: 0.6619 - euclidean_distance: 0.1814
Epoch 178/250
38/38 [==============================] - 0s 916us/step - loss: 0.1132 - accuracy: 0.9519 - mae: 0.1132 - pearson_correlation: 0.6590 - euclidean_distance: 0.1815
Epoch 179/250
38/38 [==============================] - 0s 918us/step - loss: 0.1121 - accuracy: 0.9519 - mae: 0.1121 - pearson_correlation: 0.6569 - euclidean_distance: 0.1795
Epoch 180/250
38/38 [==============================] - 0s 919us/step - loss: 0.1123 - accuracy: 0.9515 - mae: 0.1123 - pearson_correlation: 0.6658 - euclidean_distance: 0.1801
Epoch 181/250
38/38 [==============================] - 0s 910us/step - loss: 0.1100 - accuracy: 0.9519 - mae: 0.1100 - pearson_correlation: 0.6675 - euclidean_distance: 0.1767
Epoch 182/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1110 - accuracy: 0.9524 - mae: 0.1110 - pearson_correlation: 0.6646 - euclidean_distance: 0.1779
Epoch 183/250
38/38 [==============================] - 0s 924us/step - loss: 0.1095 - accuracy: 0.9528 - mae: 0.1095 - pearson_correlation: 0.6661 - euclidean_distance: 0.1757
Epoch 184/250
38/38 [==============================] - 0s 929us/step - loss: 0.1112 - accuracy: 0.9519 - mae: 0.1112 - pearson_correlation: 0.6641 - euclidean_distance: 0.1785
Epoch 185/250
38/38 [==============================] - 0s 904us/step - loss: 0.1119 - accuracy: 0.9537 - mae: 0.1119 - pearson_correlation: 0.6658 - euclidean_distance: 0.1791
Epoch 186/250
38/38 [==============================] - 0s 906us/step - loss: 0.1098 - accuracy: 0.9524 - mae: 0.1098 - pearson_correlation: 0.6624 - euclidean_distance: 0.1761
Epoch 187/250
38/38 [==============================] - 0s 921us/step - loss: 0.1097 - accuracy: 0.9524 - mae: 0.1097 - pearson_correlation: 0.6714 - euclidean_distance: 0.1759
Epoch 188/250
38/38 [==============================] - 0s 915us/step - loss: 0.1093 - accuracy: 0.9537 - mae: 0.1093 - pearson_correlation: 0.6693 - euclidean_distance: 0.1748
Epoch 189/250
38/38 [==============================] - 0s 902us/step - loss: 0.1086 - accuracy: 0.9532 - mae: 0.1086 - pearson_correlation: 0.6700 - euclidean_distance: 0.1737
Epoch 190/250
38/38 [==============================] - 0s 912us/step - loss: 0.1115 - accuracy: 0.9528 - mae: 0.1115 - pearson_correlation: 0.6700 - euclidean_distance: 0.1785
Epoch 191/250
38/38 [==============================] - 0s 914us/step - loss: 0.1071 - accuracy: 0.9510 - mae: 0.1071 - pearson_correlation: 0.6756 - euclidean_distance: 0.1726
Epoch 192/250
38/38 [==============================] - 0s 900us/step - loss: 0.1091 - accuracy: 0.9524 - mae: 0.1091 - pearson_correlation: 0.6712 - euclidean_distance: 0.1752
Epoch 193/250
38/38 [==============================] - 0s 888us/step - loss: 0.1090 - accuracy: 0.9506 - mae: 0.1090 - pearson_correlation: 0.6731 - euclidean_distance: 0.1746
Epoch 194/250
38/38 [==============================] - 0s 920us/step - loss: 0.1082 - accuracy: 0.9519 - mae: 0.1082 - pearson_correlation: 0.6780 - euclidean_distance: 0.1733
Epoch 195/250
38/38 [==============================] - 0s 915us/step - loss: 0.1115 - accuracy: 0.9510 - mae: 0.1115 - pearson_correlation: 0.6647 - euclidean_distance: 0.1784
Epoch 196/250
38/38 [==============================] - 0s 943us/step - loss: 0.1070 - accuracy: 0.9537 - mae: 0.1070 - pearson_correlation: 0.6807 - euclidean_distance: 0.1712
Epoch 197/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1070 - accuracy: 0.9532 - mae: 0.1070 - pearson_correlation: 0.6780 - euclidean_distance: 0.1720
Epoch 198/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1063 - accuracy: 0.9524 - mae: 0.1063 - pearson_correlation: 0.6805 - euclidean_distance: 0.1702
Epoch 199/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1053 - accuracy: 0.9532 - mae: 0.1053 - pearson_correlation: 0.6817 - euclidean_distance: 0.1691
Epoch 200/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1061 - accuracy: 0.9537 - mae: 0.1061 - pearson_correlation: 0.6798 - euclidean_distance: 0.1703
Epoch 201/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1044 - accuracy: 0.9524 - mae: 0.1044 - pearson_correlation: 0.6847 - euclidean_distance: 0.1671
Epoch 202/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1070 - accuracy: 0.9515 - mae: 0.1070 - pearson_correlation: 0.6785 - euclidean_distance: 0.1717
Epoch 203/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1069 - accuracy: 0.9532 - mae: 0.1069 - pearson_correlation: 0.6769 - euclidean_distance: 0.1716
Epoch 204/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1049 - accuracy: 0.9532 - mae: 0.1049 - pearson_correlation: 0.6882 - euclidean_distance: 0.1680
Epoch 205/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1039 - accuracy: 0.9524 - mae: 0.1039 - pearson_correlation: 0.6838 - euclidean_distance: 0.1668
Epoch 206/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1051 - accuracy: 0.9524 - mae: 0.1051 - pearson_correlation: 0.6866 - euclidean_distance: 0.1681
Epoch 207/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1060 - accuracy: 0.9528 - mae: 0.1060 - pearson_correlation: 0.6853 - euclidean_distance: 0.1693
Epoch 208/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1030 - accuracy: 0.9532 - mae: 0.1030 - pearson_correlation: 0.6883 - euclidean_distance: 0.1650
Epoch 209/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1035 - accuracy: 0.9528 - mae: 0.1035 - pearson_correlation: 0.6900 - euclidean_distance: 0.1659
Epoch 210/250
38/38 [==============================] - 0s 989us/step - loss: 0.1074 - accuracy: 0.9524 - mae: 0.1074 - pearson_correlation: 0.6782 - euclidean_distance: 0.1715
Epoch 211/250
38/38 [==============================] - 0s 918us/step - loss: 0.1030 - accuracy: 0.9528 - mae: 0.1030 - pearson_correlation: 0.6850 - euclidean_distance: 0.1650
Epoch 212/250
38/38 [==============================] - 0s 929us/step - loss: 0.1028 - accuracy: 0.9528 - mae: 0.1028 - pearson_correlation: 0.6918 - euclidean_distance: 0.1652
Epoch 213/250
38/38 [==============================] - 0s 874us/step - loss: 0.1020 - accuracy: 0.9537 - mae: 0.1020 - pearson_correlation: 0.6915 - euclidean_distance: 0.1635
Epoch 214/250
38/38 [==============================] - 0s 906us/step - loss: 0.1028 - accuracy: 0.9532 - mae: 0.1028 - pearson_correlation: 0.6901 - euclidean_distance: 0.1652
Epoch 215/250
38/38 [==============================] - 0s 913us/step - loss: 0.1018 - accuracy: 0.9537 - mae: 0.1018 - pearson_correlation: 0.6913 - euclidean_distance: 0.1631
Epoch 216/250
38/38 [==============================] - 0s 914us/step - loss: 0.1035 - accuracy: 0.9528 - mae: 0.1035 - pearson_correlation: 0.6891 - euclidean_distance: 0.1662
Epoch 217/250
38/38 [==============================] - 0s 914us/step - loss: 0.1045 - accuracy: 0.9528 - mae: 0.1045 - pearson_correlation: 0.6832 - euclidean_distance: 0.1674
Epoch 218/250
38/38 [==============================] - 0s 911us/step - loss: 0.1030 - accuracy: 0.9519 - mae: 0.1030 - pearson_correlation: 0.6914 - euclidean_distance: 0.1653
Epoch 219/250
38/38 [==============================] - 0s 908us/step - loss: 0.1020 - accuracy: 0.9537 - mae: 0.1020 - pearson_correlation: 0.6921 - euclidean_distance: 0.1637
Epoch 220/250
38/38 [==============================] - 0s 914us/step - loss: 0.1005 - accuracy: 0.9528 - mae: 0.1005 - pearson_correlation: 0.6924 - euclidean_distance: 0.1616
Epoch 221/250
38/38 [==============================] - 0s 903us/step - loss: 0.1017 - accuracy: 0.9524 - mae: 0.1017 - pearson_correlation: 0.6926 - euclidean_distance: 0.1633
Epoch 222/250
38/38 [==============================] - 0s 904us/step - loss: 0.1021 - accuracy: 0.9541 - mae: 0.1021 - pearson_correlation: 0.6951 - euclidean_distance: 0.1638
Epoch 223/250
38/38 [==============================] - 0s 910us/step - loss: 0.0988 - accuracy: 0.9537 - mae: 0.0988 - pearson_correlation: 0.6997 - euclidean_distance: 0.1582
Epoch 224/250
38/38 [==============================] - 0s 910us/step - loss: 0.1021 - accuracy: 0.9519 - mae: 0.1021 - pearson_correlation: 0.6934 - euclidean_distance: 0.1635
Epoch 225/250
38/38 [==============================] - 0s 915us/step - loss: 0.1027 - accuracy: 0.9528 - mae: 0.1027 - pearson_correlation: 0.6930 - euclidean_distance: 0.1647
Epoch 226/250
38/38 [==============================] - 0s 911us/step - loss: 0.1007 - accuracy: 0.9524 - mae: 0.1007 - pearson_correlation: 0.7002 - euclidean_distance: 0.1613
Epoch 227/250
38/38 [==============================] - 0s 909us/step - loss: 0.1001 - accuracy: 0.9537 - mae: 0.1001 - pearson_correlation: 0.6983 - euclidean_distance: 0.1608
Epoch 228/250
38/38 [==============================] - 0s 922us/step - loss: 0.0995 - accuracy: 0.9532 - mae: 0.0995 - pearson_correlation: 0.6948 - euclidean_distance: 0.1596
Epoch 229/250
38/38 [==============================] - 0s 914us/step - loss: 0.1001 - accuracy: 0.9537 - mae: 0.1001 - pearson_correlation: 0.6991 - euclidean_distance: 0.1602
Epoch 230/250
38/38 [==============================] - 0s 916us/step - loss: 0.1023 - accuracy: 0.9541 - mae: 0.1023 - pearson_correlation: 0.6932 - euclidean_distance: 0.1636
Epoch 231/250
38/38 [==============================] - 0s 919us/step - loss: 0.0991 - accuracy: 0.9550 - mae: 0.0991 - pearson_correlation: 0.7028 - euclidean_distance: 0.1592
Epoch 232/250
38/38 [==============================] - 0s 994us/step - loss: 0.0996 - accuracy: 0.9532 - mae: 0.0996 - pearson_correlation: 0.7002 - euclidean_distance: 0.1595
Epoch 233/250
38/38 [==============================] - 0s 940us/step - loss: 0.0987 - accuracy: 0.9541 - mae: 0.0987 - pearson_correlation: 0.7064 - euclidean_distance: 0.1580
Epoch 234/250
38/38 [==============================] - 0s 929us/step - loss: 0.0977 - accuracy: 0.9532 - mae: 0.0977 - pearson_correlation: 0.7036 - euclidean_distance: 0.1566
Epoch 235/250
38/38 [==============================] - 0s 1ms/step - loss: 0.0979 - accuracy: 0.9532 - mae: 0.0979 - pearson_correlation: 0.7005 - euclidean_distance: 0.1574
Epoch 236/250
38/38 [==============================] - 0s 1ms/step - loss: 0.0974 - accuracy: 0.9541 - mae: 0.0974 - pearson_correlation: 0.7063 - euclidean_distance: 0.1555
Epoch 237/250
38/38 [==============================] - 0s 1ms/step - loss: 0.0993 - accuracy: 0.9528 - mae: 0.0993 - pearson_correlation: 0.7028 - euclidean_distance: 0.1586
Epoch 238/250
38/38 [==============================] - 0s 990us/step - loss: 0.0967 - accuracy: 0.9537 - mae: 0.0967 - pearson_correlation: 0.7084 - euclidean_distance: 0.1552
Epoch 239/250
38/38 [==============================] - 0s 959us/step - loss: 0.1037 - accuracy: 0.9541 - mae: 0.1037 - pearson_correlation: 0.6960 - euclidean_distance: 0.1651
Epoch 240/250
38/38 [==============================] - 0s 937us/step - loss: 0.0995 - accuracy: 0.9537 - mae: 0.0995 - pearson_correlation: 0.7046 - euclidean_distance: 0.1599
Epoch 241/250
38/38 [==============================] - 0s 936us/step - loss: 0.0979 - accuracy: 0.9537 - mae: 0.0979 - pearson_correlation: 0.7069 - euclidean_distance: 0.1572
Epoch 242/250
38/38 [==============================] - 0s 921us/step - loss: 0.1013 - accuracy: 0.9537 - mae: 0.1013 - pearson_correlation: 0.7004 - euclidean_distance: 0.1619
Epoch 243/250
38/38 [==============================] - 0s 934us/step - loss: 0.1000 - accuracy: 0.9528 - mae: 0.1000 - pearson_correlation: 0.7049 - euclidean_distance: 0.1603
Epoch 244/250
38/38 [==============================] - 0s 950us/step - loss: 0.0971 - accuracy: 0.9550 - mae: 0.0971 - pearson_correlation: 0.7035 - euclidean_distance: 0.1560
Epoch 245/250
38/38 [==============================] - 0s 871us/step - loss: 0.0964 - accuracy: 0.9524 - mae: 0.0964 - pearson_correlation: 0.7073 - euclidean_distance: 0.1551
Epoch 246/250
38/38 [==============================] - 0s 916us/step - loss: 0.0988 - accuracy: 0.9528 - mae: 0.0988 - pearson_correlation: 0.7039 - euclidean_distance: 0.1587
Epoch 247/250
38/38 [==============================] - 0s 942us/step - loss: 0.0968 - accuracy: 0.9532 - mae: 0.0968 - pearson_correlation: 0.7103 - euclidean_distance: 0.1552
Epoch 248/250
38/38 [==============================] - 0s 891us/step - loss: 0.0955 - accuracy: 0.9546 - mae: 0.0955 - pearson_correlation: 0.7109 - euclidean_distance: 0.1533
Epoch 249/250
38/38 [==============================] - 0s 914us/step - loss: 0.0965 - accuracy: 0.9546 - mae: 0.0965 - pearson_correlation: 0.7078 - euclidean_distance: 0.1546
Epoch 250/250
38/38 [==============================] - 0s 915us/step - loss: 0.0969 - accuracy: 0.9541 - mae: 0.0969 - pearson_correlation: 0.7086 - euclidean_distance: 0.1553
19/19 [==============================] - 0s 548us/step
Epoch 1/250
38/38 [==============================] - 1s 953us/step - loss: 0.8653 - accuracy: 0.1706 - mae: 0.8653 - pearson_correlation: -0.2961 - euclidean_distance: 1.2903
Epoch 2/250
38/38 [==============================] - 0s 829us/step - loss: 0.8590 - accuracy: 0.1702 - mae: 0.8590 - pearson_correlation: -0.2940 - euclidean_distance: 1.2813
Epoch 3/250
38/38 [==============================] - 0s 872us/step - loss: 0.8569 - accuracy: 0.1698 - mae: 0.8569 - pearson_correlation: -0.2987 - euclidean_distance: 1.2782
Epoch 4/250
38/38 [==============================] - 0s 950us/step - loss: 0.8520 - accuracy: 0.1698 - mae: 0.8520 - pearson_correlation: -0.2909 - euclidean_distance: 1.2711
Epoch 5/250
38/38 [==============================] - 0s 877us/step - loss: 0.8471 - accuracy: 0.1702 - mae: 0.8471 - pearson_correlation: -0.2976 - euclidean_distance: 1.2643
Epoch 6/250
38/38 [==============================] - 0s 913us/step - loss: 0.8427 - accuracy: 0.1733 - mae: 0.8427 - pearson_correlation: -0.2986 - euclidean_distance: 1.2580
Epoch 7/250
38/38 [==============================] - 0s 912us/step - loss: 0.8381 - accuracy: 0.1711 - mae: 0.8381 - pearson_correlation: -0.2966 - euclidean_distance: 1.2515
Epoch 8/250
38/38 [==============================] - 0s 919us/step - loss: 0.8327 - accuracy: 0.1684 - mae: 0.8327 - pearson_correlation: -0.2969 - euclidean_distance: 1.2438
Epoch 9/250
38/38 [==============================] - 0s 917us/step - loss: 0.8287 - accuracy: 0.1724 - mae: 0.8287 - pearson_correlation: -0.2965 - euclidean_distance: 1.2380
Epoch 10/250
38/38 [==============================] - 0s 917us/step - loss: 0.8233 - accuracy: 0.1764 - mae: 0.8233 - pearson_correlation: -0.2930 - euclidean_distance: 1.2301
Epoch 11/250
38/38 [==============================] - 0s 926us/step - loss: 0.8190 - accuracy: 0.1720 - mae: 0.8190 - pearson_correlation: -0.2983 - euclidean_distance: 1.2242
Epoch 12/250
38/38 [==============================] - 0s 919us/step - loss: 0.8150 - accuracy: 0.1746 - mae: 0.8150 - pearson_correlation: -0.2989 - euclidean_distance: 1.2186
Epoch 13/250
38/38 [==============================] - 0s 927us/step - loss: 0.8096 - accuracy: 0.1790 - mae: 0.8096 - pearson_correlation: -0.2973 - euclidean_distance: 1.2105
Epoch 14/250
38/38 [==============================] - 0s 909us/step - loss: 0.8050 - accuracy: 0.1720 - mae: 0.8050 - pearson_correlation: -0.3006 - euclidean_distance: 1.2041
Epoch 15/250
38/38 [==============================] - 0s 905us/step - loss: 0.8011 - accuracy: 0.1847 - mae: 0.8011 - pearson_correlation: -0.3006 - euclidean_distance: 1.1986
Epoch 16/250
38/38 [==============================] - 0s 911us/step - loss: 0.7966 - accuracy: 0.1803 - mae: 0.7966 - pearson_correlation: -0.2993 - euclidean_distance: 1.1921
Epoch 17/250
38/38 [==============================] - 0s 920us/step - loss: 0.7924 - accuracy: 0.1786 - mae: 0.7924 - pearson_correlation: -0.3060 - euclidean_distance: 1.1865
Epoch 18/250
38/38 [==============================] - 0s 912us/step - loss: 0.7877 - accuracy: 0.1812 - mae: 0.7877 - pearson_correlation: -0.2992 - euclidean_distance: 1.1793
Epoch 19/250
38/38 [==============================] - 0s 922us/step - loss: 0.7826 - accuracy: 0.1790 - mae: 0.7826 - pearson_correlation: -0.2990 - euclidean_distance: 1.1722
Epoch 20/250
38/38 [==============================] - 0s 918us/step - loss: 0.7774 - accuracy: 0.1781 - mae: 0.7774 - pearson_correlation: -0.3017 - euclidean_distance: 1.1650
Epoch 21/250
38/38 [==============================] - 0s 913us/step - loss: 0.7726 - accuracy: 0.1874 - mae: 0.7726 - pearson_correlation: -0.3013 - euclidean_distance: 1.1580
Epoch 22/250
38/38 [==============================] - 0s 919us/step - loss: 0.7683 - accuracy: 0.1799 - mae: 0.7683 - pearson_correlation: -0.3036 - euclidean_distance: 1.1524
Epoch 23/250
38/38 [==============================] - 0s 914us/step - loss: 0.7646 - accuracy: 0.1768 - mae: 0.7646 - pearson_correlation: -0.3038 - euclidean_distance: 1.1468
Epoch 24/250
38/38 [==============================] - 0s 917us/step - loss: 0.7592 - accuracy: 0.1839 - mae: 0.7592 - pearson_correlation: -0.3080 - euclidean_distance: 1.1390
Epoch 25/250
38/38 [==============================] - 0s 1ms/step - loss: 0.7554 - accuracy: 0.1839 - mae: 0.7554 - pearson_correlation: -0.3045 - euclidean_distance: 1.1336
Epoch 26/250
38/38 [==============================] - 0s 949us/step - loss: 0.7510 - accuracy: 0.1821 - mae: 0.7510 - pearson_correlation: -0.3091 - euclidean_distance: 1.1273
Epoch 27/250
38/38 [==============================] - 0s 940us/step - loss: 0.7465 - accuracy: 0.1847 - mae: 0.7465 - pearson_correlation: -0.3106 - euclidean_distance: 1.1211
Epoch 28/250
38/38 [==============================] - 0s 918us/step - loss: 0.7419 - accuracy: 0.1856 - mae: 0.7419 - pearson_correlation: -0.3060 - euclidean_distance: 1.1145
Epoch 29/250
38/38 [==============================] - 0s 894us/step - loss: 0.7380 - accuracy: 0.1900 - mae: 0.7380 - pearson_correlation: -0.3109 - euclidean_distance: 1.1091
Epoch 30/250
38/38 [==============================] - 0s 918us/step - loss: 0.7320 - accuracy: 0.1861 - mae: 0.7320 - pearson_correlation: -0.3136 - euclidean_distance: 1.1005
Epoch 31/250
38/38 [==============================] - 0s 922us/step - loss: 0.7282 - accuracy: 0.1869 - mae: 0.7282 - pearson_correlation: -0.3087 - euclidean_distance: 1.0954
Epoch 32/250
38/38 [==============================] - 0s 942us/step - loss: 0.7247 - accuracy: 0.1892 - mae: 0.7247 - pearson_correlation: -0.3129 - euclidean_distance: 1.0903
Epoch 33/250
38/38 [==============================] - 0s 911us/step - loss: 0.7181 - accuracy: 0.1843 - mae: 0.7181 - pearson_correlation: -0.3154 - euclidean_distance: 1.0811
Epoch 34/250
38/38 [==============================] - 0s 911us/step - loss: 0.7155 - accuracy: 0.1781 - mae: 0.7155 - pearson_correlation: -0.3128 - euclidean_distance: 1.0773
Epoch 35/250
38/38 [==============================] - 0s 906us/step - loss: 0.7121 - accuracy: 0.1812 - mae: 0.7121 - pearson_correlation: -0.3135 - euclidean_distance: 1.0725
Epoch 36/250
38/38 [==============================] - 0s 946us/step - loss: 0.7073 - accuracy: 0.1896 - mae: 0.7073 - pearson_correlation: -0.3162 - euclidean_distance: 1.0657
Epoch 37/250
38/38 [==============================] - 0s 908us/step - loss: 0.7033 - accuracy: 0.1852 - mae: 0.7033 - pearson_correlation: -0.3155 - euclidean_distance: 1.0600
Epoch 38/250
38/38 [==============================] - 0s 924us/step - loss: 0.6977 - accuracy: 0.1852 - mae: 0.6977 - pearson_correlation: -0.3219 - euclidean_distance: 1.0526
Epoch 39/250
38/38 [==============================] - 0s 907us/step - loss: 0.6946 - accuracy: 0.1905 - mae: 0.6946 - pearson_correlation: -0.3212 - euclidean_distance: 1.0480
Epoch 40/250
38/38 [==============================] - 0s 910us/step - loss: 0.6914 - accuracy: 0.1887 - mae: 0.6914 - pearson_correlation: -0.3184 - euclidean_distance: 1.0430
Epoch 41/250
38/38 [==============================] - 0s 899us/step - loss: 0.6870 - accuracy: 0.1874 - mae: 0.6870 - pearson_correlation: -0.3182 - euclidean_distance: 1.0368
Epoch 42/250
38/38 [==============================] - 0s 946us/step - loss: 0.6828 - accuracy: 0.1847 - mae: 0.6828 - pearson_correlation: -0.3211 - euclidean_distance: 1.0312
Epoch 43/250
38/38 [==============================] - 0s 914us/step - loss: 0.6789 - accuracy: 0.1874 - mae: 0.6789 - pearson_correlation: -0.3231 - euclidean_distance: 1.0254
Epoch 44/250
38/38 [==============================] - 0s 918us/step - loss: 0.6749 - accuracy: 0.1931 - mae: 0.6749 - pearson_correlation: -0.3219 - euclidean_distance: 1.0201
Epoch 45/250
38/38 [==============================] - 0s 911us/step - loss: 0.6709 - accuracy: 0.1883 - mae: 0.6709 - pearson_correlation: -0.3197 - euclidean_distance: 1.0143
Epoch 46/250
38/38 [==============================] - 0s 911us/step - loss: 0.6676 - accuracy: 0.1958 - mae: 0.6676 - pearson_correlation: -0.3228 - euclidean_distance: 1.0097
Epoch 47/250
38/38 [==============================] - 0s 912us/step - loss: 0.6632 - accuracy: 0.1980 - mae: 0.6632 - pearson_correlation: -0.3197 - euclidean_distance: 1.0032
Epoch 48/250
38/38 [==============================] - 0s 915us/step - loss: 0.6599 - accuracy: 0.1949 - mae: 0.6599 - pearson_correlation: -0.3210 - euclidean_distance: 0.9986
Epoch 49/250
38/38 [==============================] - 0s 920us/step - loss: 0.6574 - accuracy: 0.1878 - mae: 0.6574 - pearson_correlation: -0.3243 - euclidean_distance: 0.9954
Epoch 50/250
38/38 [==============================] - 0s 908us/step - loss: 0.6522 - accuracy: 0.1966 - mae: 0.6522 - pearson_correlation: -0.3211 - euclidean_distance: 0.9878
Epoch 51/250
38/38 [==============================] - 0s 921us/step - loss: 0.6486 - accuracy: 0.1980 - mae: 0.6486 - pearson_correlation: -0.3157 - euclidean_distance: 0.9826
Epoch 52/250
38/38 [==============================] - 0s 902us/step - loss: 0.6444 - accuracy: 0.1975 - mae: 0.6444 - pearson_correlation: -0.3207 - euclidean_distance: 0.9770
Epoch 53/250
38/38 [==============================] - 0s 907us/step - loss: 0.6411 - accuracy: 0.1953 - mae: 0.6411 - pearson_correlation: -0.3204 - euclidean_distance: 0.9721
Epoch 54/250
38/38 [==============================] - 0s 911us/step - loss: 0.6382 - accuracy: 0.1980 - mae: 0.6382 - pearson_correlation: -0.3181 - euclidean_distance: 0.9677
Epoch 55/250
38/38 [==============================] - 0s 923us/step - loss: 0.6348 - accuracy: 0.2037 - mae: 0.6348 - pearson_correlation: -0.3213 - euclidean_distance: 0.9633
Epoch 56/250
38/38 [==============================] - 0s 905us/step - loss: 0.6304 - accuracy: 0.2050 - mae: 0.6304 - pearson_correlation: -0.3194 - euclidean_distance: 0.9568
Epoch 57/250
38/38 [==============================] - 0s 910us/step - loss: 0.6281 - accuracy: 0.1993 - mae: 0.6281 - pearson_correlation: -0.3178 - euclidean_distance: 0.9534
Epoch 58/250
38/38 [==============================] - 0s 961us/step - loss: 0.6250 - accuracy: 0.1909 - mae: 0.6250 - pearson_correlation: -0.3241 - euclidean_distance: 0.9497
Epoch 59/250
38/38 [==============================] - 0s 912us/step - loss: 0.6206 - accuracy: 0.2068 - mae: 0.6206 - pearson_correlation: -0.3145 - euclidean_distance: 0.9428
Epoch 60/250
38/38 [==============================] - 0s 924us/step - loss: 0.6177 - accuracy: 0.1975 - mae: 0.6177 - pearson_correlation: -0.3148 - euclidean_distance: 0.9389
Epoch 61/250
38/38 [==============================] - 0s 903us/step - loss: 0.6142 - accuracy: 0.1984 - mae: 0.6142 - pearson_correlation: -0.3116 - euclidean_distance: 0.9337
Epoch 62/250
38/38 [==============================] - 0s 953us/step - loss: 0.6102 - accuracy: 0.2063 - mae: 0.6102 - pearson_correlation: -0.3162 - euclidean_distance: 0.9280
Epoch 63/250
38/38 [==============================] - 0s 878us/step - loss: 0.6067 - accuracy: 0.2099 - mae: 0.6067 - pearson_correlation: -0.3132 - euclidean_distance: 0.9232
Epoch 64/250
38/38 [==============================] - 0s 917us/step - loss: 0.6051 - accuracy: 0.2033 - mae: 0.6051 - pearson_correlation: -0.3103 - euclidean_distance: 0.9205
Epoch 65/250
38/38 [==============================] - 0s 907us/step - loss: 0.6007 - accuracy: 0.2059 - mae: 0.6007 - pearson_correlation: -0.3080 - euclidean_distance: 0.9148
Epoch 66/250
38/38 [==============================] - 0s 921us/step - loss: 0.5975 - accuracy: 0.2134 - mae: 0.5975 - pearson_correlation: -0.3084 - euclidean_distance: 0.9100
Epoch 67/250
38/38 [==============================] - 0s 916us/step - loss: 0.5953 - accuracy: 0.2059 - mae: 0.5953 - pearson_correlation: -0.3115 - euclidean_distance: 0.9071
Epoch 68/250
38/38 [==============================] - 0s 916us/step - loss: 0.5926 - accuracy: 0.2112 - mae: 0.5926 - pearson_correlation: -0.3054 - euclidean_distance: 0.9031
Epoch 69/250
38/38 [==============================] - 0s 920us/step - loss: 0.5881 - accuracy: 0.2116 - mae: 0.5881 - pearson_correlation: -0.3135 - euclidean_distance: 0.8971
Epoch 70/250
38/38 [==============================] - 0s 950us/step - loss: 0.5861 - accuracy: 0.2130 - mae: 0.5861 - pearson_correlation: -0.3040 - euclidean_distance: 0.8937
Epoch 71/250
38/38 [==============================] - 0s 891us/step - loss: 0.5821 - accuracy: 0.2200 - mae: 0.5821 - pearson_correlation: -0.3050 - euclidean_distance: 0.8883
Epoch 72/250
38/38 [==============================] - 0s 923us/step - loss: 0.5788 - accuracy: 0.2178 - mae: 0.5788 - pearson_correlation: -0.3061 - euclidean_distance: 0.8839
Epoch 73/250
38/38 [==============================] - 0s 988us/step - loss: 0.5758 - accuracy: 0.2240 - mae: 0.5758 - pearson_correlation: -0.3030 - euclidean_distance: 0.8794
Epoch 74/250
38/38 [==============================] - 0s 930us/step - loss: 0.5731 - accuracy: 0.2169 - mae: 0.5731 - pearson_correlation: -0.2978 - euclidean_distance: 0.8757
Epoch 75/250
38/38 [==============================] - 0s 896us/step - loss: 0.5706 - accuracy: 0.2275 - mae: 0.5706 - pearson_correlation: -0.2965 - euclidean_distance: 0.8719
Epoch 76/250
38/38 [==============================] - 0s 899us/step - loss: 0.5664 - accuracy: 0.2293 - mae: 0.5664 - pearson_correlation: -0.2974 - euclidean_distance: 0.8660
Epoch 77/250
38/38 [==============================] - 0s 914us/step - loss: 0.5639 - accuracy: 0.2297 - mae: 0.5639 - pearson_correlation: -0.2883 - euclidean_distance: 0.8623
Epoch 78/250
38/38 [==============================] - 0s 897us/step - loss: 0.5601 - accuracy: 0.2306 - mae: 0.5601 - pearson_correlation: -0.2945 - euclidean_distance: 0.8574
Epoch 79/250
38/38 [==============================] - 0s 923us/step - loss: 0.5588 - accuracy: 0.2315 - mae: 0.5588 - pearson_correlation: -0.2966 - euclidean_distance: 0.8557
Epoch 80/250
38/38 [==============================] - 0s 912us/step - loss: 0.5544 - accuracy: 0.2280 - mae: 0.5544 - pearson_correlation: -0.2900 - euclidean_distance: 0.8494
Epoch 81/250
38/38 [==============================] - 0s 917us/step - loss: 0.5527 - accuracy: 0.2363 - mae: 0.5527 - pearson_correlation: -0.2798 - euclidean_distance: 0.8463
Epoch 82/250
38/38 [==============================] - 0s 919us/step - loss: 0.5486 - accuracy: 0.2359 - mae: 0.5486 - pearson_correlation: -0.2847 - euclidean_distance: 0.8411
Epoch 83/250
38/38 [==============================] - 0s 910us/step - loss: 0.5459 - accuracy: 0.2359 - mae: 0.5459 - pearson_correlation: -0.2814 - euclidean_distance: 0.8371
Epoch 84/250
38/38 [==============================] - 0s 915us/step - loss: 0.5429 - accuracy: 0.2412 - mae: 0.5429 - pearson_correlation: -0.2800 - euclidean_distance: 0.8332
Epoch 85/250
38/38 [==============================] - 0s 924us/step - loss: 0.5393 - accuracy: 0.2394 - mae: 0.5393 - pearson_correlation: -0.2789 - euclidean_distance: 0.8280
Epoch 86/250
38/38 [==============================] - 0s 912us/step - loss: 0.5381 - accuracy: 0.2385 - mae: 0.5381 - pearson_correlation: -0.2709 - euclidean_distance: 0.8262
Epoch 87/250
38/38 [==============================] - 0s 918us/step - loss: 0.5348 - accuracy: 0.2500 - mae: 0.5348 - pearson_correlation: -0.2677 - euclidean_distance: 0.8216
Epoch 88/250
38/38 [==============================] - 0s 914us/step - loss: 0.5318 - accuracy: 0.2421 - mae: 0.5318 - pearson_correlation: -0.2762 - euclidean_distance: 0.8179
Epoch 89/250
38/38 [==============================] - 0s 922us/step - loss: 0.5287 - accuracy: 0.2496 - mae: 0.5287 - pearson_correlation: -0.2635 - euclidean_distance: 0.8129
Epoch 90/250
38/38 [==============================] - 0s 901us/step - loss: 0.5264 - accuracy: 0.2549 - mae: 0.5264 - pearson_correlation: -0.2560 - euclidean_distance: 0.8095
Epoch 91/250
38/38 [==============================] - 0s 920us/step - loss: 0.5239 - accuracy: 0.2504 - mae: 0.5239 - pearson_correlation: -0.2535 - euclidean_distance: 0.8060
Epoch 92/250
38/38 [==============================] - 0s 871us/step - loss: 0.5204 - accuracy: 0.2584 - mae: 0.5204 - pearson_correlation: -0.2514 - euclidean_distance: 0.8013
Epoch 93/250
38/38 [==============================] - 0s 909us/step - loss: 0.5173 - accuracy: 0.2654 - mae: 0.5173 - pearson_correlation: -0.2494 - euclidean_distance: 0.7968
Epoch 94/250
38/38 [==============================] - 0s 915us/step - loss: 0.5140 - accuracy: 0.2491 - mae: 0.5140 - pearson_correlation: -0.2538 - euclidean_distance: 0.7926
Epoch 95/250
38/38 [==============================] - 0s 924us/step - loss: 0.5120 - accuracy: 0.2681 - mae: 0.5120 - pearson_correlation: -0.2447 - euclidean_distance: 0.7898
Epoch 96/250
38/38 [==============================] - 0s 915us/step - loss: 0.5095 - accuracy: 0.2615 - mae: 0.5095 - pearson_correlation: -0.2427 - euclidean_distance: 0.7862
Epoch 97/250
38/38 [==============================] - 0s 925us/step - loss: 0.5070 - accuracy: 0.2593 - mae: 0.5070 - pearson_correlation: -0.2450 - euclidean_distance: 0.7830
Epoch 98/250
38/38 [==============================] - 0s 916us/step - loss: 0.5041 - accuracy: 0.2668 - mae: 0.5041 - pearson_correlation: -0.2419 - euclidean_distance: 0.7787
Epoch 99/250
38/38 [==============================] - 0s 910us/step - loss: 0.5012 - accuracy: 0.2646 - mae: 0.5012 - pearson_correlation: -0.2324 - euclidean_distance: 0.7744
Epoch 100/250
38/38 [==============================] - 0s 919us/step - loss: 0.4985 - accuracy: 0.2734 - mae: 0.4985 - pearson_correlation: -0.2320 - euclidean_distance: 0.7706
Epoch 101/250
38/38 [==============================] - 0s 913us/step - loss: 0.4950 - accuracy: 0.2729 - mae: 0.4950 - pearson_correlation: -0.2290 - euclidean_distance: 0.7660
Epoch 102/250
38/38 [==============================] - 0s 910us/step - loss: 0.4927 - accuracy: 0.2743 - mae: 0.4927 - pearson_correlation: -0.2291 - euclidean_distance: 0.7629
Epoch 103/250
38/38 [==============================] - 0s 954us/step - loss: 0.4898 - accuracy: 0.2703 - mae: 0.4898 - pearson_correlation: -0.2237 - euclidean_distance: 0.7588
Epoch 104/250
38/38 [==============================] - 0s 916us/step - loss: 0.4868 - accuracy: 0.2765 - mae: 0.4868 - pearson_correlation: -0.2152 - euclidean_distance: 0.7545
Epoch 105/250
38/38 [==============================] - 0s 918us/step - loss: 0.4846 - accuracy: 0.2804 - mae: 0.4846 - pearson_correlation: -0.2083 - euclidean_distance: 0.7514
Epoch 106/250
38/38 [==============================] - 0s 915us/step - loss: 0.4818 - accuracy: 0.2954 - mae: 0.4818 - pearson_correlation: -0.2105 - euclidean_distance: 0.7475
Epoch 107/250
38/38 [==============================] - 0s 916us/step - loss: 0.4795 - accuracy: 0.2765 - mae: 0.4795 - pearson_correlation: -0.2122 - euclidean_distance: 0.7448
Epoch 108/250
38/38 [==============================] - 0s 914us/step - loss: 0.4763 - accuracy: 0.2840 - mae: 0.4763 - pearson_correlation: -0.2034 - euclidean_distance: 0.7400
Epoch 109/250
38/38 [==============================] - 0s 916us/step - loss: 0.4734 - accuracy: 0.2866 - mae: 0.4734 - pearson_correlation: -0.1953 - euclidean_distance: 0.7360
Epoch 110/250
38/38 [==============================] - 0s 902us/step - loss: 0.4703 - accuracy: 0.2910 - mae: 0.4703 - pearson_correlation: -0.2068 - euclidean_distance: 0.7321
Epoch 111/250
38/38 [==============================] - 0s 909us/step - loss: 0.4679 - accuracy: 0.2937 - mae: 0.4679 - pearson_correlation: -0.1939 - euclidean_distance: 0.7283
Epoch 112/250
38/38 [==============================] - 0s 935us/step - loss: 0.4644 - accuracy: 0.3011 - mae: 0.4644 - pearson_correlation: -0.1868 - euclidean_distance: 0.7237
Epoch 113/250
38/38 [==============================] - 0s 909us/step - loss: 0.4617 - accuracy: 0.2937 - mae: 0.4617 - pearson_correlation: -0.1842 - euclidean_distance: 0.7201
Epoch 114/250
38/38 [==============================] - 0s 909us/step - loss: 0.4593 - accuracy: 0.3011 - mae: 0.4593 - pearson_correlation: -0.1794 - euclidean_distance: 0.7165
Epoch 115/250
38/38 [==============================] - 0s 906us/step - loss: 0.4552 - accuracy: 0.3038 - mae: 0.4552 - pearson_correlation: -0.1773 - euclidean_distance: 0.7109
Epoch 116/250
38/38 [==============================] - 0s 906us/step - loss: 0.4532 - accuracy: 0.3086 - mae: 0.4532 - pearson_correlation: -0.1787 - euclidean_distance: 0.7083
Epoch 117/250
38/38 [==============================] - 0s 922us/step - loss: 0.4492 - accuracy: 0.3135 - mae: 0.4492 - pearson_correlation: -0.1668 - euclidean_distance: 0.7025
Epoch 118/250
38/38 [==============================] - 0s 910us/step - loss: 0.4469 - accuracy: 0.3153 - mae: 0.4469 - pearson_correlation: -0.1624 - euclidean_distance: 0.6993
Epoch 119/250
38/38 [==============================] - 0s 913us/step - loss: 0.4434 - accuracy: 0.3175 - mae: 0.4434 - pearson_correlation: -0.1542 - euclidean_distance: 0.6948
Epoch 120/250
38/38 [==============================] - 0s 938us/step - loss: 0.4410 - accuracy: 0.3205 - mae: 0.4410 - pearson_correlation: -0.1549 - euclidean_distance: 0.6914
Epoch 121/250
38/38 [==============================] - 0s 906us/step - loss: 0.4370 - accuracy: 0.3166 - mae: 0.4370 - pearson_correlation: -0.1509 - euclidean_distance: 0.6861
Epoch 122/250
38/38 [==============================] - 0s 912us/step - loss: 0.4338 - accuracy: 0.3166 - mae: 0.4338 - pearson_correlation: -0.1497 - euclidean_distance: 0.6817
Epoch 123/250
38/38 [==============================] - 0s 916us/step - loss: 0.4305 - accuracy: 0.3320 - mae: 0.4305 - pearson_correlation: -0.1421 - euclidean_distance: 0.6771
Epoch 124/250
38/38 [==============================] - 0s 913us/step - loss: 0.4281 - accuracy: 0.3170 - mae: 0.4281 - pearson_correlation: -0.1417 - euclidean_distance: 0.6739
Epoch 125/250
38/38 [==============================] - 0s 912us/step - loss: 0.4239 - accuracy: 0.3311 - mae: 0.4239 - pearson_correlation: -0.1325 - euclidean_distance: 0.6680
Epoch 126/250
38/38 [==============================] - 0s 912us/step - loss: 0.4207 - accuracy: 0.3395 - mae: 0.4207 - pearson_correlation: -0.1277 - euclidean_distance: 0.6637
Epoch 127/250
38/38 [==============================] - 0s 907us/step - loss: 0.4174 - accuracy: 0.3377 - mae: 0.4174 - pearson_correlation: -0.1235 - euclidean_distance: 0.6590
Epoch 128/250
38/38 [==============================] - 0s 904us/step - loss: 0.4142 - accuracy: 0.3435 - mae: 0.4142 - pearson_correlation: -0.1187 - euclidean_distance: 0.6544
Epoch 129/250
38/38 [==============================] - 0s 916us/step - loss: 0.4101 - accuracy: 0.3399 - mae: 0.4101 - pearson_correlation: -0.1167 - euclidean_distance: 0.6493
Epoch 130/250
38/38 [==============================] - 0s 916us/step - loss: 0.4074 - accuracy: 0.3413 - mae: 0.4074 - pearson_correlation: -0.1112 - euclidean_distance: 0.6450
Epoch 131/250
38/38 [==============================] - 0s 901us/step - loss: 0.4037 - accuracy: 0.3466 - mae: 0.4037 - pearson_correlation: -0.1062 - euclidean_distance: 0.6402
Epoch 132/250
38/38 [==============================] - 0s 958us/step - loss: 0.4005 - accuracy: 0.3466 - mae: 0.4005 - pearson_correlation: -0.0922 - euclidean_distance: 0.6355
Epoch 133/250
38/38 [==============================] - 0s 938us/step - loss: 0.3970 - accuracy: 0.3563 - mae: 0.3970 - pearson_correlation: -0.0941 - euclidean_distance: 0.6310
Epoch 134/250
38/38 [==============================] - 0s 939us/step - loss: 0.3934 - accuracy: 0.3479 - mae: 0.3934 - pearson_correlation: -0.0952 - euclidean_distance: 0.6261
Epoch 135/250
38/38 [==============================] - 0s 927us/step - loss: 0.3893 - accuracy: 0.3571 - mae: 0.3893 - pearson_correlation: -0.0814 - euclidean_distance: 0.6203
Epoch 136/250
38/38 [==============================] - 0s 917us/step - loss: 0.3855 - accuracy: 0.3545 - mae: 0.3855 - pearson_correlation: -0.0821 - euclidean_distance: 0.6154
Epoch 137/250
38/38 [==============================] - 0s 908us/step - loss: 0.3819 - accuracy: 0.3611 - mae: 0.3819 - pearson_correlation: -0.0778 - euclidean_distance: 0.6105
Epoch 138/250
38/38 [==============================] - 0s 916us/step - loss: 0.3778 - accuracy: 0.3739 - mae: 0.3778 - pearson_correlation: -0.0691 - euclidean_distance: 0.6042
Epoch 139/250
38/38 [==============================] - 0s 921us/step - loss: 0.3744 - accuracy: 0.3801 - mae: 0.3744 - pearson_correlation: -0.0584 - euclidean_distance: 0.5995
Epoch 140/250
38/38 [==============================] - 0s 933us/step - loss: 0.3704 - accuracy: 0.3765 - mae: 0.3704 - pearson_correlation: -0.0576 - euclidean_distance: 0.5941
Epoch 141/250
38/38 [==============================] - 0s 898us/step - loss: 0.3666 - accuracy: 0.3858 - mae: 0.3666 - pearson_correlation: -0.0504 - euclidean_distance: 0.5885
Epoch 142/250
38/38 [==============================] - 0s 909us/step - loss: 0.3634 - accuracy: 0.3792 - mae: 0.3634 - pearson_correlation: -0.0440 - euclidean_distance: 0.5846
Epoch 143/250
38/38 [==============================] - 0s 918us/step - loss: 0.3585 - accuracy: 0.3893 - mae: 0.3585 - pearson_correlation: -0.0386 - euclidean_distance: 0.5779
Epoch 144/250
38/38 [==============================] - 0s 912us/step - loss: 0.3558 - accuracy: 0.3929 - mae: 0.3558 - pearson_correlation: -0.0358 - euclidean_distance: 0.5739
Epoch 145/250
38/38 [==============================] - 0s 918us/step - loss: 0.3514 - accuracy: 0.3981 - mae: 0.3514 - pearson_correlation: -0.0268 - euclidean_distance: 0.5676
Epoch 146/250
38/38 [==============================] - 0s 900us/step - loss: 0.3475 - accuracy: 0.3964 - mae: 0.3475 - pearson_correlation: -0.0207 - euclidean_distance: 0.5619
Epoch 147/250
38/38 [==============================] - 0s 925us/step - loss: 0.3422 - accuracy: 0.3964 - mae: 0.3422 - pearson_correlation: -0.0155 - euclidean_distance: 0.5550
Epoch 148/250
38/38 [==============================] - 0s 953us/step - loss: 0.3395 - accuracy: 0.4008 - mae: 0.3395 - pearson_correlation: -0.0054 - euclidean_distance: 0.5504
Epoch 149/250
38/38 [==============================] - 0s 915us/step - loss: 0.3357 - accuracy: 0.4140 - mae: 0.3357 - pearson_correlation: -0.0014 - euclidean_distance: 0.5452
Epoch 150/250
38/38 [==============================] - 0s 917us/step - loss: 0.3311 - accuracy: 0.4140 - mae: 0.3311 - pearson_correlation: 0.0070 - euclidean_distance: 0.5392
Epoch 151/250
38/38 [==============================] - 0s 921us/step - loss: 0.3273 - accuracy: 0.4215 - mae: 0.3273 - pearson_correlation: 0.0146 - euclidean_distance: 0.5340
Epoch 152/250
38/38 [==============================] - 0s 914us/step - loss: 0.3243 - accuracy: 0.4233 - mae: 0.3243 - pearson_correlation: 0.0182 - euclidean_distance: 0.5292
Epoch 153/250
38/38 [==============================] - 0s 921us/step - loss: 0.3207 - accuracy: 0.4198 - mae: 0.3207 - pearson_correlation: 0.0191 - euclidean_distance: 0.5245
Epoch 154/250
38/38 [==============================] - 0s 905us/step - loss: 0.3165 - accuracy: 0.4299 - mae: 0.3165 - pearson_correlation: 0.0237 - euclidean_distance: 0.5186
Epoch 155/250
38/38 [==============================] - 0s 907us/step - loss: 0.3130 - accuracy: 0.4334 - mae: 0.3130 - pearson_correlation: 0.0290 - euclidean_distance: 0.5136
Epoch 156/250
38/38 [==============================] - 0s 925us/step - loss: 0.3093 - accuracy: 0.4352 - mae: 0.3093 - pearson_correlation: 0.0381 - euclidean_distance: 0.5082
Epoch 157/250
38/38 [==============================] - 0s 913us/step - loss: 0.3057 - accuracy: 0.4392 - mae: 0.3057 - pearson_correlation: 0.0463 - euclidean_distance: 0.5026
Epoch 158/250
38/38 [==============================] - 0s 910us/step - loss: 0.3007 - accuracy: 0.4308 - mae: 0.3007 - pearson_correlation: 0.0537 - euclidean_distance: 0.4964
Epoch 159/250
38/38 [==============================] - 0s 908us/step - loss: 0.2983 - accuracy: 0.4466 - mae: 0.2983 - pearson_correlation: 0.0574 - euclidean_distance: 0.4920
Epoch 160/250
38/38 [==============================] - 0s 916us/step - loss: 0.2970 - accuracy: 0.4466 - mae: 0.2970 - pearson_correlation: 0.0658 - euclidean_distance: 0.4887
Epoch 161/250
38/38 [==============================] - 0s 909us/step - loss: 0.2924 - accuracy: 0.4594 - mae: 0.2924 - pearson_correlation: 0.0683 - euclidean_distance: 0.4827
Epoch 162/250
38/38 [==============================] - 0s 912us/step - loss: 0.2897 - accuracy: 0.4608 - mae: 0.2897 - pearson_correlation: 0.0790 - euclidean_distance: 0.4780
Epoch 163/250
38/38 [==============================] - 0s 912us/step - loss: 0.2858 - accuracy: 0.4612 - mae: 0.2858 - pearson_correlation: 0.0884 - euclidean_distance: 0.4723
Epoch 164/250
38/38 [==============================] - 0s 955us/step - loss: 0.2816 - accuracy: 0.4625 - mae: 0.2816 - pearson_correlation: 0.0939 - euclidean_distance: 0.4665
Epoch 165/250
38/38 [==============================] - 0s 970us/step - loss: 0.2793 - accuracy: 0.4660 - mae: 0.2793 - pearson_correlation: 0.0961 - euclidean_distance: 0.4624
Epoch 166/250
38/38 [==============================] - 0s 924us/step - loss: 0.2774 - accuracy: 0.4718 - mae: 0.2774 - pearson_correlation: 0.1037 - euclidean_distance: 0.4593
Epoch 167/250
38/38 [==============================] - 0s 924us/step - loss: 0.2747 - accuracy: 0.4832 - mae: 0.2747 - pearson_correlation: 0.1097 - euclidean_distance: 0.4547
Epoch 168/250
38/38 [==============================] - 0s 934us/step - loss: 0.2706 - accuracy: 0.4877 - mae: 0.2706 - pearson_correlation: 0.1210 - euclidean_distance: 0.4488
Epoch 169/250
38/38 [==============================] - 0s 917us/step - loss: 0.2679 - accuracy: 0.5084 - mae: 0.2679 - pearson_correlation: 0.1312 - euclidean_distance: 0.4435
Epoch 170/250
38/38 [==============================] - 0s 908us/step - loss: 0.2650 - accuracy: 0.4996 - mae: 0.2650 - pearson_correlation: 0.1385 - euclidean_distance: 0.4393
Epoch 171/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2619 - accuracy: 0.5040 - mae: 0.2619 - pearson_correlation: 0.1395 - euclidean_distance: 0.4353
Epoch 172/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2600 - accuracy: 0.5088 - mae: 0.2600 - pearson_correlation: 0.1400 - euclidean_distance: 0.4321
Epoch 173/250
38/38 [==============================] - 0s 2ms/step - loss: 0.2595 - accuracy: 0.5251 - mae: 0.2595 - pearson_correlation: 0.1506 - euclidean_distance: 0.4300
Epoch 174/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2553 - accuracy: 0.5159 - mae: 0.2553 - pearson_correlation: 0.1510 - euclidean_distance: 0.4249
Epoch 175/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2540 - accuracy: 0.5282 - mae: 0.2540 - pearson_correlation: 0.1588 - euclidean_distance: 0.4219
Epoch 176/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2503 - accuracy: 0.5432 - mae: 0.2503 - pearson_correlation: 0.1713 - euclidean_distance: 0.4162
Epoch 177/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2488 - accuracy: 0.5441 - mae: 0.2488 - pearson_correlation: 0.1749 - euclidean_distance: 0.4136
Epoch 178/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2466 - accuracy: 0.5586 - mae: 0.2466 - pearson_correlation: 0.1835 - euclidean_distance: 0.4095
Epoch 179/250
38/38 [==============================] - 0s 959us/step - loss: 0.2450 - accuracy: 0.5705 - mae: 0.2450 - pearson_correlation: 0.1901 - euclidean_distance: 0.4062
Epoch 180/250
38/38 [==============================] - 0s 958us/step - loss: 0.2413 - accuracy: 0.5785 - mae: 0.2413 - pearson_correlation: 0.1951 - euclidean_distance: 0.4010
Epoch 181/250
38/38 [==============================] - 0s 942us/step - loss: 0.2380 - accuracy: 0.5816 - mae: 0.2380 - pearson_correlation: 0.2020 - euclidean_distance: 0.3953
Epoch 182/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2371 - accuracy: 0.5988 - mae: 0.2371 - pearson_correlation: 0.2066 - euclidean_distance: 0.3939
Epoch 183/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2348 - accuracy: 0.6019 - mae: 0.2348 - pearson_correlation: 0.2111 - euclidean_distance: 0.3897
Epoch 184/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2311 - accuracy: 0.6138 - mae: 0.2311 - pearson_correlation: 0.2189 - euclidean_distance: 0.3846
Epoch 185/250
38/38 [==============================] - 0s 1ms/step - loss: 0.2305 - accuracy: 0.6279 - mae: 0.2305 - pearson_correlation: 0.2235 - euclidean_distance: 0.3834
Epoch 186/250
38/38 [==============================] - 0s 986us/step - loss: 0.2294 - accuracy: 0.6195 - mae: 0.2294 - pearson_correlation: 0.2309 - euclidean_distance: 0.3818
Epoch 187/250
38/38 [==============================] - 0s 957us/step - loss: 0.2254 - accuracy: 0.6305 - mae: 0.2254 - pearson_correlation: 0.2397 - euclidean_distance: 0.3752
Epoch 188/250
38/38 [==============================] - 0s 958us/step - loss: 0.2241 - accuracy: 0.6451 - mae: 0.2241 - pearson_correlation: 0.2387 - euclidean_distance: 0.3730
Epoch 189/250
38/38 [==============================] - 0s 997us/step - loss: 0.2238 - accuracy: 0.6574 - mae: 0.2238 - pearson_correlation: 0.2442 - euclidean_distance: 0.3717
Epoch 190/250
38/38 [==============================] - 0s 906us/step - loss: 0.2219 - accuracy: 0.6578 - mae: 0.2219 - pearson_correlation: 0.2495 - euclidean_distance: 0.3688
Epoch 191/250
38/38 [==============================] - 0s 926us/step - loss: 0.2198 - accuracy: 0.6667 - mae: 0.2198 - pearson_correlation: 0.2561 - euclidean_distance: 0.3649
Epoch 192/250
38/38 [==============================] - 0s 910us/step - loss: 0.2170 - accuracy: 0.6830 - mae: 0.2170 - pearson_correlation: 0.2621 - euclidean_distance: 0.3610
Epoch 193/250
38/38 [==============================] - 0s 900us/step - loss: 0.2149 - accuracy: 0.6830 - mae: 0.2149 - pearson_correlation: 0.2691 - euclidean_distance: 0.3561
Epoch 194/250
38/38 [==============================] - 0s 916us/step - loss: 0.2126 - accuracy: 0.6975 - mae: 0.2126 - pearson_correlation: 0.2733 - euclidean_distance: 0.3535
Epoch 195/250
38/38 [==============================] - 0s 908us/step - loss: 0.2103 - accuracy: 0.6966 - mae: 0.2103 - pearson_correlation: 0.2798 - euclidean_distance: 0.3492
Epoch 196/250
38/38 [==============================] - 0s 920us/step - loss: 0.2098 - accuracy: 0.7041 - mae: 0.2098 - pearson_correlation: 0.2891 - euclidean_distance: 0.3484
Epoch 197/250
38/38 [==============================] - 0s 916us/step - loss: 0.2080 - accuracy: 0.7147 - mae: 0.2080 - pearson_correlation: 0.2970 - euclidean_distance: 0.3456
Epoch 198/250
38/38 [==============================] - 0s 897us/step - loss: 0.2053 - accuracy: 0.7196 - mae: 0.2053 - pearson_correlation: 0.2991 - euclidean_distance: 0.3411
Epoch 199/250
38/38 [==============================] - 0s 923us/step - loss: 0.2054 - accuracy: 0.7244 - mae: 0.2054 - pearson_correlation: 0.3018 - euclidean_distance: 0.3406
Epoch 200/250
38/38 [==============================] - 0s 928us/step - loss: 0.2015 - accuracy: 0.7324 - mae: 0.2015 - pearson_correlation: 0.3067 - euclidean_distance: 0.3350
Epoch 201/250
38/38 [==============================] - 0s 930us/step - loss: 0.1978 - accuracy: 0.7359 - mae: 0.1978 - pearson_correlation: 0.3207 - euclidean_distance: 0.3287
Epoch 202/250
38/38 [==============================] - 0s 912us/step - loss: 0.1990 - accuracy: 0.7487 - mae: 0.1990 - pearson_correlation: 0.3154 - euclidean_distance: 0.3304
Epoch 203/250
38/38 [==============================] - 0s 912us/step - loss: 0.1951 - accuracy: 0.7460 - mae: 0.1951 - pearson_correlation: 0.3249 - euclidean_distance: 0.3249
Epoch 204/250
38/38 [==============================] - 0s 908us/step - loss: 0.1930 - accuracy: 0.7522 - mae: 0.1930 - pearson_correlation: 0.3362 - euclidean_distance: 0.3204
Epoch 205/250
38/38 [==============================] - 0s 940us/step - loss: 0.1920 - accuracy: 0.7646 - mae: 0.1920 - pearson_correlation: 0.3350 - euclidean_distance: 0.3190
Epoch 206/250
38/38 [==============================] - 0s 1ms/step - loss: 0.1906 - accuracy: 0.7571 - mae: 0.1906 - pearson_correlation: 0.3428 - euclidean_distance: 0.3165
Epoch 207/250
38/38 [==============================] - 0s 1000us/step - loss: 0.1880 - accuracy: 0.7663 - mae: 0.1880 - pearson_correlation: 0.3461 - euclidean_distance: 0.3123
Epoch 208/250
38/38 [==============================] - 0s 929us/step - loss: 0.1876 - accuracy: 0.7716 - mae: 0.1876 - pearson_correlation: 0.3538 - euclidean_distance: 0.3107
Epoch 209/250
38/38 [==============================] - 0s 965us/step - loss: 0.1853 - accuracy: 0.7676 - mae: 0.1853 - pearson_correlation: 0.3629 - euclidean_distance: 0.3072
Epoch 210/250
38/38 [==============================] - 0s 921us/step - loss: 0.1840 - accuracy: 0.7712 - mae: 0.1840 - pearson_correlation: 0.3652 - euclidean_distance: 0.3050
Epoch 211/250
38/38 [==============================] - 0s 919us/step - loss: 0.1818 - accuracy: 0.7835 - mae: 0.1818 - pearson_correlation: 0.3673 - euclidean_distance: 0.3019
Epoch 212/250
38/38 [==============================] - 0s 921us/step - loss: 0.1796 - accuracy: 0.7884 - mae: 0.1796 - pearson_correlation: 0.3812 - euclidean_distance: 0.2974
Epoch 213/250
38/38 [==============================] - 0s 912us/step - loss: 0.1800 - accuracy: 0.7932 - mae: 0.1800 - pearson_correlation: 0.3806 - euclidean_distance: 0.2981
Epoch 214/250
38/38 [==============================] - 0s 890us/step - loss: 0.1796 - accuracy: 0.7928 - mae: 0.1796 - pearson_correlation: 0.3786 - euclidean_distance: 0.2981
Epoch 215/250
38/38 [==============================] - 0s 906us/step - loss: 0.1759 - accuracy: 0.7901 - mae: 0.1759 - pearson_correlation: 0.3968 - euclidean_distance: 0.2911
Epoch 216/250
38/38 [==============================] - 0s 903us/step - loss: 0.1741 - accuracy: 0.8003 - mae: 0.1741 - pearson_correlation: 0.3981 - euclidean_distance: 0.2884
Epoch 217/250
38/38 [==============================] - 0s 916us/step - loss: 0.1749 - accuracy: 0.7981 - mae: 0.1749 - pearson_correlation: 0.3980 - euclidean_distance: 0.2900
Epoch 218/250
38/38 [==============================] - 0s 911us/step - loss: 0.1700 - accuracy: 0.8020 - mae: 0.1700 - pearson_correlation: 0.4098 - euclidean_distance: 0.2823
Epoch 219/250
38/38 [==============================] - 0s 892us/step - loss: 0.1696 - accuracy: 0.8078 - mae: 0.1696 - pearson_correlation: 0.4118 - euclidean_distance: 0.2815
Epoch 220/250
38/38 [==============================] - 0s 912us/step - loss: 0.1681 - accuracy: 0.8131 - mae: 0.1681 - pearson_correlation: 0.4143 - euclidean_distance: 0.2793
Epoch 221/250
38/38 [==============================] - 0s 914us/step - loss: 0.1684 - accuracy: 0.8183 - mae: 0.1684 - pearson_correlation: 0.4232 - euclidean_distance: 0.2788
Epoch 222/250
38/38 [==============================] - 0s 917us/step - loss: 0.1639 - accuracy: 0.8170 - mae: 0.1639 - pearson_correlation: 0.4296 - euclidean_distance: 0.2719
Epoch 223/250
38/38 [==============================] - 0s 910us/step - loss: 0.1631 - accuracy: 0.8201 - mae: 0.1631 - pearson_correlation: 0.4344 - euclidean_distance: 0.2703
Epoch 224/250
38/38 [==============================] - 0s 918us/step - loss: 0.1618 - accuracy: 0.8254 - mae: 0.1618 - pearson_correlation: 0.4329 - euclidean_distance: 0.2690
Epoch 225/250
38/38 [==============================] - 0s 918us/step - loss: 0.1599 - accuracy: 0.8276 - mae: 0.1599 - pearson_correlation: 0.4442 - euclidean_distance: 0.2650
Epoch 226/250
38/38 [==============================] - 0s 918us/step - loss: 0.1596 - accuracy: 0.8280 - mae: 0.1596 - pearson_correlation: 0.4399 - euclidean_distance: 0.2651
Epoch 227/250
38/38 [==============================] - 0s 915us/step - loss: 0.1588 - accuracy: 0.8276 - mae: 0.1588 - pearson_correlation: 0.4463 - euclidean_distance: 0.2634
Epoch 228/250
38/38 [==============================] - 0s 927us/step - loss: 0.1581 - accuracy: 0.8417 - mae: 0.1581 - pearson_correlation: 0.4521 - euclidean_distance: 0.2614
Epoch 229/250
38/38 [==============================] - 0s 917us/step - loss: 0.1544 - accuracy: 0.8373 - mae: 0.1544 - pearson_correlation: 0.4583 - euclidean_distance: 0.2568
Epoch 230/250
38/38 [==============================] - 0s 921us/step - loss: 0.1524 - accuracy: 0.8408 - mae: 0.1524 - pearson_correlation: 0.4706 - euclidean_distance: 0.2533
Epoch 231/250
38/38 [==============================] - 0s 920us/step - loss: 0.1508 - accuracy: 0.8479 - mae: 0.1508 - pearson_correlation: 0.4749 - euclidean_distance: 0.2505
Epoch 232/250
38/38 [==============================] - 0s 912us/step - loss: 0.1510 - accuracy: 0.8470 - mae: 0.1510 - pearson_correlation: 0.4712 - euclidean_distance: 0.2504
Epoch 233/250
38/38 [==============================] - 0s 913us/step - loss: 0.1479 - accuracy: 0.8505 - mae: 0.1479 - pearson_correlation: 0.4805 - euclidean_distance: 0.2452
Epoch 234/250
38/38 [==============================] - 0s 910us/step - loss: 0.1529 - accuracy: 0.8519 - mae: 0.1529 - pearson_correlation: 0.4730 - euclidean_distance: 0.2536
Epoch 235/250
38/38 [==============================] - 0s 916us/step - loss: 0.1472 - accuracy: 0.8545 - mae: 0.1472 - pearson_correlation: 0.4891 - euclidean_distance: 0.2442
Epoch 236/250
38/38 [==============================] - 0s 860us/step - loss: 0.1483 - accuracy: 0.8567 - mae: 0.1483 - pearson_correlation: 0.4913 - euclidean_distance: 0.2453
Epoch 237/250
38/38 [==============================] - 0s 917us/step - loss: 0.1448 - accuracy: 0.8642 - mae: 0.1448 - pearson_correlation: 0.4943 - euclidean_distance: 0.2403
Epoch 238/250
38/38 [==============================] - 0s 909us/step - loss: 0.1465 - accuracy: 0.8629 - mae: 0.1465 - pearson_correlation: 0.4929 - euclidean_distance: 0.2420
Epoch 239/250
38/38 [==============================] - 0s 913us/step - loss: 0.1439 - accuracy: 0.8664 - mae: 0.1439 - pearson_correlation: 0.5042 - euclidean_distance: 0.2380
Epoch 240/250
38/38 [==============================] - 0s 913us/step - loss: 0.1441 - accuracy: 0.8646 - mae: 0.1441 - pearson_correlation: 0.5065 - euclidean_distance: 0.2389
Epoch 241/250
38/38 [==============================] - 0s 891us/step - loss: 0.1432 - accuracy: 0.8726 - mae: 0.1432 - pearson_correlation: 0.5078 - euclidean_distance: 0.2364
Epoch 242/250
38/38 [==============================] - 0s 942us/step - loss: 0.1414 - accuracy: 0.8735 - mae: 0.1414 - pearson_correlation: 0.5098 - euclidean_distance: 0.2339
Epoch 243/250
38/38 [==============================] - 0s 950us/step - loss: 0.1389 - accuracy: 0.8704 - mae: 0.1389 - pearson_correlation: 0.5187 - euclidean_distance: 0.2299
Epoch 244/250
38/38 [==============================] - 0s 966us/step - loss: 0.1393 - accuracy: 0.8735 - mae: 0.1393 - pearson_correlation: 0.5211 - euclidean_distance: 0.2302
Epoch 245/250
38/38 [==============================] - 0s 918us/step - loss: 0.1410 - accuracy: 0.8774 - mae: 0.1410 - pearson_correlation: 0.5200 - euclidean_distance: 0.2330
Epoch 246/250
38/38 [==============================] - 0s 913us/step - loss: 0.1390 - accuracy: 0.8823 - mae: 0.1390 - pearson_correlation: 0.5278 - euclidean_distance: 0.2297
Epoch 247/250
38/38 [==============================] - 0s 944us/step - loss: 0.1366 - accuracy: 0.8805 - mae: 0.1366 - pearson_correlation: 0.5291 - euclidean_distance: 0.2261
Epoch 248/250
38/38 [==============================] - 0s 914us/step - loss: 0.1370 - accuracy: 0.8840 - mae: 0.1370 - pearson_correlation: 0.5326 - euclidean_distance: 0.2264
Epoch 249/250
38/38 [==============================] - 0s 911us/step - loss: 0.1363 - accuracy: 0.8836 - mae: 0.1363 - pearson_correlation: 0.5312 - euclidean_distance: 0.2252
Epoch 250/250
38/38 [==============================] - 0s 913us/step - loss: 0.1348 - accuracy: 0.8862 - mae: 0.1348 - pearson_correlation: 0.5384 - euclidean_distance: 0.2228
19/19 [==============================] - 0s 523us/step
Epoch 1/300
38/38 [==============================] - 1s 1ms/step - loss: 0.4044 - accuracy: 0.8536 - mae: 0.4044 - pearson_correlation: 0.3096 - euclidean_distance: 0.6058
Epoch 2/300
38/38 [==============================] - 0s 965us/step - loss: 0.3970 - accuracy: 0.8655 - mae: 0.3970 - pearson_correlation: 0.3118 - euclidean_distance: 0.5950
Epoch 3/300
38/38 [==============================] - 0s 984us/step - loss: 0.3927 - accuracy: 0.8672 - mae: 0.3927 - pearson_correlation: 0.3181 - euclidean_distance: 0.5883
Epoch 4/300
38/38 [==============================] - 0s 993us/step - loss: 0.3876 - accuracy: 0.8743 - mae: 0.3876 - pearson_correlation: 0.3213 - euclidean_distance: 0.5807
Epoch 5/300
38/38 [==============================] - 0s 1ms/step - loss: 0.3781 - accuracy: 0.8730 - mae: 0.3781 - pearson_correlation: 0.3319 - euclidean_distance: 0.5682
Epoch 6/300
38/38 [==============================] - 0s 970us/step - loss: 0.3711 - accuracy: 0.8756 - mae: 0.3711 - pearson_correlation: 0.3417 - euclidean_distance: 0.5567
Epoch 7/300
38/38 [==============================] - 0s 991us/step - loss: 0.3666 - accuracy: 0.8778 - mae: 0.3666 - pearson_correlation: 0.3423 - euclidean_distance: 0.5505
Epoch 8/300
38/38 [==============================] - 0s 966us/step - loss: 0.3604 - accuracy: 0.8743 - mae: 0.3604 - pearson_correlation: 0.3506 - euclidean_distance: 0.5414
Epoch 9/300
38/38 [==============================] - 0s 929us/step - loss: 0.3531 - accuracy: 0.8756 - mae: 0.3531 - pearson_correlation: 0.3531 - euclidean_distance: 0.5311
Epoch 10/300
38/38 [==============================] - 0s 912us/step - loss: 0.3482 - accuracy: 0.8902 - mae: 0.3482 - pearson_correlation: 0.3551 - euclidean_distance: 0.5249
Epoch 11/300
38/38 [==============================] - 0s 890us/step - loss: 0.3425 - accuracy: 0.8893 - mae: 0.3425 - pearson_correlation: 0.3637 - euclidean_distance: 0.5163
Epoch 12/300
38/38 [==============================] - 0s 908us/step - loss: 0.3340 - accuracy: 0.8862 - mae: 0.3340 - pearson_correlation: 0.3705 - euclidean_distance: 0.5046
Epoch 13/300
38/38 [==============================] - 0s 940us/step - loss: 0.3293 - accuracy: 0.8968 - mae: 0.3293 - pearson_correlation: 0.3761 - euclidean_distance: 0.4972
Epoch 14/300
38/38 [==============================] - 0s 911us/step - loss: 0.3246 - accuracy: 0.8981 - mae: 0.3246 - pearson_correlation: 0.3820 - euclidean_distance: 0.4902
Epoch 15/300
38/38 [==============================] - 0s 906us/step - loss: 0.3196 - accuracy: 0.8928 - mae: 0.3196 - pearson_correlation: 0.3838 - euclidean_distance: 0.4838
Epoch 16/300
38/38 [==============================] - 0s 1ms/step - loss: 0.3116 - accuracy: 0.8963 - mae: 0.3116 - pearson_correlation: 0.3915 - euclidean_distance: 0.4724
Epoch 17/300
38/38 [==============================] - 0s 1ms/step - loss: 0.3071 - accuracy: 0.8924 - mae: 0.3071 - pearson_correlation: 0.3994 - euclidean_distance: 0.4653
Epoch 18/300
38/38 [==============================] - 0s 1ms/step - loss: 0.3010 - accuracy: 0.8999 - mae: 0.3010 - pearson_correlation: 0.4040 - euclidean_distance: 0.4568
Epoch 19/300
38/38 [==============================] - 0s 978us/step - loss: 0.2929 - accuracy: 0.8977 - mae: 0.2929 - pearson_correlation: 0.4100 - euclidean_distance: 0.4458
Epoch 20/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2907 - accuracy: 0.8963 - mae: 0.2907 - pearson_correlation: 0.4129 - euclidean_distance: 0.4431
Epoch 21/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2868 - accuracy: 0.8955 - mae: 0.2868 - pearson_correlation: 0.4176 - euclidean_distance: 0.4373
Epoch 22/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2796 - accuracy: 0.9069 - mae: 0.2796 - pearson_correlation: 0.4265 - euclidean_distance: 0.4274
Epoch 23/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2760 - accuracy: 0.9047 - mae: 0.2760 - pearson_correlation: 0.4305 - euclidean_distance: 0.4225
Epoch 24/300
38/38 [==============================] - 0s 936us/step - loss: 0.2695 - accuracy: 0.9078 - mae: 0.2695 - pearson_correlation: 0.4394 - euclidean_distance: 0.4135
Epoch 25/300
38/38 [==============================] - 0s 973us/step - loss: 0.2664 - accuracy: 0.8999 - mae: 0.2664 - pearson_correlation: 0.4337 - euclidean_distance: 0.4094
Epoch 26/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2621 - accuracy: 0.9060 - mae: 0.2621 - pearson_correlation: 0.4420 - euclidean_distance: 0.4033
Epoch 27/300
38/38 [==============================] - 0s 993us/step - loss: 0.2577 - accuracy: 0.9034 - mae: 0.2577 - pearson_correlation: 0.4512 - euclidean_distance: 0.3963
Epoch 28/300
38/38 [==============================] - 0s 949us/step - loss: 0.2556 - accuracy: 0.9043 - mae: 0.2556 - pearson_correlation: 0.4502 - euclidean_distance: 0.3939
Epoch 29/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2501 - accuracy: 0.9069 - mae: 0.2501 - pearson_correlation: 0.4584 - euclidean_distance: 0.3861
Epoch 30/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2460 - accuracy: 0.9069 - mae: 0.2460 - pearson_correlation: 0.4659 - euclidean_distance: 0.3795
Epoch 31/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2437 - accuracy: 0.9096 - mae: 0.2437 - pearson_correlation: 0.4655 - euclidean_distance: 0.3768
Epoch 32/300
38/38 [==============================] - 0s 918us/step - loss: 0.2386 - accuracy: 0.9087 - mae: 0.2386 - pearson_correlation: 0.4739 - euclidean_distance: 0.3701
Epoch 33/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2351 - accuracy: 0.9122 - mae: 0.2351 - pearson_correlation: 0.4742 - euclidean_distance: 0.3656
Epoch 34/300
38/38 [==============================] - 0s 935us/step - loss: 0.2334 - accuracy: 0.9074 - mae: 0.2334 - pearson_correlation: 0.4778 - euclidean_distance: 0.3625
Epoch 35/300
38/38 [==============================] - 0s 943us/step - loss: 0.2305 - accuracy: 0.9171 - mae: 0.2305 - pearson_correlation: 0.4845 - euclidean_distance: 0.3586
Epoch 36/300
38/38 [==============================] - 0s 926us/step - loss: 0.2251 - accuracy: 0.9113 - mae: 0.2251 - pearson_correlation: 0.4851 - euclidean_distance: 0.3506
Epoch 37/300
38/38 [==============================] - 0s 966us/step - loss: 0.2245 - accuracy: 0.9144 - mae: 0.2245 - pearson_correlation: 0.4898 - euclidean_distance: 0.3496
Epoch 38/300
38/38 [==============================] - 0s 933us/step - loss: 0.2211 - accuracy: 0.9175 - mae: 0.2211 - pearson_correlation: 0.4935 - euclidean_distance: 0.3445
Epoch 39/300
38/38 [==============================] - 0s 933us/step - loss: 0.2200 - accuracy: 0.9131 - mae: 0.2200 - pearson_correlation: 0.4931 - euclidean_distance: 0.3427
Epoch 40/300
38/38 [==============================] - 0s 987us/step - loss: 0.2156 - accuracy: 0.9127 - mae: 0.2156 - pearson_correlation: 0.5001 - euclidean_distance: 0.3366
Epoch 41/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2155 - accuracy: 0.9074 - mae: 0.2155 - pearson_correlation: 0.5004 - euclidean_distance: 0.3359
Epoch 42/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2105 - accuracy: 0.9224 - mae: 0.2105 - pearson_correlation: 0.5033 - euclidean_distance: 0.3290
Epoch 43/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2097 - accuracy: 0.9153 - mae: 0.2097 - pearson_correlation: 0.5052 - euclidean_distance: 0.3282
Epoch 44/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2069 - accuracy: 0.9197 - mae: 0.2069 - pearson_correlation: 0.5078 - euclidean_distance: 0.3248
Epoch 45/300
38/38 [==============================] - 0s 924us/step - loss: 0.2065 - accuracy: 0.9157 - mae: 0.2065 - pearson_correlation: 0.5054 - euclidean_distance: 0.3228
Epoch 46/300
38/38 [==============================] - 0s 974us/step - loss: 0.2030 - accuracy: 0.9122 - mae: 0.2030 - pearson_correlation: 0.5075 - euclidean_distance: 0.3187
Epoch 47/300
38/38 [==============================] - 0s 942us/step - loss: 0.2029 - accuracy: 0.9162 - mae: 0.2029 - pearson_correlation: 0.5148 - euclidean_distance: 0.3175
Epoch 48/300
38/38 [==============================] - 0s 993us/step - loss: 0.2010 - accuracy: 0.9184 - mae: 0.2010 - pearson_correlation: 0.5174 - euclidean_distance: 0.3143
Epoch 49/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1973 - accuracy: 0.9175 - mae: 0.1973 - pearson_correlation: 0.5204 - euclidean_distance: 0.3091
Epoch 50/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1959 - accuracy: 0.9153 - mae: 0.1959 - pearson_correlation: 0.5210 - euclidean_distance: 0.3066
Epoch 51/300
38/38 [==============================] - 0s 953us/step - loss: 0.1930 - accuracy: 0.9149 - mae: 0.1930 - pearson_correlation: 0.5263 - euclidean_distance: 0.3024
Epoch 52/300
38/38 [==============================] - 0s 947us/step - loss: 0.1901 - accuracy: 0.9166 - mae: 0.1901 - pearson_correlation: 0.5248 - euclidean_distance: 0.2983
Epoch 53/300
38/38 [==============================] - 0s 930us/step - loss: 0.1919 - accuracy: 0.9210 - mae: 0.1919 - pearson_correlation: 0.5219 - euclidean_distance: 0.3004
Epoch 54/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1878 - accuracy: 0.9206 - mae: 0.1878 - pearson_correlation: 0.5332 - euclidean_distance: 0.2953
Epoch 55/300
38/38 [==============================] - 0s 993us/step - loss: 0.1863 - accuracy: 0.9202 - mae: 0.1863 - pearson_correlation: 0.5354 - euclidean_distance: 0.2924
Epoch 56/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1834 - accuracy: 0.9197 - mae: 0.1834 - pearson_correlation: 0.5329 - euclidean_distance: 0.2881
Epoch 57/300
38/38 [==============================] - 0s 939us/step - loss: 0.1838 - accuracy: 0.9184 - mae: 0.1838 - pearson_correlation: 0.5346 - euclidean_distance: 0.2899
Epoch 58/300
38/38 [==============================] - 0s 931us/step - loss: 0.1834 - accuracy: 0.9193 - mae: 0.1834 - pearson_correlation: 0.5308 - euclidean_distance: 0.2880
Epoch 59/300
38/38 [==============================] - 0s 986us/step - loss: 0.1812 - accuracy: 0.9175 - mae: 0.1812 - pearson_correlation: 0.5409 - euclidean_distance: 0.2845
Epoch 60/300
38/38 [==============================] - 0s 940us/step - loss: 0.1787 - accuracy: 0.9250 - mae: 0.1787 - pearson_correlation: 0.5374 - euclidean_distance: 0.2816
Epoch 61/300
38/38 [==============================] - 0s 925us/step - loss: 0.1787 - accuracy: 0.9193 - mae: 0.1787 - pearson_correlation: 0.5414 - euclidean_distance: 0.2805
Epoch 62/300
38/38 [==============================] - 0s 970us/step - loss: 0.1761 - accuracy: 0.9184 - mae: 0.1761 - pearson_correlation: 0.5421 - euclidean_distance: 0.2774
Epoch 63/300
38/38 [==============================] - 0s 926us/step - loss: 0.1775 - accuracy: 0.9202 - mae: 0.1775 - pearson_correlation: 0.5392 - euclidean_distance: 0.2790
Epoch 64/300
38/38 [==============================] - 0s 906us/step - loss: 0.1748 - accuracy: 0.9250 - mae: 0.1748 - pearson_correlation: 0.5470 - euclidean_distance: 0.2744
Epoch 65/300
38/38 [==============================] - 0s 947us/step - loss: 0.1747 - accuracy: 0.9180 - mae: 0.1747 - pearson_correlation: 0.5434 - euclidean_distance: 0.2748
Epoch 66/300
38/38 [==============================] - 0s 921us/step - loss: 0.1731 - accuracy: 0.9202 - mae: 0.1731 - pearson_correlation: 0.5436 - euclidean_distance: 0.2730
Epoch 67/300
38/38 [==============================] - 0s 922us/step - loss: 0.1708 - accuracy: 0.9232 - mae: 0.1708 - pearson_correlation: 0.5452 - euclidean_distance: 0.2688
Epoch 68/300
38/38 [==============================] - 0s 919us/step - loss: 0.1686 - accuracy: 0.9224 - mae: 0.1686 - pearson_correlation: 0.5501 - euclidean_distance: 0.2655
Epoch 69/300
38/38 [==============================] - 0s 935us/step - loss: 0.1697 - accuracy: 0.9281 - mae: 0.1697 - pearson_correlation: 0.5537 - euclidean_distance: 0.2667
Epoch 70/300
38/38 [==============================] - 0s 946us/step - loss: 0.1681 - accuracy: 0.9255 - mae: 0.1681 - pearson_correlation: 0.5533 - euclidean_distance: 0.2633
Epoch 71/300
38/38 [==============================] - 0s 936us/step - loss: 0.1669 - accuracy: 0.9215 - mae: 0.1669 - pearson_correlation: 0.5535 - euclidean_distance: 0.2624
Epoch 72/300
38/38 [==============================] - 0s 914us/step - loss: 0.1670 - accuracy: 0.9224 - mae: 0.1670 - pearson_correlation: 0.5560 - euclidean_distance: 0.2624
Epoch 73/300
38/38 [==============================] - 0s 945us/step - loss: 0.1642 - accuracy: 0.9246 - mae: 0.1642 - pearson_correlation: 0.5535 - euclidean_distance: 0.2591
Epoch 74/300
38/38 [==============================] - 0s 946us/step - loss: 0.1641 - accuracy: 0.9219 - mae: 0.1641 - pearson_correlation: 0.5580 - euclidean_distance: 0.2580
Epoch 75/300
38/38 [==============================] - 0s 965us/step - loss: 0.1614 - accuracy: 0.9246 - mae: 0.1614 - pearson_correlation: 0.5600 - euclidean_distance: 0.2541
Epoch 76/300
38/38 [==============================] - 0s 938us/step - loss: 0.1602 - accuracy: 0.9272 - mae: 0.1602 - pearson_correlation: 0.5641 - euclidean_distance: 0.2528
Epoch 77/300
38/38 [==============================] - 0s 989us/step - loss: 0.1598 - accuracy: 0.9272 - mae: 0.1598 - pearson_correlation: 0.5629 - euclidean_distance: 0.2520
Epoch 78/300
38/38 [==============================] - 0s 993us/step - loss: 0.1583 - accuracy: 0.9281 - mae: 0.1583 - pearson_correlation: 0.5697 - euclidean_distance: 0.2493
Epoch 79/300
38/38 [==============================] - 0s 952us/step - loss: 0.1591 - accuracy: 0.9263 - mae: 0.1591 - pearson_correlation: 0.5616 - euclidean_distance: 0.2508
Epoch 80/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1567 - accuracy: 0.9263 - mae: 0.1567 - pearson_correlation: 0.5711 - euclidean_distance: 0.2467
Epoch 81/300
38/38 [==============================] - 0s 970us/step - loss: 0.1553 - accuracy: 0.9325 - mae: 0.1553 - pearson_correlation: 0.5685 - euclidean_distance: 0.2452
Epoch 82/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1567 - accuracy: 0.9321 - mae: 0.1567 - pearson_correlation: 0.5697 - euclidean_distance: 0.2466
Epoch 83/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1558 - accuracy: 0.9299 - mae: 0.1558 - pearson_correlation: 0.5646 - euclidean_distance: 0.2452
Epoch 84/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1535 - accuracy: 0.9285 - mae: 0.1535 - pearson_correlation: 0.5705 - euclidean_distance: 0.2422
Epoch 85/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1533 - accuracy: 0.9281 - mae: 0.1533 - pearson_correlation: 0.5743 - euclidean_distance: 0.2417
Epoch 86/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1535 - accuracy: 0.9263 - mae: 0.1535 - pearson_correlation: 0.5709 - euclidean_distance: 0.2420
Epoch 87/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1513 - accuracy: 0.9330 - mae: 0.1513 - pearson_correlation: 0.5760 - euclidean_distance: 0.2391
Epoch 88/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1508 - accuracy: 0.9294 - mae: 0.1508 - pearson_correlation: 0.5800 - euclidean_distance: 0.2379
Epoch 89/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1507 - accuracy: 0.9316 - mae: 0.1507 - pearson_correlation: 0.5772 - euclidean_distance: 0.2376
Epoch 90/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1499 - accuracy: 0.9321 - mae: 0.1499 - pearson_correlation: 0.5789 - euclidean_distance: 0.2353
Epoch 91/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1488 - accuracy: 0.9294 - mae: 0.1488 - pearson_correlation: 0.5802 - euclidean_distance: 0.2352
Epoch 92/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1494 - accuracy: 0.9321 - mae: 0.1494 - pearson_correlation: 0.5784 - euclidean_distance: 0.2350
Epoch 93/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1488 - accuracy: 0.9325 - mae: 0.1488 - pearson_correlation: 0.5823 - euclidean_distance: 0.2342
Epoch 94/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1479 - accuracy: 0.9316 - mae: 0.1479 - pearson_correlation: 0.5822 - euclidean_distance: 0.2335
Epoch 95/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1452 - accuracy: 0.9334 - mae: 0.1452 - pearson_correlation: 0.5930 - euclidean_distance: 0.2289
Epoch 96/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1461 - accuracy: 0.9360 - mae: 0.1461 - pearson_correlation: 0.5855 - euclidean_distance: 0.2306
Epoch 97/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1445 - accuracy: 0.9338 - mae: 0.1445 - pearson_correlation: 0.5904 - euclidean_distance: 0.2288
Epoch 98/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1449 - accuracy: 0.9360 - mae: 0.1449 - pearson_correlation: 0.5902 - euclidean_distance: 0.2278
Epoch 99/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1443 - accuracy: 0.9334 - mae: 0.1443 - pearson_correlation: 0.5900 - euclidean_distance: 0.2273
Epoch 100/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1427 - accuracy: 0.9360 - mae: 0.1427 - pearson_correlation: 0.5883 - euclidean_distance: 0.2254
Epoch 101/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1417 - accuracy: 0.9325 - mae: 0.1417 - pearson_correlation: 0.5913 - euclidean_distance: 0.2242
Epoch 102/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1400 - accuracy: 0.9382 - mae: 0.1400 - pearson_correlation: 0.5985 - euclidean_distance: 0.2215
Epoch 103/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1391 - accuracy: 0.9391 - mae: 0.1391 - pearson_correlation: 0.5965 - euclidean_distance: 0.2200
Epoch 104/300
38/38 [==============================] - 0s 3ms/step - loss: 0.1396 - accuracy: 0.9409 - mae: 0.1396 - pearson_correlation: 0.5953 - euclidean_distance: 0.2208
Epoch 105/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1405 - accuracy: 0.9360 - mae: 0.1405 - pearson_correlation: 0.5996 - euclidean_distance: 0.2218
Epoch 106/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1393 - accuracy: 0.9374 - mae: 0.1393 - pearson_correlation: 0.6006 - euclidean_distance: 0.2195
Epoch 107/300
38/38 [==============================] - 0s 3ms/step - loss: 0.1399 - accuracy: 0.9387 - mae: 0.1399 - pearson_correlation: 0.5921 - euclidean_distance: 0.2210
Epoch 108/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1384 - accuracy: 0.9356 - mae: 0.1384 - pearson_correlation: 0.6006 - euclidean_distance: 0.2192
Epoch 109/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1385 - accuracy: 0.9391 - mae: 0.1385 - pearson_correlation: 0.5988 - euclidean_distance: 0.2191
Epoch 110/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1369 - accuracy: 0.9382 - mae: 0.1369 - pearson_correlation: 0.6035 - euclidean_distance: 0.2164
Epoch 111/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1380 - accuracy: 0.9422 - mae: 0.1380 - pearson_correlation: 0.6055 - euclidean_distance: 0.2171
Epoch 112/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1359 - accuracy: 0.9396 - mae: 0.1359 - pearson_correlation: 0.6057 - euclidean_distance: 0.2153
Epoch 113/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1369 - accuracy: 0.9418 - mae: 0.1369 - pearson_correlation: 0.6059 - euclidean_distance: 0.2165
Epoch 114/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1339 - accuracy: 0.9418 - mae: 0.1339 - pearson_correlation: 0.6123 - euclidean_distance: 0.2125
Epoch 115/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1332 - accuracy: 0.9449 - mae: 0.1332 - pearson_correlation: 0.6103 - euclidean_distance: 0.2109
Epoch 116/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1339 - accuracy: 0.9427 - mae: 0.1339 - pearson_correlation: 0.6114 - euclidean_distance: 0.2116
Epoch 117/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1333 - accuracy: 0.9449 - mae: 0.1333 - pearson_correlation: 0.6100 - euclidean_distance: 0.2107
Epoch 118/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1338 - accuracy: 0.9422 - mae: 0.1338 - pearson_correlation: 0.6165 - euclidean_distance: 0.2114
Epoch 119/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1308 - accuracy: 0.9418 - mae: 0.1308 - pearson_correlation: 0.6173 - euclidean_distance: 0.2071
Epoch 120/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1288 - accuracy: 0.9422 - mae: 0.1288 - pearson_correlation: 0.6218 - euclidean_distance: 0.2040
Epoch 121/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1300 - accuracy: 0.9418 - mae: 0.1300 - pearson_correlation: 0.6215 - euclidean_distance: 0.2058
Epoch 122/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1314 - accuracy: 0.9418 - mae: 0.1314 - pearson_correlation: 0.6177 - euclidean_distance: 0.2078
Epoch 123/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1321 - accuracy: 0.9422 - mae: 0.1321 - pearson_correlation: 0.6107 - euclidean_distance: 0.2093
Epoch 124/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1314 - accuracy: 0.9453 - mae: 0.1314 - pearson_correlation: 0.6217 - euclidean_distance: 0.2076
Epoch 125/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1281 - accuracy: 0.9457 - mae: 0.1281 - pearson_correlation: 0.6276 - euclidean_distance: 0.2031
Epoch 126/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1290 - accuracy: 0.9453 - mae: 0.1290 - pearson_correlation: 0.6240 - euclidean_distance: 0.2050
Epoch 127/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1300 - accuracy: 0.9457 - mae: 0.1300 - pearson_correlation: 0.6244 - euclidean_distance: 0.2056
Epoch 128/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1307 - accuracy: 0.9444 - mae: 0.1307 - pearson_correlation: 0.6204 - euclidean_distance: 0.2064
Epoch 129/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1290 - accuracy: 0.9453 - mae: 0.1290 - pearson_correlation: 0.6246 - euclidean_distance: 0.2044
Epoch 130/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1274 - accuracy: 0.9471 - mae: 0.1274 - pearson_correlation: 0.6295 - euclidean_distance: 0.2020
Epoch 131/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1274 - accuracy: 0.9453 - mae: 0.1274 - pearson_correlation: 0.6294 - euclidean_distance: 0.2013
Epoch 132/300
38/38 [==============================] - 0s 998us/step - loss: 0.1304 - accuracy: 0.9471 - mae: 0.1304 - pearson_correlation: 0.6218 - euclidean_distance: 0.2066
Epoch 133/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1265 - accuracy: 0.9484 - mae: 0.1265 - pearson_correlation: 0.6360 - euclidean_distance: 0.1999
Epoch 134/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1257 - accuracy: 0.9457 - mae: 0.1257 - pearson_correlation: 0.6328 - euclidean_distance: 0.1992
Epoch 135/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1268 - accuracy: 0.9462 - mae: 0.1268 - pearson_correlation: 0.6358 - euclidean_distance: 0.2005
Epoch 136/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1236 - accuracy: 0.9484 - mae: 0.1236 - pearson_correlation: 0.6392 - euclidean_distance: 0.1959
Epoch 137/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1240 - accuracy: 0.9479 - mae: 0.1240 - pearson_correlation: 0.6375 - euclidean_distance: 0.1962
Epoch 138/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1246 - accuracy: 0.9479 - mae: 0.1246 - pearson_correlation: 0.6400 - euclidean_distance: 0.1976
Epoch 139/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1264 - accuracy: 0.9449 - mae: 0.1264 - pearson_correlation: 0.6321 - euclidean_distance: 0.1997
Epoch 140/300
38/38 [==============================] - 0s 978us/step - loss: 0.1219 - accuracy: 0.9475 - mae: 0.1219 - pearson_correlation: 0.6443 - euclidean_distance: 0.1936
Epoch 141/300
38/38 [==============================] - 0s 914us/step - loss: 0.1218 - accuracy: 0.9484 - mae: 0.1218 - pearson_correlation: 0.6401 - euclidean_distance: 0.1936
Epoch 142/300
38/38 [==============================] - 0s 979us/step - loss: 0.1248 - accuracy: 0.9457 - mae: 0.1248 - pearson_correlation: 0.6388 - euclidean_distance: 0.1974
Epoch 143/300
38/38 [==============================] - 0s 983us/step - loss: 0.1217 - accuracy: 0.9488 - mae: 0.1217 - pearson_correlation: 0.6459 - euclidean_distance: 0.1930
Epoch 144/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1220 - accuracy: 0.9502 - mae: 0.1220 - pearson_correlation: 0.6452 - euclidean_distance: 0.1935
Epoch 145/300
38/38 [==============================] - 0s 893us/step - loss: 0.1236 - accuracy: 0.9497 - mae: 0.1236 - pearson_correlation: 0.6385 - euclidean_distance: 0.1960
Epoch 146/300
38/38 [==============================] - 0s 943us/step - loss: 0.1224 - accuracy: 0.9493 - mae: 0.1224 - pearson_correlation: 0.6418 - euclidean_distance: 0.1943
Epoch 147/300
38/38 [==============================] - 0s 899us/step - loss: 0.1221 - accuracy: 0.9493 - mae: 0.1221 - pearson_correlation: 0.6464 - euclidean_distance: 0.1940
Epoch 148/300
38/38 [==============================] - 0s 892us/step - loss: 0.1208 - accuracy: 0.9471 - mae: 0.1208 - pearson_correlation: 0.6436 - euclidean_distance: 0.1916
Epoch 149/300
38/38 [==============================] - 0s 959us/step - loss: 0.1204 - accuracy: 0.9493 - mae: 0.1204 - pearson_correlation: 0.6450 - euclidean_distance: 0.1910
Epoch 150/300
38/38 [==============================] - 0s 913us/step - loss: 0.1216 - accuracy: 0.9519 - mae: 0.1216 - pearson_correlation: 0.6448 - euclidean_distance: 0.1925
Epoch 151/300
38/38 [==============================] - 0s 900us/step - loss: 0.1205 - accuracy: 0.9524 - mae: 0.1205 - pearson_correlation: 0.6481 - euclidean_distance: 0.1912
Epoch 152/300
38/38 [==============================] - 0s 888us/step - loss: 0.1194 - accuracy: 0.9497 - mae: 0.1194 - pearson_correlation: 0.6494 - euclidean_distance: 0.1895
Epoch 153/300
38/38 [==============================] - 0s 934us/step - loss: 0.1181 - accuracy: 0.9497 - mae: 0.1181 - pearson_correlation: 0.6581 - euclidean_distance: 0.1877
Epoch 154/300
38/38 [==============================] - 0s 900us/step - loss: 0.1188 - accuracy: 0.9497 - mae: 0.1188 - pearson_correlation: 0.6521 - euclidean_distance: 0.1887
Epoch 155/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1159 - accuracy: 0.9502 - mae: 0.1159 - pearson_correlation: 0.6593 - euclidean_distance: 0.1847
Epoch 156/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1198 - accuracy: 0.9502 - mae: 0.1198 - pearson_correlation: 0.6535 - euclidean_distance: 0.1890
Epoch 157/300
38/38 [==============================] - 0s 949us/step - loss: 0.1198 - accuracy: 0.9475 - mae: 0.1198 - pearson_correlation: 0.6485 - euclidean_distance: 0.1900
Epoch 158/300
38/38 [==============================] - 0s 942us/step - loss: 0.1185 - accuracy: 0.9479 - mae: 0.1185 - pearson_correlation: 0.6594 - euclidean_distance: 0.1877
Epoch 159/300
38/38 [==============================] - 0s 925us/step - loss: 0.1155 - accuracy: 0.9515 - mae: 0.1155 - pearson_correlation: 0.6605 - euclidean_distance: 0.1835
Epoch 160/300
38/38 [==============================] - 0s 923us/step - loss: 0.1202 - accuracy: 0.9510 - mae: 0.1202 - pearson_correlation: 0.6501 - euclidean_distance: 0.1902
Epoch 161/300
38/38 [==============================] - 0s 932us/step - loss: 0.1185 - accuracy: 0.9515 - mae: 0.1185 - pearson_correlation: 0.6582 - euclidean_distance: 0.1878
Epoch 162/300
38/38 [==============================] - 0s 972us/step - loss: 0.1159 - accuracy: 0.9510 - mae: 0.1159 - pearson_correlation: 0.6620 - euclidean_distance: 0.1837
Epoch 163/300
38/38 [==============================] - 0s 943us/step - loss: 0.1164 - accuracy: 0.9524 - mae: 0.1164 - pearson_correlation: 0.6629 - euclidean_distance: 0.1845
Epoch 164/300
38/38 [==============================] - 0s 919us/step - loss: 0.1163 - accuracy: 0.9524 - mae: 0.1163 - pearson_correlation: 0.6693 - euclidean_distance: 0.1841
Epoch 165/300
38/38 [==============================] - 0s 935us/step - loss: 0.1163 - accuracy: 0.9502 - mae: 0.1163 - pearson_correlation: 0.6633 - euclidean_distance: 0.1847
Epoch 166/300
38/38 [==============================] - 0s 968us/step - loss: 0.1145 - accuracy: 0.9524 - mae: 0.1145 - pearson_correlation: 0.6673 - euclidean_distance: 0.1815
Epoch 167/300
38/38 [==============================] - 0s 911us/step - loss: 0.1163 - accuracy: 0.9524 - mae: 0.1163 - pearson_correlation: 0.6633 - euclidean_distance: 0.1845
Epoch 168/300
38/38 [==============================] - 0s 893us/step - loss: 0.1151 - accuracy: 0.9524 - mae: 0.1151 - pearson_correlation: 0.6713 - euclidean_distance: 0.1827
Epoch 169/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1159 - accuracy: 0.9506 - mae: 0.1159 - pearson_correlation: 0.6672 - euclidean_distance: 0.1831
Epoch 170/300
38/38 [==============================] - 0s 934us/step - loss: 0.1139 - accuracy: 0.9506 - mae: 0.1139 - pearson_correlation: 0.6678 - euclidean_distance: 0.1814
Epoch 171/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1166 - accuracy: 0.9506 - mae: 0.1166 - pearson_correlation: 0.6659 - euclidean_distance: 0.1851
Epoch 172/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1147 - accuracy: 0.9528 - mae: 0.1147 - pearson_correlation: 0.6703 - euclidean_distance: 0.1817
Epoch 173/300
38/38 [==============================] - 0s 943us/step - loss: 0.1147 - accuracy: 0.9510 - mae: 0.1147 - pearson_correlation: 0.6733 - euclidean_distance: 0.1822
Epoch 174/300
38/38 [==============================] - 0s 935us/step - loss: 0.1122 - accuracy: 0.9519 - mae: 0.1122 - pearson_correlation: 0.6745 - euclidean_distance: 0.1787
Epoch 175/300
38/38 [==============================] - 0s 935us/step - loss: 0.1132 - accuracy: 0.9506 - mae: 0.1132 - pearson_correlation: 0.6692 - euclidean_distance: 0.1803
Epoch 176/300
38/38 [==============================] - 0s 878us/step - loss: 0.1125 - accuracy: 0.9528 - mae: 0.1125 - pearson_correlation: 0.6726 - euclidean_distance: 0.1785
Epoch 177/300
38/38 [==============================] - 0s 927us/step - loss: 0.1129 - accuracy: 0.9541 - mae: 0.1129 - pearson_correlation: 0.6761 - euclidean_distance: 0.1795
Epoch 178/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1096 - accuracy: 0.9532 - mae: 0.1096 - pearson_correlation: 0.6815 - euclidean_distance: 0.1747
Epoch 179/300
38/38 [==============================] - 0s 921us/step - loss: 0.1107 - accuracy: 0.9524 - mae: 0.1107 - pearson_correlation: 0.6798 - euclidean_distance: 0.1756
Epoch 180/300
38/38 [==============================] - 0s 914us/step - loss: 0.1099 - accuracy: 0.9528 - mae: 0.1099 - pearson_correlation: 0.6820 - euclidean_distance: 0.1747
Epoch 181/300
38/38 [==============================] - 0s 914us/step - loss: 0.1115 - accuracy: 0.9532 - mae: 0.1115 - pearson_correlation: 0.6746 - euclidean_distance: 0.1770
Epoch 182/300
38/38 [==============================] - 0s 921us/step - loss: 0.1115 - accuracy: 0.9524 - mae: 0.1115 - pearson_correlation: 0.6782 - euclidean_distance: 0.1774
Epoch 183/300
38/38 [==============================] - 0s 882us/step - loss: 0.1140 - accuracy: 0.9510 - mae: 0.1140 - pearson_correlation: 0.6699 - euclidean_distance: 0.1806
Epoch 184/300
38/38 [==============================] - 0s 909us/step - loss: 0.1097 - accuracy: 0.9532 - mae: 0.1097 - pearson_correlation: 0.6795 - euclidean_distance: 0.1746
Epoch 185/300
38/38 [==============================] - 0s 908us/step - loss: 0.1084 - accuracy: 0.9515 - mae: 0.1084 - pearson_correlation: 0.6851 - euclidean_distance: 0.1729
Epoch 186/300
38/38 [==============================] - 0s 884us/step - loss: 0.1112 - accuracy: 0.9528 - mae: 0.1112 - pearson_correlation: 0.6778 - euclidean_distance: 0.1770
Epoch 187/300
38/38 [==============================] - 0s 942us/step - loss: 0.1117 - accuracy: 0.9515 - mae: 0.1117 - pearson_correlation: 0.6834 - euclidean_distance: 0.1772
Epoch 188/300
38/38 [==============================] - 0s 877us/step - loss: 0.1093 - accuracy: 0.9519 - mae: 0.1093 - pearson_correlation: 0.6815 - euclidean_distance: 0.1742
Epoch 189/300
38/38 [==============================] - 0s 914us/step - loss: 0.1105 - accuracy: 0.9524 - mae: 0.1105 - pearson_correlation: 0.6793 - euclidean_distance: 0.1760
Epoch 190/300
38/38 [==============================] - 0s 908us/step - loss: 0.1094 - accuracy: 0.9524 - mae: 0.1094 - pearson_correlation: 0.6821 - euclidean_distance: 0.1744
Epoch 191/300
38/38 [==============================] - 0s 963us/step - loss: 0.1081 - accuracy: 0.9541 - mae: 0.1081 - pearson_correlation: 0.6851 - euclidean_distance: 0.1721
Epoch 192/300
38/38 [==============================] - 0s 925us/step - loss: 0.1083 - accuracy: 0.9510 - mae: 0.1083 - pearson_correlation: 0.6861 - euclidean_distance: 0.1721
Epoch 193/300
38/38 [==============================] - 0s 910us/step - loss: 0.1075 - accuracy: 0.9537 - mae: 0.1075 - pearson_correlation: 0.6927 - euclidean_distance: 0.1708
Epoch 194/300
38/38 [==============================] - 0s 903us/step - loss: 0.1099 - accuracy: 0.9528 - mae: 0.1099 - pearson_correlation: 0.6844 - euclidean_distance: 0.1749
Epoch 195/300
38/38 [==============================] - 0s 903us/step - loss: 0.1080 - accuracy: 0.9541 - mae: 0.1080 - pearson_correlation: 0.6869 - euclidean_distance: 0.1722
Epoch 196/300
38/38 [==============================] - 0s 913us/step - loss: 0.1077 - accuracy: 0.9532 - mae: 0.1077 - pearson_correlation: 0.6923 - euclidean_distance: 0.1711
Epoch 197/300
38/38 [==============================] - 0s 929us/step - loss: 0.1077 - accuracy: 0.9546 - mae: 0.1077 - pearson_correlation: 0.6879 - euclidean_distance: 0.1714
Epoch 198/300
38/38 [==============================] - 0s 918us/step - loss: 0.1092 - accuracy: 0.9546 - mae: 0.1092 - pearson_correlation: 0.6890 - euclidean_distance: 0.1737
Epoch 199/300
38/38 [==============================] - 0s 907us/step - loss: 0.1070 - accuracy: 0.9528 - mae: 0.1070 - pearson_correlation: 0.6904 - euclidean_distance: 0.1700
Epoch 200/300
38/38 [==============================] - 0s 906us/step - loss: 0.1109 - accuracy: 0.9524 - mae: 0.1109 - pearson_correlation: 0.6842 - euclidean_distance: 0.1760
Epoch 201/300
38/38 [==============================] - 0s 907us/step - loss: 0.1075 - accuracy: 0.9541 - mae: 0.1075 - pearson_correlation: 0.6921 - euclidean_distance: 0.1711
Epoch 202/300
38/38 [==============================] - 0s 896us/step - loss: 0.1103 - accuracy: 0.9519 - mae: 0.1103 - pearson_correlation: 0.6916 - euclidean_distance: 0.1745
Epoch 203/300
38/38 [==============================] - 0s 915us/step - loss: 0.1070 - accuracy: 0.9541 - mae: 0.1070 - pearson_correlation: 0.6935 - euclidean_distance: 0.1701
Epoch 204/300
38/38 [==============================] - 0s 917us/step - loss: 0.1060 - accuracy: 0.9524 - mae: 0.1060 - pearson_correlation: 0.6911 - euclidean_distance: 0.1689
Epoch 205/300
38/38 [==============================] - 0s 912us/step - loss: 0.1064 - accuracy: 0.9502 - mae: 0.1064 - pearson_correlation: 0.6895 - euclidean_distance: 0.1701
Epoch 206/300
38/38 [==============================] - 0s 909us/step - loss: 0.1032 - accuracy: 0.9524 - mae: 0.1032 - pearson_correlation: 0.6973 - euclidean_distance: 0.1646
Epoch 207/300
38/38 [==============================] - 0s 921us/step - loss: 0.1076 - accuracy: 0.9532 - mae: 0.1076 - pearson_correlation: 0.6930 - euclidean_distance: 0.1712
Epoch 208/300
38/38 [==============================] - 0s 909us/step - loss: 0.1099 - accuracy: 0.9532 - mae: 0.1099 - pearson_correlation: 0.6891 - euclidean_distance: 0.1743
Epoch 209/300
38/38 [==============================] - 0s 920us/step - loss: 0.1067 - accuracy: 0.9528 - mae: 0.1067 - pearson_correlation: 0.6959 - euclidean_distance: 0.1693
Epoch 210/300
38/38 [==============================] - 0s 893us/step - loss: 0.1075 - accuracy: 0.9550 - mae: 0.1075 - pearson_correlation: 0.6957 - euclidean_distance: 0.1705
Epoch 211/300
38/38 [==============================] - 0s 921us/step - loss: 0.1056 - accuracy: 0.9550 - mae: 0.1056 - pearson_correlation: 0.7012 - euclidean_distance: 0.1684
Epoch 212/300
38/38 [==============================] - 0s 898us/step - loss: 0.1039 - accuracy: 0.9546 - mae: 0.1039 - pearson_correlation: 0.6979 - euclidean_distance: 0.1660
Epoch 213/300
38/38 [==============================] - 0s 916us/step - loss: 0.1073 - accuracy: 0.9528 - mae: 0.1073 - pearson_correlation: 0.6938 - euclidean_distance: 0.1701
Epoch 214/300
38/38 [==============================] - 0s 888us/step - loss: 0.1066 - accuracy: 0.9537 - mae: 0.1066 - pearson_correlation: 0.6915 - euclidean_distance: 0.1698
Epoch 215/300
38/38 [==============================] - 0s 898us/step - loss: 0.1074 - accuracy: 0.9532 - mae: 0.1074 - pearson_correlation: 0.6944 - euclidean_distance: 0.1708
Epoch 216/300
38/38 [==============================] - 0s 907us/step - loss: 0.1050 - accuracy: 0.9532 - mae: 0.1050 - pearson_correlation: 0.6975 - euclidean_distance: 0.1673
Epoch 217/300
38/38 [==============================] - 0s 904us/step - loss: 0.1062 - accuracy: 0.9537 - mae: 0.1062 - pearson_correlation: 0.6975 - euclidean_distance: 0.1688
Epoch 218/300
38/38 [==============================] - 0s 916us/step - loss: 0.1080 - accuracy: 0.9537 - mae: 0.1080 - pearson_correlation: 0.6966 - euclidean_distance: 0.1709
Epoch 219/300
38/38 [==============================] - 0s 907us/step - loss: 0.1056 - accuracy: 0.9524 - mae: 0.1056 - pearson_correlation: 0.6975 - euclidean_distance: 0.1678
Epoch 220/300
38/38 [==============================] - 0s 891us/step - loss: 0.1046 - accuracy: 0.9554 - mae: 0.1046 - pearson_correlation: 0.7016 - euclidean_distance: 0.1660
Epoch 221/300
38/38 [==============================] - 0s 923us/step - loss: 0.1062 - accuracy: 0.9524 - mae: 0.1062 - pearson_correlation: 0.6949 - euclidean_distance: 0.1687
Epoch 222/300
38/38 [==============================] - 0s 911us/step - loss: 0.1047 - accuracy: 0.9537 - mae: 0.1047 - pearson_correlation: 0.6994 - euclidean_distance: 0.1670
Epoch 223/300
38/38 [==============================] - 0s 913us/step - loss: 0.1049 - accuracy: 0.9554 - mae: 0.1049 - pearson_correlation: 0.6972 - euclidean_distance: 0.1676
Epoch 224/300
38/38 [==============================] - 0s 916us/step - loss: 0.1046 - accuracy: 0.9532 - mae: 0.1046 - pearson_correlation: 0.6955 - euclidean_distance: 0.1667
Epoch 225/300
38/38 [==============================] - 0s 923us/step - loss: 0.1027 - accuracy: 0.9546 - mae: 0.1027 - pearson_correlation: 0.7027 - euclidean_distance: 0.1637
Epoch 226/300
38/38 [==============================] - 0s 905us/step - loss: 0.1036 - accuracy: 0.9532 - mae: 0.1036 - pearson_correlation: 0.7017 - euclidean_distance: 0.1648
Epoch 227/300
38/38 [==============================] - 0s 911us/step - loss: 0.1056 - accuracy: 0.9532 - mae: 0.1056 - pearson_correlation: 0.7029 - euclidean_distance: 0.1681
Epoch 228/300
38/38 [==============================] - 0s 875us/step - loss: 0.1052 - accuracy: 0.9532 - mae: 0.1052 - pearson_correlation: 0.6994 - euclidean_distance: 0.1672
Epoch 229/300
38/38 [==============================] - 0s 902us/step - loss: 0.1044 - accuracy: 0.9541 - mae: 0.1044 - pearson_correlation: 0.6993 - euclidean_distance: 0.1661
Epoch 230/300
38/38 [==============================] - 0s 904us/step - loss: 0.1017 - accuracy: 0.9528 - mae: 0.1017 - pearson_correlation: 0.7072 - euclidean_distance: 0.1619
Epoch 231/300
38/38 [==============================] - 0s 905us/step - loss: 0.1033 - accuracy: 0.9546 - mae: 0.1033 - pearson_correlation: 0.7029 - euclidean_distance: 0.1646
Epoch 232/300
38/38 [==============================] - 0s 911us/step - loss: 0.1009 - accuracy: 0.9532 - mae: 0.1009 - pearson_correlation: 0.7063 - euclidean_distance: 0.1615
Epoch 233/300
38/38 [==============================] - 0s 902us/step - loss: 0.1039 - accuracy: 0.9541 - mae: 0.1039 - pearson_correlation: 0.7034 - euclidean_distance: 0.1654
Epoch 234/300
38/38 [==============================] - 0s 961us/step - loss: 0.1037 - accuracy: 0.9546 - mae: 0.1037 - pearson_correlation: 0.6981 - euclidean_distance: 0.1657
Epoch 235/300
38/38 [==============================] - 0s 902us/step - loss: 0.1033 - accuracy: 0.9546 - mae: 0.1033 - pearson_correlation: 0.7049 - euclidean_distance: 0.1649
Epoch 236/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1011 - accuracy: 0.9550 - mae: 0.1011 - pearson_correlation: 0.7046 - euclidean_distance: 0.1616
Epoch 237/300
38/38 [==============================] - 0s 909us/step - loss: 0.1023 - accuracy: 0.9546 - mae: 0.1023 - pearson_correlation: 0.7040 - euclidean_distance: 0.1633
Epoch 238/300
38/38 [==============================] - 0s 968us/step - loss: 0.1005 - accuracy: 0.9546 - mae: 0.1005 - pearson_correlation: 0.7085 - euclidean_distance: 0.1609
Epoch 239/300
38/38 [==============================] - 0s 919us/step - loss: 0.1040 - accuracy: 0.9528 - mae: 0.1040 - pearson_correlation: 0.7020 - euclidean_distance: 0.1656
Epoch 240/300
38/38 [==============================] - 0s 899us/step - loss: 0.1009 - accuracy: 0.9546 - mae: 0.1009 - pearson_correlation: 0.7109 - euclidean_distance: 0.1610
Epoch 241/300
38/38 [==============================] - 0s 937us/step - loss: 0.1016 - accuracy: 0.9528 - mae: 0.1016 - pearson_correlation: 0.7073 - euclidean_distance: 0.1618
Epoch 242/300
38/38 [==============================] - 0s 912us/step - loss: 0.1037 - accuracy: 0.9554 - mae: 0.1037 - pearson_correlation: 0.7007 - euclidean_distance: 0.1654
Epoch 243/300
38/38 [==============================] - 0s 963us/step - loss: 0.1013 - accuracy: 0.9541 - mae: 0.1013 - pearson_correlation: 0.7127 - euclidean_distance: 0.1613
Epoch 244/300
38/38 [==============================] - 0s 960us/step - loss: 0.1008 - accuracy: 0.9532 - mae: 0.1008 - pearson_correlation: 0.7139 - euclidean_distance: 0.1609
Epoch 245/300
38/38 [==============================] - 0s 937us/step - loss: 0.1021 - accuracy: 0.9563 - mae: 0.1021 - pearson_correlation: 0.7077 - euclidean_distance: 0.1627
Epoch 246/300
38/38 [==============================] - 0s 991us/step - loss: 0.0987 - accuracy: 0.9541 - mae: 0.0987 - pearson_correlation: 0.7151 - euclidean_distance: 0.1577
Epoch 247/300
38/38 [==============================] - 0s 918us/step - loss: 0.0991 - accuracy: 0.9546 - mae: 0.0991 - pearson_correlation: 0.7146 - euclidean_distance: 0.1582
Epoch 248/300
38/38 [==============================] - 0s 910us/step - loss: 0.1015 - accuracy: 0.9532 - mae: 0.1015 - pearson_correlation: 0.7097 - euclidean_distance: 0.1620
Epoch 249/300
38/38 [==============================] - 0s 914us/step - loss: 0.1012 - accuracy: 0.9550 - mae: 0.1012 - pearson_correlation: 0.7106 - euclidean_distance: 0.1613
Epoch 250/300
38/38 [==============================] - 0s 908us/step - loss: 0.1004 - accuracy: 0.9541 - mae: 0.1004 - pearson_correlation: 0.7129 - euclidean_distance: 0.1601
Epoch 251/300
38/38 [==============================] - 0s 904us/step - loss: 0.0993 - accuracy: 0.9537 - mae: 0.0993 - pearson_correlation: 0.7155 - euclidean_distance: 0.1585
Epoch 252/300
38/38 [==============================] - 0s 903us/step - loss: 0.0995 - accuracy: 0.9554 - mae: 0.0995 - pearson_correlation: 0.7161 - euclidean_distance: 0.1591
Epoch 253/300
38/38 [==============================] - 0s 910us/step - loss: 0.0981 - accuracy: 0.9550 - mae: 0.0981 - pearson_correlation: 0.7164 - euclidean_distance: 0.1565
Epoch 254/300
38/38 [==============================] - 0s 909us/step - loss: 0.0975 - accuracy: 0.9550 - mae: 0.0975 - pearson_correlation: 0.7188 - euclidean_distance: 0.1564
Epoch 255/300
38/38 [==============================] - 0s 908us/step - loss: 0.1002 - accuracy: 0.9554 - mae: 0.1002 - pearson_correlation: 0.7096 - euclidean_distance: 0.1598
Epoch 256/300
38/38 [==============================] - 0s 899us/step - loss: 0.1017 - accuracy: 0.9541 - mae: 0.1017 - pearson_correlation: 0.7090 - euclidean_distance: 0.1621
Epoch 257/300
38/38 [==============================] - 0s 929us/step - loss: 0.0966 - accuracy: 0.9537 - mae: 0.0966 - pearson_correlation: 0.7194 - euclidean_distance: 0.1545
Epoch 258/300
38/38 [==============================] - 0s 899us/step - loss: 0.0982 - accuracy: 0.9537 - mae: 0.0982 - pearson_correlation: 0.7183 - euclidean_distance: 0.1566
Epoch 259/300
38/38 [==============================] - 0s 907us/step - loss: 0.0977 - accuracy: 0.9554 - mae: 0.0977 - pearson_correlation: 0.7203 - euclidean_distance: 0.1566
Epoch 260/300
38/38 [==============================] - 0s 908us/step - loss: 0.1008 - accuracy: 0.9546 - mae: 0.1008 - pearson_correlation: 0.7178 - euclidean_distance: 0.1599
Epoch 261/300
38/38 [==============================] - 0s 917us/step - loss: 0.0966 - accuracy: 0.9541 - mae: 0.0966 - pearson_correlation: 0.7255 - euclidean_distance: 0.1544
Epoch 262/300
38/38 [==============================] - 0s 897us/step - loss: 0.1011 - accuracy: 0.9541 - mae: 0.1011 - pearson_correlation: 0.7118 - euclidean_distance: 0.1609
Epoch 263/300
38/38 [==============================] - 0s 892us/step - loss: 0.0986 - accuracy: 0.9554 - mae: 0.0986 - pearson_correlation: 0.7168 - euclidean_distance: 0.1579
Epoch 264/300
38/38 [==============================] - 0s 914us/step - loss: 0.0989 - accuracy: 0.9550 - mae: 0.0989 - pearson_correlation: 0.7163 - euclidean_distance: 0.1581
Epoch 265/300
38/38 [==============================] - 0s 913us/step - loss: 0.0995 - accuracy: 0.9532 - mae: 0.0995 - pearson_correlation: 0.7187 - euclidean_distance: 0.1585
Epoch 266/300
38/38 [==============================] - 0s 901us/step - loss: 0.0943 - accuracy: 0.9563 - mae: 0.0943 - pearson_correlation: 0.7274 - euclidean_distance: 0.1513
Epoch 267/300
38/38 [==============================] - 0s 930us/step - loss: 0.0993 - accuracy: 0.9537 - mae: 0.0993 - pearson_correlation: 0.7194 - euclidean_distance: 0.1579
Epoch 268/300
38/38 [==============================] - 0s 893us/step - loss: 0.0981 - accuracy: 0.9550 - mae: 0.0981 - pearson_correlation: 0.7192 - euclidean_distance: 0.1566
Epoch 269/300
38/38 [==============================] - 0s 906us/step - loss: 0.0970 - accuracy: 0.9546 - mae: 0.0970 - pearson_correlation: 0.7164 - euclidean_distance: 0.1547
Epoch 270/300
38/38 [==============================] - 0s 898us/step - loss: 0.0989 - accuracy: 0.9563 - mae: 0.0989 - pearson_correlation: 0.7215 - euclidean_distance: 0.1578
Epoch 271/300
38/38 [==============================] - 0s 888us/step - loss: 0.0985 - accuracy: 0.9541 - mae: 0.0985 - pearson_correlation: 0.7151 - euclidean_distance: 0.1574
Epoch 272/300
38/38 [==============================] - 0s 904us/step - loss: 0.0973 - accuracy: 0.9546 - mae: 0.0973 - pearson_correlation: 0.7243 - euclidean_distance: 0.1546
Epoch 273/300
38/38 [==============================] - 0s 898us/step - loss: 0.0969 - accuracy: 0.9541 - mae: 0.0969 - pearson_correlation: 0.7234 - euclidean_distance: 0.1553
Epoch 274/300
38/38 [==============================] - 0s 892us/step - loss: 0.0975 - accuracy: 0.9546 - mae: 0.0975 - pearson_correlation: 0.7173 - euclidean_distance: 0.1557
Epoch 275/300
38/38 [==============================] - 0s 898us/step - loss: 0.0971 - accuracy: 0.9541 - mae: 0.0971 - pearson_correlation: 0.7204 - euclidean_distance: 0.1551
Epoch 276/300
38/38 [==============================] - 0s 891us/step - loss: 0.0976 - accuracy: 0.9528 - mae: 0.0976 - pearson_correlation: 0.7210 - euclidean_distance: 0.1556
Epoch 277/300
38/38 [==============================] - 0s 914us/step - loss: 0.0990 - accuracy: 0.9546 - mae: 0.0990 - pearson_correlation: 0.7219 - euclidean_distance: 0.1580
Epoch 278/300
38/38 [==============================] - 0s 886us/step - loss: 0.0988 - accuracy: 0.9546 - mae: 0.0988 - pearson_correlation: 0.7160 - euclidean_distance: 0.1576
Epoch 279/300
38/38 [==============================] - 0s 901us/step - loss: 0.0991 - accuracy: 0.9541 - mae: 0.0991 - pearson_correlation: 0.7184 - euclidean_distance: 0.1582
Epoch 280/300
38/38 [==============================] - 0s 900us/step - loss: 0.0982 - accuracy: 0.9537 - mae: 0.0982 - pearson_correlation: 0.7212 - euclidean_distance: 0.1564
Epoch 281/300
38/38 [==============================] - 0s 901us/step - loss: 0.0992 - accuracy: 0.9559 - mae: 0.0992 - pearson_correlation: 0.7215 - euclidean_distance: 0.1584
Epoch 282/300
38/38 [==============================] - 0s 885us/step - loss: 0.0986 - accuracy: 0.9554 - mae: 0.0986 - pearson_correlation: 0.7218 - euclidean_distance: 0.1570
Epoch 283/300
38/38 [==============================] - 0s 902us/step - loss: 0.0974 - accuracy: 0.9546 - mae: 0.0974 - pearson_correlation: 0.7214 - euclidean_distance: 0.1556
Epoch 284/300
38/38 [==============================] - 0s 899us/step - loss: 0.0995 - accuracy: 0.9541 - mae: 0.0995 - pearson_correlation: 0.7130 - euclidean_distance: 0.1588
Epoch 285/300
38/38 [==============================] - 0s 904us/step - loss: 0.0973 - accuracy: 0.9554 - mae: 0.0973 - pearson_correlation: 0.7209 - euclidean_distance: 0.1555
Epoch 286/300
38/38 [==============================] - 0s 901us/step - loss: 0.0965 - accuracy: 0.9537 - mae: 0.0965 - pearson_correlation: 0.7239 - euclidean_distance: 0.1544
Epoch 287/300
38/38 [==============================] - 0s 903us/step - loss: 0.0972 - accuracy: 0.9550 - mae: 0.0972 - pearson_correlation: 0.7232 - euclidean_distance: 0.1553
Epoch 288/300
38/38 [==============================] - 0s 891us/step - loss: 0.0968 - accuracy: 0.9541 - mae: 0.0968 - pearson_correlation: 0.7235 - euclidean_distance: 0.1546
Epoch 289/300
38/38 [==============================] - 0s 888us/step - loss: 0.0976 - accuracy: 0.9550 - mae: 0.0976 - pearson_correlation: 0.7228 - euclidean_distance: 0.1561
Epoch 290/300
38/38 [==============================] - 0s 872us/step - loss: 0.0978 - accuracy: 0.9537 - mae: 0.0978 - pearson_correlation: 0.7217 - euclidean_distance: 0.1558
Epoch 291/300
38/38 [==============================] - 0s 894us/step - loss: 0.0959 - accuracy: 0.9546 - mae: 0.0959 - pearson_correlation: 0.7259 - euclidean_distance: 0.1536
Epoch 292/300
38/38 [==============================] - 0s 917us/step - loss: 0.0948 - accuracy: 0.9554 - mae: 0.0948 - pearson_correlation: 0.7263 - euclidean_distance: 0.1516
Epoch 293/300
38/38 [==============================] - 0s 894us/step - loss: 0.0955 - accuracy: 0.9546 - mae: 0.0955 - pearson_correlation: 0.7273 - euclidean_distance: 0.1528
Epoch 294/300
38/38 [==============================] - 0s 902us/step - loss: 0.0983 - accuracy: 0.9550 - mae: 0.0983 - pearson_correlation: 0.7259 - euclidean_distance: 0.1565
Epoch 295/300
38/38 [==============================] - 0s 894us/step - loss: 0.0960 - accuracy: 0.9550 - mae: 0.0960 - pearson_correlation: 0.7259 - euclidean_distance: 0.1534
Epoch 296/300
38/38 [==============================] - 0s 896us/step - loss: 0.0943 - accuracy: 0.9550 - mae: 0.0943 - pearson_correlation: 0.7285 - euclidean_distance: 0.1510
Epoch 297/300
38/38 [==============================] - 0s 895us/step - loss: 0.0988 - accuracy: 0.9559 - mae: 0.0988 - pearson_correlation: 0.7244 - euclidean_distance: 0.1571
Epoch 298/300
38/38 [==============================] - 0s 898us/step - loss: 0.0962 - accuracy: 0.9550 - mae: 0.0962 - pearson_correlation: 0.7289 - euclidean_distance: 0.1533
Epoch 299/300
38/38 [==============================] - 0s 919us/step - loss: 0.0960 - accuracy: 0.9554 - mae: 0.0960 - pearson_correlation: 0.7246 - euclidean_distance: 0.1530
Epoch 300/300
38/38 [==============================] - 0s 882us/step - loss: 0.0971 - accuracy: 0.9541 - mae: 0.0971 - pearson_correlation: 0.7290 - euclidean_distance: 0.1545
19/19 [==============================] - 0s 525us/step
Epoch 1/300
38/38 [==============================] - 1s 886us/step - loss: 0.6981 - accuracy: 0.0926 - mae: 0.6981 - pearson_correlation: -0.6183 - euclidean_distance: 1.1934
Epoch 2/300
38/38 [==============================] - 0s 888us/step - loss: 0.6920 - accuracy: 0.0922 - mae: 0.6920 - pearson_correlation: -0.6238 - euclidean_distance: 1.1828
Epoch 3/300
38/38 [==============================] - 0s 895us/step - loss: 0.6879 - accuracy: 0.0970 - mae: 0.6879 - pearson_correlation: -0.6184 - euclidean_distance: 1.1765
Epoch 4/300
38/38 [==============================] - 0s 904us/step - loss: 0.6849 - accuracy: 0.0970 - mae: 0.6849 - pearson_correlation: -0.6215 - euclidean_distance: 1.1720
Epoch 5/300
38/38 [==============================] - 0s 975us/step - loss: 0.6794 - accuracy: 0.0953 - mae: 0.6794 - pearson_correlation: -0.6183 - euclidean_distance: 1.1617
Epoch 6/300
38/38 [==============================] - 0s 914us/step - loss: 0.6737 - accuracy: 0.0948 - mae: 0.6737 - pearson_correlation: -0.6194 - euclidean_distance: 1.1517
Epoch 7/300
38/38 [==============================] - 0s 904us/step - loss: 0.6685 - accuracy: 0.0970 - mae: 0.6685 - pearson_correlation: -0.6197 - euclidean_distance: 1.1445
Epoch 8/300
38/38 [==============================] - 0s 905us/step - loss: 0.6654 - accuracy: 0.0940 - mae: 0.6654 - pearson_correlation: -0.6162 - euclidean_distance: 1.1386
Epoch 9/300
38/38 [==============================] - 0s 908us/step - loss: 0.6600 - accuracy: 0.0979 - mae: 0.6600 - pearson_correlation: -0.6148 - euclidean_distance: 1.1284
Epoch 10/300
38/38 [==============================] - 0s 903us/step - loss: 0.6570 - accuracy: 0.0988 - mae: 0.6570 - pearson_correlation: -0.6178 - euclidean_distance: 1.1231
Epoch 11/300
38/38 [==============================] - 0s 906us/step - loss: 0.6503 - accuracy: 0.0979 - mae: 0.6503 - pearson_correlation: -0.6157 - euclidean_distance: 1.1128
Epoch 12/300
38/38 [==============================] - 0s 907us/step - loss: 0.6498 - accuracy: 0.1045 - mae: 0.6498 - pearson_correlation: -0.6171 - euclidean_distance: 1.1114
Epoch 13/300
38/38 [==============================] - 0s 913us/step - loss: 0.6429 - accuracy: 0.1010 - mae: 0.6429 - pearson_correlation: -0.6165 - euclidean_distance: 1.0992
Epoch 14/300
38/38 [==============================] - 0s 911us/step - loss: 0.6388 - accuracy: 0.1019 - mae: 0.6388 - pearson_correlation: -0.6149 - euclidean_distance: 1.0925
Epoch 15/300
38/38 [==============================] - 0s 907us/step - loss: 0.6320 - accuracy: 0.1001 - mae: 0.6320 - pearson_correlation: -0.6162 - euclidean_distance: 1.0826
Epoch 16/300
38/38 [==============================] - 0s 915us/step - loss: 0.6300 - accuracy: 0.0984 - mae: 0.6300 - pearson_correlation: -0.6124 - euclidean_distance: 1.0768
Epoch 17/300
38/38 [==============================] - 0s 912us/step - loss: 0.6247 - accuracy: 0.1028 - mae: 0.6247 - pearson_correlation: -0.6105 - euclidean_distance: 1.0678
Epoch 18/300
38/38 [==============================] - 0s 907us/step - loss: 0.6215 - accuracy: 0.1032 - mae: 0.6215 - pearson_correlation: -0.6113 - euclidean_distance: 1.0627
Epoch 19/300
38/38 [==============================] - 0s 910us/step - loss: 0.6150 - accuracy: 0.1010 - mae: 0.6150 - pearson_correlation: -0.6137 - euclidean_distance: 1.0518
Epoch 20/300
38/38 [==============================] - 0s 944us/step - loss: 0.6106 - accuracy: 0.1023 - mae: 0.6106 - pearson_correlation: -0.6075 - euclidean_distance: 1.0442
Epoch 21/300
38/38 [==============================] - 0s 901us/step - loss: 0.6078 - accuracy: 0.1050 - mae: 0.6078 - pearson_correlation: -0.6112 - euclidean_distance: 1.0398
Epoch 22/300
38/38 [==============================] - 0s 899us/step - loss: 0.5997 - accuracy: 0.1010 - mae: 0.5997 - pearson_correlation: -0.6140 - euclidean_distance: 1.0270
Epoch 23/300
38/38 [==============================] - 0s 906us/step - loss: 0.5984 - accuracy: 0.1054 - mae: 0.5984 - pearson_correlation: -0.6066 - euclidean_distance: 1.0227
Epoch 24/300
38/38 [==============================] - 0s 892us/step - loss: 0.5940 - accuracy: 0.1050 - mae: 0.5940 - pearson_correlation: -0.6047 - euclidean_distance: 1.0151
Epoch 25/300
38/38 [==============================] - 0s 918us/step - loss: 0.5899 - accuracy: 0.1072 - mae: 0.5899 - pearson_correlation: -0.6075 - euclidean_distance: 1.0083
Epoch 26/300
38/38 [==============================] - 0s 950us/step - loss: 0.5859 - accuracy: 0.1054 - mae: 0.5859 - pearson_correlation: -0.6069 - euclidean_distance: 1.0018
Epoch 27/300
38/38 [==============================] - 0s 909us/step - loss: 0.5797 - accuracy: 0.1032 - mae: 0.5797 - pearson_correlation: -0.6059 - euclidean_distance: 0.9921
Epoch 28/300
38/38 [==============================] - 0s 900us/step - loss: 0.5777 - accuracy: 0.1090 - mae: 0.5777 - pearson_correlation: -0.6027 - euclidean_distance: 0.9862
Epoch 29/300
38/38 [==============================] - 0s 903us/step - loss: 0.5730 - accuracy: 0.1059 - mae: 0.5730 - pearson_correlation: -0.6035 - euclidean_distance: 0.9779
Epoch 30/300
38/38 [==============================] - 0s 909us/step - loss: 0.5684 - accuracy: 0.1076 - mae: 0.5684 - pearson_correlation: -0.6011 - euclidean_distance: 0.9715
Epoch 31/300
38/38 [==============================] - 0s 906us/step - loss: 0.5649 - accuracy: 0.1081 - mae: 0.5649 - pearson_correlation: -0.6026 - euclidean_distance: 0.9652
Epoch 32/300
38/38 [==============================] - 0s 909us/step - loss: 0.5599 - accuracy: 0.1085 - mae: 0.5599 - pearson_correlation: -0.6027 - euclidean_distance: 0.9563
Epoch 33/300
38/38 [==============================] - 0s 988us/step - loss: 0.5579 - accuracy: 0.1063 - mae: 0.5579 - pearson_correlation: -0.5990 - euclidean_distance: 0.9522
Epoch 34/300
38/38 [==============================] - 0s 1ms/step - loss: 0.5530 - accuracy: 0.1072 - mae: 0.5530 - pearson_correlation: -0.5956 - euclidean_distance: 0.9445
Epoch 35/300
38/38 [==============================] - 0s 1ms/step - loss: 0.5475 - accuracy: 0.1120 - mae: 0.5475 - pearson_correlation: -0.5941 - euclidean_distance: 0.9345
Epoch 36/300
38/38 [==============================] - 0s 973us/step - loss: 0.5439 - accuracy: 0.1116 - mae: 0.5439 - pearson_correlation: -0.5954 - euclidean_distance: 0.9301
Epoch 37/300
38/38 [==============================] - 0s 956us/step - loss: 0.5410 - accuracy: 0.1125 - mae: 0.5410 - pearson_correlation: -0.5917 - euclidean_distance: 0.9240
Epoch 38/300
38/38 [==============================] - 0s 972us/step - loss: 0.5387 - accuracy: 0.1063 - mae: 0.5387 - pearson_correlation: -0.5913 - euclidean_distance: 0.9202
Epoch 39/300
38/38 [==============================] - 0s 1ms/step - loss: 0.5347 - accuracy: 0.1125 - mae: 0.5347 - pearson_correlation: -0.5891 - euclidean_distance: 0.9120
Epoch 40/300
38/38 [==============================] - 0s 1ms/step - loss: 0.5306 - accuracy: 0.1142 - mae: 0.5306 - pearson_correlation: -0.5886 - euclidean_distance: 0.9050
Epoch 41/300
38/38 [==============================] - 0s 1ms/step - loss: 0.5265 - accuracy: 0.1103 - mae: 0.5265 - pearson_correlation: -0.5850 - euclidean_distance: 0.8984
Epoch 42/300
38/38 [==============================] - 0s 2ms/step - loss: 0.5224 - accuracy: 0.1165 - mae: 0.5224 - pearson_correlation: -0.5821 - euclidean_distance: 0.8914
Epoch 43/300
38/38 [==============================] - 0s 3ms/step - loss: 0.5170 - accuracy: 0.1142 - mae: 0.5170 - pearson_correlation: -0.5880 - euclidean_distance: 0.8840
Epoch 44/300
38/38 [==============================] - 0s 2ms/step - loss: 0.5157 - accuracy: 0.1160 - mae: 0.5157 - pearson_correlation: -0.5815 - euclidean_distance: 0.8787
Epoch 45/300
38/38 [==============================] - 0s 2ms/step - loss: 0.5116 - accuracy: 0.1173 - mae: 0.5116 - pearson_correlation: -0.5778 - euclidean_distance: 0.8715
Epoch 46/300
38/38 [==============================] - 0s 2ms/step - loss: 0.5085 - accuracy: 0.1129 - mae: 0.5085 - pearson_correlation: -0.5804 - euclidean_distance: 0.8683
Epoch 47/300
38/38 [==============================] - 0s 1ms/step - loss: 0.5037 - accuracy: 0.1187 - mae: 0.5037 - pearson_correlation: -0.5743 - euclidean_distance: 0.8588
Epoch 48/300
38/38 [==============================] - 0s 1ms/step - loss: 0.5023 - accuracy: 0.1240 - mae: 0.5023 - pearson_correlation: -0.5727 - euclidean_distance: 0.8546
Epoch 49/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4979 - accuracy: 0.1244 - mae: 0.4979 - pearson_correlation: -0.5748 - euclidean_distance: 0.8500
Epoch 50/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4937 - accuracy: 0.1235 - mae: 0.4937 - pearson_correlation: -0.5741 - euclidean_distance: 0.8420
Epoch 51/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4900 - accuracy: 0.1209 - mae: 0.4900 - pearson_correlation: -0.5712 - euclidean_distance: 0.8360
Epoch 52/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4878 - accuracy: 0.1257 - mae: 0.4878 - pearson_correlation: -0.5669 - euclidean_distance: 0.8323
Epoch 53/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4832 - accuracy: 0.1270 - mae: 0.4832 - pearson_correlation: -0.5667 - euclidean_distance: 0.8238
Epoch 54/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4789 - accuracy: 0.1253 - mae: 0.4789 - pearson_correlation: -0.5640 - euclidean_distance: 0.8178
Epoch 55/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4755 - accuracy: 0.1235 - mae: 0.4755 - pearson_correlation: -0.5616 - euclidean_distance: 0.8108
Epoch 56/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4748 - accuracy: 0.1297 - mae: 0.4748 - pearson_correlation: -0.5607 - euclidean_distance: 0.8090
Epoch 57/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4697 - accuracy: 0.1328 - mae: 0.4697 - pearson_correlation: -0.5503 - euclidean_distance: 0.8008
Epoch 58/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4645 - accuracy: 0.1372 - mae: 0.4645 - pearson_correlation: -0.5528 - euclidean_distance: 0.7931
Epoch 59/300
38/38 [==============================] - 0s 951us/step - loss: 0.4633 - accuracy: 0.1394 - mae: 0.4633 - pearson_correlation: -0.5524 - euclidean_distance: 0.7892
Epoch 60/300
38/38 [==============================] - 0s 983us/step - loss: 0.4598 - accuracy: 0.1451 - mae: 0.4598 - pearson_correlation: -0.5450 - euclidean_distance: 0.7828
Epoch 61/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4549 - accuracy: 0.1447 - mae: 0.4549 - pearson_correlation: -0.5503 - euclidean_distance: 0.7770
Epoch 62/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4539 - accuracy: 0.1390 - mae: 0.4539 - pearson_correlation: -0.5486 - euclidean_distance: 0.7735
Epoch 63/300
38/38 [==============================] - 0s 2ms/step - loss: 0.4505 - accuracy: 0.1442 - mae: 0.4505 - pearson_correlation: -0.5409 - euclidean_distance: 0.7669
Epoch 64/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4476 - accuracy: 0.1442 - mae: 0.4476 - pearson_correlation: -0.5358 - euclidean_distance: 0.7621
Epoch 65/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4416 - accuracy: 0.1456 - mae: 0.4416 - pearson_correlation: -0.5414 - euclidean_distance: 0.7540
Epoch 66/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4392 - accuracy: 0.1553 - mae: 0.4392 - pearson_correlation: -0.5423 - euclidean_distance: 0.7497
Epoch 67/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4348 - accuracy: 0.1548 - mae: 0.4348 - pearson_correlation: -0.5314 - euclidean_distance: 0.7431
Epoch 68/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4336 - accuracy: 0.1575 - mae: 0.4336 - pearson_correlation: -0.5294 - euclidean_distance: 0.7385
Epoch 69/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4288 - accuracy: 0.1601 - mae: 0.4288 - pearson_correlation: -0.5310 - euclidean_distance: 0.7324
Epoch 70/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4270 - accuracy: 0.1667 - mae: 0.4270 - pearson_correlation: -0.5149 - euclidean_distance: 0.7276
Epoch 71/300
38/38 [==============================] - 0s 945us/step - loss: 0.4222 - accuracy: 0.1716 - mae: 0.4222 - pearson_correlation: -0.5142 - euclidean_distance: 0.7200
Epoch 72/300
38/38 [==============================] - 0s 944us/step - loss: 0.4200 - accuracy: 0.1707 - mae: 0.4200 - pearson_correlation: -0.5180 - euclidean_distance: 0.7158
Epoch 73/300
38/38 [==============================] - 0s 933us/step - loss: 0.4162 - accuracy: 0.1729 - mae: 0.4162 - pearson_correlation: -0.5107 - euclidean_distance: 0.7090
Epoch 74/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4147 - accuracy: 0.1689 - mae: 0.4147 - pearson_correlation: -0.5101 - euclidean_distance: 0.7065
Epoch 75/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4106 - accuracy: 0.1729 - mae: 0.4106 - pearson_correlation: -0.5034 - euclidean_distance: 0.6994
Epoch 76/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4057 - accuracy: 0.1848 - mae: 0.4057 - pearson_correlation: -0.4946 - euclidean_distance: 0.6920
Epoch 77/300
38/38 [==============================] - 0s 1ms/step - loss: 0.4041 - accuracy: 0.1884 - mae: 0.4041 - pearson_correlation: -0.4934 - euclidean_distance: 0.6872
Epoch 78/300
38/38 [==============================] - 0s 1ms/step - loss: 0.3998 - accuracy: 0.1906 - mae: 0.3998 - pearson_correlation: -0.4844 - euclidean_distance: 0.6807
Epoch 79/300
38/38 [==============================] - 0s 1ms/step - loss: 0.3965 - accuracy: 0.2007 - mae: 0.3965 - pearson_correlation: -0.4889 - euclidean_distance: 0.6757
Epoch 80/300
38/38 [==============================] - 0s 962us/step - loss: 0.3946 - accuracy: 0.1941 - mae: 0.3946 - pearson_correlation: -0.4835 - euclidean_distance: 0.6717
Epoch 81/300
38/38 [==============================] - 0s 1ms/step - loss: 0.3904 - accuracy: 0.1954 - mae: 0.3904 - pearson_correlation: -0.4838 - euclidean_distance: 0.6656
Epoch 82/300
38/38 [==============================] - 0s 960us/step - loss: 0.3879 - accuracy: 0.2038 - mae: 0.3879 - pearson_correlation: -0.4682 - euclidean_distance: 0.6601
Epoch 83/300
38/38 [==============================] - 0s 959us/step - loss: 0.3850 - accuracy: 0.2126 - mae: 0.3850 - pearson_correlation: -0.4638 - euclidean_distance: 0.6544
Epoch 84/300
38/38 [==============================] - 0s 954us/step - loss: 0.3831 - accuracy: 0.2086 - mae: 0.3831 - pearson_correlation: -0.4614 - euclidean_distance: 0.6501
Epoch 85/300
38/38 [==============================] - 0s 918us/step - loss: 0.3772 - accuracy: 0.2135 - mae: 0.3772 - pearson_correlation: -0.4558 - euclidean_distance: 0.6425
Epoch 86/300
38/38 [==============================] - 0s 953us/step - loss: 0.3764 - accuracy: 0.2166 - mae: 0.3764 - pearson_correlation: -0.4485 - euclidean_distance: 0.6389
Epoch 87/300
38/38 [==============================] - 0s 919us/step - loss: 0.3742 - accuracy: 0.2351 - mae: 0.3742 - pearson_correlation: -0.4357 - euclidean_distance: 0.6338
Epoch 88/300
38/38 [==============================] - 0s 1ms/step - loss: 0.3689 - accuracy: 0.2285 - mae: 0.3689 - pearson_correlation: -0.4332 - euclidean_distance: 0.6268
Epoch 89/300
38/38 [==============================] - 0s 910us/step - loss: 0.3665 - accuracy: 0.2294 - mae: 0.3665 - pearson_correlation: -0.4346 - euclidean_distance: 0.6227
Epoch 90/300
38/38 [==============================] - 0s 909us/step - loss: 0.3640 - accuracy: 0.2333 - mae: 0.3640 - pearson_correlation: -0.4228 - euclidean_distance: 0.6164
Epoch 91/300
38/38 [==============================] - 0s 928us/step - loss: 0.3598 - accuracy: 0.2453 - mae: 0.3598 - pearson_correlation: -0.4167 - euclidean_distance: 0.6095
Epoch 92/300
38/38 [==============================] - 0s 991us/step - loss: 0.3595 - accuracy: 0.2576 - mae: 0.3595 - pearson_correlation: -0.4045 - euclidean_distance: 0.6077
Epoch 93/300
38/38 [==============================] - 0s 939us/step - loss: 0.3541 - accuracy: 0.2616 - mae: 0.3541 - pearson_correlation: -0.3971 - euclidean_distance: 0.5997
Epoch 94/300
38/38 [==============================] - 0s 925us/step - loss: 0.3520 - accuracy: 0.2642 - mae: 0.3520 - pearson_correlation: -0.3956 - euclidean_distance: 0.5959
Epoch 95/300
38/38 [==============================] - 0s 913us/step - loss: 0.3487 - accuracy: 0.2805 - mae: 0.3487 - pearson_correlation: -0.3746 - euclidean_distance: 0.5895
Epoch 96/300
38/38 [==============================] - 0s 955us/step - loss: 0.3445 - accuracy: 0.2783 - mae: 0.3445 - pearson_correlation: -0.3720 - euclidean_distance: 0.5829
Epoch 97/300
38/38 [==============================] - 0s 932us/step - loss: 0.3418 - accuracy: 0.2858 - mae: 0.3418 - pearson_correlation: -0.3638 - euclidean_distance: 0.5785
Epoch 98/300
38/38 [==============================] - 0s 920us/step - loss: 0.3398 - accuracy: 0.2995 - mae: 0.3398 - pearson_correlation: -0.3520 - euclidean_distance: 0.5733
Epoch 99/300
38/38 [==============================] - 0s 934us/step - loss: 0.3364 - accuracy: 0.3000 - mae: 0.3364 - pearson_correlation: -0.3417 - euclidean_distance: 0.5681
Epoch 100/300
38/38 [==============================] - 0s 966us/step - loss: 0.3317 - accuracy: 0.3013 - mae: 0.3317 - pearson_correlation: -0.3371 - euclidean_distance: 0.5608
Epoch 101/300
38/38 [==============================] - 0s 921us/step - loss: 0.3285 - accuracy: 0.3176 - mae: 0.3285 - pearson_correlation: -0.3194 - euclidean_distance: 0.5546
Epoch 102/300
38/38 [==============================] - 0s 917us/step - loss: 0.3273 - accuracy: 0.3123 - mae: 0.3273 - pearson_correlation: -0.3114 - euclidean_distance: 0.5525
Epoch 103/300
38/38 [==============================] - 0s 940us/step - loss: 0.3232 - accuracy: 0.3101 - mae: 0.3232 - pearson_correlation: -0.3051 - euclidean_distance: 0.5452
Epoch 104/300
38/38 [==============================] - 0s 891us/step - loss: 0.3193 - accuracy: 0.3251 - mae: 0.3193 - pearson_correlation: -0.2884 - euclidean_distance: 0.5385
Epoch 105/300
38/38 [==============================] - 0s 915us/step - loss: 0.3188 - accuracy: 0.3229 - mae: 0.3188 - pearson_correlation: -0.2853 - euclidean_distance: 0.5364
Epoch 106/300
38/38 [==============================] - 0s 905us/step - loss: 0.3147 - accuracy: 0.3300 - mae: 0.3147 - pearson_correlation: -0.2728 - euclidean_distance: 0.5296
Epoch 107/300
38/38 [==============================] - 0s 909us/step - loss: 0.3111 - accuracy: 0.3352 - mae: 0.3111 - pearson_correlation: -0.2546 - euclidean_distance: 0.5228
Epoch 108/300
38/38 [==============================] - 0s 957us/step - loss: 0.3076 - accuracy: 0.3463 - mae: 0.3076 - pearson_correlation: -0.2532 - euclidean_distance: 0.5179
Epoch 109/300
38/38 [==============================] - 0s 917us/step - loss: 0.3057 - accuracy: 0.3476 - mae: 0.3057 - pearson_correlation: -0.2366 - euclidean_distance: 0.5140
Epoch 110/300
38/38 [==============================] - 0s 910us/step - loss: 0.3018 - accuracy: 0.3555 - mae: 0.3018 - pearson_correlation: -0.2272 - euclidean_distance: 0.5075
Epoch 111/300
38/38 [==============================] - 0s 914us/step - loss: 0.2991 - accuracy: 0.3608 - mae: 0.2991 - pearson_correlation: -0.2137 - euclidean_distance: 0.5034
Epoch 112/300
38/38 [==============================] - 0s 918us/step - loss: 0.2962 - accuracy: 0.3648 - mae: 0.2962 - pearson_correlation: -0.2065 - euclidean_distance: 0.4975
Epoch 113/300
38/38 [==============================] - 0s 949us/step - loss: 0.2934 - accuracy: 0.3591 - mae: 0.2934 - pearson_correlation: -0.1937 - euclidean_distance: 0.4924
Epoch 114/300
38/38 [==============================] - 0s 940us/step - loss: 0.2895 - accuracy: 0.3701 - mae: 0.2895 - pearson_correlation: -0.1784 - euclidean_distance: 0.4862
Epoch 115/300
38/38 [==============================] - 0s 915us/step - loss: 0.2875 - accuracy: 0.3908 - mae: 0.2875 - pearson_correlation: -0.1657 - euclidean_distance: 0.4807
Epoch 116/300
38/38 [==============================] - 0s 924us/step - loss: 0.2826 - accuracy: 0.3846 - mae: 0.2826 - pearson_correlation: -0.1511 - euclidean_distance: 0.4743
Epoch 117/300
38/38 [==============================] - 0s 934us/step - loss: 0.2801 - accuracy: 0.4032 - mae: 0.2801 - pearson_correlation: -0.1301 - euclidean_distance: 0.4691
Epoch 118/300
38/38 [==============================] - 0s 947us/step - loss: 0.2765 - accuracy: 0.4049 - mae: 0.2765 - pearson_correlation: -0.1179 - euclidean_distance: 0.4636
Epoch 119/300
38/38 [==============================] - 0s 914us/step - loss: 0.2742 - accuracy: 0.4173 - mae: 0.2742 - pearson_correlation: -0.1046 - euclidean_distance: 0.4586
Epoch 120/300
38/38 [==============================] - 0s 921us/step - loss: 0.2717 - accuracy: 0.4160 - mae: 0.2717 - pearson_correlation: -0.0893 - euclidean_distance: 0.4540
Epoch 121/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2683 - accuracy: 0.4239 - mae: 0.2683 - pearson_correlation: -0.0749 - euclidean_distance: 0.4485
Epoch 122/300
38/38 [==============================] - 0s 930us/step - loss: 0.2658 - accuracy: 0.4323 - mae: 0.2658 - pearson_correlation: -0.0685 - euclidean_distance: 0.4434
Epoch 123/300
38/38 [==============================] - 0s 929us/step - loss: 0.2609 - accuracy: 0.4389 - mae: 0.2609 - pearson_correlation: -0.0456 - euclidean_distance: 0.4358
Epoch 124/300
38/38 [==============================] - 0s 921us/step - loss: 0.2582 - accuracy: 0.4548 - mae: 0.2582 - pearson_correlation: -0.0309 - euclidean_distance: 0.4315
Epoch 125/300
38/38 [==============================] - 0s 922us/step - loss: 0.2537 - accuracy: 0.4618 - mae: 0.2537 - pearson_correlation: -0.0184 - euclidean_distance: 0.4240
Epoch 126/300
38/38 [==============================] - 0s 925us/step - loss: 0.2534 - accuracy: 0.4667 - mae: 0.2534 - pearson_correlation: -0.0102 - euclidean_distance: 0.4232
Epoch 127/300
38/38 [==============================] - 0s 923us/step - loss: 0.2515 - accuracy: 0.4786 - mae: 0.2515 - pearson_correlation: 0.0087 - euclidean_distance: 0.4185
Epoch 128/300
38/38 [==============================] - 0s 936us/step - loss: 0.2461 - accuracy: 0.4689 - mae: 0.2461 - pearson_correlation: 0.0112 - euclidean_distance: 0.4109
Epoch 129/300
38/38 [==============================] - 0s 895us/step - loss: 0.2450 - accuracy: 0.4892 - mae: 0.2450 - pearson_correlation: 0.0332 - euclidean_distance: 0.4083
Epoch 130/300
38/38 [==============================] - 0s 916us/step - loss: 0.2425 - accuracy: 0.5020 - mae: 0.2425 - pearson_correlation: 0.0561 - euclidean_distance: 0.4031
Epoch 131/300
38/38 [==============================] - 0s 910us/step - loss: 0.2394 - accuracy: 0.5051 - mae: 0.2394 - pearson_correlation: 0.0544 - euclidean_distance: 0.3984
Epoch 132/300
38/38 [==============================] - 0s 911us/step - loss: 0.2373 - accuracy: 0.5192 - mae: 0.2373 - pearson_correlation: 0.0757 - euclidean_distance: 0.3940
Epoch 133/300
38/38 [==============================] - 0s 912us/step - loss: 0.2334 - accuracy: 0.5337 - mae: 0.2334 - pearson_correlation: 0.0878 - euclidean_distance: 0.3880
Epoch 134/300
38/38 [==============================] - 0s 918us/step - loss: 0.2316 - accuracy: 0.5377 - mae: 0.2316 - pearson_correlation: 0.0979 - euclidean_distance: 0.3859
Epoch 135/300
38/38 [==============================] - 0s 907us/step - loss: 0.2297 - accuracy: 0.5514 - mae: 0.2297 - pearson_correlation: 0.1099 - euclidean_distance: 0.3819
Epoch 136/300
38/38 [==============================] - 0s 911us/step - loss: 0.2267 - accuracy: 0.5562 - mae: 0.2267 - pearson_correlation: 0.1266 - euclidean_distance: 0.3759
Epoch 137/300
38/38 [==============================] - 0s 913us/step - loss: 0.2225 - accuracy: 0.5695 - mae: 0.2225 - pearson_correlation: 0.1438 - euclidean_distance: 0.3694
Epoch 138/300
38/38 [==============================] - 0s 914us/step - loss: 0.2233 - accuracy: 0.5849 - mae: 0.2233 - pearson_correlation: 0.1529 - euclidean_distance: 0.3700
Epoch 139/300
38/38 [==============================] - 0s 903us/step - loss: 0.2177 - accuracy: 0.5876 - mae: 0.2177 - pearson_correlation: 0.1649 - euclidean_distance: 0.3609
Epoch 140/300
38/38 [==============================] - 0s 922us/step - loss: 0.2179 - accuracy: 0.5915 - mae: 0.2179 - pearson_correlation: 0.1780 - euclidean_distance: 0.3611
Epoch 141/300
38/38 [==============================] - 0s 922us/step - loss: 0.2137 - accuracy: 0.6105 - mae: 0.2137 - pearson_correlation: 0.1955 - euclidean_distance: 0.3541
Epoch 142/300
38/38 [==============================] - 0s 909us/step - loss: 0.2123 - accuracy: 0.6118 - mae: 0.2123 - pearson_correlation: 0.1985 - euclidean_distance: 0.3519
Epoch 143/300
38/38 [==============================] - 0s 936us/step - loss: 0.2088 - accuracy: 0.6290 - mae: 0.2088 - pearson_correlation: 0.2177 - euclidean_distance: 0.3462
Epoch 144/300
38/38 [==============================] - 0s 991us/step - loss: 0.2096 - accuracy: 0.6321 - mae: 0.2096 - pearson_correlation: 0.2141 - euclidean_distance: 0.3461
Epoch 145/300
38/38 [==============================] - 0s 991us/step - loss: 0.2069 - accuracy: 0.6480 - mae: 0.2069 - pearson_correlation: 0.2312 - euclidean_distance: 0.3424
Epoch 146/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2021 - accuracy: 0.6515 - mae: 0.2021 - pearson_correlation: 0.2452 - euclidean_distance: 0.3353
Epoch 147/300
38/38 [==============================] - 0s 974us/step - loss: 0.2006 - accuracy: 0.6603 - mae: 0.2006 - pearson_correlation: 0.2601 - euclidean_distance: 0.3331
Epoch 148/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2001 - accuracy: 0.6692 - mae: 0.2001 - pearson_correlation: 0.2618 - euclidean_distance: 0.3308
Epoch 149/300
38/38 [==============================] - 0s 1000us/step - loss: 0.1969 - accuracy: 0.6802 - mae: 0.1969 - pearson_correlation: 0.2761 - euclidean_distance: 0.3251
Epoch 150/300
38/38 [==============================] - 0s 989us/step - loss: 0.1973 - accuracy: 0.6784 - mae: 0.1973 - pearson_correlation: 0.2749 - euclidean_distance: 0.3266
Epoch 151/300
38/38 [==============================] - 0s 982us/step - loss: 0.1941 - accuracy: 0.6925 - mae: 0.1941 - pearson_correlation: 0.2938 - euclidean_distance: 0.3210
Epoch 152/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1932 - accuracy: 0.6992 - mae: 0.1932 - pearson_correlation: 0.2946 - euclidean_distance: 0.3189
Epoch 153/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1908 - accuracy: 0.7120 - mae: 0.1908 - pearson_correlation: 0.3001 - euclidean_distance: 0.3159
Epoch 154/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1896 - accuracy: 0.7071 - mae: 0.1896 - pearson_correlation: 0.3161 - euclidean_distance: 0.3130
Epoch 155/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1889 - accuracy: 0.7133 - mae: 0.1889 - pearson_correlation: 0.3218 - euclidean_distance: 0.3122
Epoch 156/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1850 - accuracy: 0.7305 - mae: 0.1850 - pearson_correlation: 0.3329 - euclidean_distance: 0.3060
Epoch 157/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1836 - accuracy: 0.7256 - mae: 0.1836 - pearson_correlation: 0.3360 - euclidean_distance: 0.3035
Epoch 158/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1824 - accuracy: 0.7287 - mae: 0.1824 - pearson_correlation: 0.3520 - euclidean_distance: 0.3002
Epoch 159/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1840 - accuracy: 0.7331 - mae: 0.1840 - pearson_correlation: 0.3453 - euclidean_distance: 0.3024
Epoch 160/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1783 - accuracy: 0.7503 - mae: 0.1783 - pearson_correlation: 0.3593 - euclidean_distance: 0.2942
Epoch 161/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1768 - accuracy: 0.7468 - mae: 0.1768 - pearson_correlation: 0.3715 - euclidean_distance: 0.2915
Epoch 162/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1780 - accuracy: 0.7552 - mae: 0.1780 - pearson_correlation: 0.3744 - euclidean_distance: 0.2929
Epoch 163/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1734 - accuracy: 0.7578 - mae: 0.1734 - pearson_correlation: 0.3852 - euclidean_distance: 0.2854
Epoch 164/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1728 - accuracy: 0.7587 - mae: 0.1728 - pearson_correlation: 0.3905 - euclidean_distance: 0.2845
Epoch 165/300
38/38 [==============================] - 0s 924us/step - loss: 0.1706 - accuracy: 0.7825 - mae: 0.1706 - pearson_correlation: 0.4047 - euclidean_distance: 0.2816
Epoch 166/300
38/38 [==============================] - 0s 923us/step - loss: 0.1697 - accuracy: 0.7697 - mae: 0.1697 - pearson_correlation: 0.4051 - euclidean_distance: 0.2792
Epoch 167/300
38/38 [==============================] - 0s 953us/step - loss: 0.1672 - accuracy: 0.7861 - mae: 0.1672 - pearson_correlation: 0.4177 - euclidean_distance: 0.2756
Epoch 168/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1666 - accuracy: 0.7794 - mae: 0.1666 - pearson_correlation: 0.4229 - euclidean_distance: 0.2748
Epoch 169/300
38/38 [==============================] - 0s 936us/step - loss: 0.1652 - accuracy: 0.7865 - mae: 0.1652 - pearson_correlation: 0.4291 - euclidean_distance: 0.2722
Epoch 170/300
38/38 [==============================] - 0s 919us/step - loss: 0.1647 - accuracy: 0.7856 - mae: 0.1647 - pearson_correlation: 0.4388 - euclidean_distance: 0.2715
Epoch 171/300
38/38 [==============================] - 0s 919us/step - loss: 0.1625 - accuracy: 0.7949 - mae: 0.1625 - pearson_correlation: 0.4410 - euclidean_distance: 0.2668
Epoch 172/300
38/38 [==============================] - 0s 942us/step - loss: 0.1604 - accuracy: 0.8002 - mae: 0.1604 - pearson_correlation: 0.4500 - euclidean_distance: 0.2636
Epoch 173/300
38/38 [==============================] - 0s 933us/step - loss: 0.1608 - accuracy: 0.8064 - mae: 0.1608 - pearson_correlation: 0.4553 - euclidean_distance: 0.2644
Epoch 174/300
38/38 [==============================] - 0s 923us/step - loss: 0.1578 - accuracy: 0.8024 - mae: 0.1578 - pearson_correlation: 0.4613 - euclidean_distance: 0.2593
Epoch 175/300
38/38 [==============================] - 0s 914us/step - loss: 0.1567 - accuracy: 0.8068 - mae: 0.1567 - pearson_correlation: 0.4672 - euclidean_distance: 0.2576
Epoch 176/300
38/38 [==============================] - 0s 945us/step - loss: 0.1578 - accuracy: 0.8099 - mae: 0.1578 - pearson_correlation: 0.4701 - euclidean_distance: 0.2588
Epoch 177/300
38/38 [==============================] - 0s 926us/step - loss: 0.1544 - accuracy: 0.8156 - mae: 0.1544 - pearson_correlation: 0.4789 - euclidean_distance: 0.2537
Epoch 178/300
38/38 [==============================] - 0s 920us/step - loss: 0.1560 - accuracy: 0.8116 - mae: 0.1560 - pearson_correlation: 0.4739 - euclidean_distance: 0.2558
Epoch 179/300
38/38 [==============================] - 0s 907us/step - loss: 0.1531 - accuracy: 0.8130 - mae: 0.1531 - pearson_correlation: 0.4825 - euclidean_distance: 0.2511
Epoch 180/300
38/38 [==============================] - 0s 976us/step - loss: 0.1498 - accuracy: 0.8271 - mae: 0.1498 - pearson_correlation: 0.4973 - euclidean_distance: 0.2458
Epoch 181/300
38/38 [==============================] - 0s 922us/step - loss: 0.1509 - accuracy: 0.8196 - mae: 0.1509 - pearson_correlation: 0.4991 - euclidean_distance: 0.2476
Epoch 182/300
38/38 [==============================] - 0s 897us/step - loss: 0.1497 - accuracy: 0.8284 - mae: 0.1497 - pearson_correlation: 0.5090 - euclidean_distance: 0.2447
Epoch 183/300
38/38 [==============================] - 0s 916us/step - loss: 0.1462 - accuracy: 0.8253 - mae: 0.1462 - pearson_correlation: 0.5180 - euclidean_distance: 0.2402
Epoch 184/300
38/38 [==============================] - 0s 953us/step - loss: 0.1516 - accuracy: 0.8222 - mae: 0.1516 - pearson_correlation: 0.5044 - euclidean_distance: 0.2480
Epoch 185/300
38/38 [==============================] - 0s 914us/step - loss: 0.1496 - accuracy: 0.8258 - mae: 0.1496 - pearson_correlation: 0.4998 - euclidean_distance: 0.2451
Epoch 186/300
38/38 [==============================] - 0s 924us/step - loss: 0.1432 - accuracy: 0.8350 - mae: 0.1432 - pearson_correlation: 0.5219 - euclidean_distance: 0.2355
Epoch 187/300
38/38 [==============================] - 0s 916us/step - loss: 0.1420 - accuracy: 0.8377 - mae: 0.1420 - pearson_correlation: 0.5276 - euclidean_distance: 0.2331
Epoch 188/300
38/38 [==============================] - 0s 922us/step - loss: 0.1432 - accuracy: 0.8434 - mae: 0.1432 - pearson_correlation: 0.5276 - euclidean_distance: 0.2350
Epoch 189/300
38/38 [==============================] - 0s 927us/step - loss: 0.1437 - accuracy: 0.8416 - mae: 0.1437 - pearson_correlation: 0.5290 - euclidean_distance: 0.2354
Epoch 190/300
38/38 [==============================] - 0s 910us/step - loss: 0.1410 - accuracy: 0.8474 - mae: 0.1410 - pearson_correlation: 0.5356 - euclidean_distance: 0.2313
Epoch 191/300
38/38 [==============================] - 0s 958us/step - loss: 0.1390 - accuracy: 0.8447 - mae: 0.1390 - pearson_correlation: 0.5467 - euclidean_distance: 0.2276
Epoch 192/300
38/38 [==============================] - 0s 922us/step - loss: 0.1399 - accuracy: 0.8456 - mae: 0.1399 - pearson_correlation: 0.5429 - euclidean_distance: 0.2290
Epoch 193/300
38/38 [==============================] - 0s 918us/step - loss: 0.1375 - accuracy: 0.8558 - mae: 0.1375 - pearson_correlation: 0.5526 - euclidean_distance: 0.2253
Epoch 194/300
38/38 [==============================] - 0s 911us/step - loss: 0.1373 - accuracy: 0.8456 - mae: 0.1373 - pearson_correlation: 0.5527 - euclidean_distance: 0.2251
Epoch 195/300
38/38 [==============================] - 0s 913us/step - loss: 0.1396 - accuracy: 0.8478 - mae: 0.1396 - pearson_correlation: 0.5452 - euclidean_distance: 0.2286
Epoch 196/300
38/38 [==============================] - 0s 956us/step - loss: 0.1354 - accuracy: 0.8531 - mae: 0.1354 - pearson_correlation: 0.5634 - euclidean_distance: 0.2220
Epoch 197/300
38/38 [==============================] - 0s 952us/step - loss: 0.1339 - accuracy: 0.8633 - mae: 0.1339 - pearson_correlation: 0.5691 - euclidean_distance: 0.2185
Epoch 198/300
38/38 [==============================] - 0s 938us/step - loss: 0.1355 - accuracy: 0.8584 - mae: 0.1355 - pearson_correlation: 0.5629 - euclidean_distance: 0.2216
Epoch 199/300
38/38 [==============================] - 0s 934us/step - loss: 0.1371 - accuracy: 0.8544 - mae: 0.1371 - pearson_correlation: 0.5577 - euclidean_distance: 0.2245
Epoch 200/300
38/38 [==============================] - 0s 929us/step - loss: 0.1336 - accuracy: 0.8562 - mae: 0.1336 - pearson_correlation: 0.5747 - euclidean_distance: 0.2178
Epoch 201/300
38/38 [==============================] - 0s 998us/step - loss: 0.1319 - accuracy: 0.8610 - mae: 0.1319 - pearson_correlation: 0.5788 - euclidean_distance: 0.2167
Epoch 202/300
38/38 [==============================] - 0s 922us/step - loss: 0.1308 - accuracy: 0.8628 - mae: 0.1308 - pearson_correlation: 0.5820 - euclidean_distance: 0.2141
Epoch 203/300
38/38 [==============================] - 0s 940us/step - loss: 0.1288 - accuracy: 0.8668 - mae: 0.1288 - pearson_correlation: 0.5890 - euclidean_distance: 0.2107
Epoch 204/300
38/38 [==============================] - 0s 928us/step - loss: 0.1329 - accuracy: 0.8663 - mae: 0.1329 - pearson_correlation: 0.5789 - euclidean_distance: 0.2171
Epoch 205/300
38/38 [==============================] - 0s 916us/step - loss: 0.1297 - accuracy: 0.8668 - mae: 0.1297 - pearson_correlation: 0.5864 - euclidean_distance: 0.2120
Epoch 206/300
38/38 [==============================] - 0s 908us/step - loss: 0.1267 - accuracy: 0.8708 - mae: 0.1267 - pearson_correlation: 0.5905 - euclidean_distance: 0.2078
Epoch 207/300
38/38 [==============================] - 0s 917us/step - loss: 0.1283 - accuracy: 0.8681 - mae: 0.1283 - pearson_correlation: 0.5950 - euclidean_distance: 0.2102
Epoch 208/300
38/38 [==============================] - 0s 960us/step - loss: 0.1269 - accuracy: 0.8708 - mae: 0.1269 - pearson_correlation: 0.5968 - euclidean_distance: 0.2074
Epoch 209/300
38/38 [==============================] - 0s 919us/step - loss: 0.1260 - accuracy: 0.8738 - mae: 0.1260 - pearson_correlation: 0.6008 - euclidean_distance: 0.2062
Epoch 210/300
38/38 [==============================] - 0s 925us/step - loss: 0.1256 - accuracy: 0.8743 - mae: 0.1256 - pearson_correlation: 0.5989 - euclidean_distance: 0.2060
Epoch 211/300
38/38 [==============================] - 0s 914us/step - loss: 0.1238 - accuracy: 0.8760 - mae: 0.1238 - pearson_correlation: 0.6113 - euclidean_distance: 0.2019
Epoch 212/300
38/38 [==============================] - 0s 910us/step - loss: 0.1286 - accuracy: 0.8787 - mae: 0.1286 - pearson_correlation: 0.5985 - euclidean_distance: 0.2090
Epoch 213/300
38/38 [==============================] - 0s 912us/step - loss: 0.1232 - accuracy: 0.8805 - mae: 0.1232 - pearson_correlation: 0.6141 - euclidean_distance: 0.2015
Epoch 214/300
38/38 [==============================] - 0s 904us/step - loss: 0.1233 - accuracy: 0.8805 - mae: 0.1233 - pearson_correlation: 0.6179 - euclidean_distance: 0.2013
Epoch 215/300
38/38 [==============================] - 0s 911us/step - loss: 0.1241 - accuracy: 0.8800 - mae: 0.1241 - pearson_correlation: 0.6136 - euclidean_distance: 0.2024
Epoch 216/300
38/38 [==============================] - 0s 909us/step - loss: 0.1229 - accuracy: 0.8835 - mae: 0.1229 - pearson_correlation: 0.6154 - euclidean_distance: 0.2011
Epoch 217/300
38/38 [==============================] - 0s 918us/step - loss: 0.1238 - accuracy: 0.8871 - mae: 0.1238 - pearson_correlation: 0.6168 - euclidean_distance: 0.2011
Epoch 218/300
38/38 [==============================] - 0s 912us/step - loss: 0.1230 - accuracy: 0.8791 - mae: 0.1230 - pearson_correlation: 0.6179 - euclidean_distance: 0.2002
Epoch 219/300
38/38 [==============================] - 0s 935us/step - loss: 0.1220 - accuracy: 0.8888 - mae: 0.1220 - pearson_correlation: 0.6189 - euclidean_distance: 0.1992
Epoch 220/300
38/38 [==============================] - 0s 934us/step - loss: 0.1202 - accuracy: 0.8849 - mae: 0.1202 - pearson_correlation: 0.6285 - euclidean_distance: 0.1962
Epoch 221/300
38/38 [==============================] - 0s 923us/step - loss: 0.1222 - accuracy: 0.8835 - mae: 0.1222 - pearson_correlation: 0.6243 - euclidean_distance: 0.1989
Epoch 222/300
38/38 [==============================] - 0s 916us/step - loss: 0.1168 - accuracy: 0.8906 - mae: 0.1168 - pearson_correlation: 0.6345 - euclidean_distance: 0.1912
Epoch 223/300
38/38 [==============================] - 0s 945us/step - loss: 0.1185 - accuracy: 0.8919 - mae: 0.1185 - pearson_correlation: 0.6364 - euclidean_distance: 0.1927
Epoch 224/300
38/38 [==============================] - 0s 918us/step - loss: 0.1168 - accuracy: 0.8963 - mae: 0.1168 - pearson_correlation: 0.6368 - euclidean_distance: 0.1911
Epoch 225/300
38/38 [==============================] - 0s 963us/step - loss: 0.1180 - accuracy: 0.8981 - mae: 0.1180 - pearson_correlation: 0.6357 - euclidean_distance: 0.1933
Epoch 226/300
38/38 [==============================] - 0s 917us/step - loss: 0.1184 - accuracy: 0.8977 - mae: 0.1184 - pearson_correlation: 0.6346 - euclidean_distance: 0.1931
Epoch 227/300
38/38 [==============================] - 0s 912us/step - loss: 0.1171 - accuracy: 0.8963 - mae: 0.1171 - pearson_correlation: 0.6390 - euclidean_distance: 0.1915
Epoch 228/300
38/38 [==============================] - 0s 917us/step - loss: 0.1163 - accuracy: 0.8950 - mae: 0.1163 - pearson_correlation: 0.6399 - euclidean_distance: 0.1903
Epoch 229/300
38/38 [==============================] - 0s 921us/step - loss: 0.1170 - accuracy: 0.8963 - mae: 0.1170 - pearson_correlation: 0.6396 - euclidean_distance: 0.1907
Epoch 230/300
38/38 [==============================] - 0s 943us/step - loss: 0.1151 - accuracy: 0.9025 - mae: 0.1151 - pearson_correlation: 0.6444 - euclidean_distance: 0.1875
Epoch 231/300
38/38 [==============================] - 0s 937us/step - loss: 0.1129 - accuracy: 0.9087 - mae: 0.1129 - pearson_correlation: 0.6529 - euclidean_distance: 0.1845
Epoch 232/300
38/38 [==============================] - 0s 928us/step - loss: 0.1146 - accuracy: 0.9056 - mae: 0.1146 - pearson_correlation: 0.6517 - euclidean_distance: 0.1864
Epoch 233/300
38/38 [==============================] - 0s 915us/step - loss: 0.1118 - accuracy: 0.9060 - mae: 0.1118 - pearson_correlation: 0.6588 - euclidean_distance: 0.1823
Epoch 234/300
38/38 [==============================] - 0s 911us/step - loss: 0.1138 - accuracy: 0.9034 - mae: 0.1138 - pearson_correlation: 0.6485 - euclidean_distance: 0.1854
Epoch 235/300
38/38 [==============================] - 0s 919us/step - loss: 0.1118 - accuracy: 0.9127 - mae: 0.1118 - pearson_correlation: 0.6597 - euclidean_distance: 0.1821
Epoch 236/300
38/38 [==============================] - 0s 912us/step - loss: 0.1133 - accuracy: 0.9135 - mae: 0.1133 - pearson_correlation: 0.6542 - euclidean_distance: 0.1845
Epoch 237/300
38/38 [==============================] - 0s 914us/step - loss: 0.1124 - accuracy: 0.9118 - mae: 0.1124 - pearson_correlation: 0.6571 - euclidean_distance: 0.1827
Epoch 238/300
38/38 [==============================] - 0s 915us/step - loss: 0.1142 - accuracy: 0.9127 - mae: 0.1142 - pearson_correlation: 0.6571 - euclidean_distance: 0.1854
Epoch 239/300
38/38 [==============================] - 0s 900us/step - loss: 0.1121 - accuracy: 0.9118 - mae: 0.1121 - pearson_correlation: 0.6572 - euclidean_distance: 0.1829
Epoch 240/300
38/38 [==============================] - 0s 915us/step - loss: 0.1096 - accuracy: 0.9180 - mae: 0.1096 - pearson_correlation: 0.6635 - euclidean_distance: 0.1789
Epoch 241/300
38/38 [==============================] - 0s 913us/step - loss: 0.1122 - accuracy: 0.9219 - mae: 0.1122 - pearson_correlation: 0.6617 - euclidean_distance: 0.1831
Epoch 242/300
38/38 [==============================] - 0s 915us/step - loss: 0.1120 - accuracy: 0.9206 - mae: 0.1120 - pearson_correlation: 0.6620 - euclidean_distance: 0.1824
Epoch 243/300
38/38 [==============================] - 0s 910us/step - loss: 0.1105 - accuracy: 0.9197 - mae: 0.1105 - pearson_correlation: 0.6671 - euclidean_distance: 0.1799
Epoch 244/300
38/38 [==============================] - 0s 932us/step - loss: 0.1091 - accuracy: 0.9202 - mae: 0.1091 - pearson_correlation: 0.6717 - euclidean_distance: 0.1775
Epoch 245/300
38/38 [==============================] - 0s 933us/step - loss: 0.1088 - accuracy: 0.9202 - mae: 0.1088 - pearson_correlation: 0.6698 - euclidean_distance: 0.1772
Epoch 246/300
38/38 [==============================] - 0s 932us/step - loss: 0.1104 - accuracy: 0.9232 - mae: 0.1104 - pearson_correlation: 0.6707 - euclidean_distance: 0.1796
Epoch 247/300
38/38 [==============================] - 0s 924us/step - loss: 0.1070 - accuracy: 0.9210 - mae: 0.1070 - pearson_correlation: 0.6814 - euclidean_distance: 0.1746
Epoch 248/300
38/38 [==============================] - 0s 913us/step - loss: 0.1078 - accuracy: 0.9255 - mae: 0.1078 - pearson_correlation: 0.6741 - euclidean_distance: 0.1755
Epoch 249/300
38/38 [==============================] - 0s 913us/step - loss: 0.1061 - accuracy: 0.9259 - mae: 0.1061 - pearson_correlation: 0.6808 - euclidean_distance: 0.1735
Epoch 250/300
38/38 [==============================] - 0s 908us/step - loss: 0.1104 - accuracy: 0.9259 - mae: 0.1104 - pearson_correlation: 0.6692 - euclidean_distance: 0.1792
Epoch 251/300
38/38 [==============================] - 0s 918us/step - loss: 0.1092 - accuracy: 0.9272 - mae: 0.1092 - pearson_correlation: 0.6716 - euclidean_distance: 0.1775
Epoch 252/300
38/38 [==============================] - 0s 913us/step - loss: 0.1045 - accuracy: 0.9250 - mae: 0.1045 - pearson_correlation: 0.6840 - euclidean_distance: 0.1705
Epoch 253/300
38/38 [==============================] - 0s 955us/step - loss: 0.1071 - accuracy: 0.9285 - mae: 0.1071 - pearson_correlation: 0.6796 - euclidean_distance: 0.1746
Epoch 254/300
38/38 [==============================] - 0s 914us/step - loss: 0.1063 - accuracy: 0.9259 - mae: 0.1063 - pearson_correlation: 0.6800 - euclidean_distance: 0.1723
Epoch 255/300
38/38 [==============================] - 0s 928us/step - loss: 0.1051 - accuracy: 0.9294 - mae: 0.1051 - pearson_correlation: 0.6850 - euclidean_distance: 0.1713
Epoch 256/300
38/38 [==============================] - 0s 941us/step - loss: 0.1039 - accuracy: 0.9312 - mae: 0.1039 - pearson_correlation: 0.6866 - euclidean_distance: 0.1690
Epoch 257/300
38/38 [==============================] - 0s 922us/step - loss: 0.1055 - accuracy: 0.9294 - mae: 0.1055 - pearson_correlation: 0.6814 - euclidean_distance: 0.1719
Epoch 258/300
38/38 [==============================] - 0s 924us/step - loss: 0.1036 - accuracy: 0.9338 - mae: 0.1036 - pearson_correlation: 0.6878 - euclidean_distance: 0.1690
Epoch 259/300
38/38 [==============================] - 0s 953us/step - loss: 0.1046 - accuracy: 0.9321 - mae: 0.1046 - pearson_correlation: 0.6877 - euclidean_distance: 0.1705
Epoch 260/300
38/38 [==============================] - 0s 921us/step - loss: 0.1069 - accuracy: 0.9334 - mae: 0.1069 - pearson_correlation: 0.6832 - euclidean_distance: 0.1736
Epoch 261/300
38/38 [==============================] - 0s 916us/step - loss: 0.1079 - accuracy: 0.9334 - mae: 0.1079 - pearson_correlation: 0.6816 - euclidean_distance: 0.1755
Epoch 262/300
38/38 [==============================] - 0s 910us/step - loss: 0.1029 - accuracy: 0.9347 - mae: 0.1029 - pearson_correlation: 0.6894 - euclidean_distance: 0.1680
Epoch 263/300
38/38 [==============================] - 0s 944us/step - loss: 0.1021 - accuracy: 0.9356 - mae: 0.1021 - pearson_correlation: 0.6919 - euclidean_distance: 0.1666
Epoch 264/300
38/38 [==============================] - 0s 940us/step - loss: 0.1014 - accuracy: 0.9356 - mae: 0.1014 - pearson_correlation: 0.6996 - euclidean_distance: 0.1655
Epoch 265/300
38/38 [==============================] - 0s 918us/step - loss: 0.1032 - accuracy: 0.9330 - mae: 0.1032 - pearson_correlation: 0.6893 - euclidean_distance: 0.1681
Epoch 266/300
38/38 [==============================] - 0s 933us/step - loss: 0.1012 - accuracy: 0.9382 - mae: 0.1012 - pearson_correlation: 0.6981 - euclidean_distance: 0.1649
Epoch 267/300
38/38 [==============================] - 0s 951us/step - loss: 0.1007 - accuracy: 0.9365 - mae: 0.1007 - pearson_correlation: 0.6979 - euclidean_distance: 0.1642
Epoch 268/300
38/38 [==============================] - 0s 957us/step - loss: 0.1022 - accuracy: 0.9369 - mae: 0.1022 - pearson_correlation: 0.6968 - euclidean_distance: 0.1664
Epoch 269/300
38/38 [==============================] - 0s 918us/step - loss: 0.1027 - accuracy: 0.9356 - mae: 0.1027 - pearson_correlation: 0.6968 - euclidean_distance: 0.1676
Epoch 270/300
38/38 [==============================] - 0s 899us/step - loss: 0.1024 - accuracy: 0.9356 - mae: 0.1024 - pearson_correlation: 0.6964 - euclidean_distance: 0.1671
Epoch 271/300
38/38 [==============================] - 0s 902us/step - loss: 0.1010 - accuracy: 0.9387 - mae: 0.1010 - pearson_correlation: 0.7012 - euclidean_distance: 0.1641
Epoch 272/300
38/38 [==============================] - 0s 910us/step - loss: 0.1029 - accuracy: 0.9352 - mae: 0.1029 - pearson_correlation: 0.6982 - euclidean_distance: 0.1671
Epoch 273/300
38/38 [==============================] - 0s 908us/step - loss: 0.0996 - accuracy: 0.9365 - mae: 0.0996 - pearson_correlation: 0.7044 - euclidean_distance: 0.1619
Epoch 274/300
38/38 [==============================] - 0s 925us/step - loss: 0.1045 - accuracy: 0.9369 - mae: 0.1045 - pearson_correlation: 0.6958 - euclidean_distance: 0.1703
Epoch 275/300
38/38 [==============================] - 0s 894us/step - loss: 0.1026 - accuracy: 0.9369 - mae: 0.1026 - pearson_correlation: 0.6971 - euclidean_distance: 0.1681
Epoch 276/300
38/38 [==============================] - 0s 931us/step - loss: 0.1012 - accuracy: 0.9382 - mae: 0.1012 - pearson_correlation: 0.7006 - euclidean_distance: 0.1647
Epoch 277/300
38/38 [==============================] - 0s 909us/step - loss: 0.1018 - accuracy: 0.9413 - mae: 0.1018 - pearson_correlation: 0.7009 - euclidean_distance: 0.1660
Epoch 278/300
38/38 [==============================] - 0s 875us/step - loss: 0.1011 - accuracy: 0.9396 - mae: 0.1011 - pearson_correlation: 0.7046 - euclidean_distance: 0.1636
Epoch 279/300
38/38 [==============================] - 0s 925us/step - loss: 0.1006 - accuracy: 0.9378 - mae: 0.1006 - pearson_correlation: 0.7029 - euclidean_distance: 0.1637
Epoch 280/300
38/38 [==============================] - 0s 916us/step - loss: 0.1006 - accuracy: 0.9400 - mae: 0.1006 - pearson_correlation: 0.7081 - euclidean_distance: 0.1636
Epoch 281/300
38/38 [==============================] - 0s 926us/step - loss: 0.1000 - accuracy: 0.9422 - mae: 0.1000 - pearson_correlation: 0.7054 - euclidean_distance: 0.1626
Epoch 282/300
38/38 [==============================] - 0s 913us/step - loss: 0.0965 - accuracy: 0.9391 - mae: 0.0965 - pearson_correlation: 0.7165 - euclidean_distance: 0.1577
Epoch 283/300
38/38 [==============================] - 0s 961us/step - loss: 0.0992 - accuracy: 0.9413 - mae: 0.0992 - pearson_correlation: 0.7077 - euclidean_distance: 0.1617
Epoch 284/300
38/38 [==============================] - 0s 942us/step - loss: 0.0989 - accuracy: 0.9400 - mae: 0.0989 - pearson_correlation: 0.7087 - euclidean_distance: 0.1614
Epoch 285/300
38/38 [==============================] - 0s 911us/step - loss: 0.0986 - accuracy: 0.9431 - mae: 0.0986 - pearson_correlation: 0.7122 - euclidean_distance: 0.1602
Epoch 286/300
38/38 [==============================] - 0s 930us/step - loss: 0.1005 - accuracy: 0.9431 - mae: 0.1005 - pearson_correlation: 0.7070 - euclidean_distance: 0.1626
Epoch 287/300
38/38 [==============================] - 0s 913us/step - loss: 0.0976 - accuracy: 0.9409 - mae: 0.0976 - pearson_correlation: 0.7100 - euclidean_distance: 0.1591
Epoch 288/300
38/38 [==============================] - 0s 969us/step - loss: 0.0985 - accuracy: 0.9413 - mae: 0.0985 - pearson_correlation: 0.7053 - euclidean_distance: 0.1598
Epoch 289/300
38/38 [==============================] - 0s 923us/step - loss: 0.0975 - accuracy: 0.9418 - mae: 0.0975 - pearson_correlation: 0.7108 - euclidean_distance: 0.1583
Epoch 290/300
38/38 [==============================] - 0s 956us/step - loss: 0.0953 - accuracy: 0.9440 - mae: 0.0953 - pearson_correlation: 0.7179 - euclidean_distance: 0.1548
Epoch 291/300
38/38 [==============================] - 0s 919us/step - loss: 0.0981 - accuracy: 0.9409 - mae: 0.0981 - pearson_correlation: 0.7092 - euclidean_distance: 0.1595
Epoch 292/300
38/38 [==============================] - 0s 920us/step - loss: 0.0951 - accuracy: 0.9427 - mae: 0.0951 - pearson_correlation: 0.7156 - euclidean_distance: 0.1546
Epoch 293/300
38/38 [==============================] - 0s 944us/step - loss: 0.0973 - accuracy: 0.9413 - mae: 0.0973 - pearson_correlation: 0.7137 - euclidean_distance: 0.1584
Epoch 294/300
38/38 [==============================] - 0s 874us/step - loss: 0.0972 - accuracy: 0.9449 - mae: 0.0972 - pearson_correlation: 0.7141 - euclidean_distance: 0.1583
Epoch 295/300
38/38 [==============================] - 0s 927us/step - loss: 0.1009 - accuracy: 0.9422 - mae: 0.1009 - pearson_correlation: 0.7083 - euclidean_distance: 0.1631
Epoch 296/300
38/38 [==============================] - 0s 962us/step - loss: 0.0966 - accuracy: 0.9418 - mae: 0.0966 - pearson_correlation: 0.7183 - euclidean_distance: 0.1573
Epoch 297/300
38/38 [==============================] - 0s 913us/step - loss: 0.1001 - accuracy: 0.9413 - mae: 0.1001 - pearson_correlation: 0.7097 - euclidean_distance: 0.1622
Epoch 298/300
38/38 [==============================] - 0s 935us/step - loss: 0.0957 - accuracy: 0.9400 - mae: 0.0957 - pearson_correlation: 0.7196 - euclidean_distance: 0.1557
Epoch 299/300
38/38 [==============================] - 0s 926us/step - loss: 0.0938 - accuracy: 0.9427 - mae: 0.0938 - pearson_correlation: 0.7251 - euclidean_distance: 0.1532
Epoch 300/300
38/38 [==============================] - 0s 927us/step - loss: 0.0968 - accuracy: 0.9413 - mae: 0.0968 - pearson_correlation: 0.7187 - euclidean_distance: 0.1570
19/19 [==============================] - 0s 555us/step
Epoch 1/300
38/38 [==============================] - 1s 970us/step - loss: 0.4982 - accuracy: 0.6715 - mae: 0.4982 - pearson_correlation: 0.2380 - euclidean_distance: 0.7471
Epoch 2/300
38/38 [==============================] - 0s 903us/step - loss: 0.4954 - accuracy: 0.6667 - mae: 0.4954 - pearson_correlation: 0.2354 - euclidean_distance: 0.7435
Epoch 3/300
38/38 [==============================] - 0s 912us/step - loss: 0.4918 - accuracy: 0.6675 - mae: 0.4918 - pearson_correlation: 0.2362 - euclidean_distance: 0.7390
Epoch 4/300
38/38 [==============================] - 0s 914us/step - loss: 0.4885 - accuracy: 0.6592 - mae: 0.4885 - pearson_correlation: 0.2320 - euclidean_distance: 0.7349
Epoch 5/300
38/38 [==============================] - 0s 937us/step - loss: 0.4855 - accuracy: 0.6653 - mae: 0.4855 - pearson_correlation: 0.2281 - euclidean_distance: 0.7308
Epoch 6/300
38/38 [==============================] - 0s 949us/step - loss: 0.4821 - accuracy: 0.6596 - mae: 0.4821 - pearson_correlation: 0.2256 - euclidean_distance: 0.7262
Epoch 7/300
38/38 [==============================] - 0s 939us/step - loss: 0.4792 - accuracy: 0.6574 - mae: 0.4792 - pearson_correlation: 0.2231 - euclidean_distance: 0.7228
Epoch 8/300
38/38 [==============================] - 0s 938us/step - loss: 0.4757 - accuracy: 0.6543 - mae: 0.4757 - pearson_correlation: 0.2210 - euclidean_distance: 0.7178
Epoch 9/300
38/38 [==============================] - 0s 920us/step - loss: 0.4714 - accuracy: 0.6548 - mae: 0.4714 - pearson_correlation: 0.2207 - euclidean_distance: 0.7121
Epoch 10/300
38/38 [==============================] - 0s 996us/step - loss: 0.4679 - accuracy: 0.6512 - mae: 0.4679 - pearson_correlation: 0.2148 - euclidean_distance: 0.7078
Epoch 11/300
38/38 [==============================] - 0s 994us/step - loss: 0.4651 - accuracy: 0.6548 - mae: 0.4651 - pearson_correlation: 0.2113 - euclidean_distance: 0.7039
Epoch 12/300
38/38 [==============================] - 0s 926us/step - loss: 0.4603 - accuracy: 0.6512 - mae: 0.4603 - pearson_correlation: 0.2083 - euclidean_distance: 0.6980
Epoch 13/300
38/38 [==============================] - 0s 994us/step - loss: 0.4579 - accuracy: 0.6543 - mae: 0.4579 - pearson_correlation: 0.2056 - euclidean_distance: 0.6939
Epoch 14/300
38/38 [==============================] - 0s 908us/step - loss: 0.4532 - accuracy: 0.6495 - mae: 0.4532 - pearson_correlation: 0.2055 - euclidean_distance: 0.6880
Epoch 15/300
38/38 [==============================] - 0s 907us/step - loss: 0.4499 - accuracy: 0.6451 - mae: 0.4499 - pearson_correlation: 0.2136 - euclidean_distance: 0.6833
Epoch 16/300
38/38 [==============================] - 0s 943us/step - loss: 0.4464 - accuracy: 0.6464 - mae: 0.4464 - pearson_correlation: 0.2028 - euclidean_distance: 0.6791
Epoch 17/300
38/38 [==============================] - 0s 952us/step - loss: 0.4420 - accuracy: 0.6407 - mae: 0.4420 - pearson_correlation: 0.2032 - euclidean_distance: 0.6734
Epoch 18/300
38/38 [==============================] - 0s 957us/step - loss: 0.4389 - accuracy: 0.6437 - mae: 0.4389 - pearson_correlation: 0.2015 - euclidean_distance: 0.6684
Epoch 19/300
38/38 [==============================] - 0s 927us/step - loss: 0.4338 - accuracy: 0.6349 - mae: 0.4338 - pearson_correlation: 0.2024 - euclidean_distance: 0.6617
Epoch 20/300
38/38 [==============================] - 0s 920us/step - loss: 0.4312 - accuracy: 0.6323 - mae: 0.4312 - pearson_correlation: 0.1924 - euclidean_distance: 0.6583
Epoch 21/300
38/38 [==============================] - 0s 917us/step - loss: 0.4260 - accuracy: 0.6362 - mae: 0.4260 - pearson_correlation: 0.1962 - euclidean_distance: 0.6508
Epoch 22/300
38/38 [==============================] - 0s 918us/step - loss: 0.4219 - accuracy: 0.6243 - mae: 0.4219 - pearson_correlation: 0.1941 - euclidean_distance: 0.6458
Epoch 23/300
38/38 [==============================] - 0s 949us/step - loss: 0.4169 - accuracy: 0.6265 - mae: 0.4169 - pearson_correlation: 0.1920 - euclidean_distance: 0.6386
Epoch 24/300
38/38 [==============================] - 0s 907us/step - loss: 0.4141 - accuracy: 0.6287 - mae: 0.4141 - pearson_correlation: 0.1884 - euclidean_distance: 0.6348
Epoch 25/300
38/38 [==============================] - 0s 908us/step - loss: 0.4093 - accuracy: 0.6182 - mae: 0.4093 - pearson_correlation: 0.1893 - euclidean_distance: 0.6290
Epoch 26/300
38/38 [==============================] - 0s 913us/step - loss: 0.4053 - accuracy: 0.6274 - mae: 0.4053 - pearson_correlation: 0.1876 - euclidean_distance: 0.6230
Epoch 27/300
38/38 [==============================] - 0s 926us/step - loss: 0.3997 - accuracy: 0.6168 - mae: 0.3997 - pearson_correlation: 0.1836 - euclidean_distance: 0.6164
Epoch 28/300
38/38 [==============================] - 0s 919us/step - loss: 0.3949 - accuracy: 0.6186 - mae: 0.3949 - pearson_correlation: 0.1864 - euclidean_distance: 0.6096
Epoch 29/300
38/38 [==============================] - 0s 911us/step - loss: 0.3919 - accuracy: 0.6182 - mae: 0.3919 - pearson_correlation: 0.1830 - euclidean_distance: 0.6048
Epoch 30/300
38/38 [==============================] - 0s 909us/step - loss: 0.3884 - accuracy: 0.6107 - mae: 0.3884 - pearson_correlation: 0.1810 - euclidean_distance: 0.5997
Epoch 31/300
38/38 [==============================] - 0s 911us/step - loss: 0.3839 - accuracy: 0.6014 - mae: 0.3839 - pearson_correlation: 0.1795 - euclidean_distance: 0.5941
Epoch 32/300
38/38 [==============================] - 0s 909us/step - loss: 0.3791 - accuracy: 0.6058 - mae: 0.3791 - pearson_correlation: 0.1854 - euclidean_distance: 0.5872
Epoch 33/300
38/38 [==============================] - 0s 916us/step - loss: 0.3753 - accuracy: 0.6151 - mae: 0.3753 - pearson_correlation: 0.1809 - euclidean_distance: 0.5819
Epoch 34/300
38/38 [==============================] - 0s 924us/step - loss: 0.3711 - accuracy: 0.6005 - mae: 0.3711 - pearson_correlation: 0.1784 - euclidean_distance: 0.5766
Epoch 35/300
38/38 [==============================] - 0s 915us/step - loss: 0.3670 - accuracy: 0.6049 - mae: 0.3670 - pearson_correlation: 0.1821 - euclidean_distance: 0.5706
Epoch 36/300
38/38 [==============================] - 0s 928us/step - loss: 0.3619 - accuracy: 0.6063 - mae: 0.3619 - pearson_correlation: 0.1798 - euclidean_distance: 0.5636
Epoch 37/300
38/38 [==============================] - 0s 929us/step - loss: 0.3578 - accuracy: 0.5926 - mae: 0.3578 - pearson_correlation: 0.1748 - euclidean_distance: 0.5585
Epoch 38/300
38/38 [==============================] - 0s 919us/step - loss: 0.3541 - accuracy: 0.5913 - mae: 0.3541 - pearson_correlation: 0.1761 - euclidean_distance: 0.5530
Epoch 39/300
38/38 [==============================] - 0s 917us/step - loss: 0.3497 - accuracy: 0.5899 - mae: 0.3497 - pearson_correlation: 0.1775 - euclidean_distance: 0.5473
Epoch 40/300
38/38 [==============================] - 0s 957us/step - loss: 0.3447 - accuracy: 0.5864 - mae: 0.3447 - pearson_correlation: 0.1780 - euclidean_distance: 0.5401
Epoch 41/300
38/38 [==============================] - 0s 928us/step - loss: 0.3394 - accuracy: 0.5864 - mae: 0.3394 - pearson_correlation: 0.1815 - euclidean_distance: 0.5325
Epoch 42/300
38/38 [==============================] - 0s 940us/step - loss: 0.3365 - accuracy: 0.5807 - mae: 0.3365 - pearson_correlation: 0.1749 - euclidean_distance: 0.5290
Epoch 43/300
38/38 [==============================] - 0s 939us/step - loss: 0.3335 - accuracy: 0.5794 - mae: 0.3335 - pearson_correlation: 0.1728 - euclidean_distance: 0.5243
Epoch 44/300
38/38 [==============================] - 0s 972us/step - loss: 0.3277 - accuracy: 0.5802 - mae: 0.3277 - pearson_correlation: 0.1782 - euclidean_distance: 0.5173
Epoch 45/300
38/38 [==============================] - 0s 916us/step - loss: 0.3236 - accuracy: 0.5798 - mae: 0.3236 - pearson_correlation: 0.1799 - euclidean_distance: 0.5111
Epoch 46/300
38/38 [==============================] - 0s 912us/step - loss: 0.3194 - accuracy: 0.5758 - mae: 0.3194 - pearson_correlation: 0.1775 - euclidean_distance: 0.5051
Epoch 47/300
38/38 [==============================] - 0s 924us/step - loss: 0.3152 - accuracy: 0.5705 - mae: 0.3152 - pearson_correlation: 0.1788 - euclidean_distance: 0.4991
Epoch 48/300
38/38 [==============================] - 0s 936us/step - loss: 0.3100 - accuracy: 0.5710 - mae: 0.3100 - pearson_correlation: 0.1801 - euclidean_distance: 0.4926
Epoch 49/300
38/38 [==============================] - 0s 913us/step - loss: 0.3080 - accuracy: 0.5701 - mae: 0.3080 - pearson_correlation: 0.1764 - euclidean_distance: 0.4891
Epoch 50/300
38/38 [==============================] - 0s 914us/step - loss: 0.3032 - accuracy: 0.5719 - mae: 0.3032 - pearson_correlation: 0.1790 - euclidean_distance: 0.4830
Epoch 51/300
38/38 [==============================] - 0s 921us/step - loss: 0.3005 - accuracy: 0.5780 - mae: 0.3005 - pearson_correlation: 0.1720 - euclidean_distance: 0.4789
Epoch 52/300
38/38 [==============================] - 0s 912us/step - loss: 0.2955 - accuracy: 0.5635 - mae: 0.2955 - pearson_correlation: 0.1770 - euclidean_distance: 0.4726
Epoch 53/300
38/38 [==============================] - 0s 942us/step - loss: 0.2931 - accuracy: 0.5745 - mae: 0.2931 - pearson_correlation: 0.1795 - euclidean_distance: 0.4685
Epoch 54/300
38/38 [==============================] - 0s 942us/step - loss: 0.2884 - accuracy: 0.5754 - mae: 0.2884 - pearson_correlation: 0.1805 - euclidean_distance: 0.4629
Epoch 55/300
38/38 [==============================] - 0s 954us/step - loss: 0.2847 - accuracy: 0.5780 - mae: 0.2847 - pearson_correlation: 0.1777 - euclidean_distance: 0.4569
Epoch 56/300
38/38 [==============================] - 0s 909us/step - loss: 0.2804 - accuracy: 0.5666 - mae: 0.2804 - pearson_correlation: 0.1833 - euclidean_distance: 0.4507
Epoch 57/300
38/38 [==============================] - 0s 952us/step - loss: 0.2794 - accuracy: 0.5683 - mae: 0.2794 - pearson_correlation: 0.1809 - euclidean_distance: 0.4496
Epoch 58/300
38/38 [==============================] - 0s 949us/step - loss: 0.2747 - accuracy: 0.5675 - mae: 0.2747 - pearson_correlation: 0.1816 - euclidean_distance: 0.4427
Epoch 59/300
38/38 [==============================] - 0s 933us/step - loss: 0.2691 - accuracy: 0.5613 - mae: 0.2691 - pearson_correlation: 0.1826 - euclidean_distance: 0.4354
Epoch 60/300
38/38 [==============================] - 0s 943us/step - loss: 0.2667 - accuracy: 0.5697 - mae: 0.2667 - pearson_correlation: 0.1801 - euclidean_distance: 0.4316
Epoch 61/300
38/38 [==============================] - 0s 908us/step - loss: 0.2635 - accuracy: 0.5679 - mae: 0.2635 - pearson_correlation: 0.1817 - euclidean_distance: 0.4274
Epoch 62/300
38/38 [==============================] - 0s 960us/step - loss: 0.2597 - accuracy: 0.5639 - mae: 0.2597 - pearson_correlation: 0.1879 - euclidean_distance: 0.4218
Epoch 63/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2569 - accuracy: 0.5631 - mae: 0.2569 - pearson_correlation: 0.1870 - euclidean_distance: 0.4178
Epoch 64/300
38/38 [==============================] - 0s 914us/step - loss: 0.2552 - accuracy: 0.5688 - mae: 0.2552 - pearson_correlation: 0.1901 - euclidean_distance: 0.4148
Epoch 65/300
38/38 [==============================] - 0s 910us/step - loss: 0.2512 - accuracy: 0.5705 - mae: 0.2512 - pearson_correlation: 0.1883 - euclidean_distance: 0.4105
Epoch 66/300
38/38 [==============================] - 0s 904us/step - loss: 0.2480 - accuracy: 0.5710 - mae: 0.2480 - pearson_correlation: 0.1954 - euclidean_distance: 0.4051
Epoch 67/300
38/38 [==============================] - 0s 907us/step - loss: 0.2462 - accuracy: 0.5714 - mae: 0.2462 - pearson_correlation: 0.1902 - euclidean_distance: 0.4034
Epoch 68/300
38/38 [==============================] - 0s 1ms/step - loss: 0.2434 - accuracy: 0.5745 - mae: 0.2434 - pearson_correlation: 0.1973 - euclidean_distance: 0.3978
Epoch 69/300
38/38 [==============================] - 0s 997us/step - loss: 0.2392 - accuracy: 0.5736 - mae: 0.2392 - pearson_correlation: 0.2009 - euclidean_distance: 0.3917
Epoch 70/300
38/38 [==============================] - 0s 961us/step - loss: 0.2384 - accuracy: 0.5701 - mae: 0.2384 - pearson_correlation: 0.1962 - euclidean_distance: 0.3917
Epoch 71/300
38/38 [==============================] - 0s 936us/step - loss: 0.2354 - accuracy: 0.5745 - mae: 0.2354 - pearson_correlation: 0.1995 - euclidean_distance: 0.3865
Epoch 72/300
38/38 [==============================] - 0s 939us/step - loss: 0.2321 - accuracy: 0.5732 - mae: 0.2321 - pearson_correlation: 0.1989 - euclidean_distance: 0.3823
Epoch 73/300
38/38 [==============================] - 0s 930us/step - loss: 0.2288 - accuracy: 0.5714 - mae: 0.2288 - pearson_correlation: 0.2040 - euclidean_distance: 0.3777
Epoch 74/300
38/38 [==============================] - 0s 933us/step - loss: 0.2289 - accuracy: 0.5745 - mae: 0.2289 - pearson_correlation: 0.2121 - euclidean_distance: 0.3768
Epoch 75/300
38/38 [==============================] - 0s 909us/step - loss: 0.2248 - accuracy: 0.5736 - mae: 0.2248 - pearson_correlation: 0.2137 - euclidean_distance: 0.3711
Epoch 76/300
38/38 [==============================] - 0s 911us/step - loss: 0.2251 - accuracy: 0.5789 - mae: 0.2251 - pearson_correlation: 0.2163 - euclidean_distance: 0.3709
Epoch 77/300
38/38 [==============================] - 0s 905us/step - loss: 0.2246 - accuracy: 0.5794 - mae: 0.2246 - pearson_correlation: 0.2179 - euclidean_distance: 0.3703
Epoch 78/300
38/38 [==============================] - 0s 910us/step - loss: 0.2195 - accuracy: 0.5745 - mae: 0.2195 - pearson_correlation: 0.2191 - euclidean_distance: 0.3634
Epoch 79/300
38/38 [==============================] - 0s 909us/step - loss: 0.2180 - accuracy: 0.5758 - mae: 0.2180 - pearson_correlation: 0.2221 - euclidean_distance: 0.3604
Epoch 80/300
38/38 [==============================] - 0s 910us/step - loss: 0.2171 - accuracy: 0.5741 - mae: 0.2171 - pearson_correlation: 0.2262 - euclidean_distance: 0.3596
Epoch 81/300
38/38 [==============================] - 0s 928us/step - loss: 0.2134 - accuracy: 0.5789 - mae: 0.2134 - pearson_correlation: 0.2276 - euclidean_distance: 0.3541
Epoch 82/300
38/38 [==============================] - 0s 931us/step - loss: 0.2134 - accuracy: 0.5855 - mae: 0.2134 - pearson_correlation: 0.2320 - euclidean_distance: 0.3532
Epoch 83/300
38/38 [==============================] - 0s 907us/step - loss: 0.2116 - accuracy: 0.5820 - mae: 0.2116 - pearson_correlation: 0.2384 - euclidean_distance: 0.3507
Epoch 84/300
38/38 [==============================] - 0s 963us/step - loss: 0.2110 - accuracy: 0.5802 - mae: 0.2110 - pearson_correlation: 0.2433 - euclidean_distance: 0.3493
Epoch 85/300
38/38 [==============================] - 0s 929us/step - loss: 0.2093 - accuracy: 0.5825 - mae: 0.2093 - pearson_correlation: 0.2392 - euclidean_distance: 0.3468
Epoch 86/300
38/38 [==============================] - 0s 907us/step - loss: 0.2062 - accuracy: 0.5847 - mae: 0.2062 - pearson_correlation: 0.2490 - euclidean_distance: 0.3432
Epoch 87/300
38/38 [==============================] - 0s 919us/step - loss: 0.2049 - accuracy: 0.5807 - mae: 0.2049 - pearson_correlation: 0.2534 - euclidean_distance: 0.3402
Epoch 88/300
38/38 [==============================] - 0s 913us/step - loss: 0.2025 - accuracy: 0.5851 - mae: 0.2025 - pearson_correlation: 0.2561 - euclidean_distance: 0.3371
Epoch 89/300
38/38 [==============================] - 0s 948us/step - loss: 0.2010 - accuracy: 0.5869 - mae: 0.2010 - pearson_correlation: 0.2635 - euclidean_distance: 0.3335
Epoch 90/300
38/38 [==============================] - 0s 929us/step - loss: 0.2015 - accuracy: 0.5825 - mae: 0.2015 - pearson_correlation: 0.2602 - euclidean_distance: 0.3343
Epoch 91/300
38/38 [==============================] - 0s 996us/step - loss: 0.2007 - accuracy: 0.5891 - mae: 0.2007 - pearson_correlation: 0.2656 - euclidean_distance: 0.3321
Epoch 92/300
38/38 [==============================] - 0s 904us/step - loss: 0.1976 - accuracy: 0.5899 - mae: 0.1976 - pearson_correlation: 0.2723 - euclidean_distance: 0.3289
Epoch 93/300
38/38 [==============================] - 0s 902us/step - loss: 0.1971 - accuracy: 0.5957 - mae: 0.1971 - pearson_correlation: 0.2809 - euclidean_distance: 0.3265
Epoch 94/300
38/38 [==============================] - 0s 909us/step - loss: 0.1951 - accuracy: 0.5952 - mae: 0.1951 - pearson_correlation: 0.2801 - euclidean_distance: 0.3235
Epoch 95/300
38/38 [==============================] - 0s 907us/step - loss: 0.1952 - accuracy: 0.5970 - mae: 0.1952 - pearson_correlation: 0.2800 - euclidean_distance: 0.3235
Epoch 96/300
38/38 [==============================] - 0s 935us/step - loss: 0.1927 - accuracy: 0.5922 - mae: 0.1927 - pearson_correlation: 0.2897 - euclidean_distance: 0.3198
Epoch 97/300
38/38 [==============================] - 0s 908us/step - loss: 0.1932 - accuracy: 0.5952 - mae: 0.1932 - pearson_correlation: 0.2956 - euclidean_distance: 0.3196
Epoch 98/300
38/38 [==============================] - 0s 914us/step - loss: 0.1887 - accuracy: 0.5957 - mae: 0.1887 - pearson_correlation: 0.3004 - euclidean_distance: 0.3134
Epoch 99/300
38/38 [==============================] - 0s 919us/step - loss: 0.1886 - accuracy: 0.5983 - mae: 0.1886 - pearson_correlation: 0.3043 - euclidean_distance: 0.3137
Epoch 100/300
38/38 [==============================] - 0s 909us/step - loss: 0.1891 - accuracy: 0.6071 - mae: 0.1891 - pearson_correlation: 0.3084 - euclidean_distance: 0.3133
Epoch 101/300
38/38 [==============================] - 0s 940us/step - loss: 0.1871 - accuracy: 0.6023 - mae: 0.1871 - pearson_correlation: 0.3096 - euclidean_distance: 0.3104
Epoch 102/300
38/38 [==============================] - 0s 935us/step - loss: 0.1861 - accuracy: 0.6054 - mae: 0.1861 - pearson_correlation: 0.3137 - euclidean_distance: 0.3088
Epoch 103/300
38/38 [==============================] - 0s 903us/step - loss: 0.1860 - accuracy: 0.6080 - mae: 0.1860 - pearson_correlation: 0.3163 - euclidean_distance: 0.3088
Epoch 104/300
38/38 [==============================] - 0s 909us/step - loss: 0.1841 - accuracy: 0.6120 - mae: 0.1841 - pearson_correlation: 0.3250 - euclidean_distance: 0.3051
Epoch 105/300
38/38 [==============================] - 0s 911us/step - loss: 0.1842 - accuracy: 0.6173 - mae: 0.1842 - pearson_correlation: 0.3262 - euclidean_distance: 0.3047
Epoch 106/300
38/38 [==============================] - 0s 938us/step - loss: 0.1825 - accuracy: 0.6129 - mae: 0.1825 - pearson_correlation: 0.3321 - euclidean_distance: 0.3030
Epoch 107/300
38/38 [==============================] - 0s 917us/step - loss: 0.1827 - accuracy: 0.6142 - mae: 0.1827 - pearson_correlation: 0.3357 - euclidean_distance: 0.3024
Epoch 108/300
38/38 [==============================] - 0s 917us/step - loss: 0.1798 - accuracy: 0.6186 - mae: 0.1798 - pearson_correlation: 0.3432 - euclidean_distance: 0.2973
Epoch 109/300
38/38 [==============================] - 0s 946us/step - loss: 0.1797 - accuracy: 0.6230 - mae: 0.1797 - pearson_correlation: 0.3371 - euclidean_distance: 0.2977
Epoch 110/300
38/38 [==============================] - 0s 917us/step - loss: 0.1793 - accuracy: 0.6164 - mae: 0.1793 - pearson_correlation: 0.3479 - euclidean_distance: 0.2965
Epoch 111/300
38/38 [==============================] - 0s 911us/step - loss: 0.1771 - accuracy: 0.6305 - mae: 0.1771 - pearson_correlation: 0.3549 - euclidean_distance: 0.2930
Epoch 112/300
38/38 [==============================] - 0s 938us/step - loss: 0.1759 - accuracy: 0.6199 - mae: 0.1759 - pearson_correlation: 0.3546 - euclidean_distance: 0.2917
Epoch 113/300
38/38 [==============================] - 0s 879us/step - loss: 0.1760 - accuracy: 0.6226 - mae: 0.1760 - pearson_correlation: 0.3615 - euclidean_distance: 0.2914
Epoch 114/300
38/38 [==============================] - 0s 947us/step - loss: 0.1731 - accuracy: 0.6257 - mae: 0.1731 - pearson_correlation: 0.3687 - euclidean_distance: 0.2870
Epoch 115/300
38/38 [==============================] - 0s 929us/step - loss: 0.1737 - accuracy: 0.6336 - mae: 0.1737 - pearson_correlation: 0.3714 - euclidean_distance: 0.2874
Epoch 116/300
38/38 [==============================] - 0s 908us/step - loss: 0.1752 - accuracy: 0.6402 - mae: 0.1752 - pearson_correlation: 0.3693 - euclidean_distance: 0.2890
Epoch 117/300
38/38 [==============================] - 0s 961us/step - loss: 0.1708 - accuracy: 0.6318 - mae: 0.1708 - pearson_correlation: 0.3772 - euclidean_distance: 0.2829
Epoch 118/300
38/38 [==============================] - 0s 946us/step - loss: 0.1713 - accuracy: 0.6424 - mae: 0.1713 - pearson_correlation: 0.3821 - euclidean_distance: 0.2833
Epoch 119/300
38/38 [==============================] - 0s 913us/step - loss: 0.1699 - accuracy: 0.6429 - mae: 0.1699 - pearson_correlation: 0.3859 - euclidean_distance: 0.2815
Epoch 120/300
38/38 [==============================] - 0s 908us/step - loss: 0.1675 - accuracy: 0.6398 - mae: 0.1675 - pearson_correlation: 0.3940 - euclidean_distance: 0.2778
Epoch 121/300
38/38 [==============================] - 0s 914us/step - loss: 0.1679 - accuracy: 0.6393 - mae: 0.1679 - pearson_correlation: 0.3932 - euclidean_distance: 0.2782
Epoch 122/300
38/38 [==============================] - 0s 930us/step - loss: 0.1660 - accuracy: 0.6481 - mae: 0.1660 - pearson_correlation: 0.4015 - euclidean_distance: 0.2747
Epoch 123/300
38/38 [==============================] - 0s 921us/step - loss: 0.1672 - accuracy: 0.6490 - mae: 0.1672 - pearson_correlation: 0.3978 - euclidean_distance: 0.2770
Epoch 124/300
38/38 [==============================] - 0s 907us/step - loss: 0.1670 - accuracy: 0.6592 - mae: 0.1670 - pearson_correlation: 0.4075 - euclidean_distance: 0.2762
Epoch 125/300
38/38 [==============================] - 0s 906us/step - loss: 0.1656 - accuracy: 0.6605 - mae: 0.1656 - pearson_correlation: 0.4108 - euclidean_distance: 0.2733
Epoch 126/300
38/38 [==============================] - 0s 918us/step - loss: 0.1662 - accuracy: 0.6662 - mae: 0.1662 - pearson_correlation: 0.4085 - euclidean_distance: 0.2741
Epoch 127/300
38/38 [==============================] - 0s 910us/step - loss: 0.1629 - accuracy: 0.6680 - mae: 0.1629 - pearson_correlation: 0.4184 - euclidean_distance: 0.2691
Epoch 128/300
38/38 [==============================] - 0s 907us/step - loss: 0.1619 - accuracy: 0.6689 - mae: 0.1619 - pearson_correlation: 0.4235 - euclidean_distance: 0.2674
Epoch 129/300
38/38 [==============================] - 0s 932us/step - loss: 0.1605 - accuracy: 0.6675 - mae: 0.1605 - pearson_correlation: 0.4228 - euclidean_distance: 0.2660
Epoch 130/300
38/38 [==============================] - 0s 885us/step - loss: 0.1619 - accuracy: 0.6698 - mae: 0.1619 - pearson_correlation: 0.4203 - euclidean_distance: 0.2680
Epoch 131/300
38/38 [==============================] - 0s 943us/step - loss: 0.1609 - accuracy: 0.6715 - mae: 0.1609 - pearson_correlation: 0.4276 - euclidean_distance: 0.2662
Epoch 132/300
38/38 [==============================] - 0s 1000us/step - loss: 0.1591 - accuracy: 0.6795 - mae: 0.1591 - pearson_correlation: 0.4375 - euclidean_distance: 0.2641
Epoch 133/300
38/38 [==============================] - 0s 928us/step - loss: 0.1609 - accuracy: 0.6852 - mae: 0.1609 - pearson_correlation: 0.4328 - euclidean_distance: 0.2652
Epoch 134/300
38/38 [==============================] - 0s 917us/step - loss: 0.1572 - accuracy: 0.6861 - mae: 0.1572 - pearson_correlation: 0.4414 - euclidean_distance: 0.2606
Epoch 135/300
38/38 [==============================] - 0s 910us/step - loss: 0.1555 - accuracy: 0.6869 - mae: 0.1555 - pearson_correlation: 0.4432 - euclidean_distance: 0.2571
Epoch 136/300
38/38 [==============================] - 0s 905us/step - loss: 0.1585 - accuracy: 0.6989 - mae: 0.1585 - pearson_correlation: 0.4462 - euclidean_distance: 0.2612
Epoch 137/300
38/38 [==============================] - 0s 908us/step - loss: 0.1565 - accuracy: 0.6892 - mae: 0.1565 - pearson_correlation: 0.4555 - euclidean_distance: 0.2577
Epoch 138/300
38/38 [==============================] - 0s 914us/step - loss: 0.1543 - accuracy: 0.7024 - mae: 0.1543 - pearson_correlation: 0.4620 - euclidean_distance: 0.2548
Epoch 139/300
38/38 [==============================] - 0s 944us/step - loss: 0.1530 - accuracy: 0.7028 - mae: 0.1530 - pearson_correlation: 0.4661 - euclidean_distance: 0.2524
Epoch 140/300
38/38 [==============================] - 0s 909us/step - loss: 0.1558 - accuracy: 0.7077 - mae: 0.1558 - pearson_correlation: 0.4594 - euclidean_distance: 0.2561
Epoch 141/300
38/38 [==============================] - 0s 901us/step - loss: 0.1519 - accuracy: 0.7134 - mae: 0.1519 - pearson_correlation: 0.4640 - euclidean_distance: 0.2508
Epoch 142/300
38/38 [==============================] - 0s 957us/step - loss: 0.1529 - accuracy: 0.7213 - mae: 0.1529 - pearson_correlation: 0.4737 - euclidean_distance: 0.2523
Epoch 143/300
38/38 [==============================] - 0s 901us/step - loss: 0.1521 - accuracy: 0.7099 - mae: 0.1521 - pearson_correlation: 0.4688 - euclidean_distance: 0.2501
Epoch 144/300
38/38 [==============================] - 0s 951us/step - loss: 0.1506 - accuracy: 0.7297 - mae: 0.1506 - pearson_correlation: 0.4751 - euclidean_distance: 0.2483
Epoch 145/300
38/38 [==============================] - 0s 910us/step - loss: 0.1516 - accuracy: 0.7293 - mae: 0.1516 - pearson_correlation: 0.4741 - euclidean_distance: 0.2501
Epoch 146/300
38/38 [==============================] - 0s 906us/step - loss: 0.1498 - accuracy: 0.7266 - mae: 0.1498 - pearson_correlation: 0.4819 - euclidean_distance: 0.2469
Epoch 147/300
38/38 [==============================] - 0s 906us/step - loss: 0.1518 - accuracy: 0.7381 - mae: 0.1518 - pearson_correlation: 0.4821 - euclidean_distance: 0.2497
Epoch 148/300
38/38 [==============================] - 0s 995us/step - loss: 0.1467 - accuracy: 0.7399 - mae: 0.1467 - pearson_correlation: 0.4888 - euclidean_distance: 0.2421
Epoch 149/300
38/38 [==============================] - 0s 930us/step - loss: 0.1472 - accuracy: 0.7531 - mae: 0.1472 - pearson_correlation: 0.4945 - euclidean_distance: 0.2424
Epoch 150/300
38/38 [==============================] - 0s 920us/step - loss: 0.1493 - accuracy: 0.7549 - mae: 0.1493 - pearson_correlation: 0.4882 - euclidean_distance: 0.2459
Epoch 151/300
38/38 [==============================] - 0s 910us/step - loss: 0.1511 - accuracy: 0.7566 - mae: 0.1511 - pearson_correlation: 0.4933 - euclidean_distance: 0.2477
Epoch 152/300
38/38 [==============================] - 0s 898us/step - loss: 0.1480 - accuracy: 0.7597 - mae: 0.1480 - pearson_correlation: 0.4964 - euclidean_distance: 0.2432
Epoch 153/300
38/38 [==============================] - 0s 911us/step - loss: 0.1425 - accuracy: 0.7593 - mae: 0.1425 - pearson_correlation: 0.5054 - euclidean_distance: 0.2355
Epoch 154/300
38/38 [==============================] - 0s 926us/step - loss: 0.1455 - accuracy: 0.7650 - mae: 0.1455 - pearson_correlation: 0.5025 - euclidean_distance: 0.2395
Epoch 155/300
38/38 [==============================] - 0s 923us/step - loss: 0.1432 - accuracy: 0.7813 - mae: 0.1432 - pearson_correlation: 0.5090 - euclidean_distance: 0.2365
Epoch 156/300
38/38 [==============================] - 0s 906us/step - loss: 0.1426 - accuracy: 0.7743 - mae: 0.1426 - pearson_correlation: 0.5145 - euclidean_distance: 0.2346
Epoch 157/300
38/38 [==============================] - 0s 902us/step - loss: 0.1407 - accuracy: 0.7751 - mae: 0.1407 - pearson_correlation: 0.5208 - euclidean_distance: 0.2316
Epoch 158/300
38/38 [==============================] - 0s 893us/step - loss: 0.1413 - accuracy: 0.7967 - mae: 0.1413 - pearson_correlation: 0.5239 - euclidean_distance: 0.2326
Epoch 159/300
38/38 [==============================] - 0s 964us/step - loss: 0.1418 - accuracy: 0.7879 - mae: 0.1418 - pearson_correlation: 0.5190 - euclidean_distance: 0.2334
Epoch 160/300
38/38 [==============================] - 0s 935us/step - loss: 0.1400 - accuracy: 0.7888 - mae: 0.1400 - pearson_correlation: 0.5204 - euclidean_distance: 0.2304
Epoch 161/300
38/38 [==============================] - 0s 916us/step - loss: 0.1390 - accuracy: 0.8038 - mae: 0.1390 - pearson_correlation: 0.5312 - euclidean_distance: 0.2294
Epoch 162/300
38/38 [==============================] - 0s 927us/step - loss: 0.1400 - accuracy: 0.8139 - mae: 0.1400 - pearson_correlation: 0.5282 - euclidean_distance: 0.2302
Epoch 163/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1389 - accuracy: 0.8157 - mae: 0.1389 - pearson_correlation: 0.5323 - euclidean_distance: 0.2288
Epoch 164/300
38/38 [==============================] - 0s 942us/step - loss: 0.1388 - accuracy: 0.8228 - mae: 0.1388 - pearson_correlation: 0.5373 - euclidean_distance: 0.2280
Epoch 165/300
38/38 [==============================] - 0s 915us/step - loss: 0.1404 - accuracy: 0.8205 - mae: 0.1404 - pearson_correlation: 0.5326 - euclidean_distance: 0.2299
Epoch 166/300
38/38 [==============================] - 0s 941us/step - loss: 0.1378 - accuracy: 0.8219 - mae: 0.1378 - pearson_correlation: 0.5405 - euclidean_distance: 0.2256
Epoch 167/300
38/38 [==============================] - 0s 903us/step - loss: 0.1387 - accuracy: 0.8285 - mae: 0.1387 - pearson_correlation: 0.5409 - euclidean_distance: 0.2282
Epoch 168/300
38/38 [==============================] - 0s 909us/step - loss: 0.1362 - accuracy: 0.8289 - mae: 0.1362 - pearson_correlation: 0.5452 - euclidean_distance: 0.2240
Epoch 169/300
38/38 [==============================] - 0s 909us/step - loss: 0.1360 - accuracy: 0.8263 - mae: 0.1360 - pearson_correlation: 0.5470 - euclidean_distance: 0.2236
Epoch 170/300
38/38 [==============================] - 0s 958us/step - loss: 0.1353 - accuracy: 0.8408 - mae: 0.1353 - pearson_correlation: 0.5484 - euclidean_distance: 0.2225
Epoch 171/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1363 - accuracy: 0.8382 - mae: 0.1363 - pearson_correlation: 0.5461 - euclidean_distance: 0.2235
Epoch 172/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1346 - accuracy: 0.8470 - mae: 0.1346 - pearson_correlation: 0.5491 - euclidean_distance: 0.2211
Epoch 173/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1325 - accuracy: 0.8523 - mae: 0.1325 - pearson_correlation: 0.5616 - euclidean_distance: 0.2173
Epoch 174/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1338 - accuracy: 0.8563 - mae: 0.1338 - pearson_correlation: 0.5578 - euclidean_distance: 0.2192
Epoch 175/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1345 - accuracy: 0.8611 - mae: 0.1345 - pearson_correlation: 0.5550 - euclidean_distance: 0.2208
Epoch 176/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1324 - accuracy: 0.8611 - mae: 0.1324 - pearson_correlation: 0.5613 - euclidean_distance: 0.2177
Epoch 177/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1314 - accuracy: 0.8616 - mae: 0.1314 - pearson_correlation: 0.5633 - euclidean_distance: 0.2159
Epoch 178/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1297 - accuracy: 0.8686 - mae: 0.1297 - pearson_correlation: 0.5761 - euclidean_distance: 0.2134
Epoch 179/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1317 - accuracy: 0.8757 - mae: 0.1317 - pearson_correlation: 0.5710 - euclidean_distance: 0.2155
Epoch 180/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1305 - accuracy: 0.8713 - mae: 0.1305 - pearson_correlation: 0.5716 - euclidean_distance: 0.2146
Epoch 181/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1303 - accuracy: 0.8810 - mae: 0.1303 - pearson_correlation: 0.5743 - euclidean_distance: 0.2141
Epoch 182/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1297 - accuracy: 0.8761 - mae: 0.1297 - pearson_correlation: 0.5776 - euclidean_distance: 0.2130
Epoch 183/300
38/38 [==============================] - 0s 2ms/step - loss: 0.1298 - accuracy: 0.8801 - mae: 0.1298 - pearson_correlation: 0.5759 - euclidean_distance: 0.2131
Epoch 184/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1288 - accuracy: 0.8814 - mae: 0.1288 - pearson_correlation: 0.5805 - euclidean_distance: 0.2112
Epoch 185/300
38/38 [==============================] - 0s 952us/step - loss: 0.1275 - accuracy: 0.8814 - mae: 0.1275 - pearson_correlation: 0.5846 - euclidean_distance: 0.2101
Epoch 186/300
38/38 [==============================] - 0s 934us/step - loss: 0.1270 - accuracy: 0.8854 - mae: 0.1270 - pearson_correlation: 0.5852 - euclidean_distance: 0.2086
Epoch 187/300
38/38 [==============================] - 0s 994us/step - loss: 0.1266 - accuracy: 0.8893 - mae: 0.1266 - pearson_correlation: 0.5884 - euclidean_distance: 0.2084
Epoch 188/300
38/38 [==============================] - 0s 939us/step - loss: 0.1283 - accuracy: 0.8955 - mae: 0.1283 - pearson_correlation: 0.5858 - euclidean_distance: 0.2105
Epoch 189/300
38/38 [==============================] - 0s 991us/step - loss: 0.1258 - accuracy: 0.8924 - mae: 0.1258 - pearson_correlation: 0.5949 - euclidean_distance: 0.2068
Epoch 190/300
38/38 [==============================] - 0s 967us/step - loss: 0.1272 - accuracy: 0.8955 - mae: 0.1272 - pearson_correlation: 0.5963 - euclidean_distance: 0.2084
Epoch 191/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1237 - accuracy: 0.8924 - mae: 0.1237 - pearson_correlation: 0.5998 - euclidean_distance: 0.2032
Epoch 192/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1249 - accuracy: 0.9052 - mae: 0.1249 - pearson_correlation: 0.5971 - euclidean_distance: 0.2046
Epoch 193/300
38/38 [==============================] - 0s 991us/step - loss: 0.1235 - accuracy: 0.8959 - mae: 0.1235 - pearson_correlation: 0.6039 - euclidean_distance: 0.2029
Epoch 194/300
38/38 [==============================] - 0s 899us/step - loss: 0.1219 - accuracy: 0.8995 - mae: 0.1219 - pearson_correlation: 0.6063 - euclidean_distance: 0.2006
Epoch 195/300
38/38 [==============================] - 0s 904us/step - loss: 0.1244 - accuracy: 0.9052 - mae: 0.1244 - pearson_correlation: 0.6065 - euclidean_distance: 0.2040
Epoch 196/300
38/38 [==============================] - 0s 960us/step - loss: 0.1232 - accuracy: 0.9065 - mae: 0.1232 - pearson_correlation: 0.6079 - euclidean_distance: 0.2027
Epoch 197/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1236 - accuracy: 0.9070 - mae: 0.1236 - pearson_correlation: 0.6055 - euclidean_distance: 0.2027
Epoch 198/300
38/38 [==============================] - 0s 962us/step - loss: 0.1207 - accuracy: 0.9065 - mae: 0.1207 - pearson_correlation: 0.6112 - euclidean_distance: 0.1983
Epoch 199/300
38/38 [==============================] - 0s 940us/step - loss: 0.1217 - accuracy: 0.9096 - mae: 0.1217 - pearson_correlation: 0.6113 - euclidean_distance: 0.2000
Epoch 200/300
38/38 [==============================] - 0s 986us/step - loss: 0.1201 - accuracy: 0.9096 - mae: 0.1201 - pearson_correlation: 0.6135 - euclidean_distance: 0.1977
Epoch 201/300
38/38 [==============================] - 0s 926us/step - loss: 0.1191 - accuracy: 0.9123 - mae: 0.1191 - pearson_correlation: 0.6207 - euclidean_distance: 0.1959
Epoch 202/300
38/38 [==============================] - 0s 915us/step - loss: 0.1219 - accuracy: 0.9136 - mae: 0.1219 - pearson_correlation: 0.6162 - euclidean_distance: 0.1993
Epoch 203/300
38/38 [==============================] - 0s 913us/step - loss: 0.1212 - accuracy: 0.9123 - mae: 0.1212 - pearson_correlation: 0.6190 - euclidean_distance: 0.1984
Epoch 204/300
38/38 [==============================] - 0s 903us/step - loss: 0.1207 - accuracy: 0.9175 - mae: 0.1207 - pearson_correlation: 0.6211 - euclidean_distance: 0.1976
Epoch 205/300
38/38 [==============================] - 0s 947us/step - loss: 0.1176 - accuracy: 0.9189 - mae: 0.1176 - pearson_correlation: 0.6259 - euclidean_distance: 0.1936
Epoch 206/300
38/38 [==============================] - 0s 934us/step - loss: 0.1186 - accuracy: 0.9189 - mae: 0.1186 - pearson_correlation: 0.6285 - euclidean_distance: 0.1947
Epoch 207/300
38/38 [==============================] - 0s 890us/step - loss: 0.1178 - accuracy: 0.9220 - mae: 0.1178 - pearson_correlation: 0.6290 - euclidean_distance: 0.1942
Epoch 208/300
38/38 [==============================] - 0s 900us/step - loss: 0.1168 - accuracy: 0.9189 - mae: 0.1168 - pearson_correlation: 0.6365 - euclidean_distance: 0.1919
Epoch 209/300
38/38 [==============================] - 0s 959us/step - loss: 0.1189 - accuracy: 0.9215 - mae: 0.1189 - pearson_correlation: 0.6330 - euclidean_distance: 0.1948
Epoch 210/300
38/38 [==============================] - 0s 943us/step - loss: 0.1166 - accuracy: 0.9220 - mae: 0.1166 - pearson_correlation: 0.6359 - euclidean_distance: 0.1920
Epoch 211/300
38/38 [==============================] - 0s 901us/step - loss: 0.1164 - accuracy: 0.9224 - mae: 0.1164 - pearson_correlation: 0.6381 - euclidean_distance: 0.1911
Epoch 212/300
38/38 [==============================] - 0s 896us/step - loss: 0.1159 - accuracy: 0.9237 - mae: 0.1159 - pearson_correlation: 0.6405 - euclidean_distance: 0.1897
Epoch 213/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1169 - accuracy: 0.9281 - mae: 0.1169 - pearson_correlation: 0.6369 - euclidean_distance: 0.1916
Epoch 214/300
38/38 [==============================] - 0s 980us/step - loss: 0.1165 - accuracy: 0.9268 - mae: 0.1165 - pearson_correlation: 0.6388 - euclidean_distance: 0.1912
Epoch 215/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1167 - accuracy: 0.9272 - mae: 0.1167 - pearson_correlation: 0.6377 - euclidean_distance: 0.1913
Epoch 216/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1142 - accuracy: 0.9299 - mae: 0.1142 - pearson_correlation: 0.6492 - euclidean_distance: 0.1870
Epoch 217/300
38/38 [==============================] - 0s 935us/step - loss: 0.1142 - accuracy: 0.9317 - mae: 0.1142 - pearson_correlation: 0.6458 - euclidean_distance: 0.1869
Epoch 218/300
38/38 [==============================] - 0s 956us/step - loss: 0.1129 - accuracy: 0.9317 - mae: 0.1129 - pearson_correlation: 0.6470 - euclidean_distance: 0.1860
Epoch 219/300
38/38 [==============================] - 0s 971us/step - loss: 0.1146 - accuracy: 0.9330 - mae: 0.1146 - pearson_correlation: 0.6465 - euclidean_distance: 0.1875
Epoch 220/300
38/38 [==============================] - 0s 919us/step - loss: 0.1131 - accuracy: 0.9317 - mae: 0.1131 - pearson_correlation: 0.6521 - euclidean_distance: 0.1852
Epoch 221/300
38/38 [==============================] - 0s 927us/step - loss: 0.1125 - accuracy: 0.9330 - mae: 0.1125 - pearson_correlation: 0.6551 - euclidean_distance: 0.1843
Epoch 222/300
38/38 [==============================] - 0s 923us/step - loss: 0.1124 - accuracy: 0.9361 - mae: 0.1124 - pearson_correlation: 0.6561 - euclidean_distance: 0.1841
Epoch 223/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1130 - accuracy: 0.9325 - mae: 0.1130 - pearson_correlation: 0.6537 - euclidean_distance: 0.1847
Epoch 224/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1119 - accuracy: 0.9290 - mae: 0.1119 - pearson_correlation: 0.6554 - euclidean_distance: 0.1834
Epoch 225/300
38/38 [==============================] - 0s 996us/step - loss: 0.1124 - accuracy: 0.9347 - mae: 0.1124 - pearson_correlation: 0.6589 - euclidean_distance: 0.1843
Epoch 226/300
38/38 [==============================] - 0s 915us/step - loss: 0.1117 - accuracy: 0.9356 - mae: 0.1117 - pearson_correlation: 0.6588 - euclidean_distance: 0.1828
Epoch 227/300
38/38 [==============================] - 0s 934us/step - loss: 0.1107 - accuracy: 0.9361 - mae: 0.1107 - pearson_correlation: 0.6662 - euclidean_distance: 0.1806
Epoch 228/300
38/38 [==============================] - 0s 984us/step - loss: 0.1094 - accuracy: 0.9400 - mae: 0.1094 - pearson_correlation: 0.6656 - euclidean_distance: 0.1791
Epoch 229/300
38/38 [==============================] - 0s 983us/step - loss: 0.1113 - accuracy: 0.9369 - mae: 0.1113 - pearson_correlation: 0.6622 - euclidean_distance: 0.1819
Epoch 230/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1084 - accuracy: 0.9387 - mae: 0.1084 - pearson_correlation: 0.6703 - euclidean_distance: 0.1778
Epoch 231/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1081 - accuracy: 0.9361 - mae: 0.1081 - pearson_correlation: 0.6760 - euclidean_distance: 0.1770
Epoch 232/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1101 - accuracy: 0.9369 - mae: 0.1101 - pearson_correlation: 0.6683 - euclidean_distance: 0.1803
Epoch 233/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1064 - accuracy: 0.9414 - mae: 0.1064 - pearson_correlation: 0.6802 - euclidean_distance: 0.1749
Epoch 234/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1074 - accuracy: 0.9414 - mae: 0.1074 - pearson_correlation: 0.6728 - euclidean_distance: 0.1757
Epoch 235/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1058 - accuracy: 0.9427 - mae: 0.1058 - pearson_correlation: 0.6823 - euclidean_distance: 0.1733
Epoch 236/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1091 - accuracy: 0.9453 - mae: 0.1091 - pearson_correlation: 0.6724 - euclidean_distance: 0.1786
Epoch 237/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1067 - accuracy: 0.9427 - mae: 0.1067 - pearson_correlation: 0.6813 - euclidean_distance: 0.1747
Epoch 238/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1064 - accuracy: 0.9458 - mae: 0.1064 - pearson_correlation: 0.6842 - euclidean_distance: 0.1740
Epoch 239/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1086 - accuracy: 0.9449 - mae: 0.1086 - pearson_correlation: 0.6763 - euclidean_distance: 0.1781
Epoch 240/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1080 - accuracy: 0.9449 - mae: 0.1080 - pearson_correlation: 0.6818 - euclidean_distance: 0.1764
Epoch 241/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1051 - accuracy: 0.9436 - mae: 0.1051 - pearson_correlation: 0.6823 - euclidean_distance: 0.1723
Epoch 242/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1056 - accuracy: 0.9480 - mae: 0.1056 - pearson_correlation: 0.6857 - euclidean_distance: 0.1726
Epoch 243/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1029 - accuracy: 0.9484 - mae: 0.1029 - pearson_correlation: 0.6931 - euclidean_distance: 0.1689
Epoch 244/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1030 - accuracy: 0.9458 - mae: 0.1030 - pearson_correlation: 0.6968 - euclidean_distance: 0.1683
Epoch 245/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1030 - accuracy: 0.9484 - mae: 0.1030 - pearson_correlation: 0.6902 - euclidean_distance: 0.1686
Epoch 246/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1013 - accuracy: 0.9497 - mae: 0.1013 - pearson_correlation: 0.6994 - euclidean_distance: 0.1659
Epoch 247/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1027 - accuracy: 0.9489 - mae: 0.1027 - pearson_correlation: 0.6963 - euclidean_distance: 0.1677
Epoch 248/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1028 - accuracy: 0.9480 - mae: 0.1028 - pearson_correlation: 0.6881 - euclidean_distance: 0.1688
Epoch 249/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1040 - accuracy: 0.9502 - mae: 0.1040 - pearson_correlation: 0.6918 - euclidean_distance: 0.1699
Epoch 250/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1007 - accuracy: 0.9511 - mae: 0.1007 - pearson_correlation: 0.7008 - euclidean_distance: 0.1651
Epoch 251/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1036 - accuracy: 0.9541 - mae: 0.1036 - pearson_correlation: 0.6948 - euclidean_distance: 0.1693
Epoch 252/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1017 - accuracy: 0.9515 - mae: 0.1017 - pearson_correlation: 0.6984 - euclidean_distance: 0.1665
Epoch 253/300
38/38 [==============================] - 0s 987us/step - loss: 0.1035 - accuracy: 0.9528 - mae: 0.1035 - pearson_correlation: 0.6945 - euclidean_distance: 0.1684
Epoch 254/300
38/38 [==============================] - 0s 940us/step - loss: 0.1018 - accuracy: 0.9533 - mae: 0.1018 - pearson_correlation: 0.6975 - euclidean_distance: 0.1666
Epoch 255/300
38/38 [==============================] - 0s 938us/step - loss: 0.1004 - accuracy: 0.9537 - mae: 0.1004 - pearson_correlation: 0.7095 - euclidean_distance: 0.1639
Epoch 256/300
38/38 [==============================] - 0s 941us/step - loss: 0.0991 - accuracy: 0.9555 - mae: 0.0991 - pearson_correlation: 0.7066 - euclidean_distance: 0.1619
Epoch 257/300
38/38 [==============================] - 0s 934us/step - loss: 0.0991 - accuracy: 0.9541 - mae: 0.0991 - pearson_correlation: 0.7102 - euclidean_distance: 0.1618
Epoch 258/300
38/38 [==============================] - 0s 967us/step - loss: 0.1007 - accuracy: 0.9541 - mae: 0.1007 - pearson_correlation: 0.7091 - euclidean_distance: 0.1638
Epoch 259/300
38/38 [==============================] - 0s 1ms/step - loss: 0.1008 - accuracy: 0.9546 - mae: 0.1008 - pearson_correlation: 0.7069 - euclidean_distance: 0.1639
Epoch 260/300
38/38 [==============================] - 0s 963us/step - loss: 0.1001 - accuracy: 0.9546 - mae: 0.1001 - pearson_correlation: 0.7089 - euclidean_distance: 0.1632
Epoch 261/300
38/38 [==============================] - 0s 1ms/step - loss: 0.0978 - accuracy: 0.9546 - mae: 0.0978 - pearson_correlation: 0.7110 - euclidean_distance: 0.1607
Epoch 262/300
38/38 [==============================] - 0s 950us/step - loss: 0.0992 - accuracy: 0.9546 - mae: 0.0992 - pearson_correlation: 0.7120 - euclidean_distance: 0.1614
Epoch 263/300
38/38 [==============================] - 0s 1ms/step - loss: 0.0967 - accuracy: 0.9546 - mae: 0.0967 - pearson_correlation: 0.7173 - euclidean_distance: 0.1580
Epoch 264/300
38/38 [==============================] - 0s 1ms/step - loss: 0.0989 - accuracy: 0.9546 - mae: 0.0989 - pearson_correlation: 0.7077 - euclidean_distance: 0.1619
Epoch 265/300
38/38 [==============================] - 0s 1ms/step - loss: 0.0944 - accuracy: 0.9537 - mae: 0.0944 - pearson_correlation: 0.7250 - euclidean_distance: 0.1542
Epoch 266/300
38/38 [==============================] - 0s 1ms/step - loss: 0.0970 - accuracy: 0.9550 - mae: 0.0970 - pearson_correlation: 0.7165 - euclidean_distance: 0.1586
Epoch 267/300
38/38 [==============================] - 0s 978us/step - loss: 0.0965 - accuracy: 0.9533 - mae: 0.0965 - pearson_correlation: 0.7202 - euclidean_distance: 0.1575
Epoch 268/300
38/38 [==============================] - 0s 1ms/step - loss: 0.0973 - accuracy: 0.9550 - mae: 0.0973 - pearson_correlation: 0.7163 - euclidean_distance: 0.1585
Epoch 269/300
38/38 [==============================] - 0s 927us/step - loss: 0.0940 - accuracy: 0.9546 - mae: 0.0940 - pearson_correlation: 0.7260 - euclidean_distance: 0.1535
Epoch 270/300
38/38 [==============================] - 0s 980us/step - loss: 0.0972 - accuracy: 0.9550 - mae: 0.0972 - pearson_correlation: 0.7183 - euclidean_distance: 0.1585
Epoch 271/300
38/38 [==============================] - 0s 941us/step - loss: 0.0961 - accuracy: 0.9550 - mae: 0.0961 - pearson_correlation: 0.7249 - euclidean_distance: 0.1566
Epoch 272/300
38/38 [==============================] - 0s 895us/step - loss: 0.0976 - accuracy: 0.9550 - mae: 0.0976 - pearson_correlation: 0.7236 - euclidean_distance: 0.1587
Epoch 273/300
38/38 [==============================] - 0s 892us/step - loss: 0.0973 - accuracy: 0.9541 - mae: 0.0973 - pearson_correlation: 0.7198 - euclidean_distance: 0.1584
Epoch 274/300
38/38 [==============================] - 0s 902us/step - loss: 0.0943 - accuracy: 0.9555 - mae: 0.0943 - pearson_correlation: 0.7278 - euclidean_distance: 0.1541
Epoch 275/300
38/38 [==============================] - 0s 958us/step - loss: 0.0950 - accuracy: 0.9555 - mae: 0.0950 - pearson_correlation: 0.7301 - euclidean_distance: 0.1545
Epoch 276/300
38/38 [==============================] - 0s 2ms/step - loss: 0.0963 - accuracy: 0.9559 - mae: 0.0963 - pearson_correlation: 0.7235 - euclidean_distance: 0.1580
Epoch 277/300
38/38 [==============================] - 0s 934us/step - loss: 0.0953 - accuracy: 0.9546 - mae: 0.0953 - pearson_correlation: 0.7233 - euclidean_distance: 0.1552
Epoch 278/300
38/38 [==============================] - 0s 944us/step - loss: 0.0944 - accuracy: 0.9555 - mae: 0.0944 - pearson_correlation: 0.7269 - euclidean_distance: 0.1542
Epoch 279/300
38/38 [==============================] - 0s 969us/step - loss: 0.0944 - accuracy: 0.9559 - mae: 0.0944 - pearson_correlation: 0.7291 - euclidean_distance: 0.1541
Epoch 280/300
38/38 [==============================] - 0s 961us/step - loss: 0.0931 - accuracy: 0.9559 - mae: 0.0931 - pearson_correlation: 0.7309 - euclidean_distance: 0.1518
Epoch 281/300
38/38 [==============================] - 0s 924us/step - loss: 0.0921 - accuracy: 0.9546 - mae: 0.0921 - pearson_correlation: 0.7325 - euclidean_distance: 0.1501
Epoch 282/300
38/38 [==============================] - 0s 880us/step - loss: 0.0918 - accuracy: 0.9546 - mae: 0.0918 - pearson_correlation: 0.7308 - euclidean_distance: 0.1497
Epoch 283/300
38/38 [==============================] - 0s 886us/step - loss: 0.0916 - accuracy: 0.9550 - mae: 0.0916 - pearson_correlation: 0.7385 - euclidean_distance: 0.1494
Epoch 284/300
38/38 [==============================] - 0s 942us/step - loss: 0.0917 - accuracy: 0.9559 - mae: 0.0917 - pearson_correlation: 0.7355 - euclidean_distance: 0.1497
Epoch 285/300
38/38 [==============================] - 0s 961us/step - loss: 0.0920 - accuracy: 0.9550 - mae: 0.0920 - pearson_correlation: 0.7378 - euclidean_distance: 0.1497
Epoch 286/300
38/38 [==============================] - 0s 930us/step - loss: 0.0919 - accuracy: 0.9555 - mae: 0.0919 - pearson_correlation: 0.7349 - euclidean_distance: 0.1496
Epoch 287/300
38/38 [==============================] - 0s 900us/step - loss: 0.0925 - accuracy: 0.9550 - mae: 0.0925 - pearson_correlation: 0.7325 - euclidean_distance: 0.1506
Epoch 288/300
38/38 [==============================] - 0s 890us/step - loss: 0.0911 - accuracy: 0.9550 - mae: 0.0911 - pearson_correlation: 0.7422 - euclidean_distance: 0.1479
Epoch 289/300
38/38 [==============================] - 0s 953us/step - loss: 0.0906 - accuracy: 0.9546 - mae: 0.0906 - pearson_correlation: 0.7398 - euclidean_distance: 0.1476
Epoch 290/300
38/38 [==============================] - 0s 895us/step - loss: 0.0902 - accuracy: 0.9555 - mae: 0.0902 - pearson_correlation: 0.7452 - euclidean_distance: 0.1470
Epoch 291/300
38/38 [==============================] - 0s 936us/step - loss: 0.0917 - accuracy: 0.9550 - mae: 0.0917 - pearson_correlation: 0.7394 - euclidean_distance: 0.1494
Epoch 292/300
38/38 [==============================] - 0s 906us/step - loss: 0.0896 - accuracy: 0.9541 - mae: 0.0896 - pearson_correlation: 0.7413 - euclidean_distance: 0.1461
Epoch 293/300
38/38 [==============================] - 0s 907us/step - loss: 0.0897 - accuracy: 0.9559 - mae: 0.0897 - pearson_correlation: 0.7406 - euclidean_distance: 0.1460
Epoch 294/300
38/38 [==============================] - 0s 900us/step - loss: 0.0903 - accuracy: 0.9550 - mae: 0.0903 - pearson_correlation: 0.7480 - euclidean_distance: 0.1464
Epoch 295/300
38/38 [==============================] - 0s 905us/step - loss: 0.0881 - accuracy: 0.9559 - mae: 0.0881 - pearson_correlation: 0.7440 - euclidean_distance: 0.1440
Epoch 296/300
38/38 [==============================] - 0s 897us/step - loss: 0.0902 - accuracy: 0.9550 - mae: 0.0902 - pearson_correlation: 0.7452 - euclidean_distance: 0.1467
Epoch 297/300
38/38 [==============================] - 0s 1ms/step - loss: 0.0892 - accuracy: 0.9559 - mae: 0.0892 - pearson_correlation: 0.7420 - euclidean_distance: 0.1447
Epoch 298/300
38/38 [==============================] - 0s 924us/step - loss: 0.0897 - accuracy: 0.9555 - mae: 0.0897 - pearson_correlation: 0.7451 - euclidean_distance: 0.1458
Epoch 299/300
38/38 [==============================] - 0s 882us/step - loss: 0.0884 - accuracy: 0.9559 - mae: 0.0884 - pearson_correlation: 0.7442 - euclidean_distance: 0.1441
Epoch 300/300
38/38 [==============================] - 0s 911us/step - loss: 0.0865 - accuracy: 0.9559 - mae: 0.0865 - pearson_correlation: 0.7492 - euclidean_distance: 0.1416
19/19 [==============================] - 0s 540us/step
Epoch 1/350
38/38 [==============================] - 1s 923us/step - loss: 0.3954 - accuracy: 0.1032 - mae: 0.3954 - pearson_correlation: -0.4747 - euclidean_distance: 0.6259
Epoch 2/350
38/38 [==============================] - 0s 882us/step - loss: 0.3926 - accuracy: 0.1054 - mae: 0.3926 - pearson_correlation: -0.4722 - euclidean_distance: 0.6222
Epoch 3/350
38/38 [==============================] - 0s 849us/step - loss: 0.3915 - accuracy: 0.1023 - mae: 0.3915 - pearson_correlation: -0.4672 - euclidean_distance: 0.6203
Epoch 4/350
38/38 [==============================] - 0s 894us/step - loss: 0.3884 - accuracy: 0.1103 - mae: 0.3884 - pearson_correlation: -0.4680 - euclidean_distance: 0.6160
Epoch 5/350
38/38 [==============================] - 0s 946us/step - loss: 0.3870 - accuracy: 0.1103 - mae: 0.3870 - pearson_correlation: -0.4632 - euclidean_distance: 0.6133
Epoch 6/350
38/38 [==============================] - 0s 966us/step - loss: 0.3840 - accuracy: 0.1138 - mae: 0.3840 - pearson_correlation: -0.4619 - euclidean_distance: 0.6100
Epoch 7/350
38/38 [==============================] - 0s 918us/step - loss: 0.3822 - accuracy: 0.1107 - mae: 0.3822 - pearson_correlation: -0.4594 - euclidean_distance: 0.6066
Epoch 8/350
38/38 [==============================] - 0s 903us/step - loss: 0.3801 - accuracy: 0.1195 - mae: 0.3801 - pearson_correlation: -0.4562 - euclidean_distance: 0.6029
Epoch 9/350
38/38 [==============================] - 0s 941us/step - loss: 0.3779 - accuracy: 0.1195 - mae: 0.3779 - pearson_correlation: -0.4528 - euclidean_distance: 0.6006
Epoch 10/350
38/38 [==============================] - 0s 930us/step - loss: 0.3753 - accuracy: 0.1235 - mae: 0.3753 - pearson_correlation: -0.4460 - euclidean_distance: 0.5958
Epoch 11/350
38/38 [==============================] - 0s 927us/step - loss: 0.3722 - accuracy: 0.1301 - mae: 0.3722 - pearson_correlation: -0.4487 - euclidean_distance: 0.5927
Epoch 12/350
38/38 [==============================] - 0s 909us/step - loss: 0.3700 - accuracy: 0.1284 - mae: 0.3700 - pearson_correlation: -0.4463 - euclidean_distance: 0.5886
Epoch 13/350
38/38 [==============================] - 0s 913us/step - loss: 0.3670 - accuracy: 0.1301 - mae: 0.3670 - pearson_correlation: -0.4438 - euclidean_distance: 0.5837
Epoch 14/350
38/38 [==============================] - 0s 1ms/step - loss: 0.3645 - accuracy: 0.1341 - mae: 0.3645 - pearson_correlation: -0.4392 - euclidean_distance: 0.5813
Epoch 15/350
38/38 [==============================] - 0s 909us/step - loss: 0.3622 - accuracy: 0.1394 - mae: 0.3622 - pearson_correlation: -0.4349 - euclidean_distance: 0.5776
Epoch 16/350
38/38 [==============================] - 0s 913us/step - loss: 0.3593 - accuracy: 0.1372 - mae: 0.3593 - pearson_correlation: -0.4299 - euclidean_distance: 0.5730
Epoch 17/350
38/38 [==============================] - 0s 906us/step - loss: 0.3571 - accuracy: 0.1354 - mae: 0.3571 - pearson_correlation: -0.4291 - euclidean_distance: 0.5701
Epoch 18/350
38/38 [==============================] - 0s 923us/step - loss: 0.3550 - accuracy: 0.1412 - mae: 0.3550 - pearson_correlation: -0.4264 - euclidean_distance: 0.5658
Epoch 19/350
38/38 [==============================] - 0s 913us/step - loss: 0.3515 - accuracy: 0.1553 - mae: 0.3515 - pearson_correlation: -0.4198 - euclidean_distance: 0.5608
Epoch 20/350
38/38 [==============================] - 0s 901us/step - loss: 0.3503 - accuracy: 0.1584 - mae: 0.3503 - pearson_correlation: -0.4188 - euclidean_distance: 0.5605
Epoch 21/350
38/38 [==============================] - 0s 882us/step - loss: 0.3466 - accuracy: 0.1606 - mae: 0.3466 - pearson_correlation: -0.4097 - euclidean_distance: 0.5541
Epoch 22/350
38/38 [==============================] - 0s 907us/step - loss: 0.3433 - accuracy: 0.1570 - mae: 0.3433 - pearson_correlation: -0.4076 - euclidean_distance: 0.5503
Epoch 23/350
38/38 [==============================] - 0s 901us/step - loss: 0.3413 - accuracy: 0.1632 - mae: 0.3413 - pearson_correlation: -0.3984 - euclidean_distance: 0.5456
Epoch 24/350
38/38 [==============================] - 0s 904us/step - loss: 0.3379 - accuracy: 0.1712 - mae: 0.3379 - pearson_correlation: -0.3958 - euclidean_distance: 0.5413
Epoch 25/350
38/38 [==============================] - 0s 901us/step - loss: 0.3359 - accuracy: 0.1698 - mae: 0.3359 - pearson_correlation: -0.3895 - euclidean_distance: 0.5371
Epoch 26/350
38/38 [==============================] - 0s 934us/step - loss: 0.3326 - accuracy: 0.1747 - mae: 0.3326 - pearson_correlation: -0.3898 - euclidean_distance: 0.5322
Epoch 27/350
38/38 [==============================] - 0s 902us/step - loss: 0.3296 - accuracy: 0.1764 - mae: 0.3296 - pearson_correlation: -0.3802 - euclidean_distance: 0.5279
Epoch 28/350
38/38 [==============================] - 0s 878us/step - loss: 0.3276 - accuracy: 0.1826 - mae: 0.3276 - pearson_correlation: -0.3748 - euclidean_distance: 0.5253
Epoch 29/350
38/38 [==============================] - 0s 889us/step - loss: 0.3256 - accuracy: 0.1870 - mae: 0.3256 - pearson_correlation: -0.3716 - euclidean_distance: 0.5220
Epoch 30/350
38/38 [==============================] - 0s 930us/step - loss: 0.3215 - accuracy: 0.1844 - mae: 0.3215 - pearson_correlation: -0.3670 - euclidean_distance: 0.5155
Epoch 31/350
38/38 [==============================] - 0s 892us/step - loss: 0.3202 - accuracy: 0.1919 - mae: 0.3202 - pearson_correlation: -0.3587 - euclidean_distance: 0.5130
Epoch 32/350
38/38 [==============================] - 0s 945us/step - loss: 0.3161 - accuracy: 0.1928 - mae: 0.3161 - pearson_correlation: -0.3479 - euclidean_distance: 0.5079
Epoch 33/350
38/38 [==============================] - 0s 909us/step - loss: 0.3124 - accuracy: 0.1963 - mae: 0.3124 - pearson_correlation: -0.3480 - euclidean_distance: 0.5017
Epoch 34/350
38/38 [==============================] - 0s 920us/step - loss: 0.3112 - accuracy: 0.2011 - mae: 0.3112 - pearson_correlation: -0.3445 - euclidean_distance: 0.4994
Epoch 35/350
38/38 [==============================] - 0s 896us/step - loss: 0.3079 - accuracy: 0.2135 - mae: 0.3079 - pearson_correlation: -0.3302 - euclidean_distance: 0.4956
Epoch 36/350
38/38 [==============================] - 0s 947us/step - loss: 0.3058 - accuracy: 0.2157 - mae: 0.3058 - pearson_correlation: -0.3219 - euclidean_distance: 0.4913
Epoch 37/350
38/38 [==============================] - 0s 880us/step - loss: 0.3025 - accuracy: 0.2245 - mae: 0.3025 - pearson_correlation: -0.3162 - euclidean_distance: 0.4859
Epoch 38/350
38/38 [==============================] - 0s 944us/step - loss: 0.2982 - accuracy: 0.2267 - mae: 0.2982 - pearson_correlation: -0.3074 - euclidean_distance: 0.4802
Epoch 39/350
38/38 [==============================] - 0s 915us/step - loss: 0.2974 - accuracy: 0.2400 - mae: 0.2974 - pearson_correlation: -0.2981 - euclidean_distance: 0.4794
Epoch 40/350
38/38 [==============================] - 0s 920us/step - loss: 0.2934 - accuracy: 0.2404 - mae: 0.2934 - pearson_correlation: -0.2924 - euclidean_distance: 0.4737
Epoch 41/350
38/38 [==============================] - 0s 907us/step - loss: 0.2908 - accuracy: 0.2461 - mae: 0.2908 - pearson_correlation: -0.2799 - euclidean_distance: 0.4707
Epoch 42/350
38/38 [==============================] - 0s 914us/step - loss: 0.2865 - accuracy: 0.2594 - mae: 0.2865 - pearson_correlation: -0.2707 - euclidean_distance: 0.4624
Epoch 43/350
38/38 [==============================] - 0s 915us/step - loss: 0.2857 - accuracy: 0.2550 - mae: 0.2857 - pearson_correlation: -0.2682 - euclidean_distance: 0.4614
Epoch 44/350
38/38 [==============================] - 0s 890us/step - loss: 0.2822 - accuracy: 0.2647 - mae: 0.2822 - pearson_correlation: -0.2597 - euclidean_distance: 0.4572
Epoch 45/350
38/38 [==============================] - 0s 920us/step - loss: 0.2770 - accuracy: 0.2792 - mae: 0.2770 - pearson_correlation: -0.2400 - euclidean_distance: 0.4486
Epoch 46/350
38/38 [==============================] - 0s 912us/step - loss: 0.2756 - accuracy: 0.2916 - mae: 0.2756 - pearson_correlation: -0.2313 - euclidean_distance: 0.4457
Epoch 47/350
38/38 [==============================] - 0s 928us/step - loss: 0.2725 - accuracy: 0.2894 - mae: 0.2725 - pearson_correlation: -0.2286 - euclidean_distance: 0.4402
Epoch 48/350
38/38 [==============================] - 0s 875us/step - loss: 0.2702 - accuracy: 0.3048 - mae: 0.2702 - pearson_correlation: -0.2123 - euclidean_distance: 0.4377
Epoch 49/350
38/38 [==============================] - 0s 917us/step - loss: 0.2663 - accuracy: 0.3127 - mae: 0.2663 - pearson_correlation: -0.2048 - euclidean_distance: 0.4328
Epoch 50/350
38/38 [==============================] - 0s 915us/step - loss: 0.2652 - accuracy: 0.3075 - mae: 0.2652 - pearson_correlation: -0.1937 - euclidean_distance: 0.4299
Epoch 51/350
38/38 [==============================] - 0s 906us/step - loss: 0.2618 - accuracy: 0.3202 - mae: 0.2618 - pearson_correlation: -0.1824 - euclidean_distance: 0.4247
Epoch 52/350
38/38 [==============================] - 0s 909us/step - loss: 0.2589 - accuracy: 0.3388 - mae: 0.2589 - pearson_correlation: -0.1716 - euclidean_distance: 0.4199
Epoch 53/350
38/38 [==============================] - 0s 911us/step - loss: 0.2571 - accuracy: 0.3458 - mae: 0.2571 - pearson_correlation: -0.1621 - euclidean_distance: 0.4166
Epoch 54/350
38/38 [==============================] - 0s 956us/step - loss: 0.2532 - accuracy: 0.3582 - mae: 0.2532 - pearson_correlation: -0.1463 - euclidean_distance: 0.4117
Epoch 55/350
38/38 [==============================] - 0s 925us/step - loss: 0.2505 - accuracy: 0.3657 - mae: 0.2505 - pearson_correlation: -0.1384 - euclidean_distance: 0.4065
Epoch 56/350
38/38 [==============================] - 0s 906us/step - loss: 0.2474 - accuracy: 0.3714 - mae: 0.2474 - pearson_correlation: -0.1307 - euclidean_distance: 0.4029
Epoch 57/350
38/38 [==============================] - 0s 918us/step - loss: 0.2444 - accuracy: 0.3855 - mae: 0.2444 - pearson_correlation: -0.1157 - euclidean_distance: 0.3974
Epoch 58/350
38/38 [==============================] - 0s 922us/step - loss: 0.2427 - accuracy: 0.3913 - mae: 0.2427 - pearson_correlation: -0.1000 - euclidean_distance: 0.3946
Epoch 59/350
38/38 [==============================] - 0s 910us/step - loss: 0.2399 - accuracy: 0.4151 - mae: 0.2399 - pearson_correlation: -0.0909 - euclidean_distance: 0.3905
Epoch 60/350
38/38 [==============================] - 0s 950us/step - loss: 0.2369 - accuracy: 0.4213 - mae: 0.2369 - pearson_correlation: -0.0780 - euclidean_distance: 0.3844
Epoch 61/350
38/38 [==============================] - 0s 929us/step - loss: 0.2341 - accuracy: 0.4460 - mae: 0.2341 - pearson_correlation: -0.0632 - euclidean_distance: 0.3813
Epoch 62/350
38/38 [==============================] - 0s 926us/step - loss: 0.2323 - accuracy: 0.4402 - mae: 0.2323 - pearson_correlation: -0.0496 - euclidean_distance: 0.3786
Epoch 63/350
38/38 [==============================] - 0s 897us/step - loss: 0.2296 - accuracy: 0.4579 - mae: 0.2296 - pearson_correlation: -0.0376 - euclidean_distance: 0.3744
Epoch 64/350
38/38 [==============================] - 0s 928us/step - loss: 0.2263 - accuracy: 0.4685 - mae: 0.2263 - pearson_correlation: -0.0241 - euclidean_distance: 0.3695
Epoch 65/350
38/38 [==============================] - 0s 886us/step - loss: 0.2242 - accuracy: 0.4949 - mae: 0.2242 - pearson_correlation: -0.0130 - euclidean_distance: 0.3656
Epoch 66/350
38/38 [==============================] - 0s 903us/step - loss: 0.2226 - accuracy: 0.5060 - mae: 0.2226 - pearson_correlation: -0.0018 - euclidean_distance: 0.3626
Epoch 67/350
38/38 [==============================] - 0s 906us/step - loss: 0.2187 - accuracy: 0.5245 - mae: 0.2187 - pearson_correlation: 0.0105 - euclidean_distance: 0.3575
Epoch 68/350
38/38 [==============================] - 0s 911us/step - loss: 0.2167 - accuracy: 0.5373 - mae: 0.2167 - pearson_correlation: 0.0282 - euclidean_distance: 0.3535
Epoch 69/350
38/38 [==============================] - 0s 912us/step - loss: 0.2133 - accuracy: 0.5545 - mae: 0.2133 - pearson_correlation: 0.0470 - euclidean_distance: 0.3485
Epoch 70/350
38/38 [==============================] - 0s 904us/step - loss: 0.2134 - accuracy: 0.5580 - mae: 0.2134 - pearson_correlation: 0.0557 - euclidean_distance: 0.3474
Epoch 71/350
38/38 [==============================] - 0s 903us/step - loss: 0.2097 - accuracy: 0.5673 - mae: 0.2097 - pearson_correlation: 0.0700 - euclidean_distance: 0.3425
Epoch 72/350
38/38 [==============================] - 0s 887us/step - loss: 0.2066 - accuracy: 0.5827 - mae: 0.2066 - pearson_correlation: 0.0815 - euclidean_distance: 0.3370
Epoch 73/350
38/38 [==============================] - 0s 932us/step - loss: 0.2061 - accuracy: 0.5981 - mae: 0.2061 - pearson_correlation: 0.0895 - euclidean_distance: 0.3364
Epoch 74/350
38/38 [==============================] - 0s 872us/step - loss: 0.2024 - accuracy: 0.6114 - mae: 0.2024 - pearson_correlation: 0.1110 - euclidean_distance: 0.3309
Epoch 75/350
38/38 [==============================] - 0s 913us/step - loss: 0.2019 - accuracy: 0.6193 - mae: 0.2019 - pearson_correlation: 0.1167 - euclidean_distance: 0.3283
Epoch 76/350
38/38 [==============================] - 0s 906us/step - loss: 0.1994 - accuracy: 0.6334 - mae: 0.1994 - pearson_correlation: 0.1266 - euclidean_distance: 0.3261
Epoch 77/350
38/38 [==============================] - 0s 925us/step - loss: 0.1967 - accuracy: 0.6423 - mae: 0.1967 - pearson_correlation: 0.1416 - euclidean_distance: 0.3207
Epoch 78/350
38/38 [==============================] - 0s 906us/step - loss: 0.1946 - accuracy: 0.6511 - mae: 0.1946 - pearson_correlation: 0.1655 - euclidean_distance: 0.3178
Epoch 79/350
38/38 [==============================] - 0s 887us/step - loss: 0.1938 - accuracy: 0.6683 - mae: 0.1938 - pearson_correlation: 0.1690 - euclidean_distance: 0.3162
Epoch 80/350
38/38 [==============================] - 0s 952us/step - loss: 0.1897 - accuracy: 0.6793 - mae: 0.1897 - pearson_correlation: 0.1815 - euclidean_distance: 0.3112
Epoch 81/350
38/38 [==============================] - 0s 931us/step - loss: 0.1884 - accuracy: 0.7058 - mae: 0.1884 - pearson_correlation: 0.1989 - euclidean_distance: 0.3079
Epoch 82/350
38/38 [==============================] - 0s 887us/step - loss: 0.1874 - accuracy: 0.7053 - mae: 0.1874 - pearson_correlation: 0.2058 - euclidean_distance: 0.3054
Epoch 83/350
38/38 [==============================] - 0s 903us/step - loss: 0.1857 - accuracy: 0.7199 - mae: 0.1857 - pearson_correlation: 0.2224 - euclidean_distance: 0.3024
Epoch 84/350
38/38 [==============================] - 0s 891us/step - loss: 0.1837 - accuracy: 0.7314 - mae: 0.1837 - pearson_correlation: 0.2298 - euclidean_distance: 0.2995
Epoch 85/350
38/38 [==============================] - 0s 909us/step - loss: 0.1819 - accuracy: 0.7402 - mae: 0.1819 - pearson_correlation: 0.2428 - euclidean_distance: 0.2966
Epoch 86/350
38/38 [==============================] - 0s 972us/step - loss: 0.1796 - accuracy: 0.7539 - mae: 0.1796 - pearson_correlation: 0.2544 - euclidean_distance: 0.2938
Epoch 87/350
38/38 [==============================] - 0s 930us/step - loss: 0.1787 - accuracy: 0.7525 - mae: 0.1787 - pearson_correlation: 0.2594 - euclidean_distance: 0.2914
Epoch 88/350
38/38 [==============================] - 0s 938us/step - loss: 0.1786 - accuracy: 0.7719 - mae: 0.1786 - pearson_correlation: 0.2665 - euclidean_distance: 0.2918
Epoch 89/350
38/38 [==============================] - 0s 890us/step - loss: 0.1756 - accuracy: 0.7808 - mae: 0.1756 - pearson_correlation: 0.2885 - euclidean_distance: 0.2862
Epoch 90/350
38/38 [==============================] - 0s 911us/step - loss: 0.1732 - accuracy: 0.7808 - mae: 0.1732 - pearson_correlation: 0.2950 - euclidean_distance: 0.2826
Epoch 91/350
38/38 [==============================] - 0s 943us/step - loss: 0.1712 - accuracy: 0.8019 - mae: 0.1712 - pearson_correlation: 0.3154 - euclidean_distance: 0.2799
Epoch 92/350
38/38 [==============================] - 0s 924us/step - loss: 0.1710 - accuracy: 0.8072 - mae: 0.1710 - pearson_correlation: 0.3121 - euclidean_distance: 0.2790
Epoch 93/350
38/38 [==============================] - 0s 877us/step - loss: 0.1710 - accuracy: 0.8033 - mae: 0.1710 - pearson_correlation: 0.3242 - euclidean_distance: 0.2789
Epoch 94/350
38/38 [==============================] - 0s 909us/step - loss: 0.1682 - accuracy: 0.8072 - mae: 0.1682 - pearson_correlation: 0.3352 - euclidean_distance: 0.2738
Epoch 95/350
38/38 [==============================] - 0s 931us/step - loss: 0.1653 - accuracy: 0.8165 - mae: 0.1653 - pearson_correlation: 0.3470 - euclidean_distance: 0.2704
Epoch 96/350
38/38 [==============================] - 0s 908us/step - loss: 0.1643 - accuracy: 0.8169 - mae: 0.1643 - pearson_correlation: 0.3565 - euclidean_distance: 0.2679
Epoch 97/350
38/38 [==============================] - 0s 899us/step - loss: 0.1625 - accuracy: 0.8275 - mae: 0.1625 - pearson_correlation: 0.3606 - euclidean_distance: 0.2653
Epoch 98/350
38/38 [==============================] - 0s 924us/step - loss: 0.1627 - accuracy: 0.8240 - mae: 0.1627 - pearson_correlation: 0.3704 - euclidean_distance: 0.2654
Epoch 99/350
38/38 [==============================] - 0s 888us/step - loss: 0.1603 - accuracy: 0.8306 - mae: 0.1603 - pearson_correlation: 0.3840 - euclidean_distance: 0.2604
Epoch 100/350
38/38 [==============================] - 0s 894us/step - loss: 0.1595 - accuracy: 0.8381 - mae: 0.1595 - pearson_correlation: 0.3852 - euclidean_distance: 0.2592
Epoch 101/350
38/38 [==============================] - 0s 909us/step - loss: 0.1583 - accuracy: 0.8425 - mae: 0.1583 - pearson_correlation: 0.3947 - euclidean_distance: 0.2575
Epoch 102/350
38/38 [==============================] - 0s 918us/step - loss: 0.1551 - accuracy: 0.8461 - mae: 0.1551 - pearson_correlation: 0.4089 - euclidean_distance: 0.2538
Epoch 103/350
38/38 [==============================] - 0s 917us/step - loss: 0.1552 - accuracy: 0.8522 - mae: 0.1552 - pearson_correlation: 0.4141 - euclidean_distance: 0.2524
Epoch 104/350
38/38 [==============================] - 0s 889us/step - loss: 0.1543 - accuracy: 0.8584 - mae: 0.1543 - pearson_correlation: 0.4225 - euclidean_distance: 0.2505
Epoch 105/350
38/38 [==============================] - 0s 932us/step - loss: 0.1541 - accuracy: 0.8544 - mae: 0.1541 - pearson_correlation: 0.4265 - euclidean_distance: 0.2508
Epoch 106/350
38/38 [==============================] - 0s 899us/step - loss: 0.1529 - accuracy: 0.8584 - mae: 0.1529 - pearson_correlation: 0.4260 - euclidean_distance: 0.2490
Epoch 107/350
38/38 [==============================] - 0s 886us/step - loss: 0.1504 - accuracy: 0.8668 - mae: 0.1504 - pearson_correlation: 0.4421 - euclidean_distance: 0.2451
Epoch 108/350
38/38 [==============================] - 0s 899us/step - loss: 0.1499 - accuracy: 0.8641 - mae: 0.1499 - pearson_correlation: 0.4480 - euclidean_distance: 0.2431
Epoch 109/350
38/38 [==============================] - 0s 921us/step - loss: 0.1498 - accuracy: 0.8752 - mae: 0.1498 - pearson_correlation: 0.4503 - euclidean_distance: 0.2434
Epoch 110/350
38/38 [==============================] - 0s 895us/step - loss: 0.1485 - accuracy: 0.8721 - mae: 0.1485 - pearson_correlation: 0.4657 - euclidean_distance: 0.2417
Epoch 111/350
38/38 [==============================] - 0s 927us/step - loss: 0.1480 - accuracy: 0.8756 - mae: 0.1480 - pearson_correlation: 0.4631 - euclidean_distance: 0.2405
Epoch 112/350
38/38 [==============================] - 0s 901us/step - loss: 0.1448 - accuracy: 0.8840 - mae: 0.1448 - pearson_correlation: 0.4745 - euclidean_distance: 0.2360
Epoch 113/350
38/38 [==============================] - 0s 895us/step - loss: 0.1457 - accuracy: 0.8818 - mae: 0.1457 - pearson_correlation: 0.4768 - euclidean_distance: 0.2368
Epoch 114/350
38/38 [==============================] - 0s 901us/step - loss: 0.1440 - accuracy: 0.8884 - mae: 0.1440 - pearson_correlation: 0.4800 - euclidean_distance: 0.2345
Epoch 115/350
38/38 [==============================] - 0s 949us/step - loss: 0.1441 - accuracy: 0.8906 - mae: 0.1441 - pearson_correlation: 0.4871 - euclidean_distance: 0.2338
Epoch 116/350
38/38 [==============================] - 0s 869us/step - loss: 0.1425 - accuracy: 0.8902 - mae: 0.1425 - pearson_correlation: 0.4984 - euclidean_distance: 0.2318
Epoch 117/350
38/38 [==============================] - 0s 913us/step - loss: 0.1406 - accuracy: 0.8915 - mae: 0.1406 - pearson_correlation: 0.5031 - euclidean_distance: 0.2286
Epoch 118/350
38/38 [==============================] - 0s 907us/step - loss: 0.1412 - accuracy: 0.8959 - mae: 0.1412 - pearson_correlation: 0.4999 - euclidean_distance: 0.2294
Epoch 119/350
38/38 [==============================] - 0s 904us/step - loss: 0.1386 - accuracy: 0.8959 - mae: 0.1386 - pearson_correlation: 0.5127 - euclidean_distance: 0.2253
Epoch 120/350
38/38 [==============================] - 0s 907us/step - loss: 0.1362 - accuracy: 0.9030 - mae: 0.1362 - pearson_correlation: 0.5215 - euclidean_distance: 0.2221
Epoch 121/350
38/38 [==============================] - 0s 952us/step - loss: 0.1362 - accuracy: 0.9096 - mae: 0.1362 - pearson_correlation: 0.5278 - euclidean_distance: 0.2213
Epoch 122/350
38/38 [==============================] - 0s 909us/step - loss: 0.1370 - accuracy: 0.9078 - mae: 0.1370 - pearson_correlation: 0.5231 - euclidean_distance: 0.2222
Epoch 123/350
38/38 [==============================] - 0s 907us/step - loss: 0.1367 - accuracy: 0.8963 - mae: 0.1367 - pearson_correlation: 0.5254 - euclidean_distance: 0.2220
Epoch 124/350
38/38 [==============================] - 0s 875us/step - loss: 0.1343 - accuracy: 0.9043 - mae: 0.1343 - pearson_correlation: 0.5333 - euclidean_distance: 0.2188
Epoch 125/350
38/38 [==============================] - 0s 910us/step - loss: 0.1352 - accuracy: 0.9047 - mae: 0.1352 - pearson_correlation: 0.5381 - euclidean_distance: 0.2194
Epoch 126/350
38/38 [==============================] - 0s 904us/step - loss: 0.1338 - accuracy: 0.9082 - mae: 0.1338 - pearson_correlation: 0.5409 - euclidean_distance: 0.2172
Epoch 127/350
38/38 [==============================] - 0s 935us/step - loss: 0.1325 - accuracy: 0.9149 - mae: 0.1325 - pearson_correlation: 0.5466 - euclidean_distance: 0.2161
Epoch 128/350
38/38 [==============================] - 0s 888us/step - loss: 0.1329 - accuracy: 0.9153 - mae: 0.1329 - pearson_correlation: 0.5488 - euclidean_distance: 0.2159
Epoch 129/350
38/38 [==============================] - 0s 910us/step - loss: 0.1310 - accuracy: 0.9202 - mae: 0.1310 - pearson_correlation: 0.5506 - euclidean_distance: 0.2134
Epoch 130/350
38/38 [==============================] - 0s 908us/step - loss: 0.1326 - accuracy: 0.9241 - mae: 0.1326 - pearson_correlation: 0.5550 - euclidean_distance: 0.2152
Epoch 131/350
38/38 [==============================] - 0s 961us/step - loss: 0.1304 - accuracy: 0.9210 - mae: 0.1304 - pearson_correlation: 0.5601 - euclidean_distance: 0.2117
Epoch 132/350
38/38 [==============================] - 0s 920us/step - loss: 0.1288 - accuracy: 0.9175 - mae: 0.1288 - pearson_correlation: 0.5678 - euclidean_distance: 0.2093
Epoch 133/350
38/38 [==============================] - 0s 905us/step - loss: 0.1294 - accuracy: 0.9180 - mae: 0.1294 - pearson_correlation: 0.5722 - euclidean_distance: 0.2098
Epoch 134/350
38/38 [==============================] - 0s 925us/step - loss: 0.1283 - accuracy: 0.9277 - mae: 0.1283 - pearson_correlation: 0.5708 - euclidean_distance: 0.2082
Epoch 135/350
38/38 [==============================] - 0s 932us/step - loss: 0.1293 - accuracy: 0.9188 - mae: 0.1293 - pearson_correlation: 0.5693 - euclidean_distance: 0.2095
Epoch 136/350
38/38 [==============================] - 0s 940us/step - loss: 0.1272 - accuracy: 0.9259 - mae: 0.1272 - pearson_correlation: 0.5772 - euclidean_distance: 0.2064
Epoch 137/350
38/38 [==============================] - 0s 922us/step - loss: 0.1254 - accuracy: 0.9290 - mae: 0.1254 - pearson_correlation: 0.5856 - euclidean_distance: 0.2035
Epoch 138/350
38/38 [==============================] - 0s 908us/step - loss: 0.1237 - accuracy: 0.9250 - mae: 0.1237 - pearson_correlation: 0.5905 - euclidean_distance: 0.2011
Epoch 139/350
38/38 [==============================] - 0s 916us/step - loss: 0.1241 - accuracy: 0.9299 - mae: 0.1241 - pearson_correlation: 0.5942 - euclidean_distance: 0.2012
Epoch 140/350
38/38 [==============================] - 0s 970us/step - loss: 0.1255 - accuracy: 0.9268 - mae: 0.1255 - pearson_correlation: 0.5864 - euclidean_distance: 0.2040
Epoch 141/350
38/38 [==============================] - 0s 909us/step - loss: 0.1242 - accuracy: 0.9321 - mae: 0.1242 - pearson_correlation: 0.5980 - euclidean_distance: 0.2014
Epoch 142/350
38/38 [==============================] - 0s 906us/step - loss: 0.1223 - accuracy: 0.9338 - mae: 0.1223 - pearson_correlation: 0.6017 - euclidean_distance: 0.1986
Epoch 143/350
38/38 [==============================] - 0s 945us/step - loss: 0.1229 - accuracy: 0.9316 - mae: 0.1229 - pearson_correlation: 0.5981 - euclidean_distance: 0.1993
Epoch 144/350
38/38 [==============================] - 0s 884us/step - loss: 0.1227 - accuracy: 0.9316 - mae: 0.1227 - pearson_correlation: 0.6018 - euclidean_distance: 0.1983
Epoch 145/350
38/38 [==============================] - 0s 902us/step - loss: 0.1216 - accuracy: 0.9325 - mae: 0.1216 - pearson_correlation: 0.6093 - euclidean_distance: 0.1973
Epoch 146/350
38/38 [==============================] - 0s 916us/step - loss: 0.1212 - accuracy: 0.9303 - mae: 0.1212 - pearson_correlation: 0.6103 - euclidean_distance: 0.1960
Epoch 147/350
38/38 [==============================] - 0s 928us/step - loss: 0.1196 - accuracy: 0.9316 - mae: 0.1196 - pearson_correlation: 0.6133 - euclidean_distance: 0.1942
Epoch 148/350
38/38 [==============================] - 0s 895us/step - loss: 0.1175 - accuracy: 0.9365 - mae: 0.1175 - pearson_correlation: 0.6256 - euclidean_distance: 0.1905
Epoch 149/350
38/38 [==============================] - 0s 903us/step - loss: 0.1190 - accuracy: 0.9374 - mae: 0.1190 - pearson_correlation: 0.6197 - euclidean_distance: 0.1928
Epoch 150/350
38/38 [==============================] - 0s 933us/step - loss: 0.1188 - accuracy: 0.9312 - mae: 0.1188 - pearson_correlation: 0.6189 - euclidean_distance: 0.1924
Epoch 151/350
38/38 [==============================] - 0s 1ms/step - loss: 0.1194 - accuracy: 0.9387 - mae: 0.1194 - pearson_correlation: 0.6196 - euclidean_distance: 0.1935
Epoch 152/350
38/38 [==============================] - 0s 931us/step - loss: 0.1160 - accuracy: 0.9382 - mae: 0.1160 - pearson_correlation: 0.6281 - euclidean_distance: 0.1887
Epoch 153/350
38/38 [==============================] - 0s 916us/step - loss: 0.1153 - accuracy: 0.9391 - mae: 0.1153 - pearson_correlation: 0.6328 - euclidean_distance: 0.1874
Epoch 154/350
38/38 [==============================] - 0s 905us/step - loss: 0.1139 - accuracy: 0.9352 - mae: 0.1139 - pearson_correlation: 0.6381 - euclidean_distance: 0.1853
Epoch 155/350
38/38 [==============================] - 0s 913us/step - loss: 0.1143 - accuracy: 0.9396 - mae: 0.1143 - pearson_correlation: 0.6403 - euclidean_distance: 0.1855
Epoch 156/350
38/38 [==============================] - 0s 905us/step - loss: 0.1150 - accuracy: 0.9387 - mae: 0.1150 - pearson_correlation: 0.6376 - euclidean_distance: 0.1862
Epoch 157/350
38/38 [==============================] - 0s 904us/step - loss: 0.1171 - accuracy: 0.9360 - mae: 0.1171 - pearson_correlation: 0.6271 - euclidean_distance: 0.1895
Epoch 158/350
38/38 [==============================] - 0s 912us/step - loss: 0.1136 - accuracy: 0.9396 - mae: 0.1136 - pearson_correlation: 0.6451 - euclidean_distance: 0.1838
Epoch 159/350
38/38 [==============================] - 0s 910us/step - loss: 0.1124 - accuracy: 0.9409 - mae: 0.1124 - pearson_correlation: 0.6490 - euclidean_distance: 0.1820
Epoch 160/350
38/38 [==============================] - 0s 930us/step - loss: 0.1134 - accuracy: 0.9431 - mae: 0.1134 - pearson_correlation: 0.6466 - euclidean_distance: 0.1831
Epoch 161/350
38/38 [==============================] - 0s 893us/step - loss: 0.1138 - accuracy: 0.9409 - mae: 0.1138 - pearson_correlation: 0.6419 - euclidean_distance: 0.1836
Epoch 162/350
38/38 [==============================] - 0s 911us/step - loss: 0.1120 - accuracy: 0.9409 - mae: 0.1120 - pearson_correlation: 0.6481 - euclidean_distance: 0.1821
Epoch 163/350
38/38 [==============================] - 0s 910us/step - loss: 0.1114 - accuracy: 0.9418 - mae: 0.1114 - pearson_correlation: 0.6495 - euclidean_distance: 0.1809
Epoch 164/350
38/38 [==============================] - 0s 922us/step - loss: 0.1119 - accuracy: 0.9427 - mae: 0.1119 - pearson_correlation: 0.6519 - euclidean_distance: 0.1815
Epoch 165/350
38/38 [==============================] - 0s 907us/step - loss: 0.1117 - accuracy: 0.9431 - mae: 0.1117 - pearson_correlation: 0.6521 - euclidean_distance: 0.1808
Epoch 166/350
38/38 [==============================] - 0s 923us/step - loss: 0.1125 - accuracy: 0.9400 - mae: 0.1125 - pearson_correlation: 0.6549 - euclidean_distance: 0.1819
Epoch 167/350
38/38 [==============================] - 0s 905us/step - loss: 0.1089 - accuracy: 0.9453 - mae: 0.1089 - pearson_correlation: 0.6619 - euclidean_distance: 0.1765
Epoch 168/350
38/38 [==============================] - 0s 880us/step - loss: 0.1088 - accuracy: 0.9435 - mae: 0.1088 - pearson_correlation: 0.6658 - euclidean_distance: 0.1760
Epoch 169/350
38/38 [==============================] - 0s 880us/step - loss: 0.1102 - accuracy: 0.9418 - mae: 0.1102 - pearson_correlation: 0.6606 - euclidean_distance: 0.1779
Epoch 170/350
38/38 [==============================] - 0s 950us/step - loss: 0.1082 - accuracy: 0.9449 - mae: 0.1082 - pearson_correlation: 0.6652 - euclidean_distance: 0.1750
Epoch 171/350
38/38 [==============================] - 0s 952us/step - loss: 0.1077 - accuracy: 0.9418 - mae: 0.1077 - pearson_correlation: 0.6677 - euclidean_distance: 0.1742
Epoch 172/350
38/38 [==============================] - 0s 940us/step - loss: 0.1074 - accuracy: 0.9466 - mae: 0.1074 - pearson_correlation: 0.6714 - euclidean_distance: 0.1741
Epoch 173/350
38/38 [==============================] - 0s 919us/step - loss: 0.1058 - accuracy: 0.9466 - mae: 0.1058 - pearson_correlation: 0.6727 - euclidean_distance: 0.1711
Epoch 174/350
38/38 [==============================] - 0s 921us/step - loss: 0.1057 - accuracy: 0.9466 - mae: 0.1057 - pearson_correlation: 0.6772 - euclidean_distance: 0.1710
Epoch 175/350
38/38 [==============================] - 0s 916us/step - loss: 0.1054 - accuracy: 0.9435 - mae: 0.1054 - pearson_correlation: 0.6801 - euclidean_distance: 0.1705
Epoch 176/350
38/38 [==============================] - 0s 925us/step - loss: 0.1047 - accuracy: 0.9471 - mae: 0.1047 - pearson_correlation: 0.6829 - euclidean_distance: 0.1690
Epoch 177/350
38/38 [==============================] - 0s 883us/step - loss: 0.1048 - accuracy: 0.9475 - mae: 0.1048 - pearson_correlation: 0.6796 - euclidean_distance: 0.1696
Epoch 178/350
38/38 [==============================] - 0s 905us/step - loss: 0.1057 - accuracy: 0.9449 - mae: 0.1057 - pearson_correlation: 0.6787 - euclidean_distance: 0.1703
Epoch 179/350
38/38 [==============================] - 0s 890us/step - loss: 0.1045 - accuracy: 0.9475 - mae: 0.1045 - pearson_correlation: 0.6816 - euclidean_distance: 0.1690
Epoch 180/350
38/38 [==============================] - 0s 928us/step - loss: 0.1031 - accuracy: 0.9466 - mae: 0.1031 - pearson_correlation: 0.6886 - euclidean_distance: 0.1667
Epoch 181/350
38/38 [==============================] - 0s 915us/step - loss: 0.1048 - accuracy: 0.9462 - mae: 0.1048 - pearson_correlation: 0.6831 - euclidean_distance: 0.1685
Epoch 182/350
38/38 [==============================] - 0s 924us/step - loss: 0.1042 - accuracy: 0.9475 - mae: 0.1042 - pearson_correlation: 0.6833 - euclidean_distance: 0.1683
Epoch 183/350
38/38 [==============================] - 0s 933us/step - loss: 0.1021 - accuracy: 0.9449 - mae: 0.1021 - pearson_correlation: 0.6949 - euclidean_distance: 0.1654
Epoch 184/350
38/38 [==============================] - 0s 900us/step - loss: 0.1030 - accuracy: 0.9488 - mae: 0.1030 - pearson_correlation: 0.6895 - euclidean_distance: 0.1671
Epoch 185/350
38/38 [==============================] - 0s 954us/step - loss: 0.1020 - accuracy: 0.9466 - mae: 0.1020 - pearson_correlation: 0.6903 - euclidean_distance: 0.1649
Epoch 186/350
38/38 [==============================] - 0s 915us/step - loss: 0.1013 - accuracy: 0.9440 - mae: 0.1013 - pearson_correlation: 0.6955 - euclidean_distance: 0.1637
Epoch 187/350
38/38 [==============================] - 0s 923us/step - loss: 0.1004 - accuracy: 0.9493 - mae: 0.1004 - pearson_correlation: 0.7013 - euclidean_distance: 0.1624
Epoch 188/350
38/38 [==============================] - 0s 911us/step - loss: 0.0996 - accuracy: 0.9484 - mae: 0.0996 - pearson_correlation: 0.6978 - euclidean_distance: 0.1613
Epoch 189/350
38/38 [==============================] - 0s 911us/step - loss: 0.1027 - accuracy: 0.9466 - mae: 0.1027 - pearson_correlation: 0.6933 - euclidean_distance: 0.1660
Epoch 190/350
38/38 [==============================] - 0s 921us/step - loss: 0.1007 - accuracy: 0.9475 - mae: 0.1007 - pearson_correlation: 0.6968 - euclidean_distance: 0.1625
Epoch 191/350
38/38 [==============================] - 0s 913us/step - loss: 0.1010 - accuracy: 0.9475 - mae: 0.1010 - pearson_correlation: 0.6940 - euclidean_distance: 0.1635
Epoch 192/350
38/38 [==============================] - 0s 963us/step - loss: 0.0991 - accuracy: 0.9502 - mae: 0.0991 - pearson_correlation: 0.7045 - euclidean_distance: 0.1596
Epoch 193/350
38/38 [==============================] - 0s 908us/step - loss: 0.0991 - accuracy: 0.9479 - mae: 0.0991 - pearson_correlation: 0.7037 - euclidean_distance: 0.1603
Epoch 194/350
38/38 [==============================] - 0s 933us/step - loss: 0.1001 - accuracy: 0.9471 - mae: 0.1001 - pearson_correlation: 0.6981 - euclidean_distance: 0.1615
Epoch 195/350
38/38 [==============================] - 0s 876us/step - loss: 0.0974 - accuracy: 0.9453 - mae: 0.0974 - pearson_correlation: 0.7082 - euclidean_distance: 0.1573
Epoch 196/350
38/38 [==============================] - 0s 899us/step - loss: 0.0984 - accuracy: 0.9488 - mae: 0.0984 - pearson_correlation: 0.7095 - euclidean_distance: 0.1586
Epoch 197/350
38/38 [==============================] - 0s 917us/step - loss: 0.0988 - accuracy: 0.9462 - mae: 0.0988 - pearson_correlation: 0.7017 - euclidean_distance: 0.1596
Epoch 198/350
38/38 [==============================] - 0s 910us/step - loss: 0.0984 - accuracy: 0.9488 - mae: 0.0984 - pearson_correlation: 0.7037 - euclidean_distance: 0.1590
Epoch 199/350
38/38 [==============================] - 0s 924us/step - loss: 0.1006 - accuracy: 0.9510 - mae: 0.1006 - pearson_correlation: 0.7009 - euclidean_distance: 0.1619
Epoch 200/350
38/38 [==============================] - 0s 863us/step - loss: 0.0990 - accuracy: 0.9484 - mae: 0.0990 - pearson_correlation: 0.7039 - euclidean_distance: 0.1601
Epoch 201/350
38/38 [==============================] - 0s 897us/step - loss: 0.0983 - accuracy: 0.9497 - mae: 0.0983 - pearson_correlation: 0.7099 - euclidean_distance: 0.1582
Epoch 202/350
38/38 [==============================] - 0s 913us/step - loss: 0.0965 - accuracy: 0.9502 - mae: 0.0965 - pearson_correlation: 0.7104 - euclidean_distance: 0.1556
Epoch 203/350
38/38 [==============================] - 0s 923us/step - loss: 0.0956 - accuracy: 0.9515 - mae: 0.0956 - pearson_correlation: 0.7154 - euclidean_distance: 0.1544
Epoch 204/350
38/38 [==============================] - 0s 919us/step - loss: 0.0953 - accuracy: 0.9493 - mae: 0.0953 - pearson_correlation: 0.7168 - euclidean_distance: 0.1539
Epoch 205/350
38/38 [==============================] - 0s 936us/step - loss: 0.0968 - accuracy: 0.9493 - mae: 0.0968 - pearson_correlation: 0.7140 - euclidean_distance: 0.1556
Epoch 206/350
38/38 [==============================] - 0s 958us/step - loss: 0.0957 - accuracy: 0.9502 - mae: 0.0957 - pearson_correlation: 0.7191 - euclidean_distance: 0.1541
Epoch 207/350
38/38 [==============================] - 0s 915us/step - loss: 0.0965 - accuracy: 0.9493 - mae: 0.0965 - pearson_correlation: 0.7154 - euclidean_distance: 0.1555
Epoch 208/350
38/38 [==============================] - 0s 911us/step - loss: 0.0945 - accuracy: 0.9493 - mae: 0.0945 - pearson_correlation: 0.7182 - euclidean_distance: 0.1528
Epoch 209/350
38/38 [==============================] - 0s 904us/step - loss: 0.0964 - accuracy: 0.9462 - mae: 0.0964 - pearson_correlation: 0.7177 - euclidean_distance: 0.1551
Epoch 210/350
38/38 [==============================] - 0s 908us/step - loss: 0.0959 - accuracy: 0.9497 - mae: 0.0959 - pearson_correlation: 0.7146 - euclidean_distance: 0.1549
Epoch 211/350
38/38 [==============================] - 0s 913us/step - loss: 0.0931 - accuracy: 0.9524 - mae: 0.0931 - pearson_correlation: 0.7234 - euclidean_distance: 0.1503
Epoch 212/350
38/38 [==============================] - 0s 927us/step - loss: 0.0956 - accuracy: 0.9475 - mae: 0.0956 - pearson_correlation: 0.7188 - euclidean_distance: 0.1541
Epoch 213/350
38/38 [==============================] - 0s 907us/step - loss: 0.0933 - accuracy: 0.9506 - mae: 0.0933 - pearson_correlation: 0.7239 - euclidean_distance: 0.1505
Epoch 214/350
38/38 [==============================] - 0s 909us/step - loss: 0.0938 - accuracy: 0.9502 - mae: 0.0938 - pearson_correlation: 0.7221 - euclidean_distance: 0.1511
Epoch 215/350
38/38 [==============================] - 0s 913us/step - loss: 0.0940 - accuracy: 0.9479 - mae: 0.0940 - pearson_correlation: 0.7195 - euclidean_distance: 0.1515
Epoch 216/350
38/38 [==============================] - 0s 900us/step - loss: 0.0939 - accuracy: 0.9510 - mae: 0.0939 - pearson_correlation: 0.7241 - euclidean_distance: 0.1518
Epoch 217/350
38/38 [==============================] - 0s 920us/step - loss: 0.0926 - accuracy: 0.9506 - mae: 0.0926 - pearson_correlation: 0.7248 - euclidean_distance: 0.1490
Epoch 218/350
38/38 [==============================] - 0s 919us/step - loss: 0.0950 - accuracy: 0.9515 - mae: 0.0950 - pearson_correlation: 0.7184 - euclidean_distance: 0.1529
Epoch 219/350
38/38 [==============================] - 0s 906us/step - loss: 0.0920 - accuracy: 0.9515 - mae: 0.0920 - pearson_correlation: 0.7254 - euclidean_distance: 0.1487
Epoch 220/350
38/38 [==============================] - 0s 899us/step - loss: 0.0928 - accuracy: 0.9519 - mae: 0.0928 - pearson_correlation: 0.7247 - euclidean_distance: 0.1499
Epoch 221/350
38/38 [==============================] - 0s 913us/step - loss: 0.0944 - accuracy: 0.9510 - mae: 0.0944 - pearson_correlation: 0.7237 - euclidean_distance: 0.1518
Epoch 222/350
38/38 [==============================] - 0s 887us/step - loss: 0.0916 - accuracy: 0.9506 - mae: 0.0916 - pearson_correlation: 0.7321 - euclidean_distance: 0.1476
Epoch 223/350
38/38 [==============================] - 0s 928us/step - loss: 0.0922 - accuracy: 0.9484 - mae: 0.0922 - pearson_correlation: 0.7280 - euclidean_distance: 0.1488
Epoch 224/350
38/38 [==============================] - 0s 926us/step - loss: 0.0903 - accuracy: 0.9519 - mae: 0.0903 - pearson_correlation: 0.7323 - euclidean_distance: 0.1462
Epoch 225/350
38/38 [==============================] - 0s 891us/step - loss: 0.0925 - accuracy: 0.9488 - mae: 0.0925 - pearson_correlation: 0.7275 - euclidean_distance: 0.1488
Epoch 226/350
38/38 [==============================] - 0s 943us/step - loss: 0.0904 - accuracy: 0.9519 - mae: 0.0904 - pearson_correlation: 0.7338 - euclidean_distance: 0.1457
Epoch 227/350
38/38 [==============================] - 0s 876us/step - loss: 0.0911 - accuracy: 0.9497 - mae: 0.0911 - pearson_correlation: 0.7316 - euclidean_distance: 0.1468
Epoch 228/350
38/38 [==============================] - 0s 947us/step - loss: 0.0928 - accuracy: 0.9497 - mae: 0.0928 - pearson_correlation: 0.7309 - euclidean_distance: 0.1495
Epoch 229/350
38/38 [==============================] - 0s 899us/step - loss: 0.0931 - accuracy: 0.9519 - mae: 0.0931 - pearson_correlation: 0.7266 - euclidean_distance: 0.1499
Epoch 230/350
38/38 [==============================] - 0s 901us/step - loss: 0.0887 - accuracy: 0.9528 - mae: 0.0887 - pearson_correlation: 0.7387 - euclidean_distance: 0.1430
Epoch 231/350
38/38 [==============================] - 0s 955us/step - loss: 0.0906 - accuracy: 0.9515 - mae: 0.0906 - pearson_correlation: 0.7344 - euclidean_distance: 0.1461
Epoch 232/350
38/38 [==============================] - 0s 931us/step - loss: 0.0904 - accuracy: 0.9510 - mae: 0.0904 - pearson_correlation: 0.7381 - euclidean_distance: 0.1459
Epoch 233/350
38/38 [==============================] - 0s 938us/step - loss: 0.0902 - accuracy: 0.9510 - mae: 0.0902 - pearson_correlation: 0.7336 - euclidean_distance: 0.1455
Epoch 234/350
38/38 [==============================] - 0s 928us/step - loss: 0.0884 - accuracy: 0.9532 - mae: 0.0884 - pearson_correlation: 0.7382 - euclidean_distance: 0.1425
Epoch 235/350
38/38 [==============================] - 0s 911us/step - loss: 0.0890 - accuracy: 0.9497 - mae: 0.0890 - pearson_correlation: 0.7372 - euclidean_distance: 0.1437
Epoch 236/350
38/38 [==============================] - 0s 948us/step - loss: 0.0895 - accuracy: 0.9515 - mae: 0.0895 - pearson_correlation: 0.7366 - euclidean_distance: 0.1442
Epoch 237/350
38/38 [==============================] - 0s 935us/step - loss: 0.0908 - accuracy: 0.9519 - mae: 0.0908 - pearson_correlation: 0.7335 - euclidean_distance: 0.1461
Epoch 238/350
38/38 [==============================] - 0s 922us/step - loss: 0.0898 - accuracy: 0.9532 - mae: 0.0898 - pearson_correlation: 0.7367 - euclidean_distance: 0.1449
Epoch 239/350
38/38 [==============================] - 0s 892us/step - loss: 0.0890 - accuracy: 0.9528 - mae: 0.0890 - pearson_correlation: 0.7405 - euclidean_distance: 0.1433
Epoch 240/350
38/38 [==============================] - 0s 923us/step - loss: 0.0900 - accuracy: 0.9506 - mae: 0.0900 - pearson_correlation: 0.7432 - euclidean_distance: 0.1446
Epoch 241/350
38/38 [==============================] - 0s 902us/step - loss: 0.0898 - accuracy: 0.9506 - mae: 0.0898 - pearson_correlation: 0.7363 - euclidean_distance: 0.1450
Epoch 242/350
38/38 [==============================] - 0s 925us/step - loss: 0.0877 - accuracy: 0.9519 - mae: 0.0877 - pearson_correlation: 0.7455 - euclidean_distance: 0.1412
Epoch 243/350
38/38 [==============================] - 0s 946us/step - loss: 0.0875 - accuracy: 0.9537 - mae: 0.0875 - pearson_correlation: 0.7466 - euclidean_distance: 0.1408
Epoch 244/350
38/38 [==============================] - 0s 961us/step - loss: 0.0867 - accuracy: 0.9524 - mae: 0.0867 - pearson_correlation: 0.7430 - euclidean_distance: 0.1401
Epoch 245/350
38/38 [==============================] - 0s 918us/step - loss: 0.0871 - accuracy: 0.9493 - mae: 0.0871 - pearson_correlation: 0.7448 - euclidean_distance: 0.1404
Epoch 246/350
38/38 [==============================] - 0s 907us/step - loss: 0.0870 - accuracy: 0.9550 - mae: 0.0870 - pearson_correlation: 0.7484 - euclidean_distance: 0.1401
Epoch 247/350
38/38 [==============================] - 0s 907us/step - loss: 0.0874 - accuracy: 0.9532 - mae: 0.0874 - pearson_correlation: 0.7438 - euclidean_distance: 0.1404
Epoch 248/350
38/38 [==============================] - 0s 905us/step - loss: 0.0894 - accuracy: 0.9528 - mae: 0.0894 - pearson_correlation: 0.7430 - euclidean_distance: 0.1439
Epoch 249/350
38/38 [==============================] - 0s 910us/step - loss: 0.0867 - accuracy: 0.9524 - mae: 0.0867 - pearson_correlation: 0.7444 - euclidean_distance: 0.1403
Epoch 250/350
38/38 [==============================] - 0s 911us/step - loss: 0.0878 - accuracy: 0.9524 - mae: 0.0878 - pearson_correlation: 0.7438 - euclidean_distance: 0.1418
Epoch 251/350
38/38 [==============================] - 0s 906us/step - loss: 0.0837 - accuracy: 0.9515 - mae: 0.0837 - pearson_correlation: 0.7557 - euclidean_distance: 0.1354
Epoch 252/350
38/38 [==============================] - 0s 908us/step - loss: 0.0881 - accuracy: 0.9515 - mae: 0.0881 - pearson_correlation: 0.7425 - euclidean_distance: 0.1417
Epoch 253/350
38/38 [==============================] - 0s 914us/step - loss: 0.0854 - accuracy: 0.9528 - mae: 0.0854 - pearson_correlation: 0.7496 - euclidean_distance: 0.1378
Epoch 254/350
38/38 [==============================] - 0s 920us/step - loss: 0.0878 - accuracy: 0.9515 - mae: 0.0878 - pearson_correlation: 0.7410 - euclidean_distance: 0.1412
Epoch 255/350
38/38 [==============================] - 0s 889us/step - loss: 0.0866 - accuracy: 0.9524 - mae: 0.0866 - pearson_correlation: 0.7465 - euclidean_distance: 0.1403
Epoch 256/350
38/38 [==============================] - 0s 911us/step - loss: 0.0862 - accuracy: 0.9528 - mae: 0.0862 - pearson_correlation: 0.7486 - euclidean_distance: 0.1393
Epoch 257/350
38/38 [==============================] - 0s 915us/step - loss: 0.0860 - accuracy: 0.9524 - mae: 0.0860 - pearson_correlation: 0.7489 - euclidean_distance: 0.1388
Epoch 258/350
38/38 [==============================] - 0s 905us/step - loss: 0.0865 - accuracy: 0.9528 - mae: 0.0865 - pearson_correlation: 0.7503 - euclidean_distance: 0.1393
Epoch 259/350
38/38 [==============================] - 0s 901us/step - loss: 0.0856 - accuracy: 0.9519 - mae: 0.0856 - pearson_correlation: 0.7513 - euclidean_distance: 0.1384
Epoch 260/350
38/38 [==============================] - 0s 908us/step - loss: 0.0841 - accuracy: 0.9532 - mae: 0.0841 - pearson_correlation: 0.7567 - euclidean_distance: 0.1353
Epoch 261/350
38/38 [==============================] - 0s 914us/step - loss: 0.0864 - accuracy: 0.9515 - mae: 0.0864 - pearson_correlation: 0.7514 - euclidean_distance: 0.1391
Epoch 262/350
38/38 [==============================] - 0s 906us/step - loss: 0.0859 - accuracy: 0.9524 - mae: 0.0859 - pearson_correlation: 0.7520 - euclidean_distance: 0.1384
Epoch 263/350
38/38 [==============================] - 0s 915us/step - loss: 0.0851 - accuracy: 0.9524 - mae: 0.0851 - pearson_correlation: 0.7551 - euclidean_distance: 0.1374
Epoch 264/350
38/38 [==============================] - 0s 899us/step - loss: 0.0856 - accuracy: 0.9528 - mae: 0.0856 - pearson_correlation: 0.7483 - euclidean_distance: 0.1381
Epoch 265/350
38/38 [==============================] - 0s 905us/step - loss: 0.0847 - accuracy: 0.9519 - mae: 0.0847 - pearson_correlation: 0.7549 - euclidean_distance: 0.1365
Epoch 266/350
38/38 [==============================] - 0s 910us/step - loss: 0.0837 - accuracy: 0.9532 - mae: 0.0837 - pearson_correlation: 0.7514 - euclidean_distance: 0.1352
Epoch 267/350
38/38 [==============================] - 0s 899us/step - loss: 0.0885 - accuracy: 0.9528 - mae: 0.0885 - pearson_correlation: 0.7383 - euclidean_distance: 0.1427
Epoch 268/350
38/38 [==============================] - 0s 888us/step - loss: 0.0845 - accuracy: 0.9524 - mae: 0.0845 - pearson_correlation: 0.7542 - euclidean_distance: 0.1360
Epoch 269/350
38/38 [==============================] - 0s 918us/step - loss: 0.0849 - accuracy: 0.9528 - mae: 0.0849 - pearson_correlation: 0.7551 - euclidean_distance: 0.1365
Epoch 270/350
38/38 [==============================] - 0s 881us/step - loss: 0.0848 - accuracy: 0.9532 - mae: 0.0848 - pearson_correlation: 0.7488 - euclidean_distance: 0.1369
Epoch 271/350
38/38 [==============================] - 0s 901us/step - loss: 0.0843 - accuracy: 0.9541 - mae: 0.0843 - pearson_correlation: 0.7523 - euclidean_distance: 0.1360
Epoch 272/350
38/38 [==============================] - 0s 918us/step - loss: 0.0827 - accuracy: 0.9528 - mae: 0.0827 - pearson_correlation: 0.7574 - euclidean_distance: 0.1335
Epoch 273/350
38/38 [==============================] - 0s 902us/step - loss: 0.0843 - accuracy: 0.9510 - mae: 0.0843 - pearson_correlation: 0.7571 - euclidean_distance: 0.1357
Epoch 274/350
38/38 [==============================] - 0s 915us/step - loss: 0.0845 - accuracy: 0.9524 - mae: 0.0845 - pearson_correlation: 0.7518 - euclidean_distance: 0.1366
Epoch 275/350
38/38 [==============================] - 0s 915us/step - loss: 0.0822 - accuracy: 0.9532 - mae: 0.0822 - pearson_correlation: 0.7563 - euclidean_distance: 0.1330
Epoch 276/350
38/38 [==============================] - 0s 915us/step - loss: 0.0809 - accuracy: 0.9528 - mae: 0.0809 - pearson_correlation: 0.7640 - euclidean_distance: 0.1305
Epoch 277/350
38/38 [==============================] - 0s 894us/step - loss: 0.0823 - accuracy: 0.9528 - mae: 0.0823 - pearson_correlation: 0.7614 - euclidean_distance: 0.1326
Epoch 278/350
38/38 [==============================] - 0s 920us/step - loss: 0.0837 - accuracy: 0.9546 - mae: 0.0837 - pearson_correlation: 0.7550 - euclidean_distance: 0.1350
Epoch 279/350
38/38 [==============================] - 0s 887us/step - loss: 0.0818 - accuracy: 0.9519 - mae: 0.0818 - pearson_correlation: 0.7613 - euclidean_distance: 0.1319
Epoch 280/350
38/38 [==============================] - 0s 930us/step - loss: 0.0824 - accuracy: 0.9541 - mae: 0.0824 - pearson_correlation: 0.7574 - euclidean_distance: 0.1335
Epoch 281/350
38/38 [==============================] - 0s 924us/step - loss: 0.0810 - accuracy: 0.9528 - mae: 0.0810 - pearson_correlation: 0.7656 - euclidean_distance: 0.1307
Epoch 282/350
38/38 [==============================] - 0s 913us/step - loss: 0.0826 - accuracy: 0.9528 - mae: 0.0826 - pearson_correlation: 0.7584 - euclidean_distance: 0.1336
Epoch 283/350
38/38 [==============================] - 0s 916us/step - loss: 0.0809 - accuracy: 0.9537 - mae: 0.0809 - pearson_correlation: 0.7645 - euclidean_distance: 0.1312
Epoch 284/350
38/38 [==============================] - 0s 905us/step - loss: 0.0821 - accuracy: 0.9541 - mae: 0.0821 - pearson_correlation: 0.7597 - euclidean_distance: 0.1325
Epoch 285/350
38/38 [==============================] - 0s 921us/step - loss: 0.0806 - accuracy: 0.9515 - mae: 0.0806 - pearson_correlation: 0.7618 - euclidean_distance: 0.1305
Epoch 286/350
38/38 [==============================] - 0s 889us/step - loss: 0.0804 - accuracy: 0.9541 - mae: 0.0804 - pearson_correlation: 0.7650 - euclidean_distance: 0.1301
Epoch 287/350
38/38 [==============================] - 0s 903us/step - loss: 0.0802 - accuracy: 0.9528 - mae: 0.0802 - pearson_correlation: 0.7653 - euclidean_distance: 0.1295
Epoch 288/350
38/38 [==============================] - 0s 916us/step - loss: 0.0812 - accuracy: 0.9532 - mae: 0.0812 - pearson_correlation: 0.7662 - euclidean_distance: 0.1310
Epoch 289/350
38/38 [==============================] - 0s 922us/step - loss: 0.0802 - accuracy: 0.9541 - mae: 0.0802 - pearson_correlation: 0.7653 - euclidean_distance: 0.1297
Epoch 290/350
38/38 [==============================] - 0s 923us/step - loss: 0.0801 - accuracy: 0.9528 - mae: 0.0801 - pearson_correlation: 0.7670 - euclidean_distance: 0.1295
Epoch 291/350
38/38 [==============================] - 0s 891us/step - loss: 0.0831 - accuracy: 0.9524 - mae: 0.0831 - pearson_correlation: 0.7611 - euclidean_distance: 0.1340
Epoch 292/350
38/38 [==============================] - 0s 907us/step - loss: 0.0831 - accuracy: 0.9528 - mae: 0.0831 - pearson_correlation: 0.7571 - euclidean_distance: 0.1337
Epoch 293/350
38/38 [==============================] - 0s 917us/step - loss: 0.0801 - accuracy: 0.9528 - mae: 0.0801 - pearson_correlation: 0.7655 - euclidean_distance: 0.1299
Epoch 294/350
38/38 [==============================] - 0s 917us/step - loss: 0.0820 - accuracy: 0.9528 - mae: 0.0820 - pearson_correlation: 0.7593 - euclidean_distance: 0.1322
Epoch 295/350
38/38 [==============================] - 0s 911us/step - loss: 0.0798 - accuracy: 0.9537 - mae: 0.0798 - pearson_correlation: 0.7695 - euclidean_distance: 0.1287
Epoch 296/350
38/38 [==============================] - 0s 925us/step - loss: 0.0820 - accuracy: 0.9532 - mae: 0.0820 - pearson_correlation: 0.7577 - euclidean_distance: 0.1322
Epoch 297/350
38/38 [==============================] - 0s 930us/step - loss: 0.0796 - accuracy: 0.9532 - mae: 0.0796 - pearson_correlation: 0.7677 - euclidean_distance: 0.1288
Epoch 298/350
38/38 [==============================] - 0s 900us/step - loss: 0.0797 - accuracy: 0.9532 - mae: 0.0797 - pearson_correlation: 0.7678 - euclidean_distance: 0.1290
Epoch 299/350
38/38 [==============================] - 0s 904us/step - loss: 0.0810 - accuracy: 0.9537 - mae: 0.0810 - pearson_correlation: 0.7621 - euclidean_distance: 0.1310
Epoch 300/350
38/38 [==============================] - 0s 915us/step - loss: 0.0803 - accuracy: 0.9528 - mae: 0.0803 - pearson_correlation: 0.7644 - euclidean_distance: 0.1300
Epoch 301/350
38/38 [==============================] - 0s 918us/step - loss: 0.0815 - accuracy: 0.9541 - mae: 0.0815 - pearson_correlation: 0.7627 - euclidean_distance: 0.1312
Epoch 302/350
38/38 [==============================] - 0s 906us/step - loss: 0.0781 - accuracy: 0.9528 - mae: 0.0781 - pearson_correlation: 0.7665 - euclidean_distance: 0.1267
Epoch 303/350
38/38 [==============================] - 0s 905us/step - loss: 0.0792 - accuracy: 0.9537 - mae: 0.0792 - pearson_correlation: 0.7683 - euclidean_distance: 0.1278
Epoch 304/350
38/38 [==============================] - 0s 904us/step - loss: 0.0796 - accuracy: 0.9546 - mae: 0.0796 - pearson_correlation: 0.7675 - euclidean_distance: 0.1283
Epoch 305/350
38/38 [==============================] - 0s 902us/step - loss: 0.0795 - accuracy: 0.9528 - mae: 0.0795 - pearson_correlation: 0.7658 - euclidean_distance: 0.1286
Epoch 306/350
38/38 [==============================] - 0s 912us/step - loss: 0.0790 - accuracy: 0.9532 - mae: 0.0790 - pearson_correlation: 0.7685 - euclidean_distance: 0.1278
Epoch 307/350
38/38 [==============================] - 0s 910us/step - loss: 0.0782 - accuracy: 0.9532 - mae: 0.0782 - pearson_correlation: 0.7696 - euclidean_distance: 0.1265
Epoch 308/350
38/38 [==============================] - 0s 936us/step - loss: 0.0791 - accuracy: 0.9550 - mae: 0.0791 - pearson_correlation: 0.7689 - euclidean_distance: 0.1281
Epoch 309/350
38/38 [==============================] - 0s 933us/step - loss: 0.0804 - accuracy: 0.9541 - mae: 0.0804 - pearson_correlation: 0.7676 - euclidean_distance: 0.1296
Epoch 310/350
38/38 [==============================] - 0s 910us/step - loss: 0.0826 - accuracy: 0.9528 - mae: 0.0826 - pearson_correlation: 0.7607 - euclidean_distance: 0.1333
Epoch 311/350
38/38 [==============================] - 0s 913us/step - loss: 0.0794 - accuracy: 0.9528 - mae: 0.0794 - pearson_correlation: 0.7732 - euclidean_distance: 0.1283
Epoch 312/350
38/38 [==============================] - 0s 902us/step - loss: 0.0813 - accuracy: 0.9537 - mae: 0.0813 - pearson_correlation: 0.7637 - euclidean_distance: 0.1307
Epoch 313/350
38/38 [==============================] - 0s 911us/step - loss: 0.0813 - accuracy: 0.9541 - mae: 0.0813 - pearson_correlation: 0.7664 - euclidean_distance: 0.1308
Epoch 314/350
38/38 [==============================] - 0s 914us/step - loss: 0.0794 - accuracy: 0.9537 - mae: 0.0794 - pearson_correlation: 0.7696 - euclidean_distance: 0.1279
Epoch 315/350
38/38 [==============================] - 0s 918us/step - loss: 0.0777 - accuracy: 0.9537 - mae: 0.0777 - pearson_correlation: 0.7722 - euclidean_distance: 0.1259
Epoch 316/350
38/38 [==============================] - 0s 916us/step - loss: 0.0790 - accuracy: 0.9532 - mae: 0.0790 - pearson_correlation: 0.7725 - euclidean_distance: 0.1271
Epoch 317/350
38/38 [==============================] - 0s 916us/step - loss: 0.0798 - accuracy: 0.9541 - mae: 0.0798 - pearson_correlation: 0.7660 - euclidean_distance: 0.1289
Epoch 318/350
38/38 [==============================] - 0s 905us/step - loss: 0.0782 - accuracy: 0.9537 - mae: 0.0782 - pearson_correlation: 0.7727 - euclidean_distance: 0.1260
Epoch 319/350
38/38 [==============================] - 0s 914us/step - loss: 0.0791 - accuracy: 0.9541 - mae: 0.0791 - pearson_correlation: 0.7691 - euclidean_distance: 0.1279
Epoch 320/350
38/38 [==============================] - 0s 907us/step - loss: 0.0787 - accuracy: 0.9537 - mae: 0.0787 - pearson_correlation: 0.7720 - euclidean_distance: 0.1267
Epoch 321/350
38/38 [==============================] - 0s 910us/step - loss: 0.0794 - accuracy: 0.9541 - mae: 0.0794 - pearson_correlation: 0.7695 - euclidean_distance: 0.1278
Epoch 322/350
38/38 [==============================] - 0s 902us/step - loss: 0.0792 - accuracy: 0.9532 - mae: 0.0792 - pearson_correlation: 0.7708 - euclidean_distance: 0.1279
Epoch 323/350
38/38 [==============================] - 0s 913us/step - loss: 0.0799 - accuracy: 0.9532 - mae: 0.0799 - pearson_correlation: 0.7714 - euclidean_distance: 0.1292
Epoch 324/350
38/38 [==============================] - 0s 912us/step - loss: 0.0796 - accuracy: 0.9537 - mae: 0.0796 - pearson_correlation: 0.7728 - euclidean_distance: 0.1281
Epoch 325/350
38/38 [==============================] - 0s 906us/step - loss: 0.0809 - accuracy: 0.9541 - mae: 0.0809 - pearson_correlation: 0.7666 - euclidean_distance: 0.1303
Epoch 326/350
38/38 [==============================] - 0s 939us/step - loss: 0.0794 - accuracy: 0.9524 - mae: 0.0794 - pearson_correlation: 0.7669 - euclidean_distance: 0.1284
Epoch 327/350
38/38 [==============================] - 0s 876us/step - loss: 0.0782 - accuracy: 0.9532 - mae: 0.0782 - pearson_correlation: 0.7727 - euclidean_distance: 0.1260
Epoch 328/350
38/38 [==============================] - 0s 901us/step - loss: 0.0780 - accuracy: 0.9546 - mae: 0.0780 - pearson_correlation: 0.7756 - euclidean_distance: 0.1261
Epoch 329/350
38/38 [==============================] - 0s 888us/step - loss: 0.0796 - accuracy: 0.9537 - mae: 0.0796 - pearson_correlation: 0.7735 - euclidean_distance: 0.1280
Epoch 330/350
38/38 [==============================] - 0s 893us/step - loss: 0.0784 - accuracy: 0.9524 - mae: 0.0784 - pearson_correlation: 0.7694 - euclidean_distance: 0.1265
Epoch 331/350
38/38 [==============================] - 0s 902us/step - loss: 0.0758 - accuracy: 0.9541 - mae: 0.0758 - pearson_correlation: 0.7769 - euclidean_distance: 0.1227
Epoch 332/350
38/38 [==============================] - 0s 914us/step - loss: 0.0775 - accuracy: 0.9550 - mae: 0.0775 - pearson_correlation: 0.7700 - euclidean_distance: 0.1257
Epoch 333/350
38/38 [==============================] - 0s 909us/step - loss: 0.0784 - accuracy: 0.9537 - mae: 0.0784 - pearson_correlation: 0.7701 - euclidean_distance: 0.1268
Epoch 334/350
38/38 [==============================] - 0s 913us/step - loss: 0.0792 - accuracy: 0.9528 - mae: 0.0792 - pearson_correlation: 0.7710 - euclidean_distance: 0.1280
Epoch 335/350
38/38 [==============================] - 0s 920us/step - loss: 0.0791 - accuracy: 0.9541 - mae: 0.0791 - pearson_correlation: 0.7697 - euclidean_distance: 0.1277
Epoch 336/350
38/38 [==============================] - 0s 909us/step - loss: 0.0779 - accuracy: 0.9532 - mae: 0.0779 - pearson_correlation: 0.7751 - euclidean_distance: 0.1254
Epoch 337/350
38/38 [==============================] - 0s 923us/step - loss: 0.0768 - accuracy: 0.9546 - mae: 0.0768 - pearson_correlation: 0.7740 - euclidean_distance: 0.1243
Epoch 338/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0770 - accuracy: 0.9541 - mae: 0.0770 - pearson_correlation: 0.7759 - euclidean_distance: 0.1242
Epoch 339/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0758 - accuracy: 0.9528 - mae: 0.0758 - pearson_correlation: 0.7777 - euclidean_distance: 0.1225
Epoch 340/350
38/38 [==============================] - 0s 995us/step - loss: 0.0776 - accuracy: 0.9532 - mae: 0.0776 - pearson_correlation: 0.7749 - euclidean_distance: 0.1253
Epoch 341/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0791 - accuracy: 0.9541 - mae: 0.0791 - pearson_correlation: 0.7706 - euclidean_distance: 0.1276
Epoch 342/350
38/38 [==============================] - 0s 995us/step - loss: 0.0754 - accuracy: 0.9537 - mae: 0.0754 - pearson_correlation: 0.7810 - euclidean_distance: 0.1222
Epoch 343/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0783 - accuracy: 0.9541 - mae: 0.0783 - pearson_correlation: 0.7703 - euclidean_distance: 0.1264
Epoch 344/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0791 - accuracy: 0.9532 - mae: 0.0791 - pearson_correlation: 0.7744 - euclidean_distance: 0.1274
Epoch 345/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0756 - accuracy: 0.9550 - mae: 0.0756 - pearson_correlation: 0.7767 - euclidean_distance: 0.1222
Epoch 346/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0772 - accuracy: 0.9554 - mae: 0.0772 - pearson_correlation: 0.7729 - euclidean_distance: 0.1247
Epoch 347/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0767 - accuracy: 0.9554 - mae: 0.0767 - pearson_correlation: 0.7789 - euclidean_distance: 0.1237
Epoch 348/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0778 - accuracy: 0.9546 - mae: 0.0778 - pearson_correlation: 0.7759 - euclidean_distance: 0.1256
Epoch 349/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0746 - accuracy: 0.9546 - mae: 0.0746 - pearson_correlation: 0.7790 - euclidean_distance: 0.1209
Epoch 350/350
38/38 [==============================] - 0s 1ms/step - loss: 0.0773 - accuracy: 0.9541 - mae: 0.0773 - pearson_correlation: 0.7749 - euclidean_distance: 0.1254
19/19 [==============================] - 0s 519us/step
Epoch 1/350
38/38 [==============================] - 1s 892us/step - loss: 0.5112 - accuracy: 0.0450 - mae: 0.5112 - pearson_correlation: -0.6891 - euclidean_distance: 0.8622
Epoch 2/350
38/38 [==============================] - 0s 901us/step - loss: 0.5081 - accuracy: 0.0446 - mae: 0.5081 - pearson_correlation: -0.6947 - euclidean_distance: 0.8594
Epoch 3/350
38/38 [==============================] - 0s 923us/step - loss: 0.5073 - accuracy: 0.0450 - mae: 0.5073 - pearson_correlation: -0.6891 - euclidean_distance: 0.8592
Epoch 4/350
38/38 [==============================] - 0s 907us/step - loss: 0.5068 - accuracy: 0.0446 - mae: 0.5068 - pearson_correlation: -0.6871 - euclidean_distance: 0.8568
Epoch 5/350
38/38 [==============================] - 0s 907us/step - loss: 0.5045 - accuracy: 0.0446 - mae: 0.5045 - pearson_correlation: -0.6865 - euclidean_distance: 0.8548
Epoch 6/350
38/38 [==============================] - 0s 903us/step - loss: 0.5024 - accuracy: 0.0446 - mae: 0.5024 - pearson_correlation: -0.6894 - euclidean_distance: 0.8519
Epoch 7/350
38/38 [==============================] - 0s 911us/step - loss: 0.5010 - accuracy: 0.0450 - mae: 0.5010 - pearson_correlation: -0.6906 - euclidean_distance: 0.8504
Epoch 8/350
38/38 [==============================] - 0s 920us/step - loss: 0.5008 - accuracy: 0.0450 - mae: 0.5008 - pearson_correlation: -0.6909 - euclidean_distance: 0.8498
Epoch 9/350
38/38 [==============================] - 0s 879us/step - loss: 0.4972 - accuracy: 0.0446 - mae: 0.4972 - pearson_correlation: -0.6935 - euclidean_distance: 0.8457
Epoch 10/350
38/38 [==============================] - 0s 915us/step - loss: 0.4981 - accuracy: 0.0450 - mae: 0.4981 - pearson_correlation: -0.6897 - euclidean_distance: 0.8452
Epoch 11/350
38/38 [==============================] - 0s 883us/step - loss: 0.4961 - accuracy: 0.0446 - mae: 0.4961 - pearson_correlation: -0.6888 - euclidean_distance: 0.8426
Epoch 12/350
38/38 [==============================] - 0s 911us/step - loss: 0.4937 - accuracy: 0.0446 - mae: 0.4937 - pearson_correlation: -0.6925 - euclidean_distance: 0.8403
Epoch 13/350
38/38 [==============================] - 0s 867us/step - loss: 0.4921 - accuracy: 0.0450 - mae: 0.4921 - pearson_correlation: -0.6920 - euclidean_distance: 0.8380
Epoch 14/350
38/38 [==============================] - 0s 904us/step - loss: 0.4904 - accuracy: 0.0446 - mae: 0.4904 - pearson_correlation: -0.6916 - euclidean_distance: 0.8354
Epoch 15/350
38/38 [==============================] - 0s 918us/step - loss: 0.4890 - accuracy: 0.0446 - mae: 0.4890 - pearson_correlation: -0.6935 - euclidean_distance: 0.8345
Epoch 16/350
38/38 [==============================] - 0s 890us/step - loss: 0.4872 - accuracy: 0.0450 - mae: 0.4872 - pearson_correlation: -0.6927 - euclidean_distance: 0.8313
Epoch 17/350
38/38 [==============================] - 0s 905us/step - loss: 0.4849 - accuracy: 0.0459 - mae: 0.4849 - pearson_correlation: -0.6934 - euclidean_distance: 0.8293
Epoch 18/350
38/38 [==============================] - 0s 926us/step - loss: 0.4831 - accuracy: 0.0441 - mae: 0.4831 - pearson_correlation: -0.6933 - euclidean_distance: 0.8271
Epoch 19/350
38/38 [==============================] - 0s 872us/step - loss: 0.4818 - accuracy: 0.0446 - mae: 0.4818 - pearson_correlation: -0.6927 - euclidean_distance: 0.8250
Epoch 20/350
38/38 [==============================] - 0s 909us/step - loss: 0.4814 - accuracy: 0.0446 - mae: 0.4814 - pearson_correlation: -0.6923 - euclidean_distance: 0.8233
Epoch 21/350
38/38 [==============================] - 0s 908us/step - loss: 0.4807 - accuracy: 0.0446 - mae: 0.4807 - pearson_correlation: -0.6939 - euclidean_distance: 0.8220
Epoch 22/350
38/38 [==============================] - 0s 948us/step - loss: 0.4776 - accuracy: 0.0459 - mae: 0.4776 - pearson_correlation: -0.6963 - euclidean_distance: 0.8180
Epoch 23/350
38/38 [==============================] - 0s 871us/step - loss: 0.4764 - accuracy: 0.0463 - mae: 0.4764 - pearson_correlation: -0.6923 - euclidean_distance: 0.8171
Epoch 24/350
38/38 [==============================] - 0s 904us/step - loss: 0.4746 - accuracy: 0.0463 - mae: 0.4746 - pearson_correlation: -0.6964 - euclidean_distance: 0.8145
Epoch 25/350
38/38 [==============================] - 0s 909us/step - loss: 0.4727 - accuracy: 0.0459 - mae: 0.4727 - pearson_correlation: -0.6953 - euclidean_distance: 0.8122
Epoch 26/350
38/38 [==============================] - 0s 898us/step - loss: 0.4704 - accuracy: 0.0459 - mae: 0.4704 - pearson_correlation: -0.6995 - euclidean_distance: 0.8093
Epoch 27/350
38/38 [==============================] - 0s 906us/step - loss: 0.4696 - accuracy: 0.0454 - mae: 0.4696 - pearson_correlation: -0.6967 - euclidean_distance: 0.8075
Epoch 28/350
38/38 [==============================] - 0s 901us/step - loss: 0.4684 - accuracy: 0.0446 - mae: 0.4684 - pearson_correlation: -0.6951 - euclidean_distance: 0.8056
Epoch 29/350
38/38 [==============================] - 0s 902us/step - loss: 0.4665 - accuracy: 0.0450 - mae: 0.4665 - pearson_correlation: -0.6968 - euclidean_distance: 0.8031
Epoch 30/350
38/38 [==============================] - 0s 889us/step - loss: 0.4649 - accuracy: 0.0463 - mae: 0.4649 - pearson_correlation: -0.6968 - euclidean_distance: 0.8015
Epoch 31/350
38/38 [==============================] - 0s 896us/step - loss: 0.4622 - accuracy: 0.0454 - mae: 0.4622 - pearson_correlation: -0.6990 - euclidean_distance: 0.7981
Epoch 32/350
38/38 [==============================] - 0s 902us/step - loss: 0.4620 - accuracy: 0.0450 - mae: 0.4620 - pearson_correlation: -0.6975 - euclidean_distance: 0.7966
Epoch 33/350
38/38 [==============================] - 0s 898us/step - loss: 0.4592 - accuracy: 0.0463 - mae: 0.4592 - pearson_correlation: -0.6972 - euclidean_distance: 0.7936
Epoch 34/350
38/38 [==============================] - 0s 900us/step - loss: 0.4576 - accuracy: 0.0472 - mae: 0.4576 - pearson_correlation: -0.6923 - euclidean_distance: 0.7912
Epoch 35/350
38/38 [==============================] - 0s 904us/step - loss: 0.4579 - accuracy: 0.0446 - mae: 0.4579 - pearson_correlation: -0.6988 - euclidean_distance: 0.7905
Epoch 36/350
38/38 [==============================] - 0s 894us/step - loss: 0.4557 - accuracy: 0.0463 - mae: 0.4557 - pearson_correlation: -0.6973 - euclidean_distance: 0.7876
Epoch 37/350
38/38 [==============================] - 0s 923us/step - loss: 0.4537 - accuracy: 0.0463 - mae: 0.4537 - pearson_correlation: -0.6999 - euclidean_distance: 0.7853
Epoch 38/350
38/38 [==============================] - 0s 890us/step - loss: 0.4511 - accuracy: 0.0463 - mae: 0.4511 - pearson_correlation: -0.7026 - euclidean_distance: 0.7820
Epoch 39/350
38/38 [==============================] - 0s 914us/step - loss: 0.4505 - accuracy: 0.0468 - mae: 0.4505 - pearson_correlation: -0.6995 - euclidean_distance: 0.7802
Epoch 40/350
38/38 [==============================] - 0s 875us/step - loss: 0.4479 - accuracy: 0.0468 - mae: 0.4479 - pearson_correlation: -0.7005 - euclidean_distance: 0.7772
Epoch 41/350
38/38 [==============================] - 0s 905us/step - loss: 0.4458 - accuracy: 0.0468 - mae: 0.4458 - pearson_correlation: -0.6993 - euclidean_distance: 0.7747
Epoch 42/350
38/38 [==============================] - 0s 902us/step - loss: 0.4447 - accuracy: 0.0459 - mae: 0.4447 - pearson_correlation: -0.6977 - euclidean_distance: 0.7724
Epoch 43/350
38/38 [==============================] - 0s 904us/step - loss: 0.4434 - accuracy: 0.0463 - mae: 0.4434 - pearson_correlation: -0.6971 - euclidean_distance: 0.7707
Epoch 44/350
38/38 [==============================] - 0s 929us/step - loss: 0.4416 - accuracy: 0.0468 - mae: 0.4416 - pearson_correlation: -0.6970 - euclidean_distance: 0.7682
Epoch 45/350
38/38 [==============================] - 0s 888us/step - loss: 0.4399 - accuracy: 0.0468 - mae: 0.4399 - pearson_correlation: -0.7051 - euclidean_distance: 0.7655
Epoch 46/350
38/38 [==============================] - 0s 909us/step - loss: 0.4390 - accuracy: 0.0463 - mae: 0.4390 - pearson_correlation: -0.6986 - euclidean_distance: 0.7630
Epoch 47/350
38/38 [==============================] - 0s 898us/step - loss: 0.4372 - accuracy: 0.0459 - mae: 0.4372 - pearson_correlation: -0.6997 - euclidean_distance: 0.7612
Epoch 48/350
38/38 [==============================] - 0s 910us/step - loss: 0.4355 - accuracy: 0.0468 - mae: 0.4355 - pearson_correlation: -0.6996 - euclidean_distance: 0.7591
Epoch 49/350
38/38 [==============================] - 0s 899us/step - loss: 0.4334 - accuracy: 0.0468 - mae: 0.4334 - pearson_correlation: -0.6994 - euclidean_distance: 0.7557
Epoch 50/350
38/38 [==============================] - 0s 898us/step - loss: 0.4316 - accuracy: 0.0472 - mae: 0.4316 - pearson_correlation: -0.7010 - euclidean_distance: 0.7540
Epoch 51/350
38/38 [==============================] - 0s 888us/step - loss: 0.4310 - accuracy: 0.0459 - mae: 0.4310 - pearson_correlation: -0.7017 - euclidean_distance: 0.7525
Epoch 52/350
38/38 [==============================] - 0s 902us/step - loss: 0.4286 - accuracy: 0.0468 - mae: 0.4286 - pearson_correlation: -0.6992 - euclidean_distance: 0.7497
Epoch 53/350
38/38 [==============================] - 0s 908us/step - loss: 0.4275 - accuracy: 0.0468 - mae: 0.4275 - pearson_correlation: -0.6996 - euclidean_distance: 0.7474
Epoch 54/350
38/38 [==============================] - 0s 913us/step - loss: 0.4252 - accuracy: 0.0463 - mae: 0.4252 - pearson_correlation: -0.6990 - euclidean_distance: 0.7450
Epoch 55/350
38/38 [==============================] - 0s 906us/step - loss: 0.4249 - accuracy: 0.0468 - mae: 0.4249 - pearson_correlation: -0.6976 - euclidean_distance: 0.7425
Epoch 56/350
38/38 [==============================] - 0s 926us/step - loss: 0.4225 - accuracy: 0.0468 - mae: 0.4225 - pearson_correlation: -0.6986 - euclidean_distance: 0.7399
Epoch 57/350
38/38 [==============================] - 0s 884us/step - loss: 0.4219 - accuracy: 0.0472 - mae: 0.4219 - pearson_correlation: -0.6970 - euclidean_distance: 0.7381
Epoch 58/350
38/38 [==============================] - 0s 901us/step - loss: 0.4195 - accuracy: 0.0468 - mae: 0.4195 - pearson_correlation: -0.6988 - euclidean_distance: 0.7354
Epoch 59/350
38/38 [==============================] - 0s 908us/step - loss: 0.4171 - accuracy: 0.0468 - mae: 0.4171 - pearson_correlation: -0.6982 - euclidean_distance: 0.7323
Epoch 60/350
38/38 [==============================] - 0s 897us/step - loss: 0.4152 - accuracy: 0.0472 - mae: 0.4152 - pearson_correlation: -0.6982 - euclidean_distance: 0.7291
Epoch 61/350
38/38 [==============================] - 0s 903us/step - loss: 0.4151 - accuracy: 0.0476 - mae: 0.4151 - pearson_correlation: -0.6992 - euclidean_distance: 0.7282
Epoch 62/350
38/38 [==============================] - 0s 899us/step - loss: 0.4137 - accuracy: 0.0472 - mae: 0.4137 - pearson_correlation: -0.6948 - euclidean_distance: 0.7262
Epoch 63/350
38/38 [==============================] - 0s 906us/step - loss: 0.4104 - accuracy: 0.0472 - mae: 0.4104 - pearson_correlation: -0.6937 - euclidean_distance: 0.7221
Epoch 64/350
38/38 [==============================] - 0s 908us/step - loss: 0.4101 - accuracy: 0.0463 - mae: 0.4101 - pearson_correlation: -0.6956 - euclidean_distance: 0.7203
Epoch 65/350
38/38 [==============================] - 0s 900us/step - loss: 0.4090 - accuracy: 0.0476 - mae: 0.4090 - pearson_correlation: -0.6891 - euclidean_distance: 0.7183
Epoch 66/350
38/38 [==============================] - 0s 914us/step - loss: 0.4076 - accuracy: 0.0476 - mae: 0.4076 - pearson_correlation: -0.6932 - euclidean_distance: 0.7159
Epoch 67/350
38/38 [==============================] - 0s 908us/step - loss: 0.4051 - accuracy: 0.0481 - mae: 0.4051 - pearson_correlation: -0.6901 - euclidean_distance: 0.7123
Epoch 68/350
38/38 [==============================] - 0s 886us/step - loss: 0.4031 - accuracy: 0.0476 - mae: 0.4031 - pearson_correlation: -0.6888 - euclidean_distance: 0.7099
Epoch 69/350
38/38 [==============================] - 0s 887us/step - loss: 0.4037 - accuracy: 0.0481 - mae: 0.4037 - pearson_correlation: -0.6853 - euclidean_distance: 0.7084
Epoch 70/350
38/38 [==============================] - 0s 916us/step - loss: 0.4005 - accuracy: 0.0485 - mae: 0.4005 - pearson_correlation: -0.6879 - euclidean_distance: 0.7049
Epoch 71/350
38/38 [==============================] - 0s 882us/step - loss: 0.3988 - accuracy: 0.0485 - mae: 0.3988 - pearson_correlation: -0.6842 - euclidean_distance: 0.7025
Epoch 72/350
38/38 [==============================] - 0s 900us/step - loss: 0.3984 - accuracy: 0.0476 - mae: 0.3984 - pearson_correlation: -0.6788 - euclidean_distance: 0.7000
Epoch 73/350
38/38 [==============================] - 0s 904us/step - loss: 0.3969 - accuracy: 0.0490 - mae: 0.3969 - pearson_correlation: -0.6794 - euclidean_distance: 0.6970
Epoch 74/350
38/38 [==============================] - 0s 919us/step - loss: 0.3954 - accuracy: 0.0481 - mae: 0.3954 - pearson_correlation: -0.6752 - euclidean_distance: 0.6946
Epoch 75/350
38/38 [==============================] - 0s 928us/step - loss: 0.3921 - accuracy: 0.0485 - mae: 0.3921 - pearson_correlation: -0.6771 - euclidean_distance: 0.6902
Epoch 76/350
38/38 [==============================] - 0s 937us/step - loss: 0.3914 - accuracy: 0.0503 - mae: 0.3914 - pearson_correlation: -0.6702 - euclidean_distance: 0.6890
Epoch 77/350
38/38 [==============================] - 0s 904us/step - loss: 0.3891 - accuracy: 0.0498 - mae: 0.3891 - pearson_correlation: -0.6714 - euclidean_distance: 0.6857
Epoch 78/350
38/38 [==============================] - 0s 900us/step - loss: 0.3900 - accuracy: 0.0503 - mae: 0.3900 - pearson_correlation: -0.6671 - euclidean_distance: 0.6832
Epoch 79/350
38/38 [==============================] - 0s 898us/step - loss: 0.3863 - accuracy: 0.0507 - mae: 0.3863 - pearson_correlation: -0.6616 - euclidean_distance: 0.6800
Epoch 80/350
38/38 [==============================] - 0s 901us/step - loss: 0.3853 - accuracy: 0.0468 - mae: 0.3853 - pearson_correlation: -0.6624 - euclidean_distance: 0.6782
Epoch 81/350
38/38 [==============================] - 0s 905us/step - loss: 0.3830 - accuracy: 0.0481 - mae: 0.3830 - pearson_correlation: -0.6586 - euclidean_distance: 0.6747
Epoch 82/350
38/38 [==============================] - 0s 909us/step - loss: 0.3827 - accuracy: 0.0498 - mae: 0.3827 - pearson_correlation: -0.6598 - euclidean_distance: 0.6730
Epoch 83/350
38/38 [==============================] - 0s 898us/step - loss: 0.3812 - accuracy: 0.0490 - mae: 0.3812 - pearson_correlation: -0.6534 - euclidean_distance: 0.6702
Epoch 84/350
38/38 [==============================] - 0s 891us/step - loss: 0.3796 - accuracy: 0.0498 - mae: 0.3796 - pearson_correlation: -0.6493 - euclidean_distance: 0.6662
Epoch 85/350
38/38 [==============================] - 0s 907us/step - loss: 0.3764 - accuracy: 0.0529 - mae: 0.3764 - pearson_correlation: -0.6477 - euclidean_distance: 0.6630
Epoch 86/350
38/38 [==============================] - 0s 909us/step - loss: 0.3758 - accuracy: 0.0569 - mae: 0.3758 - pearson_correlation: -0.6371 - euclidean_distance: 0.6601
Epoch 87/350
38/38 [==============================] - 0s 909us/step - loss: 0.3753 - accuracy: 0.0547 - mae: 0.3753 - pearson_correlation: -0.6422 - euclidean_distance: 0.6591
Epoch 88/350
38/38 [==============================] - 0s 900us/step - loss: 0.3735 - accuracy: 0.0569 - mae: 0.3735 - pearson_correlation: -0.6346 - euclidean_distance: 0.6559
Epoch 89/350
38/38 [==============================] - 0s 889us/step - loss: 0.3716 - accuracy: 0.0582 - mae: 0.3716 - pearson_correlation: -0.6280 - euclidean_distance: 0.6522
Epoch 90/350
38/38 [==============================] - 0s 907us/step - loss: 0.3678 - accuracy: 0.0591 - mae: 0.3678 - pearson_correlation: -0.6341 - euclidean_distance: 0.6489
Epoch 91/350
38/38 [==============================] - 0s 897us/step - loss: 0.3679 - accuracy: 0.0596 - mae: 0.3679 - pearson_correlation: -0.6241 - euclidean_distance: 0.6461
Epoch 92/350
38/38 [==============================] - 0s 913us/step - loss: 0.3670 - accuracy: 0.0653 - mae: 0.3670 - pearson_correlation: -0.6213 - euclidean_distance: 0.6445
Epoch 93/350
38/38 [==============================] - 0s 885us/step - loss: 0.3657 - accuracy: 0.0618 - mae: 0.3657 - pearson_correlation: -0.6137 - euclidean_distance: 0.6423
Epoch 94/350
38/38 [==============================] - 0s 908us/step - loss: 0.3633 - accuracy: 0.0670 - mae: 0.3633 - pearson_correlation: -0.6184 - euclidean_distance: 0.6386
Epoch 95/350
38/38 [==============================] - 0s 908us/step - loss: 0.3616 - accuracy: 0.0754 - mae: 0.3616 - pearson_correlation: -0.6078 - euclidean_distance: 0.6353
Epoch 96/350
38/38 [==============================] - 0s 906us/step - loss: 0.3601 - accuracy: 0.0750 - mae: 0.3601 - pearson_correlation: -0.6043 - euclidean_distance: 0.6329
Epoch 97/350
38/38 [==============================] - 0s 908us/step - loss: 0.3584 - accuracy: 0.0812 - mae: 0.3584 - pearson_correlation: -0.5968 - euclidean_distance: 0.6290
Epoch 98/350
38/38 [==============================] - 0s 905us/step - loss: 0.3570 - accuracy: 0.0807 - mae: 0.3570 - pearson_correlation: -0.5976 - euclidean_distance: 0.6272
Epoch 99/350
38/38 [==============================] - 0s 897us/step - loss: 0.3558 - accuracy: 0.0904 - mae: 0.3558 - pearson_correlation: -0.5879 - euclidean_distance: 0.6237
Epoch 100/350
38/38 [==============================] - 0s 905us/step - loss: 0.3547 - accuracy: 0.0970 - mae: 0.3547 - pearson_correlation: -0.5800 - euclidean_distance: 0.6213
Epoch 101/350
38/38 [==============================] - 0s 914us/step - loss: 0.3529 - accuracy: 0.0948 - mae: 0.3529 - pearson_correlation: -0.5777 - euclidean_distance: 0.6182
Epoch 102/350
38/38 [==============================] - 0s 907us/step - loss: 0.3517 - accuracy: 0.1023 - mae: 0.3517 - pearson_correlation: -0.5661 - euclidean_distance: 0.6145
Epoch 103/350
38/38 [==============================] - 0s 920us/step - loss: 0.3495 - accuracy: 0.1015 - mae: 0.3495 - pearson_correlation: -0.5659 - euclidean_distance: 0.6116
Epoch 104/350
38/38 [==============================] - 0s 904us/step - loss: 0.3478 - accuracy: 0.1028 - mae: 0.3478 - pearson_correlation: -0.5602 - euclidean_distance: 0.6089
Epoch 105/350
38/38 [==============================] - 0s 904us/step - loss: 0.3465 - accuracy: 0.1045 - mae: 0.3465 - pearson_correlation: -0.5576 - euclidean_distance: 0.6068
Epoch 106/350
38/38 [==============================] - 0s 903us/step - loss: 0.3445 - accuracy: 0.1107 - mae: 0.3445 - pearson_correlation: -0.5464 - euclidean_distance: 0.6020
Epoch 107/350
38/38 [==============================] - 0s 861us/step - loss: 0.3430 - accuracy: 0.1160 - mae: 0.3430 - pearson_correlation: -0.5413 - euclidean_distance: 0.5998
Epoch 108/350
38/38 [==============================] - 0s 895us/step - loss: 0.3409 - accuracy: 0.1182 - mae: 0.3409 - pearson_correlation: -0.5342 - euclidean_distance: 0.5970
Epoch 109/350
38/38 [==============================] - 0s 910us/step - loss: 0.3397 - accuracy: 0.1217 - mae: 0.3397 - pearson_correlation: -0.5312 - euclidean_distance: 0.5938
Epoch 110/350
38/38 [==============================] - 0s 965us/step - loss: 0.3386 - accuracy: 0.1182 - mae: 0.3386 - pearson_correlation: -0.5221 - euclidean_distance: 0.5912
Epoch 111/350
38/38 [==============================] - 0s 899us/step - loss: 0.3358 - accuracy: 0.1204 - mae: 0.3358 - pearson_correlation: -0.5142 - euclidean_distance: 0.5868
Epoch 112/350
38/38 [==============================] - 0s 908us/step - loss: 0.3357 - accuracy: 0.1222 - mae: 0.3357 - pearson_correlation: -0.5056 - euclidean_distance: 0.5846
Epoch 113/350
38/38 [==============================] - 0s 901us/step - loss: 0.3326 - accuracy: 0.1323 - mae: 0.3326 - pearson_correlation: -0.5003 - euclidean_distance: 0.5806
Epoch 114/350
38/38 [==============================] - 0s 900us/step - loss: 0.3318 - accuracy: 0.1341 - mae: 0.3318 - pearson_correlation: -0.4832 - euclidean_distance: 0.5774
Epoch 115/350
38/38 [==============================] - 0s 901us/step - loss: 0.3295 - accuracy: 0.1341 - mae: 0.3295 - pearson_correlation: -0.4892 - euclidean_distance: 0.5750
Epoch 116/350
38/38 [==============================] - 0s 909us/step - loss: 0.3283 - accuracy: 0.1385 - mae: 0.3283 - pearson_correlation: -0.4804 - euclidean_distance: 0.5722
Epoch 117/350
38/38 [==============================] - 0s 916us/step - loss: 0.3267 - accuracy: 0.1425 - mae: 0.3267 - pearson_correlation: -0.4619 - euclidean_distance: 0.5684
Epoch 118/350
38/38 [==============================] - 0s 912us/step - loss: 0.3252 - accuracy: 0.1469 - mae: 0.3252 - pearson_correlation: -0.4533 - euclidean_distance: 0.5647
Epoch 119/350
38/38 [==============================] - 0s 908us/step - loss: 0.3222 - accuracy: 0.1495 - mae: 0.3222 - pearson_correlation: -0.4502 - euclidean_distance: 0.5610
Epoch 120/350
38/38 [==============================] - 0s 904us/step - loss: 0.3196 - accuracy: 0.1522 - mae: 0.3196 - pearson_correlation: -0.4414 - euclidean_distance: 0.5566
Epoch 121/350
38/38 [==============================] - 0s 898us/step - loss: 0.3187 - accuracy: 0.1614 - mae: 0.3187 - pearson_correlation: -0.4259 - euclidean_distance: 0.5549
Epoch 122/350
38/38 [==============================] - 0s 906us/step - loss: 0.3181 - accuracy: 0.1654 - mae: 0.3181 - pearson_correlation: -0.4264 - euclidean_distance: 0.5525
Epoch 123/350
38/38 [==============================] - 0s 913us/step - loss: 0.3163 - accuracy: 0.1645 - mae: 0.3163 - pearson_correlation: -0.4098 - euclidean_distance: 0.5482
Epoch 124/350
38/38 [==============================] - 0s 897us/step - loss: 0.3142 - accuracy: 0.1756 - mae: 0.3142 - pearson_correlation: -0.4018 - euclidean_distance: 0.5457
Epoch 125/350
38/38 [==============================] - 0s 930us/step - loss: 0.3119 - accuracy: 0.1791 - mae: 0.3119 - pearson_correlation: -0.3950 - euclidean_distance: 0.5407
Epoch 126/350
38/38 [==============================] - 0s 859us/step - loss: 0.3105 - accuracy: 0.1844 - mae: 0.3105 - pearson_correlation: -0.3814 - euclidean_distance: 0.5377
Epoch 127/350
38/38 [==============================] - 0s 895us/step - loss: 0.3086 - accuracy: 0.1941 - mae: 0.3086 - pearson_correlation: -0.3756 - euclidean_distance: 0.5348
Epoch 128/350
38/38 [==============================] - 0s 902us/step - loss: 0.3059 - accuracy: 0.1972 - mae: 0.3059 - pearson_correlation: -0.3604 - euclidean_distance: 0.5304
Epoch 129/350
38/38 [==============================] - 0s 903us/step - loss: 0.3039 - accuracy: 0.2003 - mae: 0.3039 - pearson_correlation: -0.3497 - euclidean_distance: 0.5267
Epoch 130/350
38/38 [==============================] - 0s 901us/step - loss: 0.3017 - accuracy: 0.2126 - mae: 0.3017 - pearson_correlation: -0.3350 - euclidean_distance: 0.5231
Epoch 131/350
38/38 [==============================] - 0s 948us/step - loss: 0.3023 - accuracy: 0.2175 - mae: 0.3023 - pearson_correlation: -0.3348 - euclidean_distance: 0.5217
Epoch 132/350
38/38 [==============================] - 0s 997us/step - loss: 0.2993 - accuracy: 0.2232 - mae: 0.2993 - pearson_correlation: -0.3117 - euclidean_distance: 0.5163
Epoch 133/350
38/38 [==============================] - 0s 962us/step - loss: 0.2969 - accuracy: 0.2250 - mae: 0.2969 - pearson_correlation: -0.3096 - euclidean_distance: 0.5138
Epoch 134/350
38/38 [==============================] - 0s 916us/step - loss: 0.2959 - accuracy: 0.2303 - mae: 0.2959 - pearson_correlation: -0.2933 - euclidean_distance: 0.5102
Epoch 135/350
38/38 [==============================] - 0s 973us/step - loss: 0.2930 - accuracy: 0.2479 - mae: 0.2930 - pearson_correlation: -0.2833 - euclidean_distance: 0.5056
Epoch 136/350
38/38 [==============================] - 0s 990us/step - loss: 0.2921 - accuracy: 0.2466 - mae: 0.2921 - pearson_correlation: -0.2763 - euclidean_distance: 0.5043
Epoch 137/350
38/38 [==============================] - 0s 933us/step - loss: 0.2898 - accuracy: 0.2457 - mae: 0.2898 - pearson_correlation: -0.2607 - euclidean_distance: 0.4999
Epoch 138/350
38/38 [==============================] - 0s 997us/step - loss: 0.2892 - accuracy: 0.2642 - mae: 0.2892 - pearson_correlation: -0.2523 - euclidean_distance: 0.4981
Epoch 139/350
38/38 [==============================] - 0s 911us/step - loss: 0.2867 - accuracy: 0.2695 - mae: 0.2867 - pearson_correlation: -0.2402 - euclidean_distance: 0.4939
Epoch 140/350
38/38 [==============================] - 0s 931us/step - loss: 0.2854 - accuracy: 0.2730 - mae: 0.2854 - pearson_correlation: -0.2339 - euclidean_distance: 0.4910
Epoch 141/350
38/38 [==============================] - 0s 938us/step - loss: 0.2838 - accuracy: 0.2828 - mae: 0.2838 - pearson_correlation: -0.2121 - euclidean_distance: 0.4871
Epoch 142/350
38/38 [==============================] - 0s 903us/step - loss: 0.2800 - accuracy: 0.2938 - mae: 0.2800 - pearson_correlation: -0.2022 - euclidean_distance: 0.4817
Epoch 143/350
38/38 [==============================] - 0s 916us/step - loss: 0.2810 - accuracy: 0.2933 - mae: 0.2810 - pearson_correlation: -0.1934 - euclidean_distance: 0.4818
Epoch 144/350
38/38 [==============================] - 0s 907us/step - loss: 0.2797 - accuracy: 0.3110 - mae: 0.2797 - pearson_correlation: -0.1819 - euclidean_distance: 0.4791
Epoch 145/350
38/38 [==============================] - 0s 906us/step - loss: 0.2762 - accuracy: 0.3255 - mae: 0.2762 - pearson_correlation: -0.1667 - euclidean_distance: 0.4736
Epoch 146/350
38/38 [==============================] - 0s 889us/step - loss: 0.2742 - accuracy: 0.3211 - mae: 0.2742 - pearson_correlation: -0.1617 - euclidean_distance: 0.4708
Epoch 147/350
38/38 [==============================] - 0s 908us/step - loss: 0.2742 - accuracy: 0.3255 - mae: 0.2742 - pearson_correlation: -0.1556 - euclidean_distance: 0.4691
Epoch 148/350
38/38 [==============================] - 0s 903us/step - loss: 0.2718 - accuracy: 0.3401 - mae: 0.2718 - pearson_correlation: -0.1432 - euclidean_distance: 0.4658
Epoch 149/350
38/38 [==============================] - 0s 921us/step - loss: 0.2710 - accuracy: 0.3463 - mae: 0.2710 - pearson_correlation: -0.1347 - euclidean_distance: 0.4632
Epoch 150/350
38/38 [==============================] - 0s 907us/step - loss: 0.2687 - accuracy: 0.3577 - mae: 0.2687 - pearson_correlation: -0.1188 - euclidean_distance: 0.4595
Epoch 151/350
38/38 [==============================] - 0s 917us/step - loss: 0.2665 - accuracy: 0.3511 - mae: 0.2665 - pearson_correlation: -0.1149 - euclidean_distance: 0.4562
Epoch 152/350
38/38 [==============================] - 0s 897us/step - loss: 0.2644 - accuracy: 0.3626 - mae: 0.2644 - pearson_correlation: -0.0954 - euclidean_distance: 0.4524
Epoch 153/350
38/38 [==============================] - 0s 904us/step - loss: 0.2638 - accuracy: 0.3727 - mae: 0.2638 - pearson_correlation: -0.0975 - euclidean_distance: 0.4511
Epoch 154/350
38/38 [==============================] - 0s 892us/step - loss: 0.2616 - accuracy: 0.3851 - mae: 0.2616 - pearson_correlation: -0.0807 - euclidean_distance: 0.4461
Epoch 155/350
38/38 [==============================] - 0s 896us/step - loss: 0.2612 - accuracy: 0.3824 - mae: 0.2612 - pearson_correlation: -0.0734 - euclidean_distance: 0.4458
Epoch 156/350
38/38 [==============================] - 0s 895us/step - loss: 0.2583 - accuracy: 0.3930 - mae: 0.2583 - pearson_correlation: -0.0641 - euclidean_distance: 0.4409
Epoch 157/350
38/38 [==============================] - 0s 919us/step - loss: 0.2582 - accuracy: 0.4094 - mae: 0.2582 - pearson_correlation: -0.0535 - euclidean_distance: 0.4399
Epoch 158/350
38/38 [==============================] - 0s 908us/step - loss: 0.2571 - accuracy: 0.4221 - mae: 0.2571 - pearson_correlation: -0.0407 - euclidean_distance: 0.4369
Epoch 159/350
38/38 [==============================] - 0s 896us/step - loss: 0.2546 - accuracy: 0.4116 - mae: 0.2546 - pearson_correlation: -0.0296 - euclidean_distance: 0.4331
Epoch 160/350
38/38 [==============================] - 0s 895us/step - loss: 0.2545 - accuracy: 0.4301 - mae: 0.2545 - pearson_correlation: -0.0260 - euclidean_distance: 0.4318
Epoch 161/350
38/38 [==============================] - 0s 899us/step - loss: 0.2499 - accuracy: 0.4296 - mae: 0.2499 - pearson_correlation: -0.0224 - euclidean_distance: 0.4270
Epoch 162/350
38/38 [==============================] - 0s 899us/step - loss: 0.2507 - accuracy: 0.4292 - mae: 0.2507 - pearson_correlation: -0.0072 - euclidean_distance: 0.4260
Epoch 163/350
38/38 [==============================] - 0s 906us/step - loss: 0.2500 - accuracy: 0.4495 - mae: 0.2500 - pearson_correlation: 0.0052 - euclidean_distance: 0.4237
Epoch 164/350
38/38 [==============================] - 0s 901us/step - loss: 0.2480 - accuracy: 0.4460 - mae: 0.2480 - pearson_correlation: 0.0107 - euclidean_distance: 0.4209
Epoch 165/350
38/38 [==============================] - 0s 898us/step - loss: 0.2444 - accuracy: 0.4596 - mae: 0.2444 - pearson_correlation: 0.0269 - euclidean_distance: 0.4153
Epoch 166/350
38/38 [==============================] - 0s 900us/step - loss: 0.2437 - accuracy: 0.4733 - mae: 0.2437 - pearson_correlation: 0.0284 - euclidean_distance: 0.4140
Epoch 167/350
38/38 [==============================] - 0s 892us/step - loss: 0.2422 - accuracy: 0.4773 - mae: 0.2422 - pearson_correlation: 0.0404 - euclidean_distance: 0.4109
Epoch 168/350
38/38 [==============================] - 0s 913us/step - loss: 0.2406 - accuracy: 0.4830 - mae: 0.2406 - pearson_correlation: 0.0467 - euclidean_distance: 0.4078
Epoch 169/350
38/38 [==============================] - 0s 912us/step - loss: 0.2406 - accuracy: 0.4852 - mae: 0.2406 - pearson_correlation: 0.0490 - euclidean_distance: 0.4073
Epoch 170/350
38/38 [==============================] - 0s 892us/step - loss: 0.2379 - accuracy: 0.4976 - mae: 0.2379 - pearson_correlation: 0.0663 - euclidean_distance: 0.4025
Epoch 171/350
38/38 [==============================] - 0s 898us/step - loss: 0.2368 - accuracy: 0.5086 - mae: 0.2368 - pearson_correlation: 0.0740 - euclidean_distance: 0.4005
Epoch 172/350
38/38 [==============================] - 0s 911us/step - loss: 0.2338 - accuracy: 0.5187 - mae: 0.2338 - pearson_correlation: 0.0808 - euclidean_distance: 0.3955
Epoch 173/350
38/38 [==============================] - 0s 895us/step - loss: 0.2326 - accuracy: 0.5337 - mae: 0.2326 - pearson_correlation: 0.0907 - euclidean_distance: 0.3937
Epoch 174/350
38/38 [==============================] - 0s 899us/step - loss: 0.2315 - accuracy: 0.5404 - mae: 0.2315 - pearson_correlation: 0.0990 - euclidean_distance: 0.3914
Epoch 175/350
38/38 [==============================] - 0s 902us/step - loss: 0.2304 - accuracy: 0.5368 - mae: 0.2304 - pearson_correlation: 0.1027 - euclidean_distance: 0.3892
Epoch 176/350
38/38 [==============================] - 0s 902us/step - loss: 0.2292 - accuracy: 0.5536 - mae: 0.2292 - pearson_correlation: 0.1191 - euclidean_distance: 0.3854
Epoch 177/350
38/38 [==============================] - 0s 888us/step - loss: 0.2250 - accuracy: 0.5598 - mae: 0.2250 - pearson_correlation: 0.1272 - euclidean_distance: 0.3815
Epoch 178/350
38/38 [==============================] - 0s 907us/step - loss: 0.2251 - accuracy: 0.5659 - mae: 0.2251 - pearson_correlation: 0.1258 - euclidean_distance: 0.3807
Epoch 179/350
38/38 [==============================] - 0s 903us/step - loss: 0.2231 - accuracy: 0.5743 - mae: 0.2231 - pearson_correlation: 0.1364 - euclidean_distance: 0.3770
Epoch 180/350
38/38 [==============================] - 0s 898us/step - loss: 0.2216 - accuracy: 0.5871 - mae: 0.2216 - pearson_correlation: 0.1472 - euclidean_distance: 0.3745
Epoch 181/350
38/38 [==============================] - 0s 899us/step - loss: 0.2206 - accuracy: 0.5823 - mae: 0.2206 - pearson_correlation: 0.1607 - euclidean_distance: 0.3732
Epoch 182/350
38/38 [==============================] - 0s 912us/step - loss: 0.2180 - accuracy: 0.5995 - mae: 0.2180 - pearson_correlation: 0.1630 - euclidean_distance: 0.3684
Epoch 183/350
38/38 [==============================] - 0s 892us/step - loss: 0.2208 - accuracy: 0.6026 - mae: 0.2208 - pearson_correlation: 0.1675 - euclidean_distance: 0.3719
Epoch 184/350
38/38 [==============================] - 0s 882us/step - loss: 0.2169 - accuracy: 0.6101 - mae: 0.2169 - pearson_correlation: 0.1775 - euclidean_distance: 0.3655
Epoch 185/350
38/38 [==============================] - 0s 919us/step - loss: 0.2125 - accuracy: 0.6131 - mae: 0.2125 - pearson_correlation: 0.1837 - euclidean_distance: 0.3589
Epoch 186/350
38/38 [==============================] - 0s 902us/step - loss: 0.2141 - accuracy: 0.6202 - mae: 0.2141 - pearson_correlation: 0.1945 - euclidean_distance: 0.3598
Epoch 187/350
38/38 [==============================] - 0s 911us/step - loss: 0.2122 - accuracy: 0.6224 - mae: 0.2122 - pearson_correlation: 0.1994 - euclidean_distance: 0.3576
Epoch 188/350
38/38 [==============================] - 0s 896us/step - loss: 0.2091 - accuracy: 0.6330 - mae: 0.2091 - pearson_correlation: 0.2064 - euclidean_distance: 0.3527
Epoch 189/350
38/38 [==============================] - 0s 901us/step - loss: 0.2070 - accuracy: 0.6436 - mae: 0.2070 - pearson_correlation: 0.2145 - euclidean_distance: 0.3494
Epoch 190/350
38/38 [==============================] - 0s 898us/step - loss: 0.2063 - accuracy: 0.6502 - mae: 0.2063 - pearson_correlation: 0.2228 - euclidean_distance: 0.3475
Epoch 191/350
38/38 [==============================] - 0s 898us/step - loss: 0.2061 - accuracy: 0.6502 - mae: 0.2061 - pearson_correlation: 0.2318 - euclidean_distance: 0.3455
Epoch 192/350
38/38 [==============================] - 0s 897us/step - loss: 0.2053 - accuracy: 0.6564 - mae: 0.2053 - pearson_correlation: 0.2343 - euclidean_distance: 0.3446
Epoch 193/350
38/38 [==============================] - 0s 894us/step - loss: 0.2045 - accuracy: 0.6595 - mae: 0.2045 - pearson_correlation: 0.2377 - euclidean_distance: 0.3423
Epoch 194/350
38/38 [==============================] - 0s 892us/step - loss: 0.2006 - accuracy: 0.6661 - mae: 0.2006 - pearson_correlation: 0.2502 - euclidean_distance: 0.3373
Epoch 195/350
38/38 [==============================] - 0s 890us/step - loss: 0.2014 - accuracy: 0.6683 - mae: 0.2014 - pearson_correlation: 0.2550 - euclidean_distance: 0.3382
Epoch 196/350
38/38 [==============================] - 0s 900us/step - loss: 0.1981 - accuracy: 0.6798 - mae: 0.1981 - pearson_correlation: 0.2610 - euclidean_distance: 0.3330
Epoch 197/350
38/38 [==============================] - 0s 893us/step - loss: 0.1976 - accuracy: 0.6784 - mae: 0.1976 - pearson_correlation: 0.2602 - euclidean_distance: 0.3325
Epoch 198/350
38/38 [==============================] - 0s 887us/step - loss: 0.1955 - accuracy: 0.6798 - mae: 0.1955 - pearson_correlation: 0.2693 - euclidean_distance: 0.3288
Epoch 199/350
38/38 [==============================] - 0s 888us/step - loss: 0.1937 - accuracy: 0.6780 - mae: 0.1937 - pearson_correlation: 0.2810 - euclidean_distance: 0.3259
Epoch 200/350
38/38 [==============================] - 0s 889us/step - loss: 0.1952 - accuracy: 0.6912 - mae: 0.1952 - pearson_correlation: 0.2813 - euclidean_distance: 0.3269
Epoch 201/350
38/38 [==============================] - 0s 883us/step - loss: 0.1905 - accuracy: 0.6895 - mae: 0.1905 - pearson_correlation: 0.2884 - euclidean_distance: 0.3199
Epoch 202/350
38/38 [==============================] - 0s 903us/step - loss: 0.1906 - accuracy: 0.6948 - mae: 0.1906 - pearson_correlation: 0.2892 - euclidean_distance: 0.3198
Epoch 203/350
38/38 [==============================] - 0s 898us/step - loss: 0.1872 - accuracy: 0.7062 - mae: 0.1872 - pearson_correlation: 0.3006 - euclidean_distance: 0.3159
Epoch 204/350
38/38 [==============================] - 0s 895us/step - loss: 0.1877 - accuracy: 0.7097 - mae: 0.1877 - pearson_correlation: 0.3088 - euclidean_distance: 0.3148
Epoch 205/350
38/38 [==============================] - 0s 903us/step - loss: 0.1875 - accuracy: 0.7089 - mae: 0.1875 - pearson_correlation: 0.3057 - euclidean_distance: 0.3142
Epoch 206/350
38/38 [==============================] - 0s 910us/step - loss: 0.1842 - accuracy: 0.7155 - mae: 0.1842 - pearson_correlation: 0.3175 - euclidean_distance: 0.3096
Epoch 207/350
38/38 [==============================] - 0s 902us/step - loss: 0.1830 - accuracy: 0.7199 - mae: 0.1830 - pearson_correlation: 0.3252 - euclidean_distance: 0.3074
Epoch 208/350
38/38 [==============================] - 0s 895us/step - loss: 0.1843 - accuracy: 0.7292 - mae: 0.1843 - pearson_correlation: 0.3271 - euclidean_distance: 0.3083
Epoch 209/350
38/38 [==============================] - 0s 896us/step - loss: 0.1800 - accuracy: 0.7305 - mae: 0.1800 - pearson_correlation: 0.3251 - euclidean_distance: 0.3023
Epoch 210/350
38/38 [==============================] - 0s 902us/step - loss: 0.1782 - accuracy: 0.7411 - mae: 0.1782 - pearson_correlation: 0.3413 - euclidean_distance: 0.2997
Epoch 211/350
38/38 [==============================] - 0s 902us/step - loss: 0.1783 - accuracy: 0.7353 - mae: 0.1783 - pearson_correlation: 0.3368 - euclidean_distance: 0.2995
Epoch 212/350
38/38 [==============================] - 0s 911us/step - loss: 0.1774 - accuracy: 0.7380 - mae: 0.1774 - pearson_correlation: 0.3394 - euclidean_distance: 0.2987
Epoch 213/350
38/38 [==============================] - 0s 905us/step - loss: 0.1762 - accuracy: 0.7411 - mae: 0.1762 - pearson_correlation: 0.3469 - euclidean_distance: 0.2964
Epoch 214/350
38/38 [==============================] - 0s 901us/step - loss: 0.1758 - accuracy: 0.7499 - mae: 0.1758 - pearson_correlation: 0.3545 - euclidean_distance: 0.2949
Epoch 215/350
38/38 [==============================] - 0s 901us/step - loss: 0.1751 - accuracy: 0.7525 - mae: 0.1751 - pearson_correlation: 0.3655 - euclidean_distance: 0.2934
Epoch 216/350
38/38 [==============================] - 0s 907us/step - loss: 0.1743 - accuracy: 0.7525 - mae: 0.1743 - pearson_correlation: 0.3617 - euclidean_distance: 0.2914
Epoch 217/350
38/38 [==============================] - 0s 903us/step - loss: 0.1741 - accuracy: 0.7556 - mae: 0.1741 - pearson_correlation: 0.3633 - euclidean_distance: 0.2918
Epoch 218/350
38/38 [==============================] - 0s 905us/step - loss: 0.1693 - accuracy: 0.7644 - mae: 0.1693 - pearson_correlation: 0.3707 - euclidean_distance: 0.2840
Epoch 219/350
38/38 [==============================] - 0s 890us/step - loss: 0.1725 - accuracy: 0.7662 - mae: 0.1725 - pearson_correlation: 0.3721 - euclidean_distance: 0.2891
Epoch 220/350
38/38 [==============================] - 0s 896us/step - loss: 0.1685 - accuracy: 0.7627 - mae: 0.1685 - pearson_correlation: 0.3770 - euclidean_distance: 0.2828
Epoch 221/350
38/38 [==============================] - 0s 910us/step - loss: 0.1696 - accuracy: 0.7702 - mae: 0.1696 - pearson_correlation: 0.3750 - euclidean_distance: 0.2845
Epoch 222/350
38/38 [==============================] - 0s 897us/step - loss: 0.1670 - accuracy: 0.7786 - mae: 0.1670 - pearson_correlation: 0.3843 - euclidean_distance: 0.2791
Epoch 223/350
38/38 [==============================] - 0s 902us/step - loss: 0.1681 - accuracy: 0.7742 - mae: 0.1681 - pearson_correlation: 0.3830 - euclidean_distance: 0.2814
Epoch 224/350
38/38 [==============================] - 0s 896us/step - loss: 0.1648 - accuracy: 0.7772 - mae: 0.1648 - pearson_correlation: 0.3904 - euclidean_distance: 0.2768
Epoch 225/350
38/38 [==============================] - 0s 905us/step - loss: 0.1653 - accuracy: 0.7794 - mae: 0.1653 - pearson_correlation: 0.3942 - euclidean_distance: 0.2770
Epoch 226/350
38/38 [==============================] - 0s 907us/step - loss: 0.1653 - accuracy: 0.7891 - mae: 0.1653 - pearson_correlation: 0.3994 - euclidean_distance: 0.2757
Epoch 227/350
38/38 [==============================] - 0s 898us/step - loss: 0.1605 - accuracy: 0.7852 - mae: 0.1605 - pearson_correlation: 0.4030 - euclidean_distance: 0.2687
Epoch 228/350
38/38 [==============================] - 0s 900us/step - loss: 0.1616 - accuracy: 0.7878 - mae: 0.1616 - pearson_correlation: 0.4045 - euclidean_distance: 0.2707
Epoch 229/350
38/38 [==============================] - 0s 896us/step - loss: 0.1615 - accuracy: 0.7874 - mae: 0.1615 - pearson_correlation: 0.4085 - euclidean_distance: 0.2712
Epoch 230/350
38/38 [==============================] - 0s 902us/step - loss: 0.1602 - accuracy: 0.7861 - mae: 0.1602 - pearson_correlation: 0.4097 - euclidean_distance: 0.2687
Epoch 231/350
38/38 [==============================] - 0s 903us/step - loss: 0.1605 - accuracy: 0.7927 - mae: 0.1605 - pearson_correlation: 0.4104 - euclidean_distance: 0.2687
Epoch 232/350
38/38 [==============================] - 0s 897us/step - loss: 0.1592 - accuracy: 0.7980 - mae: 0.1592 - pearson_correlation: 0.4225 - euclidean_distance: 0.2669
Epoch 233/350
38/38 [==============================] - 0s 908us/step - loss: 0.1578 - accuracy: 0.7958 - mae: 0.1578 - pearson_correlation: 0.4189 - euclidean_distance: 0.2640
Epoch 234/350
38/38 [==============================] - 0s 930us/step - loss: 0.1564 - accuracy: 0.7958 - mae: 0.1564 - pearson_correlation: 0.4246 - euclidean_distance: 0.2622
Epoch 235/350
38/38 [==============================] - 0s 909us/step - loss: 0.1573 - accuracy: 0.7936 - mae: 0.1573 - pearson_correlation: 0.4266 - euclidean_distance: 0.2631
Epoch 236/350
38/38 [==============================] - 0s 902us/step - loss: 0.1587 - accuracy: 0.7922 - mae: 0.1587 - pearson_correlation: 0.4217 - euclidean_distance: 0.2654
Epoch 237/350
38/38 [==============================] - 0s 910us/step - loss: 0.1565 - accuracy: 0.7966 - mae: 0.1565 - pearson_correlation: 0.4295 - euclidean_distance: 0.2617
Epoch 238/350
38/38 [==============================] - 0s 894us/step - loss: 0.1555 - accuracy: 0.7989 - mae: 0.1555 - pearson_correlation: 0.4259 - euclidean_distance: 0.2605
Epoch 239/350
38/38 [==============================] - 0s 929us/step - loss: 0.1540 - accuracy: 0.7971 - mae: 0.1540 - pearson_correlation: 0.4363 - euclidean_distance: 0.2582
Epoch 240/350
38/38 [==============================] - 0s 869us/step - loss: 0.1538 - accuracy: 0.8011 - mae: 0.1538 - pearson_correlation: 0.4361 - euclidean_distance: 0.2570
Epoch 241/350
38/38 [==============================] - 0s 903us/step - loss: 0.1514 - accuracy: 0.8055 - mae: 0.1514 - pearson_correlation: 0.4419 - euclidean_distance: 0.2540
Epoch 242/350
38/38 [==============================] - 0s 901us/step - loss: 0.1503 - accuracy: 0.8033 - mae: 0.1503 - pearson_correlation: 0.4462 - euclidean_distance: 0.2516
Epoch 243/350
38/38 [==============================] - 0s 895us/step - loss: 0.1514 - accuracy: 0.8002 - mae: 0.1514 - pearson_correlation: 0.4390 - euclidean_distance: 0.2532
Epoch 244/350
38/38 [==============================] - 0s 908us/step - loss: 0.1513 - accuracy: 0.8002 - mae: 0.1513 - pearson_correlation: 0.4495 - euclidean_distance: 0.2528
Epoch 245/350
38/38 [==============================] - 0s 900us/step - loss: 0.1520 - accuracy: 0.8064 - mae: 0.1520 - pearson_correlation: 0.4472 - euclidean_distance: 0.2537
Epoch 246/350
38/38 [==============================] - 0s 910us/step - loss: 0.1512 - accuracy: 0.7989 - mae: 0.1512 - pearson_correlation: 0.4541 - euclidean_distance: 0.2530
Epoch 247/350
38/38 [==============================] - 0s 881us/step - loss: 0.1513 - accuracy: 0.8015 - mae: 0.1513 - pearson_correlation: 0.4544 - euclidean_distance: 0.2529
Epoch 248/350
38/38 [==============================] - 0s 899us/step - loss: 0.1485 - accuracy: 0.8099 - mae: 0.1485 - pearson_correlation: 0.4528 - euclidean_distance: 0.2484
Epoch 249/350
38/38 [==============================] - 0s 901us/step - loss: 0.1461 - accuracy: 0.8015 - mae: 0.1461 - pearson_correlation: 0.4586 - euclidean_distance: 0.2445
Epoch 250/350
38/38 [==============================] - 0s 900us/step - loss: 0.1492 - accuracy: 0.8108 - mae: 0.1492 - pearson_correlation: 0.4593 - euclidean_distance: 0.2487
Epoch 251/350
38/38 [==============================] - 0s 891us/step - loss: 0.1466 - accuracy: 0.8011 - mae: 0.1466 - pearson_correlation: 0.4667 - euclidean_distance: 0.2442
Epoch 252/350
38/38 [==============================] - 0s 903us/step - loss: 0.1463 - accuracy: 0.8033 - mae: 0.1463 - pearson_correlation: 0.4650 - euclidean_distance: 0.2444
Epoch 253/350
38/38 [==============================] - 0s 894us/step - loss: 0.1445 - accuracy: 0.8077 - mae: 0.1445 - pearson_correlation: 0.4730 - euclidean_distance: 0.2419
Epoch 254/350
38/38 [==============================] - 0s 903us/step - loss: 0.1456 - accuracy: 0.8064 - mae: 0.1456 - pearson_correlation: 0.4658 - euclidean_distance: 0.2431
Epoch 255/350
38/38 [==============================] - 0s 903us/step - loss: 0.1434 - accuracy: 0.8068 - mae: 0.1434 - pearson_correlation: 0.4795 - euclidean_distance: 0.2389
Epoch 256/350
38/38 [==============================] - 0s 894us/step - loss: 0.1439 - accuracy: 0.8103 - mae: 0.1439 - pearson_correlation: 0.4768 - euclidean_distance: 0.2402
Epoch 257/350
38/38 [==============================] - 0s 891us/step - loss: 0.1438 - accuracy: 0.8099 - mae: 0.1438 - pearson_correlation: 0.4741 - euclidean_distance: 0.2401
Epoch 258/350
38/38 [==============================] - 0s 899us/step - loss: 0.1426 - accuracy: 0.8081 - mae: 0.1426 - pearson_correlation: 0.4780 - euclidean_distance: 0.2386
Epoch 259/350
38/38 [==============================] - 0s 950us/step - loss: 0.1401 - accuracy: 0.8086 - mae: 0.1401 - pearson_correlation: 0.4859 - euclidean_distance: 0.2344
Epoch 260/350
38/38 [==============================] - 0s 1ms/step - loss: 0.1424 - accuracy: 0.8130 - mae: 0.1424 - pearson_correlation: 0.4845 - euclidean_distance: 0.2377
Epoch 261/350
38/38 [==============================] - 0s 954us/step - loss: 0.1402 - accuracy: 0.8125 - mae: 0.1402 - pearson_correlation: 0.4832 - euclidean_distance: 0.2344
Epoch 262/350
38/38 [==============================] - 0s 911us/step - loss: 0.1410 - accuracy: 0.8094 - mae: 0.1410 - pearson_correlation: 0.4834 - euclidean_distance: 0.2354
Epoch 263/350
38/38 [==============================] - 0s 912us/step - loss: 0.1407 - accuracy: 0.8077 - mae: 0.1407 - pearson_correlation: 0.4878 - euclidean_distance: 0.2351
Epoch 264/350
38/38 [==============================] - 0s 897us/step - loss: 0.1381 - accuracy: 0.8134 - mae: 0.1381 - pearson_correlation: 0.4859 - euclidean_distance: 0.2303
Epoch 265/350
38/38 [==============================] - 0s 915us/step - loss: 0.1408 - accuracy: 0.8086 - mae: 0.1408 - pearson_correlation: 0.4820 - euclidean_distance: 0.2349
Epoch 266/350
38/38 [==============================] - 0s 909us/step - loss: 0.1387 - accuracy: 0.8103 - mae: 0.1387 - pearson_correlation: 0.4880 - euclidean_distance: 0.2320
Epoch 267/350
38/38 [==============================] - 0s 894us/step - loss: 0.1388 - accuracy: 0.8213 - mae: 0.1388 - pearson_correlation: 0.4895 - euclidean_distance: 0.2323
Epoch 268/350
38/38 [==============================] - 0s 922us/step - loss: 0.1366 - accuracy: 0.8121 - mae: 0.1366 - pearson_correlation: 0.4928 - euclidean_distance: 0.2285
Epoch 269/350
38/38 [==============================] - 0s 909us/step - loss: 0.1366 - accuracy: 0.8134 - mae: 0.1366 - pearson_correlation: 0.4959 - euclidean_distance: 0.2285
Epoch 270/350
38/38 [==============================] - 0s 881us/step - loss: 0.1371 - accuracy: 0.8094 - mae: 0.1371 - pearson_correlation: 0.4971 - euclidean_distance: 0.2292
Epoch 271/350
38/38 [==============================] - 0s 907us/step - loss: 0.1357 - accuracy: 0.8130 - mae: 0.1357 - pearson_correlation: 0.5022 - euclidean_distance: 0.2265
Epoch 272/350
38/38 [==============================] - 0s 899us/step - loss: 0.1401 - accuracy: 0.8152 - mae: 0.1401 - pearson_correlation: 0.4969 - euclidean_distance: 0.2340
Epoch 273/350
38/38 [==============================] - 0s 894us/step - loss: 0.1363 - accuracy: 0.8165 - mae: 0.1363 - pearson_correlation: 0.5050 - euclidean_distance: 0.2274
Epoch 274/350
38/38 [==============================] - 0s 923us/step - loss: 0.1342 - accuracy: 0.8165 - mae: 0.1342 - pearson_correlation: 0.5016 - euclidean_distance: 0.2246
Epoch 275/350
38/38 [==============================] - 0s 899us/step - loss: 0.1343 - accuracy: 0.8205 - mae: 0.1343 - pearson_correlation: 0.5055 - euclidean_distance: 0.2243
Epoch 276/350
38/38 [==============================] - 0s 904us/step - loss: 0.1357 - accuracy: 0.8205 - mae: 0.1357 - pearson_correlation: 0.5042 - euclidean_distance: 0.2270
Epoch 277/350
38/38 [==============================] - 0s 903us/step - loss: 0.1356 - accuracy: 0.8152 - mae: 0.1356 - pearson_correlation: 0.5064 - euclidean_distance: 0.2264
Epoch 278/350
38/38 [==============================] - 0s 902us/step - loss: 0.1356 - accuracy: 0.8262 - mae: 0.1356 - pearson_correlation: 0.5080 - euclidean_distance: 0.2266
Epoch 279/350
38/38 [==============================] - 0s 897us/step - loss: 0.1339 - accuracy: 0.8183 - mae: 0.1339 - pearson_correlation: 0.5145 - euclidean_distance: 0.2238
Epoch 280/350
38/38 [==============================] - 0s 902us/step - loss: 0.1350 - accuracy: 0.8218 - mae: 0.1350 - pearson_correlation: 0.5149 - euclidean_distance: 0.2248
Epoch 281/350
38/38 [==============================] - 0s 901us/step - loss: 0.1325 - accuracy: 0.8178 - mae: 0.1325 - pearson_correlation: 0.5122 - euclidean_distance: 0.2215
Epoch 282/350
38/38 [==============================] - 0s 897us/step - loss: 0.1303 - accuracy: 0.8209 - mae: 0.1303 - pearson_correlation: 0.5133 - euclidean_distance: 0.2185
Epoch 283/350
38/38 [==============================] - 0s 900us/step - loss: 0.1307 - accuracy: 0.8227 - mae: 0.1307 - pearson_correlation: 0.5182 - euclidean_distance: 0.2186
Epoch 284/350
38/38 [==============================] - 0s 912us/step - loss: 0.1331 - accuracy: 0.8236 - mae: 0.1331 - pearson_correlation: 0.5198 - euclidean_distance: 0.2218
Epoch 285/350
38/38 [==============================] - 0s 903us/step - loss: 0.1339 - accuracy: 0.8231 - mae: 0.1339 - pearson_correlation: 0.5100 - euclidean_distance: 0.2230
Epoch 286/350
38/38 [==============================] - 0s 901us/step - loss: 0.1299 - accuracy: 0.8258 - mae: 0.1299 - pearson_correlation: 0.5195 - euclidean_distance: 0.2169
Epoch 287/350
38/38 [==============================] - 0s 893us/step - loss: 0.1297 - accuracy: 0.8258 - mae: 0.1297 - pearson_correlation: 0.5210 - euclidean_distance: 0.2171
Epoch 288/350
38/38 [==============================] - 0s 900us/step - loss: 0.1297 - accuracy: 0.8306 - mae: 0.1297 - pearson_correlation: 0.5251 - euclidean_distance: 0.2164
Epoch 289/350
38/38 [==============================] - 0s 905us/step - loss: 0.1283 - accuracy: 0.8231 - mae: 0.1283 - pearson_correlation: 0.5242 - euclidean_distance: 0.2152
Epoch 290/350
38/38 [==============================] - 0s 933us/step - loss: 0.1301 - accuracy: 0.8266 - mae: 0.1301 - pearson_correlation: 0.5248 - euclidean_distance: 0.2174
Epoch 291/350
38/38 [==============================] - 0s 864us/step - loss: 0.1294 - accuracy: 0.8240 - mae: 0.1294 - pearson_correlation: 0.5273 - euclidean_distance: 0.2161
Epoch 292/350
38/38 [==============================] - 0s 905us/step - loss: 0.1301 - accuracy: 0.8284 - mae: 0.1301 - pearson_correlation: 0.5286 - euclidean_distance: 0.2179
Epoch 293/350
38/38 [==============================] - 0s 899us/step - loss: 0.1263 - accuracy: 0.8306 - mae: 0.1263 - pearson_correlation: 0.5298 - euclidean_distance: 0.2112
Epoch 294/350
38/38 [==============================] - 0s 900us/step - loss: 0.1303 - accuracy: 0.8324 - mae: 0.1303 - pearson_correlation: 0.5309 - euclidean_distance: 0.2172
Epoch 295/350
38/38 [==============================] - 0s 908us/step - loss: 0.1289 - accuracy: 0.8306 - mae: 0.1289 - pearson_correlation: 0.5327 - euclidean_distance: 0.2151
Epoch 296/350
38/38 [==============================] - 0s 906us/step - loss: 0.1290 - accuracy: 0.8359 - mae: 0.1290 - pearson_correlation: 0.5352 - euclidean_distance: 0.2153
Epoch 297/350
38/38 [==============================] - 0s 899us/step - loss: 0.1271 - accuracy: 0.8275 - mae: 0.1271 - pearson_correlation: 0.5404 - euclidean_distance: 0.2120
Epoch 298/350
38/38 [==============================] - 0s 898us/step - loss: 0.1235 - accuracy: 0.8280 - mae: 0.1235 - pearson_correlation: 0.5425 - euclidean_distance: 0.2068
Epoch 299/350
38/38 [==============================] - 0s 906us/step - loss: 0.1290 - accuracy: 0.8275 - mae: 0.1290 - pearson_correlation: 0.5359 - euclidean_distance: 0.2152
Epoch 300/350
38/38 [==============================] - 0s 920us/step - loss: 0.1313 - accuracy: 0.8262 - mae: 0.1313 - pearson_correlation: 0.5343 - euclidean_distance: 0.2184
Epoch 301/350
38/38 [==============================] - 0s 888us/step - loss: 0.1279 - accuracy: 0.8355 - mae: 0.1279 - pearson_correlation: 0.5385 - euclidean_distance: 0.2133
Epoch 302/350
38/38 [==============================] - 0s 904us/step - loss: 0.1259 - accuracy: 0.8390 - mae: 0.1259 - pearson_correlation: 0.5432 - euclidean_distance: 0.2102
Epoch 303/350
38/38 [==============================] - 0s 894us/step - loss: 0.1270 - accuracy: 0.8372 - mae: 0.1270 - pearson_correlation: 0.5402 - euclidean_distance: 0.2120
Epoch 304/350
38/38 [==============================] - 0s 906us/step - loss: 0.1249 - accuracy: 0.8363 - mae: 0.1249 - pearson_correlation: 0.5480 - euclidean_distance: 0.2088
Epoch 305/350
38/38 [==============================] - 0s 897us/step - loss: 0.1263 - accuracy: 0.8280 - mae: 0.1263 - pearson_correlation: 0.5431 - euclidean_distance: 0.2103
Epoch 306/350
38/38 [==============================] - 0s 901us/step - loss: 0.1243 - accuracy: 0.8416 - mae: 0.1243 - pearson_correlation: 0.5463 - euclidean_distance: 0.2073
Epoch 307/350
38/38 [==============================] - 0s 889us/step - loss: 0.1263 - accuracy: 0.8377 - mae: 0.1263 - pearson_correlation: 0.5465 - euclidean_distance: 0.2106
Epoch 308/350
38/38 [==============================] - 0s 889us/step - loss: 0.1246 - accuracy: 0.8425 - mae: 0.1246 - pearson_correlation: 0.5488 - euclidean_distance: 0.2079
Epoch 309/350
38/38 [==============================] - 0s 902us/step - loss: 0.1248 - accuracy: 0.8408 - mae: 0.1248 - pearson_correlation: 0.5502 - euclidean_distance: 0.2080
Epoch 310/350
38/38 [==============================] - 0s 896us/step - loss: 0.1251 - accuracy: 0.8421 - mae: 0.1251 - pearson_correlation: 0.5534 - euclidean_distance: 0.2086
Epoch 311/350
38/38 [==============================] - 0s 896us/step - loss: 0.1235 - accuracy: 0.8434 - mae: 0.1235 - pearson_correlation: 0.5501 - euclidean_distance: 0.2068
Epoch 312/350
38/38 [==============================] - 0s 900us/step - loss: 0.1238 - accuracy: 0.8478 - mae: 0.1238 - pearson_correlation: 0.5571 - euclidean_distance: 0.2060
Epoch 313/350
38/38 [==============================] - 0s 904us/step - loss: 0.1217 - accuracy: 0.8447 - mae: 0.1217 - pearson_correlation: 0.5592 - euclidean_distance: 0.2034
Epoch 314/350
38/38 [==============================] - 0s 899us/step - loss: 0.1249 - accuracy: 0.8430 - mae: 0.1249 - pearson_correlation: 0.5533 - euclidean_distance: 0.2081
Epoch 315/350
38/38 [==============================] - 0s 904us/step - loss: 0.1266 - accuracy: 0.8399 - mae: 0.1266 - pearson_correlation: 0.5512 - euclidean_distance: 0.2105
Epoch 316/350
38/38 [==============================] - 0s 896us/step - loss: 0.1256 - accuracy: 0.8421 - mae: 0.1256 - pearson_correlation: 0.5536 - euclidean_distance: 0.2090
Epoch 317/350
38/38 [==============================] - 0s 944us/step - loss: 0.1222 - accuracy: 0.8540 - mae: 0.1222 - pearson_correlation: 0.5588 - euclidean_distance: 0.2036
Epoch 318/350
38/38 [==============================] - 0s 895us/step - loss: 0.1228 - accuracy: 0.8443 - mae: 0.1228 - pearson_correlation: 0.5640 - euclidean_distance: 0.2042
Epoch 319/350
38/38 [==============================] - 0s 939us/step - loss: 0.1230 - accuracy: 0.8527 - mae: 0.1230 - pearson_correlation: 0.5601 - euclidean_distance: 0.2050
Epoch 320/350
38/38 [==============================] - 0s 900us/step - loss: 0.1224 - accuracy: 0.8452 - mae: 0.1224 - pearson_correlation: 0.5651 - euclidean_distance: 0.2038
Epoch 321/350
38/38 [==============================] - 0s 888us/step - loss: 0.1213 - accuracy: 0.8456 - mae: 0.1213 - pearson_correlation: 0.5625 - euclidean_distance: 0.2022
Epoch 322/350
38/38 [==============================] - 0s 896us/step - loss: 0.1224 - accuracy: 0.8461 - mae: 0.1224 - pearson_correlation: 0.5662 - euclidean_distance: 0.2038
Epoch 323/350
38/38 [==============================] - 0s 902us/step - loss: 0.1193 - accuracy: 0.8558 - mae: 0.1193 - pearson_correlation: 0.5703 - euclidean_distance: 0.1995
Epoch 324/350
38/38 [==============================] - 0s 892us/step - loss: 0.1213 - accuracy: 0.8487 - mae: 0.1213 - pearson_correlation: 0.5709 - euclidean_distance: 0.2019
Epoch 325/350
38/38 [==============================] - 0s 901us/step - loss: 0.1212 - accuracy: 0.8584 - mae: 0.1212 - pearson_correlation: 0.5715 - euclidean_distance: 0.2015
Epoch 326/350
38/38 [==============================] - 0s 902us/step - loss: 0.1194 - accuracy: 0.8553 - mae: 0.1194 - pearson_correlation: 0.5697 - euclidean_distance: 0.1990
Epoch 327/350
38/38 [==============================] - 0s 906us/step - loss: 0.1200 - accuracy: 0.8597 - mae: 0.1200 - pearson_correlation: 0.5667 - euclidean_distance: 0.1999
Epoch 328/350
38/38 [==============================] - 0s 896us/step - loss: 0.1196 - accuracy: 0.8562 - mae: 0.1196 - pearson_correlation: 0.5723 - euclidean_distance: 0.1989
Epoch 329/350
38/38 [==============================] - 0s 906us/step - loss: 0.1182 - accuracy: 0.8549 - mae: 0.1182 - pearson_correlation: 0.5753 - euclidean_distance: 0.1972
Epoch 330/350
38/38 [==============================] - 0s 901us/step - loss: 0.1189 - accuracy: 0.8536 - mae: 0.1189 - pearson_correlation: 0.5766 - euclidean_distance: 0.1979
Epoch 331/350
38/38 [==============================] - 0s 894us/step - loss: 0.1202 - accuracy: 0.8597 - mae: 0.1202 - pearson_correlation: 0.5809 - euclidean_distance: 0.1996
Epoch 332/350
38/38 [==============================] - 0s 915us/step - loss: 0.1193 - accuracy: 0.8588 - mae: 0.1193 - pearson_correlation: 0.5807 - euclidean_distance: 0.1979
Epoch 333/350
38/38 [==============================] - 0s 904us/step - loss: 0.1191 - accuracy: 0.8619 - mae: 0.1191 - pearson_correlation: 0.5763 - euclidean_distance: 0.1982
Epoch 334/350
38/38 [==============================] - 0s 904us/step - loss: 0.1198 - accuracy: 0.8646 - mae: 0.1198 - pearson_correlation: 0.5759 - euclidean_distance: 0.1986
Epoch 335/350
38/38 [==============================] - 0s 902us/step - loss: 0.1164 - accuracy: 0.8593 - mae: 0.1164 - pearson_correlation: 0.5840 - euclidean_distance: 0.1929
Epoch 336/350
38/38 [==============================] - 0s 891us/step - loss: 0.1186 - accuracy: 0.8580 - mae: 0.1186 - pearson_correlation: 0.5763 - euclidean_distance: 0.1974
Epoch 337/350
38/38 [==============================] - 0s 901us/step - loss: 0.1163 - accuracy: 0.8602 - mae: 0.1163 - pearson_correlation: 0.5837 - euclidean_distance: 0.1939
Epoch 338/350
38/38 [==============================] - 0s 896us/step - loss: 0.1156 - accuracy: 0.8641 - mae: 0.1156 - pearson_correlation: 0.5828 - euclidean_distance: 0.1924
Epoch 339/350
38/38 [==============================] - 0s 905us/step - loss: 0.1150 - accuracy: 0.8615 - mae: 0.1150 - pearson_correlation: 0.5842 - euclidean_distance: 0.1918
Epoch 340/350
38/38 [==============================] - 0s 899us/step - loss: 0.1164 - accuracy: 0.8646 - mae: 0.1164 - pearson_correlation: 0.5876 - euclidean_distance: 0.1934
Epoch 341/350
38/38 [==============================] - 0s 899us/step - loss: 0.1194 - accuracy: 0.8681 - mae: 0.1194 - pearson_correlation: 0.5810 - euclidean_distance: 0.1979
Epoch 342/350
38/38 [==============================] - 0s 901us/step - loss: 0.1164 - accuracy: 0.8699 - mae: 0.1164 - pearson_correlation: 0.5879 - euclidean_distance: 0.1933
Epoch 343/350
38/38 [==============================] - 0s 893us/step - loss: 0.1140 - accuracy: 0.8650 - mae: 0.1140 - pearson_correlation: 0.5858 - euclidean_distance: 0.1898
Epoch 344/350
38/38 [==============================] - 0s 910us/step - loss: 0.1186 - accuracy: 0.8655 - mae: 0.1186 - pearson_correlation: 0.5907 - euclidean_distance: 0.1967
Epoch 345/350
38/38 [==============================] - 0s 901us/step - loss: 0.1124 - accuracy: 0.8699 - mae: 0.1124 - pearson_correlation: 0.5949 - euclidean_distance: 0.1880
Epoch 346/350
38/38 [==============================] - 0s 888us/step - loss: 0.1134 - accuracy: 0.8694 - mae: 0.1134 - pearson_correlation: 0.5948 - euclidean_distance: 0.1888
Epoch 347/350
38/38 [==============================] - 0s 893us/step - loss: 0.1121 - accuracy: 0.8721 - mae: 0.1121 - pearson_correlation: 0.6001 - euclidean_distance: 0.1866
Epoch 348/350
38/38 [==============================] - 0s 920us/step - loss: 0.1137 - accuracy: 0.8738 - mae: 0.1137 - pearson_correlation: 0.5979 - euclidean_distance: 0.1894
Epoch 349/350
38/38 [==============================] - 0s 874us/step - loss: 0.1151 - accuracy: 0.8712 - mae: 0.1151 - pearson_correlation: 0.5979 - euclidean_distance: 0.1911
Epoch 350/350
38/38 [==============================] - 0s 927us/step - loss: 0.1158 - accuracy: 0.8672 - mae: 0.1158 - pearson_correlation: 0.5959 - euclidean_distance: 0.1920
19/19 [==============================] - 0s 514us/step
Epoch 1/350
38/38 [==============================] - 1s 1ms/step - loss: 1.0298 - accuracy: 0.8263 - mae: 1.0298 - pearson_correlation: 0.4632 - euclidean_distance: 1.4733
Epoch 2/350
38/38 [==============================] - 0s 911us/step - loss: 1.0237 - accuracy: 0.8276 - mae: 1.0237 - pearson_correlation: 0.4619 - euclidean_distance: 1.4647
Epoch 3/350
38/38 [==============================] - 0s 849us/step - loss: 1.0199 - accuracy: 0.8289 - mae: 1.0199 - pearson_correlation: 0.4674 - euclidean_distance: 1.4590
Epoch 4/350
38/38 [==============================] - 0s 993us/step - loss: 1.0154 - accuracy: 0.8254 - mae: 1.0154 - pearson_correlation: 0.4667 - euclidean_distance: 1.4530
Epoch 5/350
38/38 [==============================] - 0s 915us/step - loss: 1.0105 - accuracy: 0.8210 - mae: 1.0105 - pearson_correlation: 0.4658 - euclidean_distance: 1.4461
Epoch 6/350
38/38 [==============================] - 0s 913us/step - loss: 1.0053 - accuracy: 0.8254 - mae: 1.0053 - pearson_correlation: 0.4689 - euclidean_distance: 1.4388
Epoch 7/350
38/38 [==============================] - 0s 920us/step - loss: 0.9999 - accuracy: 0.8276 - mae: 0.9999 - pearson_correlation: 0.4612 - euclidean_distance: 1.4310
Epoch 8/350
38/38 [==============================] - 0s 916us/step - loss: 0.9941 - accuracy: 0.8263 - mae: 0.9941 - pearson_correlation: 0.4664 - euclidean_distance: 1.4229
Epoch 9/350
38/38 [==============================] - 0s 921us/step - loss: 0.9890 - accuracy: 0.8241 - mae: 0.9890 - pearson_correlation: 0.4648 - euclidean_distance: 1.4157
Epoch 10/350
38/38 [==============================] - 0s 917us/step - loss: 0.9844 - accuracy: 0.8192 - mae: 0.9844 - pearson_correlation: 0.4635 - euclidean_distance: 1.4091
Epoch 11/350
38/38 [==============================] - 0s 911us/step - loss: 0.9799 - accuracy: 0.8219 - mae: 0.9799 - pearson_correlation: 0.4605 - euclidean_distance: 1.4029
Epoch 12/350
38/38 [==============================] - 0s 922us/step - loss: 0.9754 - accuracy: 0.8188 - mae: 0.9754 - pearson_correlation: 0.4636 - euclidean_distance: 1.3966
Epoch 13/350
38/38 [==============================] - 0s 935us/step - loss: 0.9688 - accuracy: 0.8197 - mae: 0.9688 - pearson_correlation: 0.4654 - euclidean_distance: 1.3871
Epoch 14/350
38/38 [==============================] - 0s 891us/step - loss: 0.9639 - accuracy: 0.8197 - mae: 0.9639 - pearson_correlation: 0.4645 - euclidean_distance: 1.3803
Epoch 15/350
38/38 [==============================] - 0s 913us/step - loss: 0.9585 - accuracy: 0.8236 - mae: 0.9585 - pearson_correlation: 0.4619 - euclidean_distance: 1.3727
Epoch 16/350
38/38 [==============================] - 0s 927us/step - loss: 0.9532 - accuracy: 0.8188 - mae: 0.9532 - pearson_correlation: 0.4608 - euclidean_distance: 1.3653
Epoch 17/350
38/38 [==============================] - 0s 1ms/step - loss: 0.9479 - accuracy: 0.8183 - mae: 0.9479 - pearson_correlation: 0.4568 - euclidean_distance: 1.3578
Epoch 18/350
38/38 [==============================] - 0s 1ms/step - loss: 0.9434 - accuracy: 0.8188 - mae: 0.9434 - pearson_correlation: 0.4613 - euclidean_distance: 1.3516
Epoch 19/350
38/38 [==============================] - 0s 953us/step - loss: 0.9385 - accuracy: 0.8144 - mae: 0.9385 - pearson_correlation: 0.4619 - euclidean_distance: 1.3446
Epoch 20/350
38/38 [==============================] - 0s 945us/step - loss: 0.9332 - accuracy: 0.8091 - mae: 0.9332 - pearson_correlation: 0.4569 - euclidean_distance: 1.3376
Epoch 21/350
38/38 [==============================] - 0s 974us/step - loss: 0.9266 - accuracy: 0.8086 - mae: 0.9266 - pearson_correlation: 0.4602 - euclidean_distance: 1.3281
Epoch 22/350
38/38 [==============================] - 0s 935us/step - loss: 0.9214 - accuracy: 0.8064 - mae: 0.9214 - pearson_correlation: 0.4555 - euclidean_distance: 1.3209
Epoch 23/350
38/38 [==============================] - 0s 927us/step - loss: 0.9171 - accuracy: 0.8108 - mae: 0.9171 - pearson_correlation: 0.4556 - euclidean_distance: 1.3147
Epoch 24/350
38/38 [==============================] - 0s 926us/step - loss: 0.9129 - accuracy: 0.8104 - mae: 0.9129 - pearson_correlation: 0.4532 - euclidean_distance: 1.3086
Epoch 25/350
38/38 [==============================] - 0s 917us/step - loss: 0.9069 - accuracy: 0.8104 - mae: 0.9069 - pearson_correlation: 0.4511 - euclidean_distance: 1.3005
Epoch 26/350
38/38 [==============================] - 0s 906us/step - loss: 0.9018 - accuracy: 0.8047 - mae: 0.9018 - pearson_correlation: 0.4537 - euclidean_distance: 1.2934
Epoch 27/350
38/38 [==============================] - 0s 946us/step - loss: 0.8960 - accuracy: 0.8100 - mae: 0.8960 - pearson_correlation: 0.4523 - euclidean_distance: 1.2851
Epoch 28/350
38/38 [==============================] - 0s 915us/step - loss: 0.8931 - accuracy: 0.8056 - mae: 0.8931 - pearson_correlation: 0.4497 - euclidean_distance: 1.2812
Epoch 29/350
38/38 [==============================] - 0s 914us/step - loss: 0.8874 - accuracy: 0.8104 - mae: 0.8874 - pearson_correlation: 0.4447 - euclidean_distance: 1.2735
Epoch 30/350
38/38 [==============================] - 0s 924us/step - loss: 0.8819 - accuracy: 0.8025 - mae: 0.8819 - pearson_correlation: 0.4472 - euclidean_distance: 1.2653
Epoch 31/350
38/38 [==============================] - 0s 907us/step - loss: 0.8774 - accuracy: 0.8038 - mae: 0.8774 - pearson_correlation: 0.4425 - euclidean_distance: 1.2594
Epoch 32/350
38/38 [==============================] - 0s 904us/step - loss: 0.8731 - accuracy: 0.8034 - mae: 0.8731 - pearson_correlation: 0.4444 - euclidean_distance: 1.2532
Epoch 33/350
38/38 [==============================] - 0s 910us/step - loss: 0.8663 - accuracy: 0.8034 - mae: 0.8663 - pearson_correlation: 0.4419 - euclidean_distance: 1.2438
Epoch 34/350
38/38 [==============================] - 0s 925us/step - loss: 0.8621 - accuracy: 0.8056 - mae: 0.8621 - pearson_correlation: 0.4381 - euclidean_distance: 1.2380
Epoch 35/350
38/38 [==============================] - 0s 925us/step - loss: 0.8582 - accuracy: 0.7985 - mae: 0.8582 - pearson_correlation: 0.4368 - euclidean_distance: 1.2326
Epoch 36/350
38/38 [==============================] - 0s 976us/step - loss: 0.8530 - accuracy: 0.8007 - mae: 0.8530 - pearson_correlation: 0.4319 - euclidean_distance: 1.2254
Epoch 37/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8485 - accuracy: 0.7959 - mae: 0.8485 - pearson_correlation: 0.4331 - euclidean_distance: 1.2194
Epoch 38/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8429 - accuracy: 0.7919 - mae: 0.8429 - pearson_correlation: 0.4326 - euclidean_distance: 1.2115
Epoch 39/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8379 - accuracy: 0.7963 - mae: 0.8379 - pearson_correlation: 0.4249 - euclidean_distance: 1.2047
Epoch 40/350
38/38 [==============================] - 0s 952us/step - loss: 0.8343 - accuracy: 0.7937 - mae: 0.8343 - pearson_correlation: 0.4293 - euclidean_distance: 1.1993
Epoch 41/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8286 - accuracy: 0.7937 - mae: 0.8286 - pearson_correlation: 0.4263 - euclidean_distance: 1.1917
Epoch 42/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8254 - accuracy: 0.7928 - mae: 0.8254 - pearson_correlation: 0.4187 - euclidean_distance: 1.1872
Epoch 43/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8196 - accuracy: 0.7923 - mae: 0.8196 - pearson_correlation: 0.4151 - euclidean_distance: 1.1794
Epoch 44/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8149 - accuracy: 0.7875 - mae: 0.8149 - pearson_correlation: 0.4105 - euclidean_distance: 1.1729
Epoch 45/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8101 - accuracy: 0.7826 - mae: 0.8101 - pearson_correlation: 0.4111 - euclidean_distance: 1.1663
Epoch 46/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8063 - accuracy: 0.7817 - mae: 0.8063 - pearson_correlation: 0.4040 - euclidean_distance: 1.1612
Epoch 47/350
38/38 [==============================] - 0s 1ms/step - loss: 0.8023 - accuracy: 0.7791 - mae: 0.8023 - pearson_correlation: 0.3935 - euclidean_distance: 1.1560
Epoch 48/350
38/38 [==============================] - 0s 1ms/step - loss: 0.7962 - accuracy: 0.7822 - mae: 0.7962 - pearson_correlation: 0.3997 - euclidean_distance: 1.1475
Epoch 49/350
38/38 [==============================] - 0s 988us/step - loss: 0.7931 - accuracy: 0.7751 - mae: 0.7931 - pearson_correlation: 0.3891 - euclidean_distance: 1.1437
Epoch 50/350
38/38 [==============================] - 0s 920us/step - loss: 0.7886 - accuracy: 0.7734 - mae: 0.7886 - pearson_correlation: 0.3872 - euclidean_distance: 1.1372
Epoch 51/350
38/38 [==============================] - 0s 935us/step - loss: 0.7837 - accuracy: 0.7760 - mae: 0.7837 - pearson_correlation: 0.3881 - euclidean_distance: 1.1303
Epoch 52/350
38/38 [==============================] - 0s 909us/step - loss: 0.7798 - accuracy: 0.7694 - mae: 0.7798 - pearson_correlation: 0.3820 - euclidean_distance: 1.1255
Epoch 53/350
38/38 [==============================] - 0s 910us/step - loss: 0.7753 - accuracy: 0.7698 - mae: 0.7753 - pearson_correlation: 0.3759 - euclidean_distance: 1.1192
Epoch 54/350
38/38 [==============================] - 0s 911us/step - loss: 0.7704 - accuracy: 0.7628 - mae: 0.7704 - pearson_correlation: 0.3710 - euclidean_distance: 1.1126
Epoch 55/350
38/38 [==============================] - 0s 923us/step - loss: 0.7664 - accuracy: 0.7606 - mae: 0.7664 - pearson_correlation: 0.3682 - euclidean_distance: 1.1075
Epoch 56/350
38/38 [==============================] - 0s 918us/step - loss: 0.7629 - accuracy: 0.7540 - mae: 0.7629 - pearson_correlation: 0.3616 - euclidean_distance: 1.1028
Epoch 57/350
38/38 [==============================] - 0s 915us/step - loss: 0.7586 - accuracy: 0.7544 - mae: 0.7586 - pearson_correlation: 0.3606 - euclidean_distance: 1.0970
Epoch 58/350
38/38 [==============================] - 0s 920us/step - loss: 0.7537 - accuracy: 0.7509 - mae: 0.7537 - pearson_correlation: 0.3512 - euclidean_distance: 1.0903
Epoch 59/350
38/38 [==============================] - 0s 926us/step - loss: 0.7501 - accuracy: 0.7518 - mae: 0.7501 - pearson_correlation: 0.3470 - euclidean_distance: 1.0856
Epoch 60/350
38/38 [==============================] - 0s 926us/step - loss: 0.7445 - accuracy: 0.7451 - mae: 0.7445 - pearson_correlation: 0.3427 - euclidean_distance: 1.0781
Epoch 61/350
38/38 [==============================] - 0s 910us/step - loss: 0.7412 - accuracy: 0.7324 - mae: 0.7412 - pearson_correlation: 0.3392 - euclidean_distance: 1.0739
Epoch 62/350
38/38 [==============================] - 0s 939us/step - loss: 0.7374 - accuracy: 0.7368 - mae: 0.7374 - pearson_correlation: 0.3345 - euclidean_distance: 1.0687
Epoch 63/350
38/38 [==============================] - 0s 924us/step - loss: 0.7343 - accuracy: 0.7235 - mae: 0.7343 - pearson_correlation: 0.3191 - euclidean_distance: 1.0650
Epoch 64/350
38/38 [==============================] - 0s 920us/step - loss: 0.7293 - accuracy: 0.7288 - mae: 0.7293 - pearson_correlation: 0.3241 - euclidean_distance: 1.0581
Epoch 65/350
38/38 [==============================] - 0s 932us/step - loss: 0.7248 - accuracy: 0.7284 - mae: 0.7248 - pearson_correlation: 0.3155 - euclidean_distance: 1.0523
Epoch 66/350
38/38 [==============================] - 0s 930us/step - loss: 0.7215 - accuracy: 0.7200 - mae: 0.7215 - pearson_correlation: 0.3112 - euclidean_distance: 1.0480
Epoch 67/350
38/38 [==============================] - 0s 926us/step - loss: 0.7179 - accuracy: 0.7213 - mae: 0.7179 - pearson_correlation: 0.3053 - euclidean_distance: 1.0433
Epoch 68/350
38/38 [==============================] - 0s 917us/step - loss: 0.7143 - accuracy: 0.6905 - mae: 0.7143 - pearson_correlation: 0.2889 - euclidean_distance: 1.0391
Epoch 69/350
38/38 [==============================] - 0s 916us/step - loss: 0.7098 - accuracy: 0.6962 - mae: 0.7098 - pearson_correlation: 0.2904 - euclidean_distance: 1.0330
Epoch 70/350
38/38 [==============================] - 0s 914us/step - loss: 0.7067 - accuracy: 0.6834 - mae: 0.7067 - pearson_correlation: 0.2903 - euclidean_distance: 1.0286
Epoch 71/350
38/38 [==============================] - 0s 914us/step - loss: 0.7034 - accuracy: 0.6852 - mae: 0.7034 - pearson_correlation: 0.2746 - euclidean_distance: 1.0248
Epoch 72/350
38/38 [==============================] - 0s 918us/step - loss: 0.6996 - accuracy: 0.6755 - mae: 0.6996 - pearson_correlation: 0.2745 - euclidean_distance: 1.0197
Epoch 73/350
38/38 [==============================] - 0s 916us/step - loss: 0.6956 - accuracy: 0.6724 - mae: 0.6956 - pearson_correlation: 0.2701 - euclidean_distance: 1.0143
Epoch 74/350
38/38 [==============================] - 0s 916us/step - loss: 0.6914 - accuracy: 0.6561 - mae: 0.6914 - pearson_correlation: 0.2592 - euclidean_distance: 1.0090
Epoch 75/350
38/38 [==============================] - 0s 917us/step - loss: 0.6881 - accuracy: 0.6548 - mae: 0.6881 - pearson_correlation: 0.2538 - euclidean_distance: 1.0046
Epoch 76/350
38/38 [==============================] - 0s 915us/step - loss: 0.6853 - accuracy: 0.6504 - mae: 0.6853 - pearson_correlation: 0.2412 - euclidean_distance: 1.0014
Epoch 77/350
38/38 [==============================] - 0s 916us/step - loss: 0.6817 - accuracy: 0.6327 - mae: 0.6817 - pearson_correlation: 0.2387 - euclidean_distance: 0.9968
Epoch 78/350
38/38 [==============================] - 0s 915us/step - loss: 0.6778 - accuracy: 0.6195 - mae: 0.6778 - pearson_correlation: 0.2339 - euclidean_distance: 0.9916
Epoch 79/350
38/38 [==============================] - 0s 915us/step - loss: 0.6742 - accuracy: 0.6155 - mae: 0.6742 - pearson_correlation: 0.2245 - euclidean_distance: 0.9872
Epoch 80/350
38/38 [==============================] - 0s 915us/step - loss: 0.6701 - accuracy: 0.6045 - mae: 0.6701 - pearson_correlation: 0.2169 - euclidean_distance: 0.9817
Epoch 81/350
38/38 [==============================] - 0s 918us/step - loss: 0.6668 - accuracy: 0.5895 - mae: 0.6668 - pearson_correlation: 0.2161 - euclidean_distance: 0.9776
Epoch 82/350
38/38 [==============================] - 0s 971us/step - loss: 0.6627 - accuracy: 0.5794 - mae: 0.6627 - pearson_correlation: 0.2039 - euclidean_distance: 0.9726
Epoch 83/350
38/38 [==============================] - 0s 921us/step - loss: 0.6604 - accuracy: 0.5794 - mae: 0.6604 - pearson_correlation: 0.1901 - euclidean_distance: 0.9701
Epoch 84/350
38/38 [==============================] - 0s 917us/step - loss: 0.6559 - accuracy: 0.5785 - mae: 0.6559 - pearson_correlation: 0.1908 - euclidean_distance: 0.9637
Epoch 85/350
38/38 [==============================] - 0s 910us/step - loss: 0.6535 - accuracy: 0.5644 - mae: 0.6535 - pearson_correlation: 0.1848 - euclidean_distance: 0.9611
Epoch 86/350
38/38 [==============================] - 0s 915us/step - loss: 0.6496 - accuracy: 0.5595 - mae: 0.6496 - pearson_correlation: 0.1781 - euclidean_distance: 0.9559
Epoch 87/350
38/38 [==============================] - 0s 911us/step - loss: 0.6463 - accuracy: 0.5511 - mae: 0.6463 - pearson_correlation: 0.1642 - euclidean_distance: 0.9521
Epoch 88/350
38/38 [==============================] - 0s 904us/step - loss: 0.6423 - accuracy: 0.5423 - mae: 0.6423 - pearson_correlation: 0.1549 - euclidean_distance: 0.9470
Epoch 89/350
38/38 [==============================] - 0s 914us/step - loss: 0.6390 - accuracy: 0.5331 - mae: 0.6390 - pearson_correlation: 0.1496 - euclidean_distance: 0.9428
Epoch 90/350
38/38 [==============================] - 0s 916us/step - loss: 0.6362 - accuracy: 0.5190 - mae: 0.6362 - pearson_correlation: 0.1442 - euclidean_distance: 0.9394
Epoch 91/350
38/38 [==============================] - 0s 917us/step - loss: 0.6329 - accuracy: 0.5295 - mae: 0.6329 - pearson_correlation: 0.1306 - euclidean_distance: 0.9354
Epoch 92/350
38/38 [==============================] - 0s 917us/step - loss: 0.6298 - accuracy: 0.5146 - mae: 0.6298 - pearson_correlation: 0.1231 - euclidean_distance: 0.9318
Epoch 93/350
38/38 [==============================] - 0s 921us/step - loss: 0.6260 - accuracy: 0.5093 - mae: 0.6260 - pearson_correlation: 0.1243 - euclidean_distance: 0.9264
Epoch 94/350
38/38 [==============================] - 0s 910us/step - loss: 0.6237 - accuracy: 0.5009 - mae: 0.6237 - pearson_correlation: 0.1056 - euclidean_distance: 0.9243
Epoch 95/350
38/38 [==============================] - 0s 904us/step - loss: 0.6186 - accuracy: 0.4872 - mae: 0.6186 - pearson_correlation: 0.0995 - euclidean_distance: 0.9179
Epoch 96/350
38/38 [==============================] - 0s 903us/step - loss: 0.6158 - accuracy: 0.4850 - mae: 0.6158 - pearson_correlation: 0.0893 - euclidean_distance: 0.9144
Epoch 97/350
38/38 [==============================] - 0s 926us/step - loss: 0.6132 - accuracy: 0.4735 - mae: 0.6132 - pearson_correlation: 0.0773 - euclidean_distance: 0.9118
Epoch 98/350
38/38 [==============================] - 0s 897us/step - loss: 0.6096 - accuracy: 0.4766 - mae: 0.6096 - pearson_correlation: 0.0692 - euclidean_distance: 0.9072
Epoch 99/350
38/38 [==============================] - 0s 907us/step - loss: 0.6062 - accuracy: 0.4744 - mae: 0.6062 - pearson_correlation: 0.0626 - euclidean_distance: 0.9028
Epoch 100/350
38/38 [==============================] - 0s 906us/step - loss: 0.6034 - accuracy: 0.4621 - mae: 0.6034 - pearson_correlation: 0.0536 - euclidean_distance: 0.8999
Epoch 101/350
38/38 [==============================] - 0s 918us/step - loss: 0.6003 - accuracy: 0.4449 - mae: 0.6003 - pearson_correlation: 0.0371 - euclidean_distance: 0.8963
Epoch 102/350
38/38 [==============================] - 0s 907us/step - loss: 0.5968 - accuracy: 0.4422 - mae: 0.5968 - pearson_correlation: 0.0274 - euclidean_distance: 0.8924
Epoch 103/350
38/38 [==============================] - 0s 906us/step - loss: 0.5934 - accuracy: 0.4436 - mae: 0.5934 - pearson_correlation: 0.0196 - euclidean_distance: 0.8880
Epoch 104/350
38/38 [==============================] - 0s 915us/step - loss: 0.5898 - accuracy: 0.4396 - mae: 0.5898 - pearson_correlation: 0.0055 - euclidean_distance: 0.8840
Epoch 105/350
38/38 [==============================] - 0s 896us/step - loss: 0.5872 - accuracy: 0.4246 - mae: 0.5872 - pearson_correlation: -0.0060 - euclidean_distance: 0.8814
Epoch 106/350
38/38 [==============================] - 0s 905us/step - loss: 0.5841 - accuracy: 0.4334 - mae: 0.5841 - pearson_correlation: -0.0098 - euclidean_distance: 0.8776
Epoch 107/350
38/38 [==============================] - 0s 915us/step - loss: 0.5815 - accuracy: 0.4233 - mae: 0.5815 - pearson_correlation: -0.0247 - euclidean_distance: 0.8749
Epoch 108/350
38/38 [==============================] - 0s 920us/step - loss: 0.5781 - accuracy: 0.4158 - mae: 0.5781 - pearson_correlation: -0.0354 - euclidean_distance: 0.8709
Epoch 109/350
38/38 [==============================] - 0s 903us/step - loss: 0.5739 - accuracy: 0.4061 - mae: 0.5739 - pearson_correlation: -0.0452 - euclidean_distance: 0.8658
Epoch 110/350
38/38 [==============================] - 0s 895us/step - loss: 0.5716 - accuracy: 0.4109 - mae: 0.5716 - pearson_correlation: -0.0545 - euclidean_distance: 0.8636
Epoch 111/350
38/38 [==============================] - 0s 898us/step - loss: 0.5686 - accuracy: 0.4017 - mae: 0.5686 - pearson_correlation: -0.0640 - euclidean_distance: 0.8597
Epoch 112/350
38/38 [==============================] - 0s 905us/step - loss: 0.5650 - accuracy: 0.3933 - mae: 0.5650 - pearson_correlation: -0.0789 - euclidean_distance: 0.8563
Epoch 113/350
38/38 [==============================] - 0s 912us/step - loss: 0.5625 - accuracy: 0.3964 - mae: 0.5625 - pearson_correlation: -0.0905 - euclidean_distance: 0.8540
Epoch 114/350
38/38 [==============================] - 0s 920us/step - loss: 0.5601 - accuracy: 0.3880 - mae: 0.5601 - pearson_correlation: -0.0950 - euclidean_distance: 0.8509
Epoch 115/350
38/38 [==============================] - 0s 912us/step - loss: 0.5557 - accuracy: 0.3818 - mae: 0.5557 - pearson_correlation: -0.1129 - euclidean_distance: 0.8463
Epoch 116/350
38/38 [==============================] - 0s 938us/step - loss: 0.5529 - accuracy: 0.3796 - mae: 0.5529 - pearson_correlation: -0.1190 - euclidean_distance: 0.8431
Epoch 117/350
38/38 [==============================] - 0s 917us/step - loss: 0.5494 - accuracy: 0.3814 - mae: 0.5494 - pearson_correlation: -0.1306 - euclidean_distance: 0.8396
Epoch 118/350
38/38 [==============================] - 0s 906us/step - loss: 0.5458 - accuracy: 0.3787 - mae: 0.5458 - pearson_correlation: -0.1400 - euclidean_distance: 0.8355
Epoch 119/350
38/38 [==============================] - 0s 912us/step - loss: 0.5423 - accuracy: 0.3695 - mae: 0.5423 - pearson_correlation: -0.1532 - euclidean_distance: 0.8317
Epoch 120/350
38/38 [==============================] - 0s 917us/step - loss: 0.5400 - accuracy: 0.3713 - mae: 0.5400 - pearson_correlation: -0.1573 - euclidean_distance: 0.8296
Epoch 121/350
38/38 [==============================] - 0s 920us/step - loss: 0.5360 - accuracy: 0.3496 - mae: 0.5360 - pearson_correlation: -0.1761 - euclidean_distance: 0.8251
Epoch 122/350
38/38 [==============================] - 0s 918us/step - loss: 0.5331 - accuracy: 0.3624 - mae: 0.5331 - pearson_correlation: -0.1858 - euclidean_distance: 0.8227
Epoch 123/350
38/38 [==============================] - 0s 911us/step - loss: 0.5307 - accuracy: 0.3616 - mae: 0.5307 - pearson_correlation: -0.1884 - euclidean_distance: 0.8201
Epoch 124/350
38/38 [==============================] - 0s 910us/step - loss: 0.5270 - accuracy: 0.3541 - mae: 0.5270 - pearson_correlation: -0.2070 - euclidean_distance: 0.8163
Epoch 125/350
38/38 [==============================] - 0s 903us/step - loss: 0.5240 - accuracy: 0.3514 - mae: 0.5240 - pearson_correlation: -0.2120 - euclidean_distance: 0.8136
Epoch 126/350
38/38 [==============================] - 0s 912us/step - loss: 0.5216 - accuracy: 0.3413 - mae: 0.5216 - pearson_correlation: -0.2218 - euclidean_distance: 0.8110
Epoch 127/350
38/38 [==============================] - 0s 906us/step - loss: 0.5176 - accuracy: 0.3395 - mae: 0.5176 - pearson_correlation: -0.2364 - euclidean_distance: 0.8074
Epoch 128/350
38/38 [==============================] - 0s 910us/step - loss: 0.5145 - accuracy: 0.3386 - mae: 0.5145 - pearson_correlation: -0.2362 - euclidean_distance: 0.8033
Epoch 129/350
38/38 [==============================] - 0s 1ms/step - loss: 0.5120 - accuracy: 0.3294 - mae: 0.5120 - pearson_correlation: -0.2469 - euclidean_distance: 0.8012
Epoch 130/350
38/38 [==============================] - 0s 920us/step - loss: 0.5087 - accuracy: 0.3263 - mae: 0.5087 - pearson_correlation: -0.2629 - euclidean_distance: 0.7985
Epoch 131/350
38/38 [==============================] - 0s 929us/step - loss: 0.5048 - accuracy: 0.3219 - mae: 0.5048 - pearson_correlation: -0.2711 - euclidean_distance: 0.7941
Epoch 132/350
38/38 [==============================] - 0s 930us/step - loss: 0.5036 - accuracy: 0.3157 - mae: 0.5036 - pearson_correlation: -0.2720 - euclidean_distance: 0.7935
Epoch 133/350
38/38 [==============================] - 0s 932us/step - loss: 0.4994 - accuracy: 0.3153 - mae: 0.4994 - pearson_correlation: -0.2843 - euclidean_distance: 0.7891
Epoch 134/350
38/38 [==============================] - 0s 922us/step - loss: 0.4967 - accuracy: 0.3108 - mae: 0.4967 - pearson_correlation: -0.2918 - euclidean_distance: 0.7861
Epoch 135/350
38/38 [==============================] - 0s 932us/step - loss: 0.4939 - accuracy: 0.3056 - mae: 0.4939 - pearson_correlation: -0.3064 - euclidean_distance: 0.7834
Epoch 136/350
38/38 [==============================] - 0s 931us/step - loss: 0.4911 - accuracy: 0.3060 - mae: 0.4911 - pearson_correlation: -0.3016 - euclidean_distance: 0.7802
Epoch 137/350
38/38 [==============================] - 0s 923us/step - loss: 0.4890 - accuracy: 0.3011 - mae: 0.4890 - pearson_correlation: -0.3068 - euclidean_distance: 0.7774
Epoch 138/350
38/38 [==============================] - 0s 906us/step - loss: 0.4856 - accuracy: 0.2972 - mae: 0.4856 - pearson_correlation: -0.3157 - euclidean_distance: 0.7744
Epoch 139/350
38/38 [==============================] - 0s 910us/step - loss: 0.4821 - accuracy: 0.2910 - mae: 0.4821 - pearson_correlation: -0.3197 - euclidean_distance: 0.7702
Epoch 140/350
38/38 [==============================] - 0s 903us/step - loss: 0.4788 - accuracy: 0.2831 - mae: 0.4788 - pearson_correlation: -0.3327 - euclidean_distance: 0.7680
Epoch 141/350
38/38 [==============================] - 0s 913us/step - loss: 0.4768 - accuracy: 0.2835 - mae: 0.4768 - pearson_correlation: -0.3313 - euclidean_distance: 0.7651
Epoch 142/350
38/38 [==============================] - 0s 952us/step - loss: 0.4735 - accuracy: 0.2826 - mae: 0.4735 - pearson_correlation: -0.3405 - euclidean_distance: 0.7623
Epoch 143/350
38/38 [==============================] - 0s 910us/step - loss: 0.4726 - accuracy: 0.2747 - mae: 0.4726 - pearson_correlation: -0.3455 - euclidean_distance: 0.7611
Epoch 144/350
38/38 [==============================] - 0s 913us/step - loss: 0.4678 - accuracy: 0.2857 - mae: 0.4678 - pearson_correlation: -0.3465 - euclidean_distance: 0.7550
Epoch 145/350
38/38 [==============================] - 0s 897us/step - loss: 0.4662 - accuracy: 0.2720 - mae: 0.4662 - pearson_correlation: -0.3532 - euclidean_distance: 0.7540
Epoch 146/350
38/38 [==============================] - 0s 883us/step - loss: 0.4631 - accuracy: 0.2668 - mae: 0.4631 - pearson_correlation: -0.3592 - euclidean_distance: 0.7506
Epoch 147/350
38/38 [==============================] - 0s 914us/step - loss: 0.4607 - accuracy: 0.2663 - mae: 0.4607 - pearson_correlation: -0.3610 - euclidean_distance: 0.7475
Epoch 148/350
38/38 [==============================] - 0s 916us/step - loss: 0.4580 - accuracy: 0.2650 - mae: 0.4580 - pearson_correlation: -0.3647 - euclidean_distance: 0.7440
Epoch 149/350
38/38 [==============================] - 0s 918us/step - loss: 0.4551 - accuracy: 0.2637 - mae: 0.4551 - pearson_correlation: -0.3679 - euclidean_distance: 0.7409
Epoch 150/350
38/38 [==============================] - 0s 920us/step - loss: 0.4528 - accuracy: 0.2610 - mae: 0.4528 - pearson_correlation: -0.3732 - euclidean_distance: 0.7382
Epoch 151/350
38/38 [==============================] - 0s 912us/step - loss: 0.4506 - accuracy: 0.2535 - mae: 0.4506 - pearson_correlation: -0.3774 - euclidean_distance: 0.7357
Epoch 152/350
38/38 [==============================] - 0s 920us/step - loss: 0.4466 - accuracy: 0.2482 - mae: 0.4466 - pearson_correlation: -0.3819 - euclidean_distance: 0.7316
Epoch 153/350
38/38 [==============================] - 0s 915us/step - loss: 0.4465 - accuracy: 0.2460 - mae: 0.4465 - pearson_correlation: -0.3812 - euclidean_distance: 0.7310
Epoch 154/350
38/38 [==============================] - 0s 911us/step - loss: 0.4425 - accuracy: 0.2438 - mae: 0.4425 - pearson_correlation: -0.3855 - euclidean_distance: 0.7260
Epoch 155/350
38/38 [==============================] - 0s 904us/step - loss: 0.4415 - accuracy: 0.2469 - mae: 0.4415 - pearson_correlation: -0.3880 - euclidean_distance: 0.7247
Epoch 156/350
38/38 [==============================] - 0s 921us/step - loss: 0.4381 - accuracy: 0.2399 - mae: 0.4381 - pearson_correlation: -0.3889 - euclidean_distance: 0.7213
Epoch 157/350
38/38 [==============================] - 0s 911us/step - loss: 0.4364 - accuracy: 0.2368 - mae: 0.4364 - pearson_correlation: -0.3922 - euclidean_distance: 0.7190
Epoch 158/350
38/38 [==============================] - 0s 913us/step - loss: 0.4335 - accuracy: 0.2280 - mae: 0.4335 - pearson_correlation: -0.3925 - euclidean_distance: 0.7153
Epoch 159/350
38/38 [==============================] - 0s 920us/step - loss: 0.4326 - accuracy: 0.2302 - mae: 0.4326 - pearson_correlation: -0.3971 - euclidean_distance: 0.7143
Epoch 160/350
38/38 [==============================] - 0s 910us/step - loss: 0.4289 - accuracy: 0.2302 - mae: 0.4289 - pearson_correlation: -0.3995 - euclidean_distance: 0.7105
Epoch 161/350
38/38 [==============================] - 0s 911us/step - loss: 0.4274 - accuracy: 0.2244 - mae: 0.4274 - pearson_correlation: -0.3980 - euclidean_distance: 0.7077
Epoch 162/350
38/38 [==============================] - 0s 909us/step - loss: 0.4241 - accuracy: 0.2174 - mae: 0.4241 - pearson_correlation: -0.3992 - euclidean_distance: 0.7040
Epoch 163/350
38/38 [==============================] - 0s 903us/step - loss: 0.4226 - accuracy: 0.2174 - mae: 0.4226 - pearson_correlation: -0.4031 - euclidean_distance: 0.7018
Epoch 164/350
38/38 [==============================] - 0s 907us/step - loss: 0.4204 - accuracy: 0.2222 - mae: 0.4204 - pearson_correlation: -0.4012 - euclidean_distance: 0.6986
Epoch 165/350
38/38 [==============================] - 0s 920us/step - loss: 0.4187 - accuracy: 0.2160 - mae: 0.4187 - pearson_correlation: -0.4053 - euclidean_distance: 0.6971
Epoch 166/350
38/38 [==============================] - 0s 916us/step - loss: 0.4171 - accuracy: 0.2046 - mae: 0.4171 - pearson_correlation: -0.4108 - euclidean_distance: 0.6952
Epoch 167/350
38/38 [==============================] - 0s 915us/step - loss: 0.4133 - accuracy: 0.2094 - mae: 0.4133 - pearson_correlation: -0.4069 - euclidean_distance: 0.6908
Epoch 168/350
38/38 [==============================] - 0s 917us/step - loss: 0.4115 - accuracy: 0.2086 - mae: 0.4115 - pearson_correlation: -0.4036 - euclidean_distance: 0.6879
Epoch 169/350
38/38 [==============================] - 0s 906us/step - loss: 0.4103 - accuracy: 0.1966 - mae: 0.4103 - pearson_correlation: -0.4052 - euclidean_distance: 0.6862
Epoch 170/350
38/38 [==============================] - 0s 909us/step - loss: 0.4073 - accuracy: 0.1975 - mae: 0.4073 - pearson_correlation: -0.4139 - euclidean_distance: 0.6826
Epoch 171/350
38/38 [==============================] - 0s 907us/step - loss: 0.4041 - accuracy: 0.2046 - mae: 0.4041 - pearson_correlation: -0.4090 - euclidean_distance: 0.6786
Epoch 172/350
38/38 [==============================] - 0s 911us/step - loss: 0.4047 - accuracy: 0.1852 - mae: 0.4047 - pearson_correlation: -0.4121 - euclidean_distance: 0.6791
Epoch 173/350
38/38 [==============================] - 0s 914us/step - loss: 0.4025 - accuracy: 0.1909 - mae: 0.4025 - pearson_correlation: -0.4112 - euclidean_distance: 0.6758
Epoch 174/350
38/38 [==============================] - 0s 906us/step - loss: 0.4003 - accuracy: 0.1914 - mae: 0.4003 - pearson_correlation: -0.4090 - euclidean_distance: 0.6732
Epoch 175/350
38/38 [==============================] - 0s 913us/step - loss: 0.3985 - accuracy: 0.1878 - mae: 0.3985 - pearson_correlation: -0.4094 - euclidean_distance: 0.6702
Epoch 176/350
38/38 [==============================] - 0s 915us/step - loss: 0.3962 - accuracy: 0.2019 - mae: 0.3962 - pearson_correlation: -0.4074 - euclidean_distance: 0.6674
Epoch 177/350
38/38 [==============================] - 0s 913us/step - loss: 0.3951 - accuracy: 0.1900 - mae: 0.3951 - pearson_correlation: -0.4058 - euclidean_distance: 0.6663
Epoch 178/350
38/38 [==============================] - 0s 914us/step - loss: 0.3927 - accuracy: 0.1843 - mae: 0.3927 - pearson_correlation: -0.4060 - euclidean_distance: 0.6625
Epoch 179/350
38/38 [==============================] - 0s 908us/step - loss: 0.3907 - accuracy: 0.1803 - mae: 0.3907 - pearson_correlation: -0.4075 - euclidean_distance: 0.6603
Epoch 180/350
38/38 [==============================] - 0s 914us/step - loss: 0.3884 - accuracy: 0.1869 - mae: 0.3884 - pearson_correlation: -0.4056 - euclidean_distance: 0.6572
Epoch 181/350
38/38 [==============================] - 0s 902us/step - loss: 0.3867 - accuracy: 0.1772 - mae: 0.3867 - pearson_correlation: -0.4019 - euclidean_distance: 0.6545
Epoch 182/350
38/38 [==============================] - 0s 909us/step - loss: 0.3850 - accuracy: 0.1817 - mae: 0.3850 - pearson_correlation: -0.4041 - euclidean_distance: 0.6518
Epoch 183/350
38/38 [==============================] - 0s 905us/step - loss: 0.3844 - accuracy: 0.1892 - mae: 0.3844 - pearson_correlation: -0.3980 - euclidean_distance: 0.6505
Epoch 184/350
38/38 [==============================] - 0s 911us/step - loss: 0.3818 - accuracy: 0.1768 - mae: 0.3818 - pearson_correlation: -0.4006 - euclidean_distance: 0.6472
Epoch 185/350
38/38 [==============================] - 0s 906us/step - loss: 0.3801 - accuracy: 0.1874 - mae: 0.3801 - pearson_correlation: -0.3953 - euclidean_distance: 0.6450
Epoch 186/350
38/38 [==============================] - 0s 911us/step - loss: 0.3792 - accuracy: 0.1799 - mae: 0.3792 - pearson_correlation: -0.3933 - euclidean_distance: 0.6428
Epoch 187/350
38/38 [==============================] - 0s 913us/step - loss: 0.3772 - accuracy: 0.1856 - mae: 0.3772 - pearson_correlation: -0.3902 - euclidean_distance: 0.6405
Epoch 188/350
38/38 [==============================] - 0s 907us/step - loss: 0.3750 - accuracy: 0.1852 - mae: 0.3750 - pearson_correlation: -0.3910 - euclidean_distance: 0.6373
Epoch 189/350
38/38 [==============================] - 0s 906us/step - loss: 0.3746 - accuracy: 0.1821 - mae: 0.3746 - pearson_correlation: -0.3900 - euclidean_distance: 0.6360
Epoch 190/350
38/38 [==============================] - 0s 902us/step - loss: 0.3726 - accuracy: 0.1808 - mae: 0.3726 - pearson_correlation: -0.3845 - euclidean_distance: 0.6330
Epoch 191/350
38/38 [==============================] - 0s 926us/step - loss: 0.3713 - accuracy: 0.1962 - mae: 0.3713 - pearson_correlation: -0.3807 - euclidean_distance: 0.6307
Epoch 192/350
38/38 [==============================] - 0s 915us/step - loss: 0.3700 - accuracy: 0.1989 - mae: 0.3700 - pearson_correlation: -0.3786 - euclidean_distance: 0.6284
Epoch 193/350
38/38 [==============================] - 0s 911us/step - loss: 0.3678 - accuracy: 0.2033 - mae: 0.3678 - pearson_correlation: -0.3740 - euclidean_distance: 0.6259
Epoch 194/350
38/38 [==============================] - 0s 921us/step - loss: 0.3664 - accuracy: 0.1966 - mae: 0.3664 - pearson_correlation: -0.3781 - euclidean_distance: 0.6234
Epoch 195/350
38/38 [==============================] - 0s 907us/step - loss: 0.3651 - accuracy: 0.2037 - mae: 0.3651 - pearson_correlation: -0.3698 - euclidean_distance: 0.6213
Epoch 196/350
38/38 [==============================] - 0s 912us/step - loss: 0.3627 - accuracy: 0.2081 - mae: 0.3627 - pearson_correlation: -0.3706 - euclidean_distance: 0.6184
Epoch 197/350
38/38 [==============================] - 0s 914us/step - loss: 0.3625 - accuracy: 0.1896 - mae: 0.3625 - pearson_correlation: -0.3665 - euclidean_distance: 0.6167
Epoch 198/350
38/38 [==============================] - 0s 912us/step - loss: 0.3600 - accuracy: 0.2094 - mae: 0.3600 - pearson_correlation: -0.3655 - euclidean_distance: 0.6140
Epoch 199/350
38/38 [==============================] - 0s 909us/step - loss: 0.3595 - accuracy: 0.2002 - mae: 0.3595 - pearson_correlation: -0.3595 - euclidean_distance: 0.6123
Epoch 200/350
38/38 [==============================] - 0s 918us/step - loss: 0.3583 - accuracy: 0.2063 - mae: 0.3583 - pearson_correlation: -0.3595 - euclidean_distance: 0.6105
Epoch 201/350
38/38 [==============================] - 0s 927us/step - loss: 0.3563 - accuracy: 0.2112 - mae: 0.3563 - pearson_correlation: -0.3528 - euclidean_distance: 0.6072
Epoch 202/350
38/38 [==============================] - 0s 894us/step - loss: 0.3551 - accuracy: 0.2099 - mae: 0.3551 - pearson_correlation: -0.3508 - euclidean_distance: 0.6055
Epoch 203/350
38/38 [==============================] - 0s 911us/step - loss: 0.3531 - accuracy: 0.2138 - mae: 0.3531 - pearson_correlation: -0.3489 - euclidean_distance: 0.6028
Epoch 204/350
38/38 [==============================] - 0s 912us/step - loss: 0.3528 - accuracy: 0.2112 - mae: 0.3528 - pearson_correlation: -0.3467 - euclidean_distance: 0.6012
Epoch 205/350
38/38 [==============================] - 0s 913us/step - loss: 0.3488 - accuracy: 0.2280 - mae: 0.3488 - pearson_correlation: -0.3389 - euclidean_distance: 0.5958
Epoch 206/350
38/38 [==============================] - 0s 902us/step - loss: 0.3482 - accuracy: 0.2165 - mae: 0.3482 - pearson_correlation: -0.3394 - euclidean_distance: 0.5952
Epoch 207/350
38/38 [==============================] - 0s 914us/step - loss: 0.3482 - accuracy: 0.2152 - mae: 0.3482 - pearson_correlation: -0.3395 - euclidean_distance: 0.5940
Epoch 208/350
38/38 [==============================] - 0s 905us/step - loss: 0.3466 - accuracy: 0.2209 - mae: 0.3466 - pearson_correlation: -0.3299 - euclidean_distance: 0.5906
Epoch 209/350
38/38 [==============================] - 0s 907us/step - loss: 0.3441 - accuracy: 0.2306 - mae: 0.3441 - pearson_correlation: -0.3265 - euclidean_distance: 0.5876
Epoch 210/350
38/38 [==============================] - 0s 910us/step - loss: 0.3427 - accuracy: 0.2249 - mae: 0.3427 - pearson_correlation: -0.3242 - euclidean_distance: 0.5862
Epoch 211/350
38/38 [==============================] - 0s 908us/step - loss: 0.3420 - accuracy: 0.2332 - mae: 0.3420 - pearson_correlation: -0.3151 - euclidean_distance: 0.5836
Epoch 212/350
38/38 [==============================] - 0s 907us/step - loss: 0.3400 - accuracy: 0.2280 - mae: 0.3400 - pearson_correlation: -0.3160 - euclidean_distance: 0.5812
Epoch 213/350
38/38 [==============================] - 0s 907us/step - loss: 0.3387 - accuracy: 0.2341 - mae: 0.3387 - pearson_correlation: -0.3137 - euclidean_distance: 0.5789
Epoch 214/350
38/38 [==============================] - 0s 945us/step - loss: 0.3367 - accuracy: 0.2368 - mae: 0.3367 - pearson_correlation: -0.3016 - euclidean_distance: 0.5759
Epoch 215/350
38/38 [==============================] - 0s 905us/step - loss: 0.3354 - accuracy: 0.2240 - mae: 0.3354 - pearson_correlation: -0.2993 - euclidean_distance: 0.5736
Epoch 216/350
38/38 [==============================] - 0s 911us/step - loss: 0.3345 - accuracy: 0.2346 - mae: 0.3345 - pearson_correlation: -0.2966 - euclidean_distance: 0.5720
Epoch 217/350
38/38 [==============================] - 0s 912us/step - loss: 0.3333 - accuracy: 0.2394 - mae: 0.3333 - pearson_correlation: -0.2905 - euclidean_distance: 0.5697
Epoch 218/350
38/38 [==============================] - 0s 942us/step - loss: 0.3308 - accuracy: 0.2399 - mae: 0.3308 - pearson_correlation: -0.2857 - euclidean_distance: 0.5665
Epoch 219/350
38/38 [==============================] - 0s 904us/step - loss: 0.3294 - accuracy: 0.2359 - mae: 0.3294 - pearson_correlation: -0.2860 - euclidean_distance: 0.5637
Epoch 220/350
38/38 [==============================] - 0s 904us/step - loss: 0.3291 - accuracy: 0.2421 - mae: 0.3291 - pearson_correlation: -0.2759 - euclidean_distance: 0.5622
Epoch 221/350
38/38 [==============================] - 0s 946us/step - loss: 0.3274 - accuracy: 0.2412 - mae: 0.3274 - pearson_correlation: -0.2695 - euclidean_distance: 0.5597
Epoch 222/350
38/38 [==============================] - 0s 914us/step - loss: 0.3251 - accuracy: 0.2469 - mae: 0.3251 - pearson_correlation: -0.2680 - euclidean_distance: 0.5566
Epoch 223/350
38/38 [==============================] - 0s 913us/step - loss: 0.3243 - accuracy: 0.2500 - mae: 0.3243 - pearson_correlation: -0.2575 - euclidean_distance: 0.5542
Epoch 224/350
38/38 [==============================] - 0s 922us/step - loss: 0.3233 - accuracy: 0.2522 - mae: 0.3233 - pearson_correlation: -0.2563 - euclidean_distance: 0.5526
Epoch 225/350
38/38 [==============================] - 0s 910us/step - loss: 0.3220 - accuracy: 0.2491 - mae: 0.3220 - pearson_correlation: -0.2571 - euclidean_distance: 0.5509
Epoch 226/350
38/38 [==============================] - 0s 916us/step - loss: 0.3193 - accuracy: 0.2518 - mae: 0.3193 - pearson_correlation: -0.2482 - euclidean_distance: 0.5471
Epoch 227/350
38/38 [==============================] - 0s 938us/step - loss: 0.3178 - accuracy: 0.2544 - mae: 0.3178 - pearson_correlation: -0.2430 - euclidean_distance: 0.5449
Epoch 228/350
38/38 [==============================] - 0s 923us/step - loss: 0.3174 - accuracy: 0.2553 - mae: 0.3174 - pearson_correlation: -0.2360 - euclidean_distance: 0.5431
Epoch 229/350
38/38 [==============================] - 0s 917us/step - loss: 0.3150 - accuracy: 0.2601 - mae: 0.3150 - pearson_correlation: -0.2346 - euclidean_distance: 0.5400
Epoch 230/350
38/38 [==============================] - 0s 921us/step - loss: 0.3147 - accuracy: 0.2496 - mae: 0.3147 - pearson_correlation: -0.2306 - euclidean_distance: 0.5390
Epoch 231/350
38/38 [==============================] - 0s 923us/step - loss: 0.3131 - accuracy: 0.2606 - mae: 0.3131 - pearson_correlation: -0.2248 - euclidean_distance: 0.5362
Epoch 232/350
38/38 [==============================] - 0s 911us/step - loss: 0.3107 - accuracy: 0.2641 - mae: 0.3107 - pearson_correlation: -0.2155 - euclidean_distance: 0.5324
Epoch 233/350
38/38 [==============================] - 0s 906us/step - loss: 0.3113 - accuracy: 0.2593 - mae: 0.3113 - pearson_correlation: -0.2153 - euclidean_distance: 0.5323
Epoch 234/350
38/38 [==============================] - 0s 908us/step - loss: 0.3088 - accuracy: 0.2659 - mae: 0.3088 - pearson_correlation: -0.2075 - euclidean_distance: 0.5285
Epoch 235/350
38/38 [==============================] - 0s 915us/step - loss: 0.3070 - accuracy: 0.2654 - mae: 0.3070 - pearson_correlation: -0.2013 - euclidean_distance: 0.5259
Epoch 236/350
38/38 [==============================] - 0s 912us/step - loss: 0.3062 - accuracy: 0.2734 - mae: 0.3062 - pearson_correlation: -0.1982 - euclidean_distance: 0.5246
Epoch 237/350
38/38 [==============================] - 0s 914us/step - loss: 0.3054 - accuracy: 0.2765 - mae: 0.3054 - pearson_correlation: -0.1891 - euclidean_distance: 0.5222
Epoch 238/350
38/38 [==============================] - 0s 942us/step - loss: 0.3037 - accuracy: 0.2769 - mae: 0.3037 - pearson_correlation: -0.1877 - euclidean_distance: 0.5195
Epoch 239/350
38/38 [==============================] - 0s 911us/step - loss: 0.3020 - accuracy: 0.2734 - mae: 0.3020 - pearson_correlation: -0.1794 - euclidean_distance: 0.5167
Epoch 240/350
38/38 [==============================] - 0s 910us/step - loss: 0.3001 - accuracy: 0.2826 - mae: 0.3001 - pearson_correlation: -0.1755 - euclidean_distance: 0.5141
Epoch 241/350
38/38 [==============================] - 0s 909us/step - loss: 0.2997 - accuracy: 0.2791 - mae: 0.2997 - pearson_correlation: -0.1697 - euclidean_distance: 0.5131
Epoch 242/350
38/38 [==============================] - 0s 914us/step - loss: 0.2974 - accuracy: 0.2817 - mae: 0.2974 - pearson_correlation: -0.1690 - euclidean_distance: 0.5101
Epoch 243/350
38/38 [==============================] - 0s 911us/step - loss: 0.2967 - accuracy: 0.2901 - mae: 0.2967 - pearson_correlation: -0.1584 - euclidean_distance: 0.5081
Epoch 244/350
38/38 [==============================] - 0s 901us/step - loss: 0.2942 - accuracy: 0.2848 - mae: 0.2942 - pearson_correlation: -0.1569 - euclidean_distance: 0.5049
Epoch 245/350
38/38 [==============================] - 0s 894us/step - loss: 0.2938 - accuracy: 0.2941 - mae: 0.2938 - pearson_correlation: -0.1499 - euclidean_distance: 0.5027
Epoch 246/350
38/38 [==============================] - 0s 915us/step - loss: 0.2922 - accuracy: 0.2959 - mae: 0.2922 - pearson_correlation: -0.1454 - euclidean_distance: 0.5004
Epoch 247/350
38/38 [==============================] - 0s 879us/step - loss: 0.2913 - accuracy: 0.2910 - mae: 0.2913 - pearson_correlation: -0.1402 - euclidean_distance: 0.4988
Epoch 248/350
38/38 [==============================] - 0s 902us/step - loss: 0.2897 - accuracy: 0.2950 - mae: 0.2897 - pearson_correlation: -0.1362 - euclidean_distance: 0.4960
Epoch 249/350
38/38 [==============================] - 0s 935us/step - loss: 0.2874 - accuracy: 0.3007 - mae: 0.2874 - pearson_correlation: -0.1255 - euclidean_distance: 0.4935
Epoch 250/350
38/38 [==============================] - 0s 902us/step - loss: 0.2868 - accuracy: 0.3060 - mae: 0.2868 - pearson_correlation: -0.1232 - euclidean_distance: 0.4913
Epoch 251/350
38/38 [==============================] - 0s 904us/step - loss: 0.2864 - accuracy: 0.3073 - mae: 0.2864 - pearson_correlation: -0.1171 - euclidean_distance: 0.4896
Epoch 252/350
38/38 [==============================] - 0s 951us/step - loss: 0.2853 - accuracy: 0.3122 - mae: 0.2853 - pearson_correlation: -0.1099 - euclidean_distance: 0.4879
Epoch 253/350
38/38 [==============================] - 0s 907us/step - loss: 0.2835 - accuracy: 0.3108 - mae: 0.2835 - pearson_correlation: -0.1029 - euclidean_distance: 0.4853
Epoch 254/350
38/38 [==============================] - 0s 920us/step - loss: 0.2823 - accuracy: 0.3161 - mae: 0.2823 - pearson_correlation: -0.0970 - euclidean_distance: 0.4827
Epoch 255/350
38/38 [==============================] - 0s 919us/step - loss: 0.2801 - accuracy: 0.3197 - mae: 0.2801 - pearson_correlation: -0.0941 - euclidean_distance: 0.4796
Epoch 256/350
38/38 [==============================] - 0s 912us/step - loss: 0.2793 - accuracy: 0.3258 - mae: 0.2793 - pearson_correlation: -0.0911 - euclidean_distance: 0.4788
Epoch 257/350
38/38 [==============================] - 0s 912us/step - loss: 0.2790 - accuracy: 0.3285 - mae: 0.2790 - pearson_correlation: -0.0886 - euclidean_distance: 0.4772
Epoch 258/350
38/38 [==============================] - 0s 912us/step - loss: 0.2760 - accuracy: 0.3272 - mae: 0.2760 - pearson_correlation: -0.0851 - euclidean_distance: 0.4734
Epoch 259/350
38/38 [==============================] - 0s 914us/step - loss: 0.2751 - accuracy: 0.3333 - mae: 0.2751 - pearson_correlation: -0.0738 - euclidean_distance: 0.4714
Epoch 260/350
38/38 [==============================] - 0s 915us/step - loss: 0.2729 - accuracy: 0.3311 - mae: 0.2729 - pearson_correlation: -0.0700 - euclidean_distance: 0.4681
Epoch 261/350
38/38 [==============================] - 0s 925us/step - loss: 0.2724 - accuracy: 0.3413 - mae: 0.2724 - pearson_correlation: -0.0715 - euclidean_distance: 0.4672
Epoch 262/350
38/38 [==============================] - 0s 994us/step - loss: 0.2710 - accuracy: 0.3430 - mae: 0.2710 - pearson_correlation: -0.0583 - euclidean_distance: 0.4645
Epoch 263/350
38/38 [==============================] - 0s 937us/step - loss: 0.2695 - accuracy: 0.3457 - mae: 0.2695 - pearson_correlation: -0.0553 - euclidean_distance: 0.4625
Epoch 264/350
38/38 [==============================] - 0s 922us/step - loss: 0.2691 - accuracy: 0.3505 - mae: 0.2691 - pearson_correlation: -0.0522 - euclidean_distance: 0.4610
Epoch 265/350
38/38 [==============================] - 0s 921us/step - loss: 0.2683 - accuracy: 0.3664 - mae: 0.2683 - pearson_correlation: -0.0492 - euclidean_distance: 0.4594
Epoch 266/350
38/38 [==============================] - 0s 911us/step - loss: 0.2663 - accuracy: 0.3598 - mae: 0.2663 - pearson_correlation: -0.0429 - euclidean_distance: 0.4569
Epoch 267/350
38/38 [==============================] - 0s 916us/step - loss: 0.2660 - accuracy: 0.3638 - mae: 0.2660 - pearson_correlation: -0.0375 - euclidean_distance: 0.4561
Epoch 268/350
38/38 [==============================] - 0s 922us/step - loss: 0.2637 - accuracy: 0.3796 - mae: 0.2637 - pearson_correlation: -0.0300 - euclidean_distance: 0.4523
Epoch 269/350
38/38 [==============================] - 0s 921us/step - loss: 0.2627 - accuracy: 0.3796 - mae: 0.2627 - pearson_correlation: -0.0231 - euclidean_distance: 0.4503
Epoch 270/350
38/38 [==============================] - 0s 912us/step - loss: 0.2631 - accuracy: 0.3743 - mae: 0.2631 - pearson_correlation: -0.0234 - euclidean_distance: 0.4508
Epoch 271/350
38/38 [==============================] - 0s 916us/step - loss: 0.2609 - accuracy: 0.3902 - mae: 0.2609 - pearson_correlation: -0.0201 - euclidean_distance: 0.4471
Epoch 272/350
38/38 [==============================] - 0s 1ms/step - loss: 0.2609 - accuracy: 0.3929 - mae: 0.2609 - pearson_correlation: -0.0152 - euclidean_distance: 0.4468
Epoch 273/350
38/38 [==============================] - 0s 932us/step - loss: 0.2580 - accuracy: 0.3995 - mae: 0.2580 - pearson_correlation: -0.0110 - euclidean_distance: 0.4427
Epoch 274/350
38/38 [==============================] - 0s 929us/step - loss: 0.2580 - accuracy: 0.4083 - mae: 0.2580 - pearson_correlation: -2.9916e-04 - euclidean_distance: 0.4420
Epoch 275/350
38/38 [==============================] - 0s 967us/step - loss: 0.2574 - accuracy: 0.4096 - mae: 0.2574 - pearson_correlation: -0.0035 - euclidean_distance: 0.4415
Epoch 276/350
38/38 [==============================] - 0s 944us/step - loss: 0.2562 - accuracy: 0.4175 - mae: 0.2562 - pearson_correlation: 0.0014 - euclidean_distance: 0.4390
Epoch 277/350
38/38 [==============================] - 0s 938us/step - loss: 0.2540 - accuracy: 0.4303 - mae: 0.2540 - pearson_correlation: 0.0069 - euclidean_distance: 0.4360
Epoch 278/350
38/38 [==============================] - 0s 922us/step - loss: 0.2534 - accuracy: 0.4347 - mae: 0.2534 - pearson_correlation: 0.0106 - euclidean_distance: 0.4344
Epoch 279/350
38/38 [==============================] - 0s 924us/step - loss: 0.2513 - accuracy: 0.4312 - mae: 0.2513 - pearson_correlation: 0.0128 - euclidean_distance: 0.4314
Epoch 280/350
38/38 [==============================] - 0s 924us/step - loss: 0.2525 - accuracy: 0.4378 - mae: 0.2525 - pearson_correlation: 0.0176 - euclidean_distance: 0.4322
Epoch 281/350
38/38 [==============================] - 0s 916us/step - loss: 0.2505 - accuracy: 0.4528 - mae: 0.2505 - pearson_correlation: 0.0250 - euclidean_distance: 0.4298
Epoch 282/350
38/38 [==============================] - 0s 914us/step - loss: 0.2500 - accuracy: 0.4559 - mae: 0.2500 - pearson_correlation: 0.0257 - euclidean_distance: 0.4288
Epoch 283/350
38/38 [==============================] - 0s 1ms/step - loss: 0.2477 - accuracy: 0.4722 - mae: 0.2477 - pearson_correlation: 0.0332 - euclidean_distance: 0.4252
Epoch 284/350
38/38 [==============================] - 0s 954us/step - loss: 0.2476 - accuracy: 0.4643 - mae: 0.2476 - pearson_correlation: 0.0358 - euclidean_distance: 0.4243
Epoch 285/350
38/38 [==============================] - 0s 920us/step - loss: 0.2472 - accuracy: 0.4656 - mae: 0.2472 - pearson_correlation: 0.0382 - euclidean_distance: 0.4238
Epoch 286/350
38/38 [==============================] - 0s 928us/step - loss: 0.2458 - accuracy: 0.4899 - mae: 0.2458 - pearson_correlation: 0.0430 - euclidean_distance: 0.4212
Epoch 287/350
38/38 [==============================] - 0s 901us/step - loss: 0.2447 - accuracy: 0.4929 - mae: 0.2447 - pearson_correlation: 0.0490 - euclidean_distance: 0.4192
Epoch 288/350
38/38 [==============================] - 0s 909us/step - loss: 0.2427 - accuracy: 0.4938 - mae: 0.2427 - pearson_correlation: 0.0506 - euclidean_distance: 0.4165
Epoch 289/350
38/38 [==============================] - 0s 909us/step - loss: 0.2413 - accuracy: 0.4947 - mae: 0.2413 - pearson_correlation: 0.0535 - euclidean_distance: 0.4146
Epoch 290/350
38/38 [==============================] - 0s 907us/step - loss: 0.2402 - accuracy: 0.5004 - mae: 0.2402 - pearson_correlation: 0.0629 - euclidean_distance: 0.4126
Epoch 291/350
38/38 [==============================] - 0s 911us/step - loss: 0.2398 - accuracy: 0.4956 - mae: 0.2398 - pearson_correlation: 0.0655 - euclidean_distance: 0.4117
Epoch 292/350
38/38 [==============================] - 0s 910us/step - loss: 0.2385 - accuracy: 0.5141 - mae: 0.2385 - pearson_correlation: 0.0677 - euclidean_distance: 0.4097
Epoch 293/350
38/38 [==============================] - 0s 910us/step - loss: 0.2364 - accuracy: 0.5181 - mae: 0.2364 - pearson_correlation: 0.0741 - euclidean_distance: 0.4062
Epoch 294/350
38/38 [==============================] - 0s 908us/step - loss: 0.2379 - accuracy: 0.5163 - mae: 0.2379 - pearson_correlation: 0.0772 - euclidean_distance: 0.4077
Epoch 295/350
38/38 [==============================] - 0s 917us/step - loss: 0.2350 - accuracy: 0.5247 - mae: 0.2350 - pearson_correlation: 0.0843 - euclidean_distance: 0.4034
Epoch 296/350
38/38 [==============================] - 0s 909us/step - loss: 0.2346 - accuracy: 0.5260 - mae: 0.2346 - pearson_correlation: 0.0816 - euclidean_distance: 0.4033
Epoch 297/350
38/38 [==============================] - 0s 905us/step - loss: 0.2341 - accuracy: 0.5313 - mae: 0.2341 - pearson_correlation: 0.0880 - euclidean_distance: 0.4016
Epoch 298/350
38/38 [==============================] - 0s 901us/step - loss: 0.2344 - accuracy: 0.5344 - mae: 0.2344 - pearson_correlation: 0.0921 - euclidean_distance: 0.4016
Epoch 299/350
38/38 [==============================] - 0s 908us/step - loss: 0.2320 - accuracy: 0.5401 - mae: 0.2320 - pearson_correlation: 0.0990 - euclidean_distance: 0.3980
Epoch 300/350
38/38 [==============================] - 0s 914us/step - loss: 0.2311 - accuracy: 0.5397 - mae: 0.2311 - pearson_correlation: 0.1004 - euclidean_distance: 0.3967
Epoch 301/350
38/38 [==============================] - 0s 908us/step - loss: 0.2290 - accuracy: 0.5445 - mae: 0.2290 - pearson_correlation: 0.1057 - euclidean_distance: 0.3936
Epoch 302/350
38/38 [==============================] - 0s 909us/step - loss: 0.2278 - accuracy: 0.5520 - mae: 0.2278 - pearson_correlation: 0.1123 - euclidean_distance: 0.3913
Epoch 303/350
38/38 [==============================] - 0s 909us/step - loss: 0.2274 - accuracy: 0.5564 - mae: 0.2274 - pearson_correlation: 0.1128 - euclidean_distance: 0.3907
Epoch 304/350
38/38 [==============================] - 0s 910us/step - loss: 0.2258 - accuracy: 0.5525 - mae: 0.2258 - pearson_correlation: 0.1189 - euclidean_distance: 0.3880
Epoch 305/350
38/38 [==============================] - 0s 911us/step - loss: 0.2252 - accuracy: 0.5608 - mae: 0.2252 - pearson_correlation: 0.1239 - euclidean_distance: 0.3862
Epoch 306/350
38/38 [==============================] - 0s 910us/step - loss: 0.2238 - accuracy: 0.5683 - mae: 0.2238 - pearson_correlation: 0.1320 - euclidean_distance: 0.3839
Epoch 307/350
38/38 [==============================] - 0s 908us/step - loss: 0.2239 - accuracy: 0.5613 - mae: 0.2239 - pearson_correlation: 0.1310 - euclidean_distance: 0.3841
Epoch 308/350
38/38 [==============================] - 0s 905us/step - loss: 0.2211 - accuracy: 0.5622 - mae: 0.2211 - pearson_correlation: 0.1345 - euclidean_distance: 0.3805
Epoch 309/350
38/38 [==============================] - 0s 905us/step - loss: 0.2217 - accuracy: 0.5688 - mae: 0.2217 - pearson_correlation: 0.1366 - euclidean_distance: 0.3804
Epoch 310/350
38/38 [==============================] - 0s 917us/step - loss: 0.2209 - accuracy: 0.5732 - mae: 0.2209 - pearson_correlation: 0.1392 - euclidean_distance: 0.3790
Epoch 311/350
38/38 [==============================] - 0s 908us/step - loss: 0.2185 - accuracy: 0.5767 - mae: 0.2185 - pearson_correlation: 0.1468 - euclidean_distance: 0.3755
Epoch 312/350
38/38 [==============================] - 0s 912us/step - loss: 0.2182 - accuracy: 0.5683 - mae: 0.2182 - pearson_correlation: 0.1490 - euclidean_distance: 0.3747
Epoch 313/350
38/38 [==============================] - 0s 911us/step - loss: 0.2177 - accuracy: 0.5767 - mae: 0.2177 - pearson_correlation: 0.1554 - euclidean_distance: 0.3728
Epoch 314/350
38/38 [==============================] - 0s 905us/step - loss: 0.2158 - accuracy: 0.5886 - mae: 0.2158 - pearson_correlation: 0.1578 - euclidean_distance: 0.3707
Epoch 315/350
38/38 [==============================] - 0s 912us/step - loss: 0.2168 - accuracy: 0.5838 - mae: 0.2168 - pearson_correlation: 0.1629 - euclidean_distance: 0.3701
Epoch 316/350
38/38 [==============================] - 0s 913us/step - loss: 0.2140 - accuracy: 0.5860 - mae: 0.2140 - pearson_correlation: 0.1688 - euclidean_distance: 0.3677
Epoch 317/350
38/38 [==============================] - 0s 908us/step - loss: 0.2134 - accuracy: 0.5763 - mae: 0.2134 - pearson_correlation: 0.1679 - euclidean_distance: 0.3664
Epoch 318/350
38/38 [==============================] - 0s 914us/step - loss: 0.2112 - accuracy: 0.5864 - mae: 0.2112 - pearson_correlation: 0.1766 - euclidean_distance: 0.3628
Epoch 319/350
38/38 [==============================] - 0s 908us/step - loss: 0.2120 - accuracy: 0.5873 - mae: 0.2120 - pearson_correlation: 0.1797 - euclidean_distance: 0.3630
Epoch 320/350
38/38 [==============================] - 0s 907us/step - loss: 0.2103 - accuracy: 0.5983 - mae: 0.2103 - pearson_correlation: 0.1869 - euclidean_distance: 0.3608
Epoch 321/350
38/38 [==============================] - 0s 913us/step - loss: 0.2082 - accuracy: 0.5948 - mae: 0.2082 - pearson_correlation: 0.1884 - euclidean_distance: 0.3575
Epoch 322/350
38/38 [==============================] - 0s 921us/step - loss: 0.2080 - accuracy: 0.5974 - mae: 0.2080 - pearson_correlation: 0.1906 - euclidean_distance: 0.3566
Epoch 323/350
38/38 [==============================] - 0s 907us/step - loss: 0.2065 - accuracy: 0.6023 - mae: 0.2065 - pearson_correlation: 0.1979 - euclidean_distance: 0.3546
Epoch 324/350
38/38 [==============================] - 0s 939us/step - loss: 0.2061 - accuracy: 0.6080 - mae: 0.2061 - pearson_correlation: 0.2024 - euclidean_distance: 0.3532
Epoch 325/350
38/38 [==============================] - 0s 905us/step - loss: 0.2053 - accuracy: 0.6085 - mae: 0.2053 - pearson_correlation: 0.2078 - euclidean_distance: 0.3516
Epoch 326/350
38/38 [==============================] - 0s 906us/step - loss: 0.2038 - accuracy: 0.6071 - mae: 0.2038 - pearson_correlation: 0.2112 - euclidean_distance: 0.3491
Epoch 327/350
38/38 [==============================] - 0s 903us/step - loss: 0.2027 - accuracy: 0.6071 - mae: 0.2027 - pearson_correlation: 0.2124 - euclidean_distance: 0.3477
Epoch 328/350
38/38 [==============================] - 0s 946us/step - loss: 0.2002 - accuracy: 0.6133 - mae: 0.2002 - pearson_correlation: 0.2200 - euclidean_distance: 0.3435
Epoch 329/350
38/38 [==============================] - 0s 873us/step - loss: 0.1997 - accuracy: 0.6129 - mae: 0.1997 - pearson_correlation: 0.2274 - euclidean_distance: 0.3423
Epoch 330/350
38/38 [==============================] - 0s 902us/step - loss: 0.1990 - accuracy: 0.6155 - mae: 0.1990 - pearson_correlation: 0.2295 - euclidean_distance: 0.3414
Epoch 331/350
38/38 [==============================] - 0s 914us/step - loss: 0.1983 - accuracy: 0.6195 - mae: 0.1983 - pearson_correlation: 0.2351 - euclidean_distance: 0.3395
Epoch 332/350
38/38 [==============================] - 0s 910us/step - loss: 0.1977 - accuracy: 0.6213 - mae: 0.1977 - pearson_correlation: 0.2279 - euclidean_distance: 0.3395
Epoch 333/350
38/38 [==============================] - 0s 909us/step - loss: 0.1961 - accuracy: 0.6230 - mae: 0.1961 - pearson_correlation: 0.2387 - euclidean_distance: 0.3353
Epoch 334/350
38/38 [==============================] - 0s 907us/step - loss: 0.1945 - accuracy: 0.6182 - mae: 0.1945 - pearson_correlation: 0.2408 - euclidean_distance: 0.3336
Epoch 335/350
38/38 [==============================] - 0s 907us/step - loss: 0.1940 - accuracy: 0.6292 - mae: 0.1940 - pearson_correlation: 0.2503 - euclidean_distance: 0.3321
Epoch 336/350
38/38 [==============================] - 0s 896us/step - loss: 0.1929 - accuracy: 0.6287 - mae: 0.1929 - pearson_correlation: 0.2509 - euclidean_distance: 0.3303
Epoch 337/350
38/38 [==============================] - 0s 909us/step - loss: 0.1905 - accuracy: 0.6349 - mae: 0.1905 - pearson_correlation: 0.2580 - euclidean_distance: 0.3264
Epoch 338/350
38/38 [==============================] - 0s 906us/step - loss: 0.1915 - accuracy: 0.6301 - mae: 0.1915 - pearson_correlation: 0.2612 - euclidean_distance: 0.3276
Epoch 339/350
38/38 [==============================] - 0s 912us/step - loss: 0.1898 - accuracy: 0.6384 - mae: 0.1898 - pearson_correlation: 0.2672 - euclidean_distance: 0.3253
Epoch 340/350
38/38 [==============================] - 0s 941us/step - loss: 0.1888 - accuracy: 0.6490 - mae: 0.1888 - pearson_correlation: 0.2716 - euclidean_distance: 0.3224
Epoch 341/350
38/38 [==============================] - 0s 908us/step - loss: 0.1874 - accuracy: 0.6389 - mae: 0.1874 - pearson_correlation: 0.2742 - euclidean_distance: 0.3209
Epoch 342/350
38/38 [==============================] - 0s 913us/step - loss: 0.1859 - accuracy: 0.6420 - mae: 0.1859 - pearson_correlation: 0.2778 - euclidean_distance: 0.3182
Epoch 343/350
38/38 [==============================] - 0s 912us/step - loss: 0.1859 - accuracy: 0.6543 - mae: 0.1859 - pearson_correlation: 0.2869 - euclidean_distance: 0.3175
Epoch 344/350
38/38 [==============================] - 0s 907us/step - loss: 0.1845 - accuracy: 0.6499 - mae: 0.1845 - pearson_correlation: 0.2864 - euclidean_distance: 0.3151
Epoch 345/350
38/38 [==============================] - 0s 907us/step - loss: 0.1832 - accuracy: 0.6526 - mae: 0.1832 - pearson_correlation: 0.2917 - euclidean_distance: 0.3136
Epoch 346/350
38/38 [==============================] - 0s 899us/step - loss: 0.1847 - accuracy: 0.6653 - mae: 0.1847 - pearson_correlation: 0.2955 - euclidean_distance: 0.3154
Epoch 347/350
38/38 [==============================] - 0s 913us/step - loss: 0.1818 - accuracy: 0.6530 - mae: 0.1818 - pearson_correlation: 0.2968 - euclidean_distance: 0.3106
Epoch 348/350
38/38 [==============================] - 0s 915us/step - loss: 0.1802 - accuracy: 0.6552 - mae: 0.1802 - pearson_correlation: 0.3041 - euclidean_distance: 0.3078
Epoch 349/350
38/38 [==============================] - 0s 905us/step - loss: 0.1806 - accuracy: 0.6539 - mae: 0.1806 - pearson_correlation: 0.3100 - euclidean_distance: 0.3079
Epoch 350/350
38/38 [==============================] - 0s 916us/step - loss: 0.1784 - accuracy: 0.6671 - mae: 0.1784 - pearson_correlation: 0.3124 - euclidean_distance: 0.3047
19/19 [==============================] - 0s 586us/step
Epoch 1/350
227/227 [==============================] - 1s 815us/step - loss: 0.5063 - accuracy: 0.2246 - mae: 0.5063 - pearson_correlation: -0.4899 - euclidean_distance: 0.8342
Epoch 2/350
227/227 [==============================] - 0s 802us/step - loss: 0.4940 - accuracy: 0.2096 - mae: 0.4940 - pearson_correlation: -0.4966 - euclidean_distance: 0.8172
Epoch 3/350
227/227 [==============================] - 0s 802us/step - loss: 0.4864 - accuracy: 0.2049 - mae: 0.4864 - pearson_correlation: -0.5006 - euclidean_distance: 0.8061
Epoch 4/350
227/227 [==============================] - 0s 800us/step - loss: 0.4748 - accuracy: 0.1941 - mae: 0.4748 - pearson_correlation: -0.5060 - euclidean_distance: 0.7898
Epoch 5/350
227/227 [==============================] - 0s 815us/step - loss: 0.4673 - accuracy: 0.1935 - mae: 0.4673 - pearson_correlation: -0.5029 - euclidean_distance: 0.7773
Epoch 6/350
227/227 [==============================] - 0s 800us/step - loss: 0.4559 - accuracy: 0.1858 - mae: 0.4559 - pearson_correlation: -0.5121 - euclidean_distance: 0.7621
Epoch 7/350
227/227 [==============================] - 0s 795us/step - loss: 0.4485 - accuracy: 0.1858 - mae: 0.4485 - pearson_correlation: -0.5037 - euclidean_distance: 0.7497
Epoch 8/350
227/227 [==============================] - 0s 797us/step - loss: 0.4382 - accuracy: 0.1923 - mae: 0.4382 - pearson_correlation: -0.4990 - euclidean_distance: 0.7341
Epoch 9/350
227/227 [==============================] - 0s 805us/step - loss: 0.4303 - accuracy: 0.1870 - mae: 0.4303 - pearson_correlation: -0.4963 - euclidean_distance: 0.7206
Epoch 10/350
227/227 [==============================] - 0s 809us/step - loss: 0.4236 - accuracy: 0.1944 - mae: 0.4236 - pearson_correlation: -0.4906 - euclidean_distance: 0.7088
Epoch 11/350
227/227 [==============================] - 0s 802us/step - loss: 0.4161 - accuracy: 0.1891 - mae: 0.4161 - pearson_correlation: -0.4784 - euclidean_distance: 0.6968
Epoch 12/350
227/227 [==============================] - 0s 790us/step - loss: 0.4075 - accuracy: 0.1799 - mae: 0.4075 - pearson_correlation: -0.4914 - euclidean_distance: 0.6841
Epoch 13/350
227/227 [==============================] - 0s 792us/step - loss: 0.3984 - accuracy: 0.1832 - mae: 0.3984 - pearson_correlation: -0.4734 - euclidean_distance: 0.6693
Epoch 14/350
227/227 [==============================] - 0s 798us/step - loss: 0.3916 - accuracy: 0.1964 - mae: 0.3916 - pearson_correlation: -0.4654 - euclidean_distance: 0.6579
Epoch 15/350
227/227 [==============================] - 0s 790us/step - loss: 0.3837 - accuracy: 0.1973 - mae: 0.3837 - pearson_correlation: -0.4515 - euclidean_distance: 0.6444
Epoch 16/350
227/227 [==============================] - 0s 800us/step - loss: 0.3768 - accuracy: 0.2011 - mae: 0.3768 - pearson_correlation: -0.4550 - euclidean_distance: 0.6337
Epoch 17/350
227/227 [==============================] - 0s 796us/step - loss: 0.3711 - accuracy: 0.2152 - mae: 0.3711 - pearson_correlation: -0.4443 - euclidean_distance: 0.6226
Epoch 18/350
227/227 [==============================] - 0s 807us/step - loss: 0.3614 - accuracy: 0.2196 - mae: 0.3614 - pearson_correlation: -0.4348 - euclidean_distance: 0.6076
Epoch 19/350
227/227 [==============================] - 0s 795us/step - loss: 0.3558 - accuracy: 0.2332 - mae: 0.3558 - pearson_correlation: -0.4197 - euclidean_distance: 0.5965
Epoch 20/350
227/227 [==============================] - 0s 810us/step - loss: 0.3482 - accuracy: 0.2317 - mae: 0.3482 - pearson_correlation: -0.4023 - euclidean_distance: 0.5846
Epoch 21/350
227/227 [==============================] - 0s 877us/step - loss: 0.3419 - accuracy: 0.2449 - mae: 0.3419 - pearson_correlation: -0.3828 - euclidean_distance: 0.5735
Epoch 22/350
227/227 [==============================] - 0s 921us/step - loss: 0.3359 - accuracy: 0.2535 - mae: 0.3359 - pearson_correlation: -0.3755 - euclidean_distance: 0.5631
Epoch 23/350
227/227 [==============================] - 0s 880us/step - loss: 0.3280 - accuracy: 0.2664 - mae: 0.3280 - pearson_correlation: -0.3551 - euclidean_distance: 0.5506
Epoch 24/350
227/227 [==============================] - 0s 796us/step - loss: 0.3217 - accuracy: 0.2790 - mae: 0.3217 - pearson_correlation: -0.3364 - euclidean_distance: 0.5392
Epoch 25/350
227/227 [==============================] - 0s 799us/step - loss: 0.3153 - accuracy: 0.2958 - mae: 0.3153 - pearson_correlation: -0.3255 - euclidean_distance: 0.5280
Epoch 26/350
227/227 [==============================] - 0s 793us/step - loss: 0.3087 - accuracy: 0.3087 - mae: 0.3087 - pearson_correlation: -0.2986 - euclidean_distance: 0.5169
Epoch 27/350
227/227 [==============================] - 0s 799us/step - loss: 0.3016 - accuracy: 0.3211 - mae: 0.3016 - pearson_correlation: -0.2843 - euclidean_distance: 0.5051
Epoch 28/350
227/227 [==============================] - 0s 802us/step - loss: 0.2949 - accuracy: 0.3490 - mae: 0.2949 - pearson_correlation: -0.2567 - euclidean_distance: 0.4934
Epoch 29/350
227/227 [==============================] - 0s 799us/step - loss: 0.2907 - accuracy: 0.3614 - mae: 0.2907 - pearson_correlation: -0.2362 - euclidean_distance: 0.4857
Epoch 30/350
227/227 [==============================] - 0s 792us/step - loss: 0.2824 - accuracy: 0.3699 - mae: 0.2824 - pearson_correlation: -0.2065 - euclidean_distance: 0.4722
Epoch 31/350
227/227 [==============================] - 0s 804us/step - loss: 0.2757 - accuracy: 0.3996 - mae: 0.2757 - pearson_correlation: -0.1763 - euclidean_distance: 0.4604
Epoch 32/350
227/227 [==============================] - 0s 800us/step - loss: 0.2693 - accuracy: 0.4146 - mae: 0.2693 - pearson_correlation: -0.1623 - euclidean_distance: 0.4511
Epoch 33/350
227/227 [==============================] - 0s 815us/step - loss: 0.2641 - accuracy: 0.4352 - mae: 0.2641 - pearson_correlation: -0.1385 - euclidean_distance: 0.4419
Epoch 34/350
227/227 [==============================] - 0s 798us/step - loss: 0.2595 - accuracy: 0.4546 - mae: 0.2595 - pearson_correlation: -0.1102 - euclidean_distance: 0.4325
Epoch 35/350
227/227 [==============================] - 0s 796us/step - loss: 0.2532 - accuracy: 0.4775 - mae: 0.2532 - pearson_correlation: -0.0780 - euclidean_distance: 0.4226
Epoch 36/350
227/227 [==============================] - 0s 797us/step - loss: 0.2482 - accuracy: 0.4984 - mae: 0.2482 - pearson_correlation: -0.0621 - euclidean_distance: 0.4132
Epoch 37/350
227/227 [==============================] - 0s 799us/step - loss: 0.2426 - accuracy: 0.5175 - mae: 0.2426 - pearson_correlation: -0.0321 - euclidean_distance: 0.4048
Epoch 38/350
227/227 [==============================] - 0s 813us/step - loss: 0.2371 - accuracy: 0.5331 - mae: 0.2371 - pearson_correlation: -0.0050 - euclidean_distance: 0.3951
Epoch 39/350
227/227 [==============================] - 0s 800us/step - loss: 0.2324 - accuracy: 0.5637 - mae: 0.2324 - pearson_correlation: 0.0177 - euclidean_distance: 0.3870
Epoch 40/350
227/227 [==============================] - 0s 791us/step - loss: 0.2284 - accuracy: 0.5766 - mae: 0.2284 - pearson_correlation: 0.0439 - euclidean_distance: 0.3797
Epoch 41/350
227/227 [==============================] - 0s 789us/step - loss: 0.2244 - accuracy: 0.6028 - mae: 0.2244 - pearson_correlation: 0.0667 - euclidean_distance: 0.3723
Epoch 42/350
227/227 [==============================] - 0s 797us/step - loss: 0.2198 - accuracy: 0.6201 - mae: 0.2198 - pearson_correlation: 0.0931 - euclidean_distance: 0.3647
Epoch 43/350
227/227 [==============================] - 0s 795us/step - loss: 0.2145 - accuracy: 0.6336 - mae: 0.2145 - pearson_correlation: 0.1178 - euclidean_distance: 0.3567
Epoch 44/350
227/227 [==============================] - 0s 792us/step - loss: 0.2106 - accuracy: 0.6513 - mae: 0.2106 - pearson_correlation: 0.1336 - euclidean_distance: 0.3493
Epoch 45/350
227/227 [==============================] - 0s 787us/step - loss: 0.2052 - accuracy: 0.6745 - mae: 0.2052 - pearson_correlation: 0.1653 - euclidean_distance: 0.3407
Epoch 46/350
227/227 [==============================] - 0s 789us/step - loss: 0.2018 - accuracy: 0.6945 - mae: 0.2018 - pearson_correlation: 0.1955 - euclidean_distance: 0.3342
Epoch 47/350
227/227 [==============================] - 0s 789us/step - loss: 0.1983 - accuracy: 0.6936 - mae: 0.1983 - pearson_correlation: 0.2140 - euclidean_distance: 0.3278
Epoch 48/350
227/227 [==============================] - 0s 793us/step - loss: 0.1958 - accuracy: 0.7118 - mae: 0.1958 - pearson_correlation: 0.2330 - euclidean_distance: 0.3229
Epoch 49/350
227/227 [==============================] - 0s 790us/step - loss: 0.1917 - accuracy: 0.7233 - mae: 0.1917 - pearson_correlation: 0.2478 - euclidean_distance: 0.3166
Epoch 50/350
227/227 [==============================] - 0s 793us/step - loss: 0.1887 - accuracy: 0.7389 - mae: 0.1887 - pearson_correlation: 0.2683 - euclidean_distance: 0.3111
Epoch 51/350
227/227 [==============================] - 0s 792us/step - loss: 0.1843 - accuracy: 0.7477 - mae: 0.1843 - pearson_correlation: 0.2959 - euclidean_distance: 0.3041
Epoch 52/350
227/227 [==============================] - 0s 789us/step - loss: 0.1803 - accuracy: 0.7560 - mae: 0.1803 - pearson_correlation: 0.3113 - euclidean_distance: 0.2973
Epoch 53/350
227/227 [==============================] - 0s 793us/step - loss: 0.1775 - accuracy: 0.7807 - mae: 0.1775 - pearson_correlation: 0.3366 - euclidean_distance: 0.2923
Epoch 54/350
227/227 [==============================] - 0s 812us/step - loss: 0.1744 - accuracy: 0.7795 - mae: 0.1744 - pearson_correlation: 0.3483 - euclidean_distance: 0.2866
Epoch 55/350
227/227 [==============================] - 0s 790us/step - loss: 0.1719 - accuracy: 0.7959 - mae: 0.1719 - pearson_correlation: 0.3671 - euclidean_distance: 0.2819
Epoch 56/350
227/227 [==============================] - 0s 793us/step - loss: 0.1686 - accuracy: 0.8001 - mae: 0.1686 - pearson_correlation: 0.3832 - euclidean_distance: 0.2771
Epoch 57/350
227/227 [==============================] - 0s 790us/step - loss: 0.1653 - accuracy: 0.8130 - mae: 0.1653 - pearson_correlation: 0.4010 - euclidean_distance: 0.2713
Epoch 58/350
227/227 [==============================] - 0s 796us/step - loss: 0.1619 - accuracy: 0.8245 - mae: 0.1619 - pearson_correlation: 0.4110 - euclidean_distance: 0.2666
Epoch 59/350
227/227 [==============================] - 0s 811us/step - loss: 0.1599 - accuracy: 0.8300 - mae: 0.1599 - pearson_correlation: 0.4346 - euclidean_distance: 0.2617
Epoch 60/350
227/227 [==============================] - 0s 816us/step - loss: 0.1591 - accuracy: 0.8333 - mae: 0.1591 - pearson_correlation: 0.4397 - euclidean_distance: 0.2600
Epoch 61/350
227/227 [==============================] - 0s 786us/step - loss: 0.1549 - accuracy: 0.8383 - mae: 0.1549 - pearson_correlation: 0.4533 - euclidean_distance: 0.2536
Epoch 62/350
227/227 [==============================] - 0s 789us/step - loss: 0.1540 - accuracy: 0.8483 - mae: 0.1540 - pearson_correlation: 0.4601 - euclidean_distance: 0.2517
Epoch 63/350
227/227 [==============================] - 0s 794us/step - loss: 0.1505 - accuracy: 0.8486 - mae: 0.1505 - pearson_correlation: 0.4792 - euclidean_distance: 0.2463
Epoch 64/350
227/227 [==============================] - 0s 795us/step - loss: 0.1495 - accuracy: 0.8609 - mae: 0.1495 - pearson_correlation: 0.4927 - euclidean_distance: 0.2440
Epoch 65/350
227/227 [==============================] - 0s 794us/step - loss: 0.1477 - accuracy: 0.8656 - mae: 0.1477 - pearson_correlation: 0.5012 - euclidean_distance: 0.2407
Epoch 66/350
227/227 [==============================] - 0s 786us/step - loss: 0.1468 - accuracy: 0.8780 - mae: 0.1468 - pearson_correlation: 0.5113 - euclidean_distance: 0.2397
Epoch 67/350
227/227 [==============================] - 0s 798us/step - loss: 0.1432 - accuracy: 0.8750 - mae: 0.1432 - pearson_correlation: 0.5198 - euclidean_distance: 0.2347
Epoch 68/350
227/227 [==============================] - 0s 790us/step - loss: 0.1422 - accuracy: 0.8815 - mae: 0.1422 - pearson_correlation: 0.5269 - euclidean_distance: 0.2318
Epoch 69/350
227/227 [==============================] - 0s 790us/step - loss: 0.1414 - accuracy: 0.8886 - mae: 0.1414 - pearson_correlation: 0.5372 - euclidean_distance: 0.2303
Epoch 70/350
227/227 [==============================] - 0s 798us/step - loss: 0.1386 - accuracy: 0.8927 - mae: 0.1386 - pearson_correlation: 0.5489 - euclidean_distance: 0.2260
Epoch 71/350
227/227 [==============================] - 0s 799us/step - loss: 0.1365 - accuracy: 0.8912 - mae: 0.1365 - pearson_correlation: 0.5587 - euclidean_distance: 0.2216
Epoch 72/350
227/227 [==============================] - 0s 792us/step - loss: 0.1360 - accuracy: 0.9030 - mae: 0.1360 - pearson_correlation: 0.5673 - euclidean_distance: 0.2216
Epoch 73/350
227/227 [==============================] - 0s 792us/step - loss: 0.1351 - accuracy: 0.9053 - mae: 0.1351 - pearson_correlation: 0.5690 - euclidean_distance: 0.2199
Epoch 74/350
227/227 [==============================] - 0s 790us/step - loss: 0.1328 - accuracy: 0.9050 - mae: 0.1328 - pearson_correlation: 0.5795 - euclidean_distance: 0.2162
Epoch 75/350
227/227 [==============================] - 0s 794us/step - loss: 0.1335 - accuracy: 0.9080 - mae: 0.1335 - pearson_correlation: 0.5769 - euclidean_distance: 0.2168
Epoch 76/350
227/227 [==============================] - 0s 788us/step - loss: 0.1315 - accuracy: 0.9080 - mae: 0.1315 - pearson_correlation: 0.5903 - euclidean_distance: 0.2129
Epoch 77/350
227/227 [==============================] - 0s 790us/step - loss: 0.1301 - accuracy: 0.9106 - mae: 0.1301 - pearson_correlation: 0.5946 - euclidean_distance: 0.2113
Epoch 78/350
227/227 [==============================] - 0s 786us/step - loss: 0.1283 - accuracy: 0.9127 - mae: 0.1283 - pearson_correlation: 0.6008 - euclidean_distance: 0.2084
Epoch 79/350
227/227 [==============================] - 0s 793us/step - loss: 0.1270 - accuracy: 0.9144 - mae: 0.1270 - pearson_correlation: 0.6065 - euclidean_distance: 0.2070
Epoch 80/350
227/227 [==============================] - 0s 793us/step - loss: 0.1260 - accuracy: 0.9209 - mae: 0.1260 - pearson_correlation: 0.6142 - euclidean_distance: 0.2045
Epoch 81/350
227/227 [==============================] - 0s 797us/step - loss: 0.1251 - accuracy: 0.9244 - mae: 0.1251 - pearson_correlation: 0.6181 - euclidean_distance: 0.2030
Epoch 82/350
227/227 [==============================] - 0s 797us/step - loss: 0.1237 - accuracy: 0.9250 - mae: 0.1237 - pearson_correlation: 0.6237 - euclidean_distance: 0.2007
Epoch 83/350
227/227 [==============================] - 0s 790us/step - loss: 0.1219 - accuracy: 0.9244 - mae: 0.1219 - pearson_correlation: 0.6305 - euclidean_distance: 0.1981
Epoch 84/350
227/227 [==============================] - 0s 795us/step - loss: 0.1223 - accuracy: 0.9233 - mae: 0.1223 - pearson_correlation: 0.6304 - euclidean_distance: 0.1983
Epoch 85/350
227/227 [==============================] - 0s 792us/step - loss: 0.1206 - accuracy: 0.9280 - mae: 0.1206 - pearson_correlation: 0.6384 - euclidean_distance: 0.1955
Epoch 86/350
227/227 [==============================] - 0s 795us/step - loss: 0.1214 - accuracy: 0.9309 - mae: 0.1214 - pearson_correlation: 0.6462 - euclidean_distance: 0.1957
Epoch 87/350
227/227 [==============================] - 0s 890us/step - loss: 0.1213 - accuracy: 0.9294 - mae: 0.1213 - pearson_correlation: 0.6333 - euclidean_distance: 0.1963
Epoch 88/350
227/227 [==============================] - 0s 814us/step - loss: 0.1191 - accuracy: 0.9330 - mae: 0.1191 - pearson_correlation: 0.6465 - euclidean_distance: 0.1936
Epoch 89/350
227/227 [==============================] - 0s 801us/step - loss: 0.1175 - accuracy: 0.9341 - mae: 0.1175 - pearson_correlation: 0.6495 - euclidean_distance: 0.1904
Epoch 90/350
227/227 [==============================] - 0s 805us/step - loss: 0.1163 - accuracy: 0.9335 - mae: 0.1163 - pearson_correlation: 0.6529 - euclidean_distance: 0.1884
Epoch 91/350
227/227 [==============================] - 0s 802us/step - loss: 0.1127 - accuracy: 0.9365 - mae: 0.1127 - pearson_correlation: 0.6663 - euclidean_distance: 0.1835
Epoch 92/350
227/227 [==============================] - 0s 798us/step - loss: 0.1152 - accuracy: 0.9377 - mae: 0.1152 - pearson_correlation: 0.6659 - euclidean_distance: 0.1862
Epoch 93/350
227/227 [==============================] - 0s 809us/step - loss: 0.1152 - accuracy: 0.9388 - mae: 0.1152 - pearson_correlation: 0.6654 - euclidean_distance: 0.1869
Epoch 94/350
227/227 [==============================] - 0s 802us/step - loss: 0.1126 - accuracy: 0.9344 - mae: 0.1126 - pearson_correlation: 0.6710 - euclidean_distance: 0.1826
Epoch 95/350
227/227 [==============================] - 0s 795us/step - loss: 0.1149 - accuracy: 0.9383 - mae: 0.1149 - pearson_correlation: 0.6645 - euclidean_distance: 0.1854
Epoch 96/350
227/227 [==============================] - 0s 803us/step - loss: 0.1130 - accuracy: 0.9421 - mae: 0.1130 - pearson_correlation: 0.6787 - euclidean_distance: 0.1823
Epoch 97/350
227/227 [==============================] - 0s 804us/step - loss: 0.1112 - accuracy: 0.9388 - mae: 0.1112 - pearson_correlation: 0.6806 - euclidean_distance: 0.1793
Epoch 98/350
227/227 [==============================] - 0s 791us/step - loss: 0.1126 - accuracy: 0.9435 - mae: 0.1126 - pearson_correlation: 0.6796 - euclidean_distance: 0.1818
Epoch 99/350
227/227 [==============================] - 0s 806us/step - loss: 0.1082 - accuracy: 0.9427 - mae: 0.1082 - pearson_correlation: 0.6904 - euclidean_distance: 0.1752
Epoch 100/350
227/227 [==============================] - 0s 790us/step - loss: 0.1095 - accuracy: 0.9397 - mae: 0.1095 - pearson_correlation: 0.6934 - euclidean_distance: 0.1767
Epoch 101/350
227/227 [==============================] - 0s 796us/step - loss: 0.1090 - accuracy: 0.9447 - mae: 0.1090 - pearson_correlation: 0.6889 - euclidean_distance: 0.1766
Epoch 102/350
227/227 [==============================] - 0s 792us/step - loss: 0.1101 - accuracy: 0.9435 - mae: 0.1101 - pearson_correlation: 0.6918 - euclidean_distance: 0.1777
Epoch 103/350
227/227 [==============================] - 0s 793us/step - loss: 0.1098 - accuracy: 0.9453 - mae: 0.1098 - pearson_correlation: 0.6882 - euclidean_distance: 0.1769
Epoch 104/350
227/227 [==============================] - 0s 803us/step - loss: 0.1078 - accuracy: 0.9459 - mae: 0.1078 - pearson_correlation: 0.6929 - euclidean_distance: 0.1741
Epoch 105/350
227/227 [==============================] - 0s 801us/step - loss: 0.1068 - accuracy: 0.9447 - mae: 0.1068 - pearson_correlation: 0.6955 - euclidean_distance: 0.1724
Epoch 106/350
227/227 [==============================] - 0s 797us/step - loss: 0.1065 - accuracy: 0.9444 - mae: 0.1065 - pearson_correlation: 0.7007 - euclidean_distance: 0.1718
Epoch 107/350
227/227 [==============================] - 0s 821us/step - loss: 0.1070 - accuracy: 0.9450 - mae: 0.1070 - pearson_correlation: 0.6995 - euclidean_distance: 0.1723
Epoch 108/350
227/227 [==============================] - 0s 885us/step - loss: 0.1052 - accuracy: 0.9459 - mae: 0.1052 - pearson_correlation: 0.7065 - euclidean_distance: 0.1694
Epoch 109/350
227/227 [==============================] - 0s 1ms/step - loss: 0.1051 - accuracy: 0.9483 - mae: 0.1051 - pearson_correlation: 0.7079 - euclidean_distance: 0.1693
Epoch 110/350
227/227 [==============================] - 0s 1ms/step - loss: 0.1063 - accuracy: 0.9477 - mae: 0.1063 - pearson_correlation: 0.7040 - euclidean_distance: 0.1709
Epoch 111/350
227/227 [==============================] - 0s 884us/step - loss: 0.1048 - accuracy: 0.9468 - mae: 0.1048 - pearson_correlation: 0.7089 - euclidean_distance: 0.1689
Epoch 112/350
227/227 [==============================] - 0s 828us/step - loss: 0.1034 - accuracy: 0.9474 - mae: 0.1034 - pearson_correlation: 0.7118 - euclidean_distance: 0.1667
Epoch 113/350
227/227 [==============================] - 0s 813us/step - loss: 0.1051 - accuracy: 0.9477 - mae: 0.1051 - pearson_correlation: 0.7068 - euclidean_distance: 0.1692
Epoch 114/350
227/227 [==============================] - 0s 814us/step - loss: 0.1043 - accuracy: 0.9488 - mae: 0.1043 - pearson_correlation: 0.7097 - euclidean_distance: 0.1680
Epoch 115/350
227/227 [==============================] - 0s 814us/step - loss: 0.1012 - accuracy: 0.9488 - mae: 0.1012 - pearson_correlation: 0.7228 - euclidean_distance: 0.1629
Epoch 116/350
227/227 [==============================] - 0s 806us/step - loss: 0.1025 - accuracy: 0.9491 - mae: 0.1025 - pearson_correlation: 0.7181 - euclidean_distance: 0.1651
Epoch 117/350
227/227 [==============================] - 0s 815us/step - loss: 0.1006 - accuracy: 0.9483 - mae: 0.1006 - pearson_correlation: 0.7209 - euclidean_distance: 0.1617
Epoch 118/350
227/227 [==============================] - 0s 806us/step - loss: 0.1002 - accuracy: 0.9497 - mae: 0.1002 - pearson_correlation: 0.7268 - euclidean_distance: 0.1611
Epoch 119/350
227/227 [==============================] - 0s 812us/step - loss: 0.1013 - accuracy: 0.9503 - mae: 0.1013 - pearson_correlation: 0.7248 - euclidean_distance: 0.1629
Epoch 120/350
227/227 [==============================] - 0s 807us/step - loss: 0.0999 - accuracy: 0.9488 - mae: 0.0999 - pearson_correlation: 0.7252 - euclidean_distance: 0.1606
Epoch 121/350
227/227 [==============================] - 0s 816us/step - loss: 0.0968 - accuracy: 0.9515 - mae: 0.0968 - pearson_correlation: 0.7378 - euclidean_distance: 0.1560
Epoch 122/350
227/227 [==============================] - 0s 816us/step - loss: 0.0988 - accuracy: 0.9503 - mae: 0.0988 - pearson_correlation: 0.7364 - euclidean_distance: 0.1588
Epoch 123/350
227/227 [==============================] - 0s 807us/step - loss: 0.0982 - accuracy: 0.9483 - mae: 0.0982 - pearson_correlation: 0.7312 - euclidean_distance: 0.1581
Epoch 124/350
227/227 [==============================] - 0s 815us/step - loss: 0.0981 - accuracy: 0.9512 - mae: 0.0981 - pearson_correlation: 0.7340 - euclidean_distance: 0.1576
Epoch 125/350
227/227 [==============================] - 0s 804us/step - loss: 0.0999 - accuracy: 0.9518 - mae: 0.0999 - pearson_correlation: 0.7291 - euclidean_distance: 0.1609
Epoch 126/350
227/227 [==============================] - 0s 806us/step - loss: 0.0979 - accuracy: 0.9521 - mae: 0.0979 - pearson_correlation: 0.7366 - euclidean_distance: 0.1570
Epoch 127/350
227/227 [==============================] - 0s 801us/step - loss: 0.0962 - accuracy: 0.9515 - mae: 0.0962 - pearson_correlation: 0.7424 - euclidean_distance: 0.1549
Epoch 128/350
227/227 [==============================] - 0s 811us/step - loss: 0.0956 - accuracy: 0.9518 - mae: 0.0956 - pearson_correlation: 0.7414 - euclidean_distance: 0.1541
Epoch 129/350
227/227 [==============================] - 0s 816us/step - loss: 0.0955 - accuracy: 0.9515 - mae: 0.0955 - pearson_correlation: 0.7447 - euclidean_distance: 0.1539
Epoch 130/350
227/227 [==============================] - 0s 807us/step - loss: 0.0951 - accuracy: 0.9506 - mae: 0.0951 - pearson_correlation: 0.7413 - euclidean_distance: 0.1540
Epoch 131/350
227/227 [==============================] - 0s 808us/step - loss: 0.0960 - accuracy: 0.9506 - mae: 0.0960 - pearson_correlation: 0.7410 - euclidean_distance: 0.1547
Epoch 132/350
227/227 [==============================] - 0s 802us/step - loss: 0.0944 - accuracy: 0.9530 - mae: 0.0944 - pearson_correlation: 0.7447 - euclidean_distance: 0.1521
Epoch 133/350
227/227 [==============================] - 0s 804us/step - loss: 0.0925 - accuracy: 0.9518 - mae: 0.0925 - pearson_correlation: 0.7488 - euclidean_distance: 0.1490
Epoch 134/350
227/227 [==============================] - 0s 807us/step - loss: 0.0963 - accuracy: 0.9518 - mae: 0.0963 - pearson_correlation: 0.7424 - euclidean_distance: 0.1544
Epoch 135/350
227/227 [==============================] - 0s 808us/step - loss: 0.0934 - accuracy: 0.9509 - mae: 0.0934 - pearson_correlation: 0.7501 - euclidean_distance: 0.1506
Epoch 136/350
227/227 [==============================] - 0s 817us/step - loss: 0.0932 - accuracy: 0.9530 - mae: 0.0932 - pearson_correlation: 0.7486 - euclidean_distance: 0.1502
Epoch 137/350
227/227 [==============================] - 0s 795us/step - loss: 0.0922 - accuracy: 0.9532 - mae: 0.0922 - pearson_correlation: 0.7556 - euclidean_distance: 0.1483
Epoch 138/350
227/227 [==============================] - 0s 814us/step - loss: 0.0927 - accuracy: 0.9530 - mae: 0.0927 - pearson_correlation: 0.7511 - euclidean_distance: 0.1490
Epoch 139/350
227/227 [==============================] - 0s 796us/step - loss: 0.0922 - accuracy: 0.9530 - mae: 0.0922 - pearson_correlation: 0.7522 - euclidean_distance: 0.1483
Epoch 140/350
227/227 [==============================] - 0s 826us/step - loss: 0.0937 - accuracy: 0.9535 - mae: 0.0937 - pearson_correlation: 0.7475 - euclidean_distance: 0.1506
Epoch 141/350
227/227 [==============================] - 0s 816us/step - loss: 0.0931 - accuracy: 0.9521 - mae: 0.0931 - pearson_correlation: 0.7505 - euclidean_distance: 0.1497
Epoch 142/350
227/227 [==============================] - 0s 810us/step - loss: 0.0922 - accuracy: 0.9538 - mae: 0.0922 - pearson_correlation: 0.7514 - euclidean_distance: 0.1483
Epoch 143/350
227/227 [==============================] - 0s 801us/step - loss: 0.0908 - accuracy: 0.9535 - mae: 0.0908 - pearson_correlation: 0.7568 - euclidean_distance: 0.1460
Epoch 144/350
227/227 [==============================] - 0s 811us/step - loss: 0.0909 - accuracy: 0.9538 - mae: 0.0909 - pearson_correlation: 0.7568 - euclidean_distance: 0.1462
Epoch 145/350
227/227 [==============================] - 0s 802us/step - loss: 0.0924 - accuracy: 0.9535 - mae: 0.0924 - pearson_correlation: 0.7546 - euclidean_distance: 0.1487
Epoch 146/350
227/227 [==============================] - 0s 800us/step - loss: 0.0920 - accuracy: 0.9535 - mae: 0.0920 - pearson_correlation: 0.7530 - euclidean_distance: 0.1481
Epoch 147/350
227/227 [==============================] - 0s 804us/step - loss: 0.0911 - accuracy: 0.9530 - mae: 0.0911 - pearson_correlation: 0.7563 - euclidean_distance: 0.1461
Epoch 148/350
227/227 [==============================] - 0s 802us/step - loss: 0.0914 - accuracy: 0.9535 - mae: 0.0914 - pearson_correlation: 0.7599 - euclidean_distance: 0.1468
Epoch 149/350
227/227 [==============================] - 0s 801us/step - loss: 0.0892 - accuracy: 0.9538 - mae: 0.0892 - pearson_correlation: 0.7631 - euclidean_distance: 0.1438
Epoch 150/350
227/227 [==============================] - 0s 820us/step - loss: 0.0904 - accuracy: 0.9544 - mae: 0.0904 - pearson_correlation: 0.7599 - euclidean_distance: 0.1455
Epoch 151/350
227/227 [==============================] - 0s 807us/step - loss: 0.0897 - accuracy: 0.9532 - mae: 0.0897 - pearson_correlation: 0.7602 - euclidean_distance: 0.1443
Epoch 152/350
227/227 [==============================] - 0s 797us/step - loss: 0.0896 - accuracy: 0.9538 - mae: 0.0896 - pearson_correlation: 0.7603 - euclidean_distance: 0.1442
Epoch 153/350
227/227 [==============================] - 0s 813us/step - loss: 0.0890 - accuracy: 0.9547 - mae: 0.0890 - pearson_correlation: 0.7649 - euclidean_distance: 0.1428
Epoch 154/350
227/227 [==============================] - 0s 801us/step - loss: 0.0891 - accuracy: 0.9541 - mae: 0.0891 - pearson_correlation: 0.7658 - euclidean_distance: 0.1436
Epoch 155/350
227/227 [==============================] - 0s 810us/step - loss: 0.0895 - accuracy: 0.9538 - mae: 0.0895 - pearson_correlation: 0.7604 - euclidean_distance: 0.1441
Epoch 156/350
227/227 [==============================] - 0s 803us/step - loss: 0.0891 - accuracy: 0.9541 - mae: 0.0891 - pearson_correlation: 0.7603 - euclidean_distance: 0.1436
Epoch 157/350
227/227 [==============================] - 0s 813us/step - loss: 0.0897 - accuracy: 0.9547 - mae: 0.0897 - pearson_correlation: 0.7622 - euclidean_distance: 0.1442
Epoch 158/350
227/227 [==============================] - 0s 807us/step - loss: 0.0899 - accuracy: 0.9541 - mae: 0.0899 - pearson_correlation: 0.7627 - euclidean_distance: 0.1448
Epoch 159/350
227/227 [==============================] - 0s 808us/step - loss: 0.0869 - accuracy: 0.9553 - mae: 0.0869 - pearson_correlation: 0.7697 - euclidean_distance: 0.1400
Epoch 160/350
227/227 [==============================] - 0s 811us/step - loss: 0.0857 - accuracy: 0.9538 - mae: 0.0857 - pearson_correlation: 0.7712 - euclidean_distance: 0.1380
Epoch 161/350
227/227 [==============================] - 0s 803us/step - loss: 0.0866 - accuracy: 0.9538 - mae: 0.0866 - pearson_correlation: 0.7733 - euclidean_distance: 0.1394
Epoch 162/350
227/227 [==============================] - 0s 808us/step - loss: 0.0863 - accuracy: 0.9544 - mae: 0.0863 - pearson_correlation: 0.7660 - euclidean_distance: 0.1393
Epoch 163/350
227/227 [==============================] - 0s 810us/step - loss: 0.0862 - accuracy: 0.9553 - mae: 0.0862 - pearson_correlation: 0.7716 - euclidean_distance: 0.1387
Epoch 164/350
227/227 [==============================] - 0s 803us/step - loss: 0.0870 - accuracy: 0.9544 - mae: 0.0870 - pearson_correlation: 0.7705 - euclidean_distance: 0.1401
Epoch 165/350
227/227 [==============================] - 0s 805us/step - loss: 0.0848 - accuracy: 0.9550 - mae: 0.0848 - pearson_correlation: 0.7721 - euclidean_distance: 0.1366
Epoch 166/350
227/227 [==============================] - 0s 802us/step - loss: 0.0864 - accuracy: 0.9550 - mae: 0.0864 - pearson_correlation: 0.7659 - euclidean_distance: 0.1393
Epoch 167/350
227/227 [==============================] - 0s 801us/step - loss: 0.0871 - accuracy: 0.9556 - mae: 0.0871 - pearson_correlation: 0.7689 - euclidean_distance: 0.1404
Epoch 168/350
227/227 [==============================] - 0s 802us/step - loss: 0.0841 - accuracy: 0.9541 - mae: 0.0841 - pearson_correlation: 0.7746 - euclidean_distance: 0.1359
Epoch 169/350
227/227 [==============================] - 0s 803us/step - loss: 0.0848 - accuracy: 0.9553 - mae: 0.0848 - pearson_correlation: 0.7763 - euclidean_distance: 0.1364
Epoch 170/350
227/227 [==============================] - 0s 792us/step - loss: 0.0860 - accuracy: 0.9547 - mae: 0.0860 - pearson_correlation: 0.7706 - euclidean_distance: 0.1388
Epoch 171/350
227/227 [==============================] - 0s 801us/step - loss: 0.0869 - accuracy: 0.9544 - mae: 0.0869 - pearson_correlation: 0.7685 - euclidean_distance: 0.1398
Epoch 172/350
227/227 [==============================] - 0s 798us/step - loss: 0.0857 - accuracy: 0.9556 - mae: 0.0857 - pearson_correlation: 0.7675 - euclidean_distance: 0.1379
Epoch 173/350
227/227 [==============================] - 0s 813us/step - loss: 0.0845 - accuracy: 0.9550 - mae: 0.0845 - pearson_correlation: 0.7693 - euclidean_distance: 0.1365
Epoch 174/350
227/227 [==============================] - 0s 802us/step - loss: 0.0847 - accuracy: 0.9553 - mae: 0.0847 - pearson_correlation: 0.7744 - euclidean_distance: 0.1365
Epoch 175/350
227/227 [==============================] - 0s 806us/step - loss: 0.0861 - accuracy: 0.9553 - mae: 0.0861 - pearson_correlation: 0.7711 - euclidean_distance: 0.1382
Epoch 176/350
227/227 [==============================] - 0s 805us/step - loss: 0.0849 - accuracy: 0.9553 - mae: 0.0849 - pearson_correlation: 0.7743 - euclidean_distance: 0.1363
Epoch 177/350
227/227 [==============================] - 0s 799us/step - loss: 0.0838 - accuracy: 0.9553 - mae: 0.0838 - pearson_correlation: 0.7756 - euclidean_distance: 0.1349
Epoch 178/350
227/227 [==============================] - 0s 792us/step - loss: 0.0837 - accuracy: 0.9553 - mae: 0.0837 - pearson_correlation: 0.7782 - euclidean_distance: 0.1346
Epoch 179/350
227/227 [==============================] - 0s 816us/step - loss: 0.0829 - accuracy: 0.9553 - mae: 0.0829 - pearson_correlation: 0.7817 - euclidean_distance: 0.1333
Epoch 180/350
227/227 [==============================] - 0s 800us/step - loss: 0.0845 - accuracy: 0.9559 - mae: 0.0845 - pearson_correlation: 0.7793 - euclidean_distance: 0.1360
Epoch 181/350
227/227 [==============================] - 0s 799us/step - loss: 0.0822 - accuracy: 0.9547 - mae: 0.0822 - pearson_correlation: 0.7784 - euclidean_distance: 0.1326
Epoch 182/350
227/227 [==============================] - 0s 790us/step - loss: 0.0840 - accuracy: 0.9559 - mae: 0.0840 - pearson_correlation: 0.7769 - euclidean_distance: 0.1355
Epoch 183/350
227/227 [==============================] - 0s 801us/step - loss: 0.0825 - accuracy: 0.9553 - mae: 0.0825 - pearson_correlation: 0.7811 - euclidean_distance: 0.1333
Epoch 184/350
227/227 [==============================] - 0s 802us/step - loss: 0.0846 - accuracy: 0.9553 - mae: 0.0846 - pearson_correlation: 0.7763 - euclidean_distance: 0.1362
Epoch 185/350
227/227 [==============================] - 0s 798us/step - loss: 0.0817 - accuracy: 0.9553 - mae: 0.0817 - pearson_correlation: 0.7815 - euclidean_distance: 0.1315
Epoch 186/350
227/227 [==============================] - 0s 800us/step - loss: 0.0827 - accuracy: 0.9556 - mae: 0.0827 - pearson_correlation: 0.7799 - euclidean_distance: 0.1332
Epoch 187/350
227/227 [==============================] - 0s 798us/step - loss: 0.0833 - accuracy: 0.9550 - mae: 0.0833 - pearson_correlation: 0.7797 - euclidean_distance: 0.1338
Epoch 188/350
227/227 [==============================] - 0s 792us/step - loss: 0.0818 - accuracy: 0.9559 - mae: 0.0818 - pearson_correlation: 0.7828 - euclidean_distance: 0.1319
Epoch 189/350
227/227 [==============================] - 0s 798us/step - loss: 0.0825 - accuracy: 0.9550 - mae: 0.0825 - pearson_correlation: 0.7792 - euclidean_distance: 0.1327
Epoch 190/350
227/227 [==============================] - 0s 808us/step - loss: 0.0814 - accuracy: 0.9553 - mae: 0.0814 - pearson_correlation: 0.7841 - euclidean_distance: 0.1308
Epoch 191/350
227/227 [==============================] - 0s 806us/step - loss: 0.0807 - accuracy: 0.9550 - mae: 0.0807 - pearson_correlation: 0.7842 - euclidean_distance: 0.1300
Epoch 192/350
227/227 [==============================] - 0s 792us/step - loss: 0.0824 - accuracy: 0.9553 - mae: 0.0824 - pearson_correlation: 0.7792 - euclidean_distance: 0.1327
Epoch 193/350
227/227 [==============================] - 0s 875us/step - loss: 0.0827 - accuracy: 0.9559 - mae: 0.0827 - pearson_correlation: 0.7796 - euclidean_distance: 0.1330
Epoch 194/350
227/227 [==============================] - 0s 934us/step - loss: 0.0817 - accuracy: 0.9553 - mae: 0.0817 - pearson_correlation: 0.7811 - euclidean_distance: 0.1314
Epoch 195/350
227/227 [==============================] - 0s 932us/step - loss: 0.0817 - accuracy: 0.9559 - mae: 0.0817 - pearson_correlation: 0.7827 - euclidean_distance: 0.1315
Epoch 196/350
227/227 [==============================] - 0s 811us/step - loss: 0.0832 - accuracy: 0.9556 - mae: 0.0832 - pearson_correlation: 0.7829 - euclidean_distance: 0.1336
Epoch 197/350
227/227 [==============================] - 0s 788us/step - loss: 0.0816 - accuracy: 0.9553 - mae: 0.0816 - pearson_correlation: 0.7831 - euclidean_distance: 0.1315
Epoch 198/350
227/227 [==============================] - 0s 802us/step - loss: 0.0804 - accuracy: 0.9553 - mae: 0.0804 - pearson_correlation: 0.7867 - euclidean_distance: 0.1296
Epoch 199/350
227/227 [==============================] - 0s 808us/step - loss: 0.0807 - accuracy: 0.9553 - mae: 0.0807 - pearson_correlation: 0.7845 - euclidean_distance: 0.1305
Epoch 200/350
227/227 [==============================] - 0s 807us/step - loss: 0.0811 - accuracy: 0.9559 - mae: 0.0811 - pearson_correlation: 0.7841 - euclidean_distance: 0.1306
Epoch 201/350
227/227 [==============================] - 0s 808us/step - loss: 0.0818 - accuracy: 0.9550 - mae: 0.0818 - pearson_correlation: 0.7834 - euclidean_distance: 0.1319
Epoch 202/350
227/227 [==============================] - 0s 805us/step - loss: 0.0817 - accuracy: 0.9547 - mae: 0.0817 - pearson_correlation: 0.7810 - euclidean_distance: 0.1315
Epoch 203/350
227/227 [==============================] - 0s 802us/step - loss: 0.0799 - accuracy: 0.9556 - mae: 0.0799 - pearson_correlation: 0.7888 - euclidean_distance: 0.1285
Epoch 204/350
227/227 [==============================] - 0s 792us/step - loss: 0.0802 - accuracy: 0.9559 - mae: 0.0802 - pearson_correlation: 0.7858 - euclidean_distance: 0.1291
Epoch 205/350
227/227 [==============================] - 0s 801us/step - loss: 0.0801 - accuracy: 0.9562 - mae: 0.0801 - pearson_correlation: 0.7871 - euclidean_distance: 0.1290
Epoch 206/350
227/227 [==============================] - 0s 796us/step - loss: 0.0806 - accuracy: 0.9556 - mae: 0.0806 - pearson_correlation: 0.7837 - euclidean_distance: 0.1300
Epoch 207/350
227/227 [==============================] - 0s 813us/step - loss: 0.0797 - accuracy: 0.9559 - mae: 0.0797 - pearson_correlation: 0.7873 - euclidean_distance: 0.1285
Epoch 208/350
227/227 [==============================] - 0s 796us/step - loss: 0.0796 - accuracy: 0.9553 - mae: 0.0796 - pearson_correlation: 0.7883 - euclidean_distance: 0.1279
Epoch 209/350
227/227 [==============================] - 0s 796us/step - loss: 0.0802 - accuracy: 0.9559 - mae: 0.0802 - pearson_correlation: 0.7856 - euclidean_distance: 0.1294
Epoch 210/350
227/227 [==============================] - 0s 805us/step - loss: 0.0785 - accuracy: 0.9559 - mae: 0.0785 - pearson_correlation: 0.7877 - euclidean_distance: 0.1269
Epoch 211/350
227/227 [==============================] - 0s 802us/step - loss: 0.0795 - accuracy: 0.9559 - mae: 0.0795 - pearson_correlation: 0.7870 - euclidean_distance: 0.1279
Epoch 212/350
227/227 [==============================] - 0s 801us/step - loss: 0.0801 - accuracy: 0.9556 - mae: 0.0801 - pearson_correlation: 0.7823 - euclidean_distance: 0.1293
Epoch 213/350
227/227 [==============================] - 0s 793us/step - loss: 0.0796 - accuracy: 0.9550 - mae: 0.0796 - pearson_correlation: 0.7872 - euclidean_distance: 0.1284
Epoch 214/350
227/227 [==============================] - 0s 804us/step - loss: 0.0782 - accuracy: 0.9553 - mae: 0.0782 - pearson_correlation: 0.7884 - euclidean_distance: 0.1265
Epoch 215/350
227/227 [==============================] - 0s 814us/step - loss: 0.0805 - accuracy: 0.9553 - mae: 0.0805 - pearson_correlation: 0.7859 - euclidean_distance: 0.1295
Epoch 216/350
227/227 [==============================] - 0s 804us/step - loss: 0.0789 - accuracy: 0.9556 - mae: 0.0789 - pearson_correlation: 0.7891 - euclidean_distance: 0.1274
Epoch 217/350
227/227 [==============================] - 0s 808us/step - loss: 0.0787 - accuracy: 0.9553 - mae: 0.0787 - pearson_correlation: 0.7918 - euclidean_distance: 0.1268
Epoch 218/350
227/227 [==============================] - 0s 796us/step - loss: 0.0794 - accuracy: 0.9556 - mae: 0.0794 - pearson_correlation: 0.7868 - euclidean_distance: 0.1278
Epoch 219/350
227/227 [==============================] - 0s 798us/step - loss: 0.0787 - accuracy: 0.9559 - mae: 0.0787 - pearson_correlation: 0.7915 - euclidean_distance: 0.1268
Epoch 220/350
227/227 [==============================] - 0s 797us/step - loss: 0.0790 - accuracy: 0.9559 - mae: 0.0790 - pearson_correlation: 0.7889 - euclidean_distance: 0.1273
Epoch 221/350
227/227 [==============================] - 0s 803us/step - loss: 0.0777 - accuracy: 0.9559 - mae: 0.0777 - pearson_correlation: 0.7891 - euclidean_distance: 0.1253
Epoch 222/350
227/227 [==============================] - 0s 802us/step - loss: 0.0795 - accuracy: 0.9556 - mae: 0.0795 - pearson_correlation: 0.7842 - euclidean_distance: 0.1284
Epoch 223/350
227/227 [==============================] - 0s 794us/step - loss: 0.0779 - accuracy: 0.9553 - mae: 0.0779 - pearson_correlation: 0.7894 - euclidean_distance: 0.1258
Epoch 224/350
227/227 [==============================] - 0s 795us/step - loss: 0.0780 - accuracy: 0.9559 - mae: 0.0780 - pearson_correlation: 0.7906 - euclidean_distance: 0.1255
Epoch 225/350
227/227 [==============================] - 0s 801us/step - loss: 0.0766 - accuracy: 0.9559 - mae: 0.0766 - pearson_correlation: 0.7960 - euclidean_distance: 0.1237
Epoch 226/350
227/227 [==============================] - 0s 795us/step - loss: 0.0786 - accuracy: 0.9556 - mae: 0.0786 - pearson_correlation: 0.7945 - euclidean_distance: 0.1260
Epoch 227/350
227/227 [==============================] - 0s 804us/step - loss: 0.0767 - accuracy: 0.9559 - mae: 0.0767 - pearson_correlation: 0.7988 - euclidean_distance: 0.1232
Epoch 228/350
227/227 [==============================] - 0s 799us/step - loss: 0.0774 - accuracy: 0.9550 - mae: 0.0774 - pearson_correlation: 0.7932 - euclidean_distance: 0.1249
Epoch 229/350
227/227 [==============================] - 0s 807us/step - loss: 0.0766 - accuracy: 0.9559 - mae: 0.0766 - pearson_correlation: 0.7941 - euclidean_distance: 0.1236
Epoch 230/350
227/227 [==============================] - 0s 794us/step - loss: 0.0769 - accuracy: 0.9559 - mae: 0.0769 - pearson_correlation: 0.7924 - euclidean_distance: 0.1243
Epoch 231/350
227/227 [==============================] - 0s 800us/step - loss: 0.0760 - accuracy: 0.9559 - mae: 0.0760 - pearson_correlation: 0.7967 - euclidean_distance: 0.1228
Epoch 232/350
227/227 [==============================] - 0s 803us/step - loss: 0.0768 - accuracy: 0.9559 - mae: 0.0768 - pearson_correlation: 0.7956 - euclidean_distance: 0.1236
Epoch 233/350
227/227 [==============================] - 0s 789us/step - loss: 0.0770 - accuracy: 0.9559 - mae: 0.0770 - pearson_correlation: 0.7942 - euclidean_distance: 0.1240
Epoch 234/350
227/227 [==============================] - 0s 803us/step - loss: 0.0774 - accuracy: 0.9556 - mae: 0.0774 - pearson_correlation: 0.7949 - euclidean_distance: 0.1246
Epoch 235/350
227/227 [==============================] - 0s 798us/step - loss: 0.0774 - accuracy: 0.9553 - mae: 0.0774 - pearson_correlation: 0.7944 - euclidean_distance: 0.1249
Epoch 236/350
227/227 [==============================] - 0s 809us/step - loss: 0.0776 - accuracy: 0.9556 - mae: 0.0776 - pearson_correlation: 0.7944 - euclidean_distance: 0.1251
Epoch 237/350
227/227 [==============================] - 0s 824us/step - loss: 0.0761 - accuracy: 0.9559 - mae: 0.0761 - pearson_correlation: 0.7949 - euclidean_distance: 0.1228
Epoch 238/350
227/227 [==============================] - 0s 803us/step - loss: 0.0756 - accuracy: 0.9559 - mae: 0.0756 - pearson_correlation: 0.8002 - euclidean_distance: 0.1219
Epoch 239/350
227/227 [==============================] - 0s 789us/step - loss: 0.0769 - accuracy: 0.9559 - mae: 0.0769 - pearson_correlation: 0.7924 - euclidean_distance: 0.1242
Epoch 240/350
227/227 [==============================] - 0s 786us/step - loss: 0.0767 - accuracy: 0.9556 - mae: 0.0767 - pearson_correlation: 0.7931 - euclidean_distance: 0.1238
Epoch 241/350
227/227 [==============================] - 0s 794us/step - loss: 0.0766 - accuracy: 0.9550 - mae: 0.0766 - pearson_correlation: 0.7947 - euclidean_distance: 0.1235
Epoch 242/350
227/227 [==============================] - 0s 799us/step - loss: 0.0764 - accuracy: 0.9556 - mae: 0.0764 - pearson_correlation: 0.7975 - euclidean_distance: 0.1230
Epoch 243/350
227/227 [==============================] - 0s 800us/step - loss: 0.0769 - accuracy: 0.9553 - mae: 0.0769 - pearson_correlation: 0.7945 - euclidean_distance: 0.1241
Epoch 244/350
227/227 [==============================] - 0s 796us/step - loss: 0.0756 - accuracy: 0.9553 - mae: 0.0756 - pearson_correlation: 0.7955 - euclidean_distance: 0.1221
Epoch 245/350
227/227 [==============================] - 0s 798us/step - loss: 0.0766 - accuracy: 0.9559 - mae: 0.0766 - pearson_correlation: 0.7966 - euclidean_distance: 0.1233
Epoch 246/350
227/227 [==============================] - 0s 796us/step - loss: 0.0756 - accuracy: 0.9559 - mae: 0.0756 - pearson_correlation: 0.7988 - euclidean_distance: 0.1222
Epoch 247/350
227/227 [==============================] - 0s 802us/step - loss: 0.0753 - accuracy: 0.9559 - mae: 0.0753 - pearson_correlation: 0.7993 - euclidean_distance: 0.1213
Epoch 248/350
227/227 [==============================] - 0s 796us/step - loss: 0.0752 - accuracy: 0.9559 - mae: 0.0752 - pearson_correlation: 0.7977 - euclidean_distance: 0.1211
Epoch 249/350
227/227 [==============================] - 0s 818us/step - loss: 0.0757 - accuracy: 0.9559 - mae: 0.0757 - pearson_correlation: 0.7958 - euclidean_distance: 0.1219
Epoch 250/350
227/227 [==============================] - 0s 792us/step - loss: 0.0759 - accuracy: 0.9559 - mae: 0.0759 - pearson_correlation: 0.7960 - euclidean_distance: 0.1228
Epoch 251/350
227/227 [==============================] - 0s 797us/step - loss: 0.0761 - accuracy: 0.9559 - mae: 0.0761 - pearson_correlation: 0.7973 - euclidean_distance: 0.1226
Epoch 252/350
227/227 [==============================] - 0s 815us/step - loss: 0.0756 - accuracy: 0.9559 - mae: 0.0756 - pearson_correlation: 0.7948 - euclidean_distance: 0.1223
Epoch 253/350
227/227 [==============================] - 0s 800us/step - loss: 0.0760 - accuracy: 0.9559 - mae: 0.0760 - pearson_correlation: 0.7970 - euclidean_distance: 0.1225
Epoch 254/350
227/227 [==============================] - 0s 798us/step - loss: 0.0763 - accuracy: 0.9559 - mae: 0.0763 - pearson_correlation: 0.7943 - euclidean_distance: 0.1234
Epoch 255/350
227/227 [==============================] - 0s 802us/step - loss: 0.0759 - accuracy: 0.9553 - mae: 0.0759 - pearson_correlation: 0.7991 - euclidean_distance: 0.1221
Epoch 256/350
227/227 [==============================] - 0s 820us/step - loss: 0.0747 - accuracy: 0.9559 - mae: 0.0747 - pearson_correlation: 0.7977 - euclidean_distance: 0.1206
Epoch 257/350
227/227 [==============================] - 0s 793us/step - loss: 0.0764 - accuracy: 0.9556 - mae: 0.0764 - pearson_correlation: 0.7945 - euclidean_distance: 0.1229
Epoch 258/350
227/227 [==============================] - 0s 800us/step - loss: 0.0749 - accuracy: 0.9556 - mae: 0.0749 - pearson_correlation: 0.8015 - euclidean_distance: 0.1210
Epoch 259/350
227/227 [==============================] - 0s 796us/step - loss: 0.0738 - accuracy: 0.9559 - mae: 0.0738 - pearson_correlation: 0.7991 - euclidean_distance: 0.1196
Epoch 260/350
227/227 [==============================] - 0s 801us/step - loss: 0.0750 - accuracy: 0.9559 - mae: 0.0750 - pearson_correlation: 0.7998 - euclidean_distance: 0.1208
Epoch 261/350
227/227 [==============================] - 0s 794us/step - loss: 0.0755 - accuracy: 0.9559 - mae: 0.0755 - pearson_correlation: 0.8001 - euclidean_distance: 0.1219
Epoch 262/350
227/227 [==============================] - 0s 800us/step - loss: 0.0743 - accuracy: 0.9553 - mae: 0.0743 - pearson_correlation: 0.8030 - euclidean_distance: 0.1200
Epoch 263/350
227/227 [==============================] - 0s 801us/step - loss: 0.0754 - accuracy: 0.9559 - mae: 0.0754 - pearson_correlation: 0.7978 - euclidean_distance: 0.1215
Epoch 264/350
227/227 [==============================] - 0s 794us/step - loss: 0.0763 - accuracy: 0.9559 - mae: 0.0763 - pearson_correlation: 0.7974 - euclidean_distance: 0.1226
Epoch 265/350
227/227 [==============================] - 0s 798us/step - loss: 0.0740 - accuracy: 0.9556 - mae: 0.0740 - pearson_correlation: 0.8037 - euclidean_distance: 0.1195
Epoch 266/350
227/227 [==============================] - 0s 795us/step - loss: 0.0746 - accuracy: 0.9559 - mae: 0.0746 - pearson_correlation: 0.8058 - euclidean_distance: 0.1201
Epoch 267/350
227/227 [==============================] - 0s 794us/step - loss: 0.0734 - accuracy: 0.9559 - mae: 0.0734 - pearson_correlation: 0.8036 - euclidean_distance: 0.1187
Epoch 268/350
227/227 [==============================] - 0s 800us/step - loss: 0.0743 - accuracy: 0.9556 - mae: 0.0743 - pearson_correlation: 0.7972 - euclidean_distance: 0.1203
Epoch 269/350
227/227 [==============================] - 0s 799us/step - loss: 0.0745 - accuracy: 0.9562 - mae: 0.0745 - pearson_correlation: 0.7973 - euclidean_distance: 0.1203
Epoch 270/350
227/227 [==============================] - 0s 801us/step - loss: 0.0722 - accuracy: 0.9556 - mae: 0.0722 - pearson_correlation: 0.8080 - euclidean_distance: 0.1167
Epoch 271/350
227/227 [==============================] - 0s 801us/step - loss: 0.0733 - accuracy: 0.9559 - mae: 0.0733 - pearson_correlation: 0.8015 - euclidean_distance: 0.1183
Epoch 272/350
227/227 [==============================] - 0s 794us/step - loss: 0.0742 - accuracy: 0.9559 - mae: 0.0742 - pearson_correlation: 0.7976 - euclidean_distance: 0.1198
Epoch 273/350
227/227 [==============================] - 0s 803us/step - loss: 0.0739 - accuracy: 0.9556 - mae: 0.0739 - pearson_correlation: 0.7989 - euclidean_distance: 0.1194
Epoch 274/350
227/227 [==============================] - 0s 795us/step - loss: 0.0743 - accuracy: 0.9559 - mae: 0.0743 - pearson_correlation: 0.7970 - euclidean_distance: 0.1199
Epoch 275/350
227/227 [==============================] - 0s 801us/step - loss: 0.0737 - accuracy: 0.9559 - mae: 0.0737 - pearson_correlation: 0.8001 - euclidean_distance: 0.1193
Epoch 276/350
227/227 [==============================] - 0s 797us/step - loss: 0.0723 - accuracy: 0.9559 - mae: 0.0723 - pearson_correlation: 0.8031 - euclidean_distance: 0.1171
Epoch 277/350
227/227 [==============================] - 0s 831us/step - loss: 0.0740 - accuracy: 0.9559 - mae: 0.0740 - pearson_correlation: 0.7990 - euclidean_distance: 0.1196
Epoch 278/350
227/227 [==============================] - 0s 797us/step - loss: 0.0740 - accuracy: 0.9559 - mae: 0.0740 - pearson_correlation: 0.8001 - euclidean_distance: 0.1196
Epoch 279/350
227/227 [==============================] - 0s 840us/step - loss: 0.0736 - accuracy: 0.9559 - mae: 0.0736 - pearson_correlation: 0.8006 - euclidean_distance: 0.1187
Epoch 280/350
227/227 [==============================] - 0s 2ms/step - loss: 0.0752 - accuracy: 0.9559 - mae: 0.0752 - pearson_correlation: 0.7954 - euclidean_distance: 0.1215
Epoch 281/350
227/227 [==============================] - 0s 937us/step - loss: 0.0729 - accuracy: 0.9559 - mae: 0.0729 - pearson_correlation: 0.8035 - euclidean_distance: 0.1177
Epoch 282/350
227/227 [==============================] - 0s 847us/step - loss: 0.0729 - accuracy: 0.9559 - mae: 0.0729 - pearson_correlation: 0.8027 - euclidean_distance: 0.1176
Epoch 283/350
227/227 [==============================] - 0s 808us/step - loss: 0.0744 - accuracy: 0.9559 - mae: 0.0744 - pearson_correlation: 0.7986 - euclidean_distance: 0.1203
Epoch 284/350
227/227 [==============================] - 0s 846us/step - loss: 0.0744 - accuracy: 0.9559 - mae: 0.0744 - pearson_correlation: 0.7989 - euclidean_distance: 0.1203
Epoch 285/350
227/227 [==============================] - 0s 796us/step - loss: 0.0717 - accuracy: 0.9559 - mae: 0.0717 - pearson_correlation: 0.8075 - euclidean_distance: 0.1160
Epoch 286/350
227/227 [==============================] - 0s 806us/step - loss: 0.0721 - accuracy: 0.9556 - mae: 0.0721 - pearson_correlation: 0.8032 - euclidean_distance: 0.1169
Epoch 287/350
227/227 [==============================] - 0s 800us/step - loss: 0.0730 - accuracy: 0.9559 - mae: 0.0730 - pearson_correlation: 0.8014 - euclidean_distance: 0.1179
Epoch 288/350
227/227 [==============================] - 0s 800us/step - loss: 0.0735 - accuracy: 0.9559 - mae: 0.0735 - pearson_correlation: 0.8015 - euclidean_distance: 0.1184
Epoch 289/350
227/227 [==============================] - 0s 797us/step - loss: 0.0720 - accuracy: 0.9559 - mae: 0.0720 - pearson_correlation: 0.8068 - euclidean_distance: 0.1163
Epoch 290/350
227/227 [==============================] - 0s 791us/step - loss: 0.0729 - accuracy: 0.9559 - mae: 0.0729 - pearson_correlation: 0.8018 - euclidean_distance: 0.1181
Epoch 291/350
227/227 [==============================] - 0s 794us/step - loss: 0.0728 - accuracy: 0.9556 - mae: 0.0728 - pearson_correlation: 0.8035 - euclidean_distance: 0.1179
Epoch 292/350
227/227 [==============================] - 0s 797us/step - loss: 0.0720 - accuracy: 0.9559 - mae: 0.0720 - pearson_correlation: 0.8055 - euclidean_distance: 0.1166
Epoch 293/350
227/227 [==============================] - 0s 792us/step - loss: 0.0721 - accuracy: 0.9559 - mae: 0.0721 - pearson_correlation: 0.8042 - euclidean_distance: 0.1166
Epoch 294/350
227/227 [==============================] - 0s 792us/step - loss: 0.0728 - accuracy: 0.9559 - mae: 0.0728 - pearson_correlation: 0.8011 - euclidean_distance: 0.1177
Epoch 295/350
227/227 [==============================] - 0s 793us/step - loss: 0.0724 - accuracy: 0.9556 - mae: 0.0724 - pearson_correlation: 0.8049 - euclidean_distance: 0.1168
Epoch 296/350
227/227 [==============================] - 0s 795us/step - loss: 0.0716 - accuracy: 0.9559 - mae: 0.0716 - pearson_correlation: 0.8078 - euclidean_distance: 0.1159
Epoch 297/350
227/227 [==============================] - 0s 799us/step - loss: 0.0728 - accuracy: 0.9559 - mae: 0.0728 - pearson_correlation: 0.8024 - euclidean_distance: 0.1177
Epoch 298/350
227/227 [==============================] - 0s 793us/step - loss: 0.0722 - accuracy: 0.9559 - mae: 0.0722 - pearson_correlation: 0.8041 - euclidean_distance: 0.1169
Epoch 299/350
227/227 [==============================] - 0s 794us/step - loss: 0.0722 - accuracy: 0.9559 - mae: 0.0722 - pearson_correlation: 0.8036 - euclidean_distance: 0.1167
Epoch 300/350
227/227 [==============================] - 0s 795us/step - loss: 0.0718 - accuracy: 0.9559 - mae: 0.0718 - pearson_correlation: 0.8035 - euclidean_distance: 0.1164
Epoch 301/350
227/227 [==============================] - 0s 791us/step - loss: 0.0711 - accuracy: 0.9559 - mae: 0.0711 - pearson_correlation: 0.8049 - euclidean_distance: 0.1152
Epoch 302/350
227/227 [==============================] - 0s 808us/step - loss: 0.0717 - accuracy: 0.9559 - mae: 0.0717 - pearson_correlation: 0.8067 - euclidean_distance: 0.1158
Epoch 303/350
227/227 [==============================] - 0s 796us/step - loss: 0.0722 - accuracy: 0.9559 - mae: 0.0722 - pearson_correlation: 0.8030 - euclidean_distance: 0.1168
Epoch 304/350
227/227 [==============================] - 0s 794us/step - loss: 0.0713 - accuracy: 0.9559 - mae: 0.0713 - pearson_correlation: 0.8033 - euclidean_distance: 0.1154
Epoch 305/350
227/227 [==============================] - 0s 803us/step - loss: 0.0721 - accuracy: 0.9559 - mae: 0.0721 - pearson_correlation: 0.8044 - euclidean_distance: 0.1167
Epoch 306/350
227/227 [==============================] - 0s 806us/step - loss: 0.0721 - accuracy: 0.9559 - mae: 0.0721 - pearson_correlation: 0.8026 - euclidean_distance: 0.1166
Epoch 307/350
227/227 [==============================] - 0s 806us/step - loss: 0.0710 - accuracy: 0.9559 - mae: 0.0710 - pearson_correlation: 0.8093 - euclidean_distance: 0.1150
Epoch 308/350
227/227 [==============================] - 0s 796us/step - loss: 0.0718 - accuracy: 0.9559 - mae: 0.0718 - pearson_correlation: 0.8095 - euclidean_distance: 0.1161
Epoch 309/350
227/227 [==============================] - 0s 803us/step - loss: 0.0709 - accuracy: 0.9559 - mae: 0.0709 - pearson_correlation: 0.8062 - euclidean_distance: 0.1148
Epoch 310/350
227/227 [==============================] - 0s 814us/step - loss: 0.0715 - accuracy: 0.9553 - mae: 0.0715 - pearson_correlation: 0.8071 - euclidean_distance: 0.1155
Epoch 311/350
227/227 [==============================] - 0s 794us/step - loss: 0.0723 - accuracy: 0.9559 - mae: 0.0723 - pearson_correlation: 0.8070 - euclidean_distance: 0.1165
Epoch 312/350
227/227 [==============================] - 0s 794us/step - loss: 0.0726 - accuracy: 0.9559 - mae: 0.0726 - pearson_correlation: 0.8043 - euclidean_distance: 0.1173
Epoch 313/350
227/227 [==============================] - 0s 800us/step - loss: 0.0717 - accuracy: 0.9556 - mae: 0.0717 - pearson_correlation: 0.8040 - euclidean_distance: 0.1162
Epoch 314/350
227/227 [==============================] - 0s 790us/step - loss: 0.0695 - accuracy: 0.9559 - mae: 0.0695 - pearson_correlation: 0.8067 - euclidean_distance: 0.1128
Epoch 315/350
227/227 [==============================] - 0s 806us/step - loss: 0.0720 - accuracy: 0.9559 - mae: 0.0720 - pearson_correlation: 0.8029 - euclidean_distance: 0.1163
Epoch 316/350
227/227 [==============================] - 0s 785us/step - loss: 0.0715 - accuracy: 0.9559 - mae: 0.0715 - pearson_correlation: 0.8053 - euclidean_distance: 0.1156
Epoch 317/350
227/227 [==============================] - 0s 837us/step - loss: 0.0713 - accuracy: 0.9559 - mae: 0.0713 - pearson_correlation: 0.8019 - euclidean_distance: 0.1157
Epoch 318/350
227/227 [==============================] - 0s 843us/step - loss: 0.0699 - accuracy: 0.9559 - mae: 0.0699 - pearson_correlation: 0.8048 - euclidean_distance: 0.1139
Epoch 319/350
227/227 [==============================] - 0s 802us/step - loss: 0.0705 - accuracy: 0.9559 - mae: 0.0705 - pearson_correlation: 0.8093 - euclidean_distance: 0.1142
Epoch 320/350
227/227 [==============================] - 0s 793us/step - loss: 0.0709 - accuracy: 0.9559 - mae: 0.0709 - pearson_correlation: 0.8057 - euclidean_distance: 0.1151
Epoch 321/350
227/227 [==============================] - 0s 787us/step - loss: 0.0696 - accuracy: 0.9559 - mae: 0.0696 - pearson_correlation: 0.8136 - euclidean_distance: 0.1127
Epoch 322/350
227/227 [==============================] - 0s 797us/step - loss: 0.0709 - accuracy: 0.9559 - mae: 0.0709 - pearson_correlation: 0.8036 - euclidean_distance: 0.1147
Epoch 323/350
227/227 [==============================] - 0s 795us/step - loss: 0.0720 - accuracy: 0.9559 - mae: 0.0720 - pearson_correlation: 0.8027 - euclidean_distance: 0.1162
Epoch 324/350
227/227 [==============================] - 0s 795us/step - loss: 0.0710 - accuracy: 0.9559 - mae: 0.0710 - pearson_correlation: 0.8067 - euclidean_distance: 0.1150
Epoch 325/350
227/227 [==============================] - 0s 796us/step - loss: 0.0705 - accuracy: 0.9559 - mae: 0.0705 - pearson_correlation: 0.8061 - euclidean_distance: 0.1138
Epoch 326/350
227/227 [==============================] - 0s 792us/step - loss: 0.0711 - accuracy: 0.9559 - mae: 0.0711 - pearson_correlation: 0.8065 - euclidean_distance: 0.1151
Epoch 327/350
227/227 [==============================] - 0s 800us/step - loss: 0.0714 - accuracy: 0.9559 - mae: 0.0714 - pearson_correlation: 0.8060 - euclidean_distance: 0.1157
Epoch 328/350
227/227 [==============================] - 0s 788us/step - loss: 0.0697 - accuracy: 0.9559 - mae: 0.0697 - pearson_correlation: 0.8088 - euclidean_distance: 0.1131
Epoch 329/350
227/227 [==============================] - 0s 799us/step - loss: 0.0718 - accuracy: 0.9556 - mae: 0.0718 - pearson_correlation: 0.8073 - euclidean_distance: 0.1161
Epoch 330/350
227/227 [==============================] - 0s 795us/step - loss: 0.0700 - accuracy: 0.9559 - mae: 0.0700 - pearson_correlation: 0.8101 - euclidean_distance: 0.1133
Epoch 331/350
227/227 [==============================] - 0s 792us/step - loss: 0.0698 - accuracy: 0.9559 - mae: 0.0698 - pearson_correlation: 0.8088 - euclidean_distance: 0.1131
Epoch 332/350
227/227 [==============================] - 0s 791us/step - loss: 0.0721 - accuracy: 0.9559 - mae: 0.0721 - pearson_correlation: 0.8032 - euclidean_distance: 0.1165
Epoch 333/350
227/227 [==============================] - 0s 790us/step - loss: 0.0705 - accuracy: 0.9559 - mae: 0.0705 - pearson_correlation: 0.8078 - euclidean_distance: 0.1140
Epoch 334/350
227/227 [==============================] - 0s 801us/step - loss: 0.0695 - accuracy: 0.9559 - mae: 0.0695 - pearson_correlation: 0.8114 - euclidean_distance: 0.1126
Epoch 335/350
227/227 [==============================] - 0s 795us/step - loss: 0.0700 - accuracy: 0.9559 - mae: 0.0700 - pearson_correlation: 0.8076 - euclidean_distance: 0.1136
Epoch 336/350
227/227 [==============================] - 0s 789us/step - loss: 0.0704 - accuracy: 0.9559 - mae: 0.0704 - pearson_correlation: 0.8060 - euclidean_distance: 0.1141
Epoch 337/350
227/227 [==============================] - 0s 791us/step - loss: 0.0699 - accuracy: 0.9559 - mae: 0.0699 - pearson_correlation: 0.8111 - euclidean_distance: 0.1132
Epoch 338/350
227/227 [==============================] - 0s 793us/step - loss: 0.0680 - accuracy: 0.9559 - mae: 0.0680 - pearson_correlation: 0.8142 - euclidean_distance: 0.1104
Epoch 339/350
227/227 [==============================] - 0s 790us/step - loss: 0.0694 - accuracy: 0.9559 - mae: 0.0694 - pearson_correlation: 0.8069 - euclidean_distance: 0.1124
Epoch 340/350
227/227 [==============================] - 0s 792us/step - loss: 0.0701 - accuracy: 0.9559 - mae: 0.0701 - pearson_correlation: 0.8077 - euclidean_distance: 0.1138
Epoch 341/350
227/227 [==============================] - 0s 791us/step - loss: 0.0695 - accuracy: 0.9559 - mae: 0.0695 - pearson_correlation: 0.8095 - euclidean_distance: 0.1126
Epoch 342/350
227/227 [==============================] - 0s 798us/step - loss: 0.0699 - accuracy: 0.9559 - mae: 0.0699 - pearson_correlation: 0.8081 - euclidean_distance: 0.1129
Epoch 343/350
227/227 [==============================] - 0s 792us/step - loss: 0.0695 - accuracy: 0.9559 - mae: 0.0695 - pearson_correlation: 0.8100 - euclidean_distance: 0.1129
Epoch 344/350
227/227 [==============================] - 0s 793us/step - loss: 0.0691 - accuracy: 0.9559 - mae: 0.0691 - pearson_correlation: 0.8086 - euclidean_distance: 0.1121
Epoch 345/350
227/227 [==============================] - 0s 807us/step - loss: 0.0678 - accuracy: 0.9559 - mae: 0.0678 - pearson_correlation: 0.8105 - euclidean_distance: 0.1105
Epoch 346/350
227/227 [==============================] - 0s 789us/step - loss: 0.0702 - accuracy: 0.9559 - mae: 0.0702 - pearson_correlation: 0.8088 - euclidean_distance: 0.1136
Epoch 347/350
227/227 [==============================] - 0s 807us/step - loss: 0.0700 - accuracy: 0.9559 - mae: 0.0700 - pearson_correlation: 0.8083 - euclidean_distance: 0.1132
Epoch 348/350
227/227 [==============================] - 0s 789us/step - loss: 0.0686 - accuracy: 0.9559 - mae: 0.0686 - pearson_correlation: 0.8095 - euclidean_distance: 0.1110
Epoch 349/350
227/227 [==============================] - 0s 793us/step - loss: 0.0687 - accuracy: 0.9559 - mae: 0.0687 - pearson_correlation: 0.8095 - euclidean_distance: 0.1115
Epoch 350/350
227/227 [==============================] - 0s 795us/step - loss: 0.0690 - accuracy: 0.9559 - mae: 0.0690 - pearson_correlation: 0.8099 - euclidean_distance: 0.1117
Best: -0.210839 using {'batch_size': 15, 'epochs': 350}
Batch size=15 and Epochs=350 were best parameters
FFNN model is trained using best hyperparameters
inputs = Input(shape=(8,))
x = Dense(64,LeakyReLU(alpha=0.1))(inputs)
x = Dense(64,LeakyReLU(alpha=0.1))(x)
x=BatchNormalization()(x)
x = Dense(32,LeakyReLU(alpha=0.1))(x)
x = Dense(32,LeakyReLU(alpha=0.1))(x)
x = Dense(16,LeakyReLU(alpha=0.1))(x)
x = Dense(16,LeakyReLU(alpha=0.1))(x)
output = Dense(2)(x)
model = Model(inputs=inputs, outputs=output)
model.compile(optimizer=Adadelta(), loss='mse', metrics=['mae','accuracy',pearson_correlation,euclidean_distance])
model.summary()
Model: "model_1"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
input_2 (InputLayer) [(None, 8)] 0
dense_7 (Dense) (None, 64) 576
dense_8 (Dense) (None, 64) 4160
batch_normalization_1 (Batc (None, 64) 256
hNormalization)
dense_9 (Dense) (None, 32) 2080
dense_10 (Dense) (None, 32) 1056
dense_11 (Dense) (None, 16) 528
dense_12 (Dense) (None, 16) 272
dense_13 (Dense) (None, 2) 34
=================================================================
Total params: 8,962
Trainable params: 8,834
Non-trainable params: 128
_________________________________________________________________
Early stopping with patience=5 is used for regularization and a validation split of 20% is done
early_stopping = EarlyStopping(monitor='val_mae', patience=5, restore_best_weights=True)
history = model.fit(X_train[cols_X], Y_train[cols_Y], epochs=350, batch_size=15, validation_split=0.2,callbacks=[early_stopping])
Epoch 1/350 182/182 [==============================] - 1s 3ms/step - loss: 0.3943 - mae: 0.5470 - accuracy: 0.4276 - pearson_correlation: -0.1958 - euclidean_distance: 0.8519 - val_loss: 0.3324 - val_mae: 0.5435 - val_accuracy: 0.3407 - val_pearson_correlation: -0.1524 - val_euclidean_distance: 0.8080 Epoch 2/350 182/182 [==============================] - 0s 1ms/step - loss: 0.3807 - mae: 0.5365 - accuracy: 0.4338 - pearson_correlation: -0.1799 - euclidean_distance: 0.8357 - val_loss: 0.3456 - val_mae: 0.5375 - val_accuracy: 0.3480 - val_pearson_correlation: -0.1866 - val_euclidean_distance: 0.8174 Epoch 3/350 182/182 [==============================] - 0s 1ms/step - loss: 0.3652 - mae: 0.5264 - accuracy: 0.4570 - pearson_correlation: -0.1574 - euclidean_distance: 0.8188 - val_loss: 0.3559 - val_mae: 0.5297 - val_accuracy: 0.3906 - val_pearson_correlation: -0.1383 - val_euclidean_distance: 0.8164 Epoch 4/350 182/182 [==============================] - 0s 1ms/step - loss: 0.3502 - mae: 0.5162 - accuracy: 0.4776 - pearson_correlation: -0.1301 - euclidean_distance: 0.8004 - val_loss: 0.3488 - val_mae: 0.5191 - val_accuracy: 0.4493 - val_pearson_correlation: -0.0778 - val_euclidean_distance: 0.8004 Epoch 5/350 182/182 [==============================] - 0s 1ms/step - loss: 0.3368 - mae: 0.5058 - accuracy: 0.4893 - pearson_correlation: -0.1132 - euclidean_distance: 0.7845 - val_loss: 0.3359 - val_mae: 0.5080 - val_accuracy: 0.4772 - val_pearson_correlation: -0.0518 - val_euclidean_distance: 0.7829 Epoch 6/350 182/182 [==============================] - 0s 1ms/step - loss: 0.3236 - mae: 0.4950 - accuracy: 0.5085 - pearson_correlation: -0.0846 - euclidean_distance: 0.7676 - val_loss: 0.3214 - val_mae: 0.4969 - val_accuracy: 0.5433 - val_pearson_correlation: -0.0176 - val_euclidean_distance: 0.7646 Epoch 7/350 182/182 [==============================] - 0s 1ms/step - loss: 0.3083 - mae: 0.4842 - accuracy: 0.5375 - pearson_correlation: -0.0415 - euclidean_distance: 0.7489 - val_loss: 0.3089 - val_mae: 0.4859 - val_accuracy: 0.5800 - val_pearson_correlation: -0.0060 - val_euclidean_distance: 0.7483 Epoch 8/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2968 - mae: 0.4738 - accuracy: 0.5603 - pearson_correlation: -0.0331 - euclidean_distance: 0.7333 - val_loss: 0.2964 - val_mae: 0.4755 - val_accuracy: 0.5888 - val_pearson_correlation: 0.0161 - val_euclidean_distance: 0.7320 Epoch 9/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2858 - mae: 0.4644 - accuracy: 0.5783 - pearson_correlation: -5.1046e-04 - euclidean_distance: 0.7173 - val_loss: 0.2820 - val_mae: 0.4633 - val_accuracy: 0.5932 - val_pearson_correlation: 0.0485 - val_euclidean_distance: 0.7127 Epoch 10/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2721 - mae: 0.4536 - accuracy: 0.5956 - pearson_correlation: 0.0352 - euclidean_distance: 0.6997 - val_loss: 0.2686 - val_mae: 0.4519 - val_accuracy: 0.6006 - val_pearson_correlation: 0.0743 - val_euclidean_distance: 0.6946 Epoch 11/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2592 - mae: 0.4412 - accuracy: 0.6136 - pearson_correlation: 0.0469 - euclidean_distance: 0.6820 - val_loss: 0.2559 - val_mae: 0.4401 - val_accuracy: 0.6050 - val_pearson_correlation: 0.1033 - val_euclidean_distance: 0.6763 Epoch 12/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2479 - mae: 0.4320 - accuracy: 0.6335 - pearson_correlation: 0.0857 - euclidean_distance: 0.6656 - val_loss: 0.2424 - val_mae: 0.4269 - val_accuracy: 0.6182 - val_pearson_correlation: 0.1324 - val_euclidean_distance: 0.6562 Epoch 13/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2362 - mae: 0.4200 - accuracy: 0.6368 - pearson_correlation: 0.1083 - euclidean_distance: 0.6484 - val_loss: 0.2313 - val_mae: 0.4167 - val_accuracy: 0.6300 - val_pearson_correlation: 0.1678 - val_euclidean_distance: 0.6397 Epoch 14/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2276 - mae: 0.4114 - accuracy: 0.6478 - pearson_correlation: 0.1284 - euclidean_distance: 0.6350 - val_loss: 0.2202 - val_mae: 0.4054 - val_accuracy: 0.6446 - val_pearson_correlation: 0.1873 - val_euclidean_distance: 0.6224 Epoch 15/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2150 - mae: 0.3991 - accuracy: 0.6732 - pearson_correlation: 0.1565 - euclidean_distance: 0.6161 - val_loss: 0.2122 - val_mae: 0.3966 - val_accuracy: 0.6476 - val_pearson_correlation: 0.1968 - val_euclidean_distance: 0.6094 Epoch 16/350 182/182 [==============================] - 0s 1ms/step - loss: 0.2067 - mae: 0.3905 - accuracy: 0.6783 - pearson_correlation: 0.1776 - euclidean_distance: 0.6023 - val_loss: 0.2015 - val_mae: 0.3854 - val_accuracy: 0.6579 - val_pearson_correlation: 0.2271 - val_euclidean_distance: 0.5920 Epoch 17/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1956 - mae: 0.3784 - accuracy: 0.7004 - pearson_correlation: 0.2097 - euclidean_distance: 0.5846 - val_loss: 0.1908 - val_mae: 0.3736 - val_accuracy: 0.6725 - val_pearson_correlation: 0.2460 - val_euclidean_distance: 0.5743 Epoch 18/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1874 - mae: 0.3693 - accuracy: 0.7074 - pearson_correlation: 0.2244 - euclidean_distance: 0.5704 - val_loss: 0.1823 - val_mae: 0.3639 - val_accuracy: 0.6975 - val_pearson_correlation: 0.2691 - val_euclidean_distance: 0.5595 Epoch 19/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1787 - mae: 0.3599 - accuracy: 0.7224 - pearson_correlation: 0.2440 - euclidean_distance: 0.5560 - val_loss: 0.1716 - val_mae: 0.3507 - val_accuracy: 0.7107 - val_pearson_correlation: 0.2977 - val_euclidean_distance: 0.5402 Epoch 20/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1693 - mae: 0.3487 - accuracy: 0.7364 - pearson_correlation: 0.2697 - euclidean_distance: 0.5385 - val_loss: 0.1637 - val_mae: 0.3408 - val_accuracy: 0.7283 - val_pearson_correlation: 0.3113 - val_euclidean_distance: 0.5256 Epoch 21/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1620 - mae: 0.3404 - accuracy: 0.7382 - pearson_correlation: 0.2912 - euclidean_distance: 0.5259 - val_loss: 0.1565 - val_mae: 0.3320 - val_accuracy: 0.7283 - val_pearson_correlation: 0.3265 - val_euclidean_distance: 0.5123 Epoch 22/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1540 - mae: 0.3314 - accuracy: 0.7478 - pearson_correlation: 0.3086 - euclidean_distance: 0.5116 - val_loss: 0.1474 - val_mae: 0.3206 - val_accuracy: 0.7577 - val_pearson_correlation: 0.3498 - val_euclidean_distance: 0.4954 Epoch 23/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1464 - mae: 0.3206 - accuracy: 0.7607 - pearson_correlation: 0.3251 - euclidean_distance: 0.4965 - val_loss: 0.1402 - val_mae: 0.3109 - val_accuracy: 0.7606 - val_pearson_correlation: 0.3638 - val_euclidean_distance: 0.4812 Epoch 24/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1402 - mae: 0.3126 - accuracy: 0.7695 - pearson_correlation: 0.3383 - euclidean_distance: 0.4838 - val_loss: 0.1321 - val_mae: 0.2992 - val_accuracy: 0.7812 - val_pearson_correlation: 0.3814 - val_euclidean_distance: 0.4647 Epoch 25/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1329 - mae: 0.3027 - accuracy: 0.7728 - pearson_correlation: 0.3573 - euclidean_distance: 0.4692 - val_loss: 0.1262 - val_mae: 0.2908 - val_accuracy: 0.7944 - val_pearson_correlation: 0.3934 - val_euclidean_distance: 0.4526 Epoch 26/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1279 - mae: 0.2959 - accuracy: 0.7849 - pearson_correlation: 0.3744 - euclidean_distance: 0.4590 - val_loss: 0.1206 - val_mae: 0.2833 - val_accuracy: 0.8106 - val_pearson_correlation: 0.4083 - val_euclidean_distance: 0.4416 Epoch 27/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1207 - mae: 0.2861 - accuracy: 0.7915 - pearson_correlation: 0.3853 - euclidean_distance: 0.4440 - val_loss: 0.1133 - val_mae: 0.2724 - val_accuracy: 0.8164 - val_pearson_correlation: 0.4238 - val_euclidean_distance: 0.4259 Epoch 28/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1148 - mae: 0.2784 - accuracy: 0.7963 - pearson_correlation: 0.4054 - euclidean_distance: 0.4326 - val_loss: 0.1075 - val_mae: 0.2639 - val_accuracy: 0.8311 - val_pearson_correlation: 0.4390 - val_euclidean_distance: 0.4133 Epoch 29/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1096 - mae: 0.2700 - accuracy: 0.8077 - pearson_correlation: 0.4095 - euclidean_distance: 0.4204 - val_loss: 0.1021 - val_mae: 0.2559 - val_accuracy: 0.8414 - val_pearson_correlation: 0.4502 - val_euclidean_distance: 0.4011 Epoch 30/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1046 - mae: 0.2627 - accuracy: 0.8081 - pearson_correlation: 0.4260 - euclidean_distance: 0.4088 - val_loss: 0.0973 - val_mae: 0.2487 - val_accuracy: 0.8488 - val_pearson_correlation: 0.4595 - val_euclidean_distance: 0.3901 Epoch 31/350 182/182 [==============================] - 0s 1ms/step - loss: 0.1000 - mae: 0.2563 - accuracy: 0.8158 - pearson_correlation: 0.4383 - euclidean_distance: 0.3989 - val_loss: 0.0928 - val_mae: 0.2418 - val_accuracy: 0.8517 - val_pearson_correlation: 0.4680 - val_euclidean_distance: 0.3797 Epoch 32/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0959 - mae: 0.2499 - accuracy: 0.8180 - pearson_correlation: 0.4450 - euclidean_distance: 0.3904 - val_loss: 0.0889 - val_mae: 0.2354 - val_accuracy: 0.8502 - val_pearson_correlation: 0.4748 - val_euclidean_distance: 0.3701 Epoch 33/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0909 - mae: 0.2426 - accuracy: 0.8294 - pearson_correlation: 0.4674 - euclidean_distance: 0.3781 - val_loss: 0.0841 - val_mae: 0.2281 - val_accuracy: 0.8546 - val_pearson_correlation: 0.4856 - val_euclidean_distance: 0.3588 Epoch 34/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0862 - mae: 0.2342 - accuracy: 0.8357 - pearson_correlation: 0.4669 - euclidean_distance: 0.3657 - val_loss: 0.0802 - val_mae: 0.2215 - val_accuracy: 0.8561 - val_pearson_correlation: 0.4961 - val_euclidean_distance: 0.3484 Epoch 35/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0843 - mae: 0.2312 - accuracy: 0.8415 - pearson_correlation: 0.4738 - euclidean_distance: 0.3615 - val_loss: 0.0770 - val_mae: 0.2160 - val_accuracy: 0.8576 - val_pearson_correlation: 0.5034 - val_euclidean_distance: 0.3401 Epoch 36/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0803 - mae: 0.2240 - accuracy: 0.8478 - pearson_correlation: 0.4749 - euclidean_distance: 0.3511 - val_loss: 0.0731 - val_mae: 0.2090 - val_accuracy: 0.8590 - val_pearson_correlation: 0.5135 - val_euclidean_distance: 0.3299 Epoch 37/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0782 - mae: 0.2214 - accuracy: 0.8467 - pearson_correlation: 0.4863 - euclidean_distance: 0.3464 - val_loss: 0.0707 - val_mae: 0.2051 - val_accuracy: 0.8620 - val_pearson_correlation: 0.5192 - val_euclidean_distance: 0.3233 Epoch 38/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0746 - mae: 0.2155 - accuracy: 0.8529 - pearson_correlation: 0.4943 - euclidean_distance: 0.3367 - val_loss: 0.0678 - val_mae: 0.2001 - val_accuracy: 0.8693 - val_pearson_correlation: 0.5234 - val_euclidean_distance: 0.3155 Epoch 39/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0722 - mae: 0.2119 - accuracy: 0.8566 - pearson_correlation: 0.5033 - euclidean_distance: 0.3318 - val_loss: 0.0653 - val_mae: 0.1961 - val_accuracy: 0.8678 - val_pearson_correlation: 0.5296 - val_euclidean_distance: 0.3089 Epoch 40/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0692 - mae: 0.2062 - accuracy: 0.8592 - pearson_correlation: 0.5069 - euclidean_distance: 0.3233 - val_loss: 0.0630 - val_mae: 0.1921 - val_accuracy: 0.8678 - val_pearson_correlation: 0.5372 - val_euclidean_distance: 0.3021 Epoch 41/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0660 - mae: 0.2015 - accuracy: 0.8610 - pearson_correlation: 0.5189 - euclidean_distance: 0.3158 - val_loss: 0.0607 - val_mae: 0.1880 - val_accuracy: 0.8722 - val_pearson_correlation: 0.5398 - val_euclidean_distance: 0.2951 Epoch 42/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0645 - mae: 0.1973 - accuracy: 0.8640 - pearson_correlation: 0.5146 - euclidean_distance: 0.3093 - val_loss: 0.0588 - val_mae: 0.1846 - val_accuracy: 0.8752 - val_pearson_correlation: 0.5440 - val_euclidean_distance: 0.2897 Epoch 43/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0612 - mae: 0.1926 - accuracy: 0.8710 - pearson_correlation: 0.5228 - euclidean_distance: 0.3031 - val_loss: 0.0568 - val_mae: 0.1808 - val_accuracy: 0.8825 - val_pearson_correlation: 0.5500 - val_euclidean_distance: 0.2837 Epoch 44/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0615 - mae: 0.1930 - accuracy: 0.8702 - pearson_correlation: 0.5237 - euclidean_distance: 0.3026 - val_loss: 0.0552 - val_mae: 0.1783 - val_accuracy: 0.8825 - val_pearson_correlation: 0.5524 - val_euclidean_distance: 0.2792 Epoch 45/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0583 - mae: 0.1873 - accuracy: 0.8699 - pearson_correlation: 0.5343 - euclidean_distance: 0.2935 - val_loss: 0.0532 - val_mae: 0.1744 - val_accuracy: 0.8869 - val_pearson_correlation: 0.5578 - val_euclidean_distance: 0.2733 Epoch 46/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0575 - mae: 0.1850 - accuracy: 0.8772 - pearson_correlation: 0.5267 - euclidean_distance: 0.2916 - val_loss: 0.0516 - val_mae: 0.1713 - val_accuracy: 0.8913 - val_pearson_correlation: 0.5609 - val_euclidean_distance: 0.2688 Epoch 47/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0560 - mae: 0.1825 - accuracy: 0.8761 - pearson_correlation: 0.5372 - euclidean_distance: 0.2867 - val_loss: 0.0501 - val_mae: 0.1686 - val_accuracy: 0.8943 - val_pearson_correlation: 0.5663 - val_euclidean_distance: 0.2647 Epoch 48/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0534 - mae: 0.1780 - accuracy: 0.8794 - pearson_correlation: 0.5451 - euclidean_distance: 0.2805 - val_loss: 0.0486 - val_mae: 0.1653 - val_accuracy: 0.9031 - val_pearson_correlation: 0.5698 - val_euclidean_distance: 0.2601 Epoch 49/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0512 - mae: 0.1744 - accuracy: 0.8849 - pearson_correlation: 0.5501 - euclidean_distance: 0.2747 - val_loss: 0.0476 - val_mae: 0.1640 - val_accuracy: 0.9031 - val_pearson_correlation: 0.5765 - val_euclidean_distance: 0.2576 Epoch 50/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0510 - mae: 0.1725 - accuracy: 0.8897 - pearson_correlation: 0.5475 - euclidean_distance: 0.2723 - val_loss: 0.0463 - val_mae: 0.1608 - val_accuracy: 0.9046 - val_pearson_correlation: 0.5774 - val_euclidean_distance: 0.2532 Epoch 51/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0493 - mae: 0.1709 - accuracy: 0.8882 - pearson_correlation: 0.5571 - euclidean_distance: 0.2695 - val_loss: 0.0446 - val_mae: 0.1569 - val_accuracy: 0.9046 - val_pearson_correlation: 0.5816 - val_euclidean_distance: 0.2478 Epoch 52/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0477 - mae: 0.1667 - accuracy: 0.8915 - pearson_correlation: 0.5624 - euclidean_distance: 0.2633 - val_loss: 0.0435 - val_mae: 0.1541 - val_accuracy: 0.9046 - val_pearson_correlation: 0.5812 - val_euclidean_distance: 0.2439 Epoch 53/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0467 - mae: 0.1651 - accuracy: 0.8915 - pearson_correlation: 0.5577 - euclidean_distance: 0.2603 - val_loss: 0.0427 - val_mae: 0.1531 - val_accuracy: 0.9031 - val_pearson_correlation: 0.5882 - val_euclidean_distance: 0.2422 Epoch 54/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0458 - mae: 0.1629 - accuracy: 0.8934 - pearson_correlation: 0.5590 - euclidean_distance: 0.2573 - val_loss: 0.0416 - val_mae: 0.1511 - val_accuracy: 0.9046 - val_pearson_correlation: 0.5933 - val_euclidean_distance: 0.2393 Epoch 55/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0439 - mae: 0.1583 - accuracy: 0.8996 - pearson_correlation: 0.5706 - euclidean_distance: 0.2510 - val_loss: 0.0404 - val_mae: 0.1479 - val_accuracy: 0.9046 - val_pearson_correlation: 0.5943 - val_euclidean_distance: 0.2346 Epoch 56/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0437 - mae: 0.1594 - accuracy: 0.9022 - pearson_correlation: 0.5734 - euclidean_distance: 0.2522 - val_loss: 0.0396 - val_mae: 0.1461 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6000 - val_euclidean_distance: 0.2318 Epoch 57/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0434 - mae: 0.1584 - accuracy: 0.9011 - pearson_correlation: 0.5646 - euclidean_distance: 0.2511 - val_loss: 0.0385 - val_mae: 0.1434 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6024 - val_euclidean_distance: 0.2282 Epoch 58/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0411 - mae: 0.1529 - accuracy: 0.9011 - pearson_correlation: 0.5795 - euclidean_distance: 0.2423 - val_loss: 0.0378 - val_mae: 0.1420 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6054 - val_euclidean_distance: 0.2261 Epoch 59/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0407 - mae: 0.1527 - accuracy: 0.9029 - pearson_correlation: 0.5776 - euclidean_distance: 0.2414 - val_loss: 0.0369 - val_mae: 0.1394 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6061 - val_euclidean_distance: 0.2225 Epoch 60/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0412 - mae: 0.1522 - accuracy: 0.8982 - pearson_correlation: 0.5731 - euclidean_distance: 0.2421 - val_loss: 0.0358 - val_mae: 0.1365 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6101 - val_euclidean_distance: 0.2183 Epoch 61/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0392 - mae: 0.1496 - accuracy: 0.9033 - pearson_correlation: 0.5805 - euclidean_distance: 0.2373 - val_loss: 0.0355 - val_mae: 0.1356 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6110 - val_euclidean_distance: 0.2173 Epoch 62/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0382 - mae: 0.1462 - accuracy: 0.9085 - pearson_correlation: 0.5864 - euclidean_distance: 0.2315 - val_loss: 0.0347 - val_mae: 0.1334 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6174 - val_euclidean_distance: 0.2139 Epoch 63/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0373 - mae: 0.1437 - accuracy: 0.9099 - pearson_correlation: 0.5871 - euclidean_distance: 0.2286 - val_loss: 0.0340 - val_mae: 0.1316 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6176 - val_euclidean_distance: 0.2114 Epoch 64/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0378 - mae: 0.1455 - accuracy: 0.9044 - pearson_correlation: 0.5854 - euclidean_distance: 0.2313 - val_loss: 0.0335 - val_mae: 0.1301 - val_accuracy: 0.9046 - val_pearson_correlation: 0.6186 - val_euclidean_distance: 0.2094 Epoch 65/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0369 - mae: 0.1425 - accuracy: 0.9022 - pearson_correlation: 0.5917 - euclidean_distance: 0.2260 - val_loss: 0.0327 - val_mae: 0.1280 - val_accuracy: 0.9075 - val_pearson_correlation: 0.6226 - val_euclidean_distance: 0.2059 Epoch 66/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0352 - mae: 0.1397 - accuracy: 0.9114 - pearson_correlation: 0.6045 - euclidean_distance: 0.2216 - val_loss: 0.0323 - val_mae: 0.1271 - val_accuracy: 0.9090 - val_pearson_correlation: 0.6251 - val_euclidean_distance: 0.2044 Epoch 67/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0357 - mae: 0.1395 - accuracy: 0.9055 - pearson_correlation: 0.5890 - euclidean_distance: 0.2230 - val_loss: 0.0318 - val_mae: 0.1259 - val_accuracy: 0.9119 - val_pearson_correlation: 0.6291 - val_euclidean_distance: 0.2024 Epoch 68/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0347 - mae: 0.1385 - accuracy: 0.9121 - pearson_correlation: 0.6015 - euclidean_distance: 0.2196 - val_loss: 0.0312 - val_mae: 0.1239 - val_accuracy: 0.9134 - val_pearson_correlation: 0.6287 - val_euclidean_distance: 0.1998 Epoch 69/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0339 - mae: 0.1362 - accuracy: 0.9143 - pearson_correlation: 0.5990 - euclidean_distance: 0.2167 - val_loss: 0.0308 - val_mae: 0.1228 - val_accuracy: 0.9178 - val_pearson_correlation: 0.6321 - val_euclidean_distance: 0.1981 Epoch 70/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0337 - mae: 0.1349 - accuracy: 0.9169 - pearson_correlation: 0.5990 - euclidean_distance: 0.2148 - val_loss: 0.0303 - val_mae: 0.1219 - val_accuracy: 0.9192 - val_pearson_correlation: 0.6352 - val_euclidean_distance: 0.1965 Epoch 71/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0329 - mae: 0.1338 - accuracy: 0.9169 - pearson_correlation: 0.6036 - euclidean_distance: 0.2130 - val_loss: 0.0300 - val_mae: 0.1206 - val_accuracy: 0.9192 - val_pearson_correlation: 0.6372 - val_euclidean_distance: 0.1945 Epoch 72/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0332 - mae: 0.1346 - accuracy: 0.9191 - pearson_correlation: 0.5990 - euclidean_distance: 0.2137 - val_loss: 0.0296 - val_mae: 0.1190 - val_accuracy: 0.9192 - val_pearson_correlation: 0.6376 - val_euclidean_distance: 0.1921 Epoch 73/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0311 - mae: 0.1298 - accuracy: 0.9191 - pearson_correlation: 0.6264 - euclidean_distance: 0.2062 - val_loss: 0.0290 - val_mae: 0.1174 - val_accuracy: 0.9192 - val_pearson_correlation: 0.6395 - val_euclidean_distance: 0.1899 Epoch 74/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0321 - mae: 0.1311 - accuracy: 0.9173 - pearson_correlation: 0.6039 - euclidean_distance: 0.2086 - val_loss: 0.0287 - val_mae: 0.1165 - val_accuracy: 0.9192 - val_pearson_correlation: 0.6417 - val_euclidean_distance: 0.1882 Epoch 75/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0306 - mae: 0.1291 - accuracy: 0.9228 - pearson_correlation: 0.6217 - euclidean_distance: 0.2053 - val_loss: 0.0285 - val_mae: 0.1159 - val_accuracy: 0.9236 - val_pearson_correlation: 0.6438 - val_euclidean_distance: 0.1870 Epoch 76/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0311 - mae: 0.1293 - accuracy: 0.9169 - pearson_correlation: 0.6078 - euclidean_distance: 0.2057 - val_loss: 0.0281 - val_mae: 0.1145 - val_accuracy: 0.9236 - val_pearson_correlation: 0.6443 - val_euclidean_distance: 0.1854 Epoch 77/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0311 - mae: 0.1287 - accuracy: 0.9287 - pearson_correlation: 0.6107 - euclidean_distance: 0.2041 - val_loss: 0.0277 - val_mae: 0.1130 - val_accuracy: 0.9236 - val_pearson_correlation: 0.6470 - val_euclidean_distance: 0.1829 Epoch 78/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0307 - mae: 0.1279 - accuracy: 0.9261 - pearson_correlation: 0.6146 - euclidean_distance: 0.2036 - val_loss: 0.0275 - val_mae: 0.1126 - val_accuracy: 0.9266 - val_pearson_correlation: 0.6474 - val_euclidean_distance: 0.1821 Epoch 79/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0293 - mae: 0.1257 - accuracy: 0.9250 - pearson_correlation: 0.6237 - euclidean_distance: 0.1997 - val_loss: 0.0271 - val_mae: 0.1112 - val_accuracy: 0.9310 - val_pearson_correlation: 0.6512 - val_euclidean_distance: 0.1799 Epoch 80/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0303 - mae: 0.1271 - accuracy: 0.9268 - pearson_correlation: 0.6186 - euclidean_distance: 0.2022 - val_loss: 0.0269 - val_mae: 0.1106 - val_accuracy: 0.9266 - val_pearson_correlation: 0.6524 - val_euclidean_distance: 0.1786 Epoch 81/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0297 - mae: 0.1259 - accuracy: 0.9235 - pearson_correlation: 0.6160 - euclidean_distance: 0.2001 - val_loss: 0.0266 - val_mae: 0.1098 - val_accuracy: 0.9266 - val_pearson_correlation: 0.6535 - val_euclidean_distance: 0.1774 Epoch 82/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0300 - mae: 0.1256 - accuracy: 0.9261 - pearson_correlation: 0.6151 - euclidean_distance: 0.2005 - val_loss: 0.0266 - val_mae: 0.1099 - val_accuracy: 0.9295 - val_pearson_correlation: 0.6545 - val_euclidean_distance: 0.1771 Epoch 83/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0292 - mae: 0.1244 - accuracy: 0.9265 - pearson_correlation: 0.6184 - euclidean_distance: 0.1980 - val_loss: 0.0262 - val_mae: 0.1084 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6557 - val_euclidean_distance: 0.1751 Epoch 84/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0287 - mae: 0.1243 - accuracy: 0.9312 - pearson_correlation: 0.6241 - euclidean_distance: 0.1970 - val_loss: 0.0259 - val_mae: 0.1072 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6573 - val_euclidean_distance: 0.1733 Epoch 85/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0286 - mae: 0.1230 - accuracy: 0.9276 - pearson_correlation: 0.6220 - euclidean_distance: 0.1961 - val_loss: 0.0255 - val_mae: 0.1063 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6589 - val_euclidean_distance: 0.1715 Epoch 86/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0276 - mae: 0.1200 - accuracy: 0.9298 - pearson_correlation: 0.6302 - euclidean_distance: 0.1911 - val_loss: 0.0253 - val_mae: 0.1055 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6611 - val_euclidean_distance: 0.1708 Epoch 87/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0281 - mae: 0.1213 - accuracy: 0.9305 - pearson_correlation: 0.6211 - euclidean_distance: 0.1932 - val_loss: 0.0253 - val_mae: 0.1061 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6636 - val_euclidean_distance: 0.1714 Epoch 88/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0276 - mae: 0.1201 - accuracy: 0.9290 - pearson_correlation: 0.6253 - euclidean_distance: 0.1913 - val_loss: 0.0250 - val_mae: 0.1046 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6639 - val_euclidean_distance: 0.1689 Epoch 89/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0278 - mae: 0.1207 - accuracy: 0.9305 - pearson_correlation: 0.6244 - euclidean_distance: 0.1923 - val_loss: 0.0248 - val_mae: 0.1040 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6647 - val_euclidean_distance: 0.1677 Epoch 90/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0270 - mae: 0.1189 - accuracy: 0.9375 - pearson_correlation: 0.6296 - euclidean_distance: 0.1890 - val_loss: 0.0245 - val_mae: 0.1031 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6655 - val_euclidean_distance: 0.1663 Epoch 91/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0273 - mae: 0.1190 - accuracy: 0.9320 - pearson_correlation: 0.6296 - euclidean_distance: 0.1894 - val_loss: 0.0243 - val_mae: 0.1026 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6655 - val_euclidean_distance: 0.1656 Epoch 92/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0269 - mae: 0.1184 - accuracy: 0.9327 - pearson_correlation: 0.6303 - euclidean_distance: 0.1884 - val_loss: 0.0242 - val_mae: 0.1019 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6674 - val_euclidean_distance: 0.1643 Epoch 93/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0272 - mae: 0.1183 - accuracy: 0.9309 - pearson_correlation: 0.6294 - euclidean_distance: 0.1884 - val_loss: 0.0239 - val_mae: 0.1008 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6698 - val_euclidean_distance: 0.1627 Epoch 94/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0263 - mae: 0.1166 - accuracy: 0.9338 - pearson_correlation: 0.6397 - euclidean_distance: 0.1851 - val_loss: 0.0238 - val_mae: 0.1007 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6708 - val_euclidean_distance: 0.1622 Epoch 95/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0269 - mae: 0.1172 - accuracy: 0.9324 - pearson_correlation: 0.6234 - euclidean_distance: 0.1870 - val_loss: 0.0237 - val_mae: 0.1006 - val_accuracy: 0.9325 - val_pearson_correlation: 0.6712 - val_euclidean_distance: 0.1622 Epoch 96/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0267 - mae: 0.1162 - accuracy: 0.9290 - pearson_correlation: 0.6293 - euclidean_distance: 0.1856 - val_loss: 0.0233 - val_mae: 0.0994 - val_accuracy: 0.9354 - val_pearson_correlation: 0.6733 - val_euclidean_distance: 0.1600 Epoch 97/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0251 - mae: 0.1118 - accuracy: 0.9360 - pearson_correlation: 0.6474 - euclidean_distance: 0.1787 - val_loss: 0.0234 - val_mae: 0.0996 - val_accuracy: 0.9354 - val_pearson_correlation: 0.6736 - val_euclidean_distance: 0.1607 Epoch 98/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0258 - mae: 0.1140 - accuracy: 0.9320 - pearson_correlation: 0.6375 - euclidean_distance: 0.1810 - val_loss: 0.0233 - val_mae: 0.0991 - val_accuracy: 0.9354 - val_pearson_correlation: 0.6752 - val_euclidean_distance: 0.1600 Epoch 99/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0252 - mae: 0.1131 - accuracy: 0.9346 - pearson_correlation: 0.6433 - euclidean_distance: 0.1795 - val_loss: 0.0231 - val_mae: 0.0984 - val_accuracy: 0.9354 - val_pearson_correlation: 0.6757 - val_euclidean_distance: 0.1587 Epoch 100/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0261 - mae: 0.1151 - accuracy: 0.9324 - pearson_correlation: 0.6312 - euclidean_distance: 0.1835 - val_loss: 0.0230 - val_mae: 0.0980 - val_accuracy: 0.9369 - val_pearson_correlation: 0.6774 - val_euclidean_distance: 0.1581 Epoch 101/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0249 - mae: 0.1132 - accuracy: 0.9386 - pearson_correlation: 0.6447 - euclidean_distance: 0.1798 - val_loss: 0.0228 - val_mae: 0.0973 - val_accuracy: 0.9398 - val_pearson_correlation: 0.6793 - val_euclidean_distance: 0.1571 Epoch 102/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0247 - mae: 0.1108 - accuracy: 0.9368 - pearson_correlation: 0.6436 - euclidean_distance: 0.1770 - val_loss: 0.0227 - val_mae: 0.0968 - val_accuracy: 0.9354 - val_pearson_correlation: 0.6798 - val_euclidean_distance: 0.1565 Epoch 103/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0242 - mae: 0.1102 - accuracy: 0.9386 - pearson_correlation: 0.6540 - euclidean_distance: 0.1757 - val_loss: 0.0224 - val_mae: 0.0961 - val_accuracy: 0.9369 - val_pearson_correlation: 0.6800 - val_euclidean_distance: 0.1553 Epoch 104/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0256 - mae: 0.1128 - accuracy: 0.9368 - pearson_correlation: 0.6365 - euclidean_distance: 0.1799 - val_loss: 0.0224 - val_mae: 0.0959 - val_accuracy: 0.9383 - val_pearson_correlation: 0.6809 - val_euclidean_distance: 0.1550 Epoch 105/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0247 - mae: 0.1103 - accuracy: 0.9364 - pearson_correlation: 0.6467 - euclidean_distance: 0.1757 - val_loss: 0.0223 - val_mae: 0.0956 - val_accuracy: 0.9398 - val_pearson_correlation: 0.6810 - val_euclidean_distance: 0.1545 Epoch 106/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0242 - mae: 0.1113 - accuracy: 0.9412 - pearson_correlation: 0.6540 - euclidean_distance: 0.1771 - val_loss: 0.0222 - val_mae: 0.0949 - val_accuracy: 0.9398 - val_pearson_correlation: 0.6835 - val_euclidean_distance: 0.1536 Epoch 107/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0246 - mae: 0.1112 - accuracy: 0.9368 - pearson_correlation: 0.6456 - euclidean_distance: 0.1768 - val_loss: 0.0221 - val_mae: 0.0948 - val_accuracy: 0.9398 - val_pearson_correlation: 0.6838 - val_euclidean_distance: 0.1535 Epoch 108/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0239 - mae: 0.1097 - accuracy: 0.9357 - pearson_correlation: 0.6479 - euclidean_distance: 0.1741 - val_loss: 0.0219 - val_mae: 0.0940 - val_accuracy: 0.9398 - val_pearson_correlation: 0.6847 - val_euclidean_distance: 0.1522 Epoch 109/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0243 - mae: 0.1105 - accuracy: 0.9404 - pearson_correlation: 0.6500 - euclidean_distance: 0.1758 - val_loss: 0.0219 - val_mae: 0.0939 - val_accuracy: 0.9398 - val_pearson_correlation: 0.6862 - val_euclidean_distance: 0.1523 Epoch 110/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0246 - mae: 0.1111 - accuracy: 0.9353 - pearson_correlation: 0.6421 - euclidean_distance: 0.1771 - val_loss: 0.0217 - val_mae: 0.0936 - val_accuracy: 0.9427 - val_pearson_correlation: 0.6869 - val_euclidean_distance: 0.1518 Epoch 111/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0238 - mae: 0.1087 - accuracy: 0.9404 - pearson_correlation: 0.6500 - euclidean_distance: 0.1731 - val_loss: 0.0216 - val_mae: 0.0930 - val_accuracy: 0.9427 - val_pearson_correlation: 0.6875 - val_euclidean_distance: 0.1506 Epoch 112/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0241 - mae: 0.1096 - accuracy: 0.9408 - pearson_correlation: 0.6466 - euclidean_distance: 0.1748 - val_loss: 0.0216 - val_mae: 0.0925 - val_accuracy: 0.9427 - val_pearson_correlation: 0.6885 - val_euclidean_distance: 0.1500 Epoch 113/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0236 - mae: 0.1083 - accuracy: 0.9441 - pearson_correlation: 0.6517 - euclidean_distance: 0.1724 - val_loss: 0.0215 - val_mae: 0.0924 - val_accuracy: 0.9427 - val_pearson_correlation: 0.6896 - val_euclidean_distance: 0.1499 Epoch 114/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0230 - mae: 0.1053 - accuracy: 0.9412 - pearson_correlation: 0.6588 - euclidean_distance: 0.1684 - val_loss: 0.0213 - val_mae: 0.0916 - val_accuracy: 0.9427 - val_pearson_correlation: 0.6907 - val_euclidean_distance: 0.1487 Epoch 115/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0230 - mae: 0.1064 - accuracy: 0.9390 - pearson_correlation: 0.6601 - euclidean_distance: 0.1697 - val_loss: 0.0213 - val_mae: 0.0918 - val_accuracy: 0.9427 - val_pearson_correlation: 0.6907 - val_euclidean_distance: 0.1490 Epoch 116/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0233 - mae: 0.1077 - accuracy: 0.9397 - pearson_correlation: 0.6585 - euclidean_distance: 0.1713 - val_loss: 0.0211 - val_mae: 0.0910 - val_accuracy: 0.9427 - val_pearson_correlation: 0.6934 - val_euclidean_distance: 0.1479 Epoch 117/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0232 - mae: 0.1075 - accuracy: 0.9430 - pearson_correlation: 0.6591 - euclidean_distance: 0.1709 - val_loss: 0.0211 - val_mae: 0.0910 - val_accuracy: 0.9427 - val_pearson_correlation: 0.6931 - val_euclidean_distance: 0.1478 Epoch 118/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0236 - mae: 0.1076 - accuracy: 0.9404 - pearson_correlation: 0.6543 - euclidean_distance: 0.1713 - val_loss: 0.0209 - val_mae: 0.0907 - val_accuracy: 0.9442 - val_pearson_correlation: 0.6917 - val_euclidean_distance: 0.1473 Epoch 119/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0233 - mae: 0.1077 - accuracy: 0.9434 - pearson_correlation: 0.6536 - euclidean_distance: 0.1707 - val_loss: 0.0207 - val_mae: 0.0901 - val_accuracy: 0.9442 - val_pearson_correlation: 0.6939 - val_euclidean_distance: 0.1461 Epoch 120/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0224 - mae: 0.1040 - accuracy: 0.9397 - pearson_correlation: 0.6624 - euclidean_distance: 0.1659 - val_loss: 0.0207 - val_mae: 0.0898 - val_accuracy: 0.9442 - val_pearson_correlation: 0.6953 - val_euclidean_distance: 0.1458 Epoch 121/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0224 - mae: 0.1051 - accuracy: 0.9404 - pearson_correlation: 0.6666 - euclidean_distance: 0.1670 - val_loss: 0.0206 - val_mae: 0.0895 - val_accuracy: 0.9442 - val_pearson_correlation: 0.6965 - val_euclidean_distance: 0.1455 Epoch 122/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0233 - mae: 0.1069 - accuracy: 0.9419 - pearson_correlation: 0.6538 - euclidean_distance: 0.1704 - val_loss: 0.0206 - val_mae: 0.0891 - val_accuracy: 0.9442 - val_pearson_correlation: 0.6976 - val_euclidean_distance: 0.1447 Epoch 123/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0218 - mae: 0.1025 - accuracy: 0.9401 - pearson_correlation: 0.6678 - euclidean_distance: 0.1633 - val_loss: 0.0203 - val_mae: 0.0879 - val_accuracy: 0.9442 - val_pearson_correlation: 0.6987 - val_euclidean_distance: 0.1428 Epoch 124/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0227 - mae: 0.1057 - accuracy: 0.9441 - pearson_correlation: 0.6566 - euclidean_distance: 0.1681 - val_loss: 0.0203 - val_mae: 0.0883 - val_accuracy: 0.9457 - val_pearson_correlation: 0.6982 - val_euclidean_distance: 0.1434 Epoch 125/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0232 - mae: 0.1070 - accuracy: 0.9415 - pearson_correlation: 0.6498 - euclidean_distance: 0.1706 - val_loss: 0.0202 - val_mae: 0.0880 - val_accuracy: 0.9442 - val_pearson_correlation: 0.6998 - val_euclidean_distance: 0.1431 Epoch 126/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0221 - mae: 0.1026 - accuracy: 0.9415 - pearson_correlation: 0.6662 - euclidean_distance: 0.1637 - val_loss: 0.0201 - val_mae: 0.0876 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7007 - val_euclidean_distance: 0.1424 Epoch 127/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0224 - mae: 0.1034 - accuracy: 0.9460 - pearson_correlation: 0.6618 - euclidean_distance: 0.1658 - val_loss: 0.0201 - val_mae: 0.0880 - val_accuracy: 0.9457 - val_pearson_correlation: 0.6991 - val_euclidean_distance: 0.1430 Epoch 128/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0227 - mae: 0.1041 - accuracy: 0.9397 - pearson_correlation: 0.6573 - euclidean_distance: 0.1662 - val_loss: 0.0201 - val_mae: 0.0873 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7009 - val_euclidean_distance: 0.1420 Epoch 129/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0225 - mae: 0.1046 - accuracy: 0.9426 - pearson_correlation: 0.6597 - euclidean_distance: 0.1667 - val_loss: 0.0200 - val_mae: 0.0872 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7023 - val_euclidean_distance: 0.1418 Epoch 130/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0217 - mae: 0.1023 - accuracy: 0.9452 - pearson_correlation: 0.6675 - euclidean_distance: 0.1632 - val_loss: 0.0200 - val_mae: 0.0868 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7034 - val_euclidean_distance: 0.1413 Epoch 131/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0220 - mae: 0.1021 - accuracy: 0.9441 - pearson_correlation: 0.6653 - euclidean_distance: 0.1632 - val_loss: 0.0199 - val_mae: 0.0867 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7030 - val_euclidean_distance: 0.1413 Epoch 132/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0222 - mae: 0.1036 - accuracy: 0.9463 - pearson_correlation: 0.6647 - euclidean_distance: 0.1650 - val_loss: 0.0197 - val_mae: 0.0858 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7050 - val_euclidean_distance: 0.1399 Epoch 133/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0218 - mae: 0.1025 - accuracy: 0.9438 - pearson_correlation: 0.6658 - euclidean_distance: 0.1637 - val_loss: 0.0198 - val_mae: 0.0864 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7027 - val_euclidean_distance: 0.1406 Epoch 134/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0224 - mae: 0.1034 - accuracy: 0.9386 - pearson_correlation: 0.6554 - euclidean_distance: 0.1649 - val_loss: 0.0197 - val_mae: 0.0858 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7059 - val_euclidean_distance: 0.1397 Epoch 135/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0217 - mae: 0.1023 - accuracy: 0.9467 - pearson_correlation: 0.6678 - euclidean_distance: 0.1625 - val_loss: 0.0196 - val_mae: 0.0855 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7053 - val_euclidean_distance: 0.1391 Epoch 136/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0216 - mae: 0.1032 - accuracy: 0.9452 - pearson_correlation: 0.6643 - euclidean_distance: 0.1639 - val_loss: 0.0196 - val_mae: 0.0863 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7063 - val_euclidean_distance: 0.1404 Epoch 137/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0210 - mae: 0.0991 - accuracy: 0.9434 - pearson_correlation: 0.6745 - euclidean_distance: 0.1584 - val_loss: 0.0196 - val_mae: 0.0856 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7080 - val_euclidean_distance: 0.1392 Epoch 138/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0205 - mae: 0.0987 - accuracy: 0.9471 - pearson_correlation: 0.6835 - euclidean_distance: 0.1578 - val_loss: 0.0195 - val_mae: 0.0849 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7084 - val_euclidean_distance: 0.1379 Epoch 139/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0209 - mae: 0.1005 - accuracy: 0.9456 - pearson_correlation: 0.6851 - euclidean_distance: 0.1608 - val_loss: 0.0194 - val_mae: 0.0847 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7084 - val_euclidean_distance: 0.1374 Epoch 140/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0206 - mae: 0.0998 - accuracy: 0.9460 - pearson_correlation: 0.6820 - euclidean_distance: 0.1589 - val_loss: 0.0193 - val_mae: 0.0846 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7095 - val_euclidean_distance: 0.1375 Epoch 141/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0206 - mae: 0.0992 - accuracy: 0.9463 - pearson_correlation: 0.6819 - euclidean_distance: 0.1589 - val_loss: 0.0193 - val_mae: 0.0842 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7083 - val_euclidean_distance: 0.1370 Epoch 142/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0211 - mae: 0.0997 - accuracy: 0.9460 - pearson_correlation: 0.6727 - euclidean_distance: 0.1593 - val_loss: 0.0192 - val_mae: 0.0842 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7093 - val_euclidean_distance: 0.1371 Epoch 143/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0220 - mae: 0.1023 - accuracy: 0.9467 - pearson_correlation: 0.6644 - euclidean_distance: 0.1633 - val_loss: 0.0191 - val_mae: 0.0837 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7096 - val_euclidean_distance: 0.1365 Epoch 144/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0212 - mae: 0.0992 - accuracy: 0.9478 - pearson_correlation: 0.6744 - euclidean_distance: 0.1591 - val_loss: 0.0191 - val_mae: 0.0840 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7102 - val_euclidean_distance: 0.1366 Epoch 145/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0208 - mae: 0.0990 - accuracy: 0.9434 - pearson_correlation: 0.6744 - euclidean_distance: 0.1580 - val_loss: 0.0189 - val_mae: 0.0832 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7112 - val_euclidean_distance: 0.1352 Epoch 146/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0207 - mae: 0.0987 - accuracy: 0.9471 - pearson_correlation: 0.6777 - euclidean_distance: 0.1566 - val_loss: 0.0189 - val_mae: 0.0828 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7128 - val_euclidean_distance: 0.1347 Epoch 147/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0203 - mae: 0.0979 - accuracy: 0.9463 - pearson_correlation: 0.6828 - euclidean_distance: 0.1563 - val_loss: 0.0189 - val_mae: 0.0830 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7123 - val_euclidean_distance: 0.1349 Epoch 148/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0205 - mae: 0.0988 - accuracy: 0.9474 - pearson_correlation: 0.6813 - euclidean_distance: 0.1573 - val_loss: 0.0189 - val_mae: 0.0831 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7130 - val_euclidean_distance: 0.1355 Epoch 149/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0211 - mae: 0.0998 - accuracy: 0.9449 - pearson_correlation: 0.6722 - euclidean_distance: 0.1596 - val_loss: 0.0188 - val_mae: 0.0822 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7141 - val_euclidean_distance: 0.1342 Epoch 150/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0206 - mae: 0.0992 - accuracy: 0.9460 - pearson_correlation: 0.6796 - euclidean_distance: 0.1577 - val_loss: 0.0187 - val_mae: 0.0821 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7134 - val_euclidean_distance: 0.1339 Epoch 151/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0205 - mae: 0.0985 - accuracy: 0.9452 - pearson_correlation: 0.6770 - euclidean_distance: 0.1572 - val_loss: 0.0187 - val_mae: 0.0823 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7136 - val_euclidean_distance: 0.1343 Epoch 152/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0209 - mae: 0.0995 - accuracy: 0.9438 - pearson_correlation: 0.6734 - euclidean_distance: 0.1586 - val_loss: 0.0187 - val_mae: 0.0819 - val_accuracy: 0.9457 - val_pearson_correlation: 0.7145 - val_euclidean_distance: 0.1335 Epoch 153/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0214 - mae: 0.1002 - accuracy: 0.9460 - pearson_correlation: 0.6654 - euclidean_distance: 0.1597 - val_loss: 0.0185 - val_mae: 0.0815 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7163 - val_euclidean_distance: 0.1329 Epoch 154/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0204 - mae: 0.0989 - accuracy: 0.9456 - pearson_correlation: 0.6799 - euclidean_distance: 0.1572 - val_loss: 0.0186 - val_mae: 0.0818 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7159 - val_euclidean_distance: 0.1337 Epoch 155/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0205 - mae: 0.0992 - accuracy: 0.9467 - pearson_correlation: 0.6787 - euclidean_distance: 0.1579 - val_loss: 0.0185 - val_mae: 0.0816 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7176 - val_euclidean_distance: 0.1330 Epoch 156/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0196 - mae: 0.0965 - accuracy: 0.9482 - pearson_correlation: 0.6881 - euclidean_distance: 0.1537 - val_loss: 0.0184 - val_mae: 0.0813 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7171 - val_euclidean_distance: 0.1323 Epoch 157/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0199 - mae: 0.0966 - accuracy: 0.9474 - pearson_correlation: 0.6883 - euclidean_distance: 0.1542 - val_loss: 0.0183 - val_mae: 0.0805 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7177 - val_euclidean_distance: 0.1314 Epoch 158/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0208 - mae: 0.1000 - accuracy: 0.9456 - pearson_correlation: 0.6757 - euclidean_distance: 0.1595 - val_loss: 0.0184 - val_mae: 0.0816 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7190 - val_euclidean_distance: 0.1331 Epoch 159/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0203 - mae: 0.0976 - accuracy: 0.9471 - pearson_correlation: 0.6814 - euclidean_distance: 0.1555 - val_loss: 0.0183 - val_mae: 0.0810 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7185 - val_euclidean_distance: 0.1321 Epoch 160/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0200 - mae: 0.0970 - accuracy: 0.9441 - pearson_correlation: 0.6869 - euclidean_distance: 0.1545 - val_loss: 0.0183 - val_mae: 0.0804 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7196 - val_euclidean_distance: 0.1311 Epoch 161/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0198 - mae: 0.0958 - accuracy: 0.9485 - pearson_correlation: 0.6875 - euclidean_distance: 0.1527 - val_loss: 0.0182 - val_mae: 0.0804 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7203 - val_euclidean_distance: 0.1309 Epoch 162/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0197 - mae: 0.0948 - accuracy: 0.9489 - pearson_correlation: 0.6854 - euclidean_distance: 0.1519 - val_loss: 0.0181 - val_mae: 0.0803 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7209 - val_euclidean_distance: 0.1309 Epoch 163/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0194 - mae: 0.0959 - accuracy: 0.9489 - pearson_correlation: 0.6885 - euclidean_distance: 0.1527 - val_loss: 0.0181 - val_mae: 0.0802 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7213 - val_euclidean_distance: 0.1308 Epoch 164/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0197 - mae: 0.0961 - accuracy: 0.9518 - pearson_correlation: 0.6877 - euclidean_distance: 0.1531 - val_loss: 0.0181 - val_mae: 0.0799 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7213 - val_euclidean_distance: 0.1302 Epoch 165/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0191 - mae: 0.0947 - accuracy: 0.9467 - pearson_correlation: 0.6954 - euclidean_distance: 0.1511 - val_loss: 0.0181 - val_mae: 0.0796 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7219 - val_euclidean_distance: 0.1297 Epoch 166/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0194 - mae: 0.0954 - accuracy: 0.9478 - pearson_correlation: 0.6895 - euclidean_distance: 0.1524 - val_loss: 0.0181 - val_mae: 0.0799 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7224 - val_euclidean_distance: 0.1302 Epoch 167/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0190 - mae: 0.0934 - accuracy: 0.9452 - pearson_correlation: 0.6973 - euclidean_distance: 0.1493 - val_loss: 0.0179 - val_mae: 0.0793 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7223 - val_euclidean_distance: 0.1291 Epoch 168/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0199 - mae: 0.0959 - accuracy: 0.9467 - pearson_correlation: 0.6848 - euclidean_distance: 0.1531 - val_loss: 0.0179 - val_mae: 0.0793 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7232 - val_euclidean_distance: 0.1293 Epoch 169/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0193 - mae: 0.0949 - accuracy: 0.9500 - pearson_correlation: 0.6927 - euclidean_distance: 0.1515 - val_loss: 0.0180 - val_mae: 0.0800 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7229 - val_euclidean_distance: 0.1301 Epoch 170/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0189 - mae: 0.0935 - accuracy: 0.9500 - pearson_correlation: 0.6977 - euclidean_distance: 0.1492 - val_loss: 0.0180 - val_mae: 0.0792 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7222 - val_euclidean_distance: 0.1289 Epoch 171/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0201 - mae: 0.0966 - accuracy: 0.9474 - pearson_correlation: 0.6817 - euclidean_distance: 0.1541 - val_loss: 0.0179 - val_mae: 0.0791 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7237 - val_euclidean_distance: 0.1289 Epoch 172/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0194 - mae: 0.0943 - accuracy: 0.9471 - pearson_correlation: 0.6926 - euclidean_distance: 0.1504 - val_loss: 0.0178 - val_mae: 0.0787 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7238 - val_euclidean_distance: 0.1282 Epoch 173/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0198 - mae: 0.0961 - accuracy: 0.9485 - pearson_correlation: 0.6845 - euclidean_distance: 0.1535 - val_loss: 0.0178 - val_mae: 0.0787 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7242 - val_euclidean_distance: 0.1282 Epoch 174/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0190 - mae: 0.0941 - accuracy: 0.9485 - pearson_correlation: 0.6985 - euclidean_distance: 0.1496 - val_loss: 0.0177 - val_mae: 0.0783 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7241 - val_euclidean_distance: 0.1275 Epoch 175/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0194 - mae: 0.0943 - accuracy: 0.9485 - pearson_correlation: 0.6894 - euclidean_distance: 0.1506 - val_loss: 0.0176 - val_mae: 0.0776 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7255 - val_euclidean_distance: 0.1265 Epoch 176/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0188 - mae: 0.0929 - accuracy: 0.9504 - pearson_correlation: 0.6992 - euclidean_distance: 0.1479 - val_loss: 0.0176 - val_mae: 0.0777 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7251 - val_euclidean_distance: 0.1266 Epoch 177/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0196 - mae: 0.0951 - accuracy: 0.9507 - pearson_correlation: 0.6948 - euclidean_distance: 0.1517 - val_loss: 0.0176 - val_mae: 0.0779 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7256 - val_euclidean_distance: 0.1270 Epoch 178/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0188 - mae: 0.0938 - accuracy: 0.9478 - pearson_correlation: 0.6940 - euclidean_distance: 0.1496 - val_loss: 0.0175 - val_mae: 0.0777 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7264 - val_euclidean_distance: 0.1268 Epoch 179/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0198 - mae: 0.0966 - accuracy: 0.9482 - pearson_correlation: 0.6853 - euclidean_distance: 0.1539 - val_loss: 0.0175 - val_mae: 0.0777 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7269 - val_euclidean_distance: 0.1265 Epoch 180/350 182/182 [==============================] - 0s 1ms/step - loss: 0.0195 - mae: 0.0946 - accuracy: 0.9474 - pearson_correlation: 0.6847 - euclidean_distance: 0.1510 - val_loss: 0.0175 - val_mae: 0.0778 - val_accuracy: 0.9471 - val_pearson_correlation: 0.7270 - val_euclidean_distance: 0.1266
Training and validation Loss graph
plt.plot(history.history['loss'], label='Training Loss')
plt.plot(history.history['val_loss'], label='Validation Loss')
plt.title('Training and Validation Loss')
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.legend()
<matplotlib.legend.Legend at 0x7fa2825fd3d0>
Training and validation Accuracy graph
plt.plot(history.history['accuracy'], label='Training Accuracy')
plt.plot(history.history['val_accuracy'], label='Validation Accuracy')
plt.title('Training and Validation Accuracy')
plt.xlabel('Epoch')
plt.ylabel('Accuracy')
plt.legend()
<matplotlib.legend.Legend at 0x7fa2825a9340>
Training and validation Mean Absolute Error graph
plt.plot(history.history['pearson_correlation'], label='Training MAE')
plt.plot(history.history['val_pearson_correlation'], label='Validation MAE')
plt.title('Training and Validation MAE')
plt.xlabel('Epoch')
plt.ylabel('MAE')
plt.legend()
<matplotlib.legend.Legend at 0x7fa2c35643d0>
Evaluating the scores
score = model.evaluate(X_test[cols_X],Y_test[cols_Y])
print('Test loss:', score[0])
print('Test mae:', score[1])
print('Test accuracy:', score[2])
print('Test pearson corr:', score[3])
print('Test eucledian distance:', score[4])
27/27 [==============================] - 0s 619us/step - loss: 0.0175 - mae: 0.0791 - accuracy: 0.9365 - pearson_correlation: 0.7078 - euclidean_distance: 0.1290 Test loss: 0.01747198775410652 Test mae: 0.07911711931228638 Test accuracy: 0.9365452527999878 Test pearson corr: 0.7078430652618408 Test eucledian distance: 0.12900227308273315
embedding_model = Model(inputs=model.input, outputs=model.layers[-2].output)
train_embeddings = embedding_model.predict(X_train[cols_X])
107/107 [==============================] - 0s 507us/step
train_embeddings.shape
(3401, 16)
knr_events = KNeighborsRegressor(n_neighbors=5,algorithm='auto')
knr_events.fit(train_embeddings, Y_train[cols_Y])
KNeighborsRegressor()In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
KNeighborsRegressor()
The test embeddings are predicted using the embedding model
test_embeddings = embedding_model.predict(X_test[cols_X])
27/27 [==============================] - 0s 517us/step
Obtaining the neighbors and neighbors' locations(locations for specific category of event) for test embeddings and finding the number of times the top locations were selected for a given event. If the test embedding's category does not match with the neigbour category then that neighbor is removed.
predicted={'Latitude Transformed':[],'Longitude Transformed':[]}
neighbour_dict={'Category':[],'Latitude':[],'Longitude':[],'Latitude Transformed':[],'Longitude Transformed':[],'Location':[]}
distances, indices = knr_events.kneighbors(test_embeddings)
count_dict={}
for i in range(len(test_embeddings)):
per=0
neighbor_indices = indices[i]
#Using the minimum distance neighbour as the "predicted" location
min_d=min(distances[i])
min_ind=np.where(distances[i]==min_d)[0][0]
predicted['Latitude Transformed'].append(Y_train.iloc[neighbor_indices[min_ind]]['Latitude Transformed'])
predicted['Longitude Transformed'].append(Y_train.iloc[neighbor_indices[min_ind]]['Longitude Transformed'])
for j in neighbor_indices:
neighbour_point=X_train.iloc[j]
if neighbour_point['Category']==X_test.iloc[i]['Category']:
category=neighbour_point['Category']
loc=neighbour_point['Location']
neighbour_dict['Category'].append(category)
neighbour_dict['Latitude'].append(Y_train.iloc[j]['Latitude'])
neighbour_dict['Longitude'].append(Y_train.iloc[j]['Longitude'])
neighbour_dict['Latitude Transformed'].append(Y_train.iloc[j]['Latitude Transformed'])
neighbour_dict['Longitude Transformed'].append(Y_train.iloc[j]['Longitude Transformed'])
neighbour_dict['Location'].append(loc)
if loc in top_locations[category]:
per+=1
if category not in count_dict:
count_dict[category]=[(per/5)*100]
else:
count_dict[category].append((per/5)*100)
print("The top locations were selected on average: ")
for i,j in count_dict.items():
avg=round(sum(j)/len(j),2)
percentage_in_train=round(X_train['Category'].value_counts().loc[i]/len(X_train)*100,2)
variation=sum(location_counts['Category']==i)
print(f"{avg}% of times under {i}-({percentage_in_train}%,{variation}) Category")
The top locations were selected on average: 52.0% of times under Filming - Student-(1.65%,35) Category 53.6% of times under Public Event - Parade-(2.47%,29) Category 34.18% of times under Public Event - Non Ticketed-(22.02%,122) Category 60.0% of times under Public Event - Cycling-(1.76%,25) Category 45.68% of times under Filming - TVC-(7.56%,96) Category 63.21% of times under Public Event - Run/Walk-(12.53%,47) Category 71.61% of times under Promotion-(12.91%,39) Category 98.96% of times under Wedding-(14.47%,12) Category 71.58% of times under Public Event - Memorial-(2.0%,23) Category 41.97% of times under Filming - TV Series-(6.23%,66) Category 50.45% of times under Public Event - Ticketed-(4.97%,58) Category 43.33% of times under Public Event - Low Impact Activity-(2.79%,49) Category 52.0% of times under Filming - Movie-(0.62%,15) Category 48.57% of times under Filming - Other-(1.09%,28) Category 68.89% of times under Public Event - Music-(1.26%,22) Category 55.0% of times under Public Event - Media Launch-(1.23%,28) Category 35.0% of times under Filming - Photo shoot-(3.35%,59) Category 90.0% of times under Filming - Unit Base-(0.91%,11) Category 20.0% of times under Public Event-(0.03%,2) Category
Using the predicted locations to calculate Mean squared error, Mean average error and Root mean suared error
predicted=pd.DataFrame(predicted)
mse = mean_squared_error(Y_test[cols_Y], predicted)
mae = mean_absolute_error(Y_test[cols_Y], predicted)
rmse = np.sqrt(mse)
print(mse)
print(mae)
print(rmse)
0.022022869527160302 0.06249238722949289 0.14840104287760347
Creating dataframe with five neighbour locations for each event category
neighbour_df=pd.DataFrame(neighbour_dict)
neighbour_df
| Category | Latitude | Longitude | Latitude Transformed | Longitude Transformed | Location | |
|---|---|---|---|---|---|---|
| 0 | Filming - Student | -37.816415 | 144.965438 | 0.666667 | 0.370806 | Centre Place, Melbourne, Australia |
| 1 | Filming - Student | -37.816917 | 144.965432 | 0.666667 | 0.370806 | Flinders Lane, Melbourne, Australia |
| 2 | Filming - Student | -37.825916 | 144.974386 | 0.666667 | 0.378818 | Kings Domain, Melbourne, Australia |
| 3 | Filming - Student | -37.812684 | 144.980505 | 0.666667 | 0.384326 | Fitzroy Gardens, Melbourne, Australia |
| 4 | Filming - Student | -37.825916 | 144.974386 | 0.666667 | 0.378818 | Kings Domain, Melbourne, Australia |
| ... | ... | ... | ... | ... | ... | ... |
| 4207 | Filming - TVC | -37.815161 | 144.956324 | 0.666667 | 0.362544 | Gresham Street, Melbourne, Australia |
| 4208 | Filming - TVC | -37.909338 | 144.759398 | 0.583333 | 0.185779 | Crombie Lane, Melbourne, Australia |
| 4209 | Filming - TVC | -37.817593 | 144.957723 | 0.666667 | 0.363796 | Church Lane, Melbourne, Australia |
| 4210 | Filming - TVC | -37.874613 | 144.790889 | 0.666667 | 0.214071 | Queen Street, Melbourne, Australia |
| 4211 | Filming - TVC | -37.815111 | 144.964045 | 0.666667 | 0.369554 | Little Collins Street, Melbourne, Australia |
4212 rows × 6 columns
Summary of FFNN and KNR
After splitting the dataset into 80% training and 20% testing, I used a FFNN to capture the underlying patterns within the dataset. The input featues are binary encoded event categories, start date(ordinal), end date(ordinal) and duration of events. After the input layer, the model has 2 dense layers with 64 units followed by a batch normalization, 2 dense layers with 32 units, 2 dense layers with 16 units and an output layer. LeakyReLU is used as an activation fucntion in all layers with alpha=0.1. Adadelta is used as an optimizer which automatically adjust learning rate. Mean Square Error is used as loss function and Accuracy, Mean Average Error along with two custom functions Pearson's correlation and Euclidean distance are used as metrics. The Pearson's correlation and Euclidean distance will help the model to learn and minimize the difference between predicted Longitude, Latitude and train Latitude, Longitude since these features contain precise decimal values. I used grid search to find optimal batch number and epoch which were 15 and 350. During training, I used Early Stopping with patience=5 to and used a validation set of 20% to stop the model from overfitting and monitor its learning progress. The test scores are Test loss: 0.017472, Test mae: 0.079117, Test accuracy: 0.936545, Test pearson corr: 0.707843 and Test eucledian distance: 0.129002. I built an embedding model to extract the data from the second last layer of the FFNN model. I fed the extracted training data to KNR so that I can learn the intricate underlying patters and find 5 neighbors. I used the trained KNR on the extracted test data to find neighbors for each test instance. The Longitude and Latitude of the neighbors will determine the top 5 Locations suitable for each test instance.
Parking¶
I carried out various data cleaning methods:
- Created Latitude and Longitude features from location column
- Corrected the skewness of data using Yeo Johnson power transformation
- Standardized the data to follow a Normal distribution
- Scaled the data using MinMax scaling
Nearest Neighbor(NN) model is trained on the parking dataset and later used on the Latitude and Longitude (transformed) columns of the above neighbour_df to find the closest 5 neighbor parking locations for each instance in neighbour_df.
parking_df.head()
| lastupdated | status_timestamp | zone_number | status_description | kerbsideid | location | |
|---|---|---|---|---|---|---|
| 0 | 2023-12-14T04:45:34+00:00 | 2023-12-14T03:41:25+00:00 | 7695.0 | Unoccupied | 22959 | -37.81844776554182, 144.95938672872117 |
| 1 | 2023-12-14T04:45:34+00:00 | 2023-12-13T06:21:58+00:00 | 7939.0 | Unoccupied | 10136 | -37.8099909364941, 144.95263753679632 |
| 2 | 2023-12-14T23:45:34+00:00 | 2023-12-14T23:35:02+00:00 | NaN | Unoccupied | 6527 | -37.81060096851364, 144.95642622505966 |
| 3 | 2023-12-14T23:45:34+00:00 | 2023-12-14T22:39:46+00:00 | NaN | Unoccupied | 6526 | -37.810581463657826, 144.95649292476088 |
| 4 | 2023-12-18T04:45:34+00:00 | 2023-12-17T23:47:54+00:00 | 7310.0 | Unoccupied | 6497 | -37.81044576734748, 144.95648958199024 |
parking_df.shape
(6246, 6)
parking_df.nunique()
lastupdated 40 status_timestamp 5429 zone_number 511 status_description 2 kerbsideid 6246 location 5875 dtype: int64
parking_lat=[]
parking_lon=[]
for i in parking_df['location']:
x,y=i.split(",")
parking_lat.append(float(x.strip()))
parking_lon.append(float(y.strip()))
parking_df['Latitude']=parking_lat
parking_df['Longitude']=parking_lon
parking_df.head()
| lastupdated | status_timestamp | zone_number | status_description | kerbsideid | location | Latitude | Longitude | |
|---|---|---|---|---|---|---|---|---|
| 0 | 2023-12-14T04:45:34+00:00 | 2023-12-14T03:41:25+00:00 | 7695.0 | Unoccupied | 22959 | -37.81844776554182, 144.95938672872117 | -37.818448 | 144.959387 |
| 1 | 2023-12-14T04:45:34+00:00 | 2023-12-13T06:21:58+00:00 | 7939.0 | Unoccupied | 10136 | -37.8099909364941, 144.95263753679632 | -37.809991 | 144.952638 |
| 2 | 2023-12-14T23:45:34+00:00 | 2023-12-14T23:35:02+00:00 | NaN | Unoccupied | 6527 | -37.81060096851364, 144.95642622505966 | -37.810601 | 144.956426 |
| 3 | 2023-12-14T23:45:34+00:00 | 2023-12-14T22:39:46+00:00 | NaN | Unoccupied | 6526 | -37.810581463657826, 144.95649292476088 | -37.810581 | 144.956493 |
| 4 | 2023-12-18T04:45:34+00:00 | 2023-12-17T23:47:54+00:00 | 7310.0 | Unoccupied | 6497 | -37.81044576734748, 144.95648958199024 | -37.810446 | 144.956490 |
parking_df.isna().sum()
lastupdated 0 status_timestamp 0 zone_number 487 status_description 0 kerbsideid 0 location 0 Latitude 0 Longitude 0 dtype: int64
Only keeping the Longitude and Latitude features
parking_df.drop(['kerbsideid','lastupdated','status_timestamp','status_description','zone_number','location'],axis=1,inplace=True)
parking_df.head()
| Latitude | Longitude | |
|---|---|---|
| 0 | -37.818448 | 144.959387 |
| 1 | -37.809991 | 144.952638 |
| 2 | -37.810601 | 144.956426 |
| 3 | -37.810581 | 144.956493 |
| 4 | -37.810446 | 144.956490 |
skewness = parking_df.skew()
# Print the skewness of each variable
print("Skewness of Variables:")
print(skewness)
Skewness of Variables: Latitude -0.944884 Longitude 0.140345 dtype: float64
Yeo Johnson power transformation is applied on neighbour_df and then parking dataset is transformed accordingly
pt = PowerTransformer(method='yeo-johnson')
pt.fit(neighbour_df[['Latitude','Longitude']])
nlatlon=pt.transform(neighbour_df[['Latitude','Longitude']])
nlatlon=pd.DataFrame(nlatlon,columns=['Latitude Transformed','Longitude Transformed'])
yeojohnson_val_X = pt.transform(parking_df[['Latitude','Longitude']])
parking_df[['Latitude Transformed','Longitude Transformed']]=yeojohnson_val_X
parking_df
| Latitude | Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|
| 0 | -37.818448 | 144.959387 | -2.775558e-17 | -2.914335e-15 |
| 1 | -37.809991 | 144.952638 | 1.110223e-16 | -3.469447e-15 |
| 2 | -37.810601 | 144.956426 | 1.110223e-16 | -3.164136e-15 |
| 3 | -37.810581 | 144.956493 | 1.110223e-16 | -3.164136e-15 |
| 4 | -37.810446 | 144.956490 | 1.110223e-16 | -3.164136e-15 |
| ... | ... | ... | ... | ... |
| 6241 | -37.817955 | 144.959346 | -2.775558e-17 | -2.914335e-15 |
| 6242 | -37.812099 | 144.963233 | 8.326673e-17 | -2.609024e-15 |
| 6243 | -37.811437 | 144.953101 | 1.110223e-16 | -3.413936e-15 |
| 6244 | -37.812044 | 144.962745 | 8.326673e-17 | -2.664535e-15 |
| 6245 | -37.815764 | 144.961886 | 2.775558e-17 | -2.720046e-15 |
6246 rows × 4 columns
skewness = parking_df[['Latitude','Longitude','Latitude Transformed','Longitude Transformed']].skew()
# Print the skewness of each variable
print("Skewness of Variables:")
print(skewness)
Skewness of Variables: Latitude -0.944884 Longitude 0.140345 Latitude Transformed 0.000000 Longitude Transformed 0.000000 dtype: float64
standard_scaler = StandardScaler()
standard_scaler.fit(nlatlon)
nlatlon[['Latitude Transformed','Longitude Transformed']]=standard_scaler.transform(nlatlon)
scaled=standard_scaler.transform(parking_df[['Latitude Transformed','Longitude Transformed']])
parking_df[['Latitude Transformed','Longitude Transformed']]=scaled
parking_df
| Latitude | Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|
| 0 | -37.818448 | 144.959387 | 0.006449 | -0.293109 |
| 1 | -37.809991 | 144.952638 | 0.125696 | -0.348543 |
| 2 | -37.810601 | 144.956426 | 0.125696 | -0.318054 |
| 3 | -37.810581 | 144.956493 | 0.125696 | -0.318054 |
| 4 | -37.810446 | 144.956490 | 0.125696 | -0.318054 |
| ... | ... | ... | ... | ... |
| 6241 | -37.817955 | 144.959346 | 0.006449 | -0.293109 |
| 6242 | -37.812099 | 144.963233 | 0.101847 | -0.262620 |
| 6243 | -37.811437 | 144.953101 | 0.125696 | -0.343000 |
| 6244 | -37.812044 | 144.962745 | 0.101847 | -0.268163 |
| 6245 | -37.815764 | 144.961886 | 0.054148 | -0.273707 |
6246 rows × 4 columns
minmax_scaler=MinMaxScaler()
minmax_scaler.fit(nlatlon)
nlatlon[['Latitude Transformed','Longitude Transformed']]=minmax_scaler.transform(nlatlon)
scaled = minmax_scaler.transform(parking_df[['Latitude Transformed','Longitude Transformed']])
parking_df[['Latitude Transformed','Longitude Transformed']]=scaled
parking_df
| Latitude | Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|
| 0 | -37.818448 | 144.959387 | 0.767677 | 0.365438 |
| 1 | -37.809991 | 144.952638 | 0.780303 | 0.359244 |
| 2 | -37.810601 | 144.956426 | 0.780303 | 0.362651 |
| 3 | -37.810581 | 144.956493 | 0.780303 | 0.362651 |
| 4 | -37.810446 | 144.956490 | 0.780303 | 0.362651 |
| ... | ... | ... | ... | ... |
| 6241 | -37.817955 | 144.959346 | 0.767677 | 0.365438 |
| 6242 | -37.812099 | 144.963233 | 0.777778 | 0.368845 |
| 6243 | -37.811437 | 144.953101 | 0.780303 | 0.359864 |
| 6244 | -37.812044 | 144.962745 | 0.777778 | 0.368225 |
| 6245 | -37.815764 | 144.961886 | 0.772727 | 0.367606 |
6246 rows × 4 columns
parking_df.head()
| Latitude | Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|
| 0 | -37.818448 | 144.959387 | 0.767677 | 0.365438 |
| 1 | -37.809991 | 144.952638 | 0.780303 | 0.359244 |
| 2 | -37.810601 | 144.956426 | 0.780303 | 0.362651 |
| 3 | -37.810581 | 144.956493 | 0.780303 | 0.362651 |
| 4 | -37.810446 | 144.956490 | 0.780303 | 0.362651 |
knn_model_parking = NearestNeighbors(n_neighbors=5, algorithm='auto')
knn_model_parking.fit(parking_df[['Latitude Transformed','Longitude Transformed']])
NearestNeighbors()In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
NearestNeighbors()
cols=['Latitude Transformed','Longitude Transformed']
distances, indices = knn_model_parking.kneighbors(neighbour_df[cols])
geolocator = Nominatim(user_agent="parking_locator",timeout=5)
parking_neighbour_dict={'Event Category':[],'Event Location':[],'Event Latitude':[],'Event Longitude':[],'Parking Location':[],'Parking Latitude':[],'Parking Longitude':[],'Latitude Transformed':[],'Longitude Transformed':[]}
for i in range(len(neighbour_df)):
neighbour_indices = indices[i]
for j in range(len(neighbour_indices)):
#Each neighbor point(parking spot) is obtained for every neighbour_scaled_df record
parking_neighbour=parking_df.iloc[neighbour_indices[j]]
parking_lat=parking_neighbour['Latitude']
parking_lon=parking_neighbour['Longitude']
if parking_lat in parking_neighbour_dict['Parking Latitude'] and parking_lon in parking_neighbour_dict['Parking Longitude']:
ind=parking_neighbour_dict['Parking Latitude'].index(parking_lat)
loc=parking_neighbour_dict['Parking Location'][ind]
parking_neighbour_dict['Parking Location'].append(loc)
else:
try:
location = geolocator.reverse((parking_lat, parking_lon), exactly_one=True)
if location:
parking_neighbour_dict['Parking Location'].append(location.address)
except Exception as e:
print(f"Error: {e}")
parking_neighbour_dict['Parking Latitude'].append(parking_lat)
parking_neighbour_dict['Parking Longitude'].append(parking_lon)
parking_neighbour_dict['Event Location'].append(neighbour_df['Location'].iloc[i])
parking_neighbour_dict['Event Category'].append(neighbour_df['Category'].iloc[i])
parking_neighbour_dict['Event Latitude'].append(neighbour_df['Latitude'].iloc[i])
parking_neighbour_dict['Event Longitude'].append(neighbour_df['Longitude'].iloc[i])
parking_neighbour_dict['Latitude Transformed'].append(neighbour_df['Latitude Transformed'].iloc[i])
parking_neighbour_dict['Longitude Transformed'].append(neighbour_df['Longitude Transformed'].iloc[i])
event_parking_df=pd.DataFrame(parking_neighbour_dict)
event_parking_df.head()
| Event Category | Event Location | Event Latitude | Event Longitude | Parking Location | Parking Latitude | Parking Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848006 | 144.982512 | 0.666667 | 0.370806 |
| 1 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.847990 | 144.982387 | 0.666667 | 0.370806 |
| 2 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.847998 | 144.982451 | 0.666667 | 0.370806 |
| 3 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | Wesley College St Kilda Road Campus, 567-581, ... | -37.848156 | 144.982835 | 0.666667 | 0.370806 |
| 4 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848068 | 144.983019 | 0.666667 | 0.370806 |
The event_parking_df contains the information of all events and the 8 most likely locations they should take place along with the 5 closest parking spot locations around each event.
event_parking_df.drop_duplicates(keep='first', inplace=True)
event_parking_df.tail(8)
| Event Category | Event Location | Event Latitude | Event Longitude | Parking Location | Parking Latitude | Parking Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|---|---|---|---|---|
| 20992 | Filming - TVC | Tattersalls Lane, Melbourne, Australia | -37.811895 | 144.965578 | 45, Moubray Street, Melbourne, City of Melbour... | -37.847998 | 144.982451 | 0.666667 | 0.370806 |
| 20993 | Filming - TVC | Tattersalls Lane, Melbourne, Australia | -37.811895 | 144.965578 | Wesley College St Kilda Road Campus, 567-581, ... | -37.848156 | 144.982835 | 0.666667 | 0.370806 |
| 20994 | Filming - TVC | Tattersalls Lane, Melbourne, Australia | -37.811895 | 144.965578 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848068 | 144.983019 | 0.666667 | 0.370806 |
| 21035 | Filming - TVC | Gresham Street, Melbourne, Australia | -37.815161 | 144.956324 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848006 | 144.982512 | 0.666667 | 0.362544 |
| 21036 | Filming - TVC | Gresham Street, Melbourne, Australia | -37.815161 | 144.956324 | 45, Moubray Street, Melbourne, City of Melbour... | -37.847990 | 144.982387 | 0.666667 | 0.362544 |
| 21037 | Filming - TVC | Gresham Street, Melbourne, Australia | -37.815161 | 144.956324 | 45, Moubray Street, Melbourne, City of Melbour... | -37.847998 | 144.982451 | 0.666667 | 0.362544 |
| 21038 | Filming - TVC | Gresham Street, Melbourne, Australia | -37.815161 | 144.956324 | Wesley College St Kilda Road Campus, 567-581, ... | -37.848156 | 144.982835 | 0.666667 | 0.362544 |
| 21039 | Filming - TVC | Gresham Street, Melbourne, Australia | -37.815161 | 144.956324 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848068 | 144.983019 | 0.666667 | 0.362544 |
event_parking_df.reset_index(drop=True,inplace=True)
event_parking_df.shape
(2755, 9)
def display_event_parking(event_name):
plotted_coordinates=[]
plotted_name=[]
filtered_df = event_parking_df[event_parking_df['Event Category'] == event_name]
m = folium.Map(location=[event_parking_df['Event Latitude'].mean(), event_parking_df['Event Longitude'].mean()], zoom_start=10)
legend_html = """
<div style="position: fixed;
bottom: 50px; left: 50px; width: 150px; height: 70px;
border:2px solid grey; z-index:9999; font-size:14px;
background-color:white; opacity: 0.8;">
<p style="text-align:center; margin: 0;"><strong>Legend</strong></p>
<p style="margin: 0;">Event Location: <span style="color:lightblue">●</span></p>
<p style="margin: 0;">Parking Location: <span style="color:green">●</span></p>
</div>
"""
# Add legend HTML to the map
m.get_root().html.add_child(folium.Element(legend_html))
title_html = """
<h3 style="text-align: center; margin: 10px 0;">Event and Parking Locations</h3>
"""
m.get_root().html.add_child(folium.Element(title_html))
for idx, row in filtered_df.iterrows():
coordinates = (row['Event Latitude'], row['Event Longitude'])
if coordinates not in plotted_coordinates and row['Event Location'] not in plotted_name:
folium.Marker(coordinates, popup=row['Event Location'], icon=folium.Icon(color='blue')).add_to(m)
plotted_coordinates.append(coordinates)
plotted_name.append(row['Event Location'])
# Adding markers for parking locations
for idx, row in filtered_df.iterrows():
coordinates = (row['Parking Latitude'], row['Parking Longitude'])
if coordinates not in plotted_coordinates:
folium.Marker(coordinates,popup=row['Parking Location'], icon=folium.Icon(color='green')).add_to(m)
plotted_coordinates.append(coordinates)
display(m)
# Creating search box widget
event_search_box = widgets.Dropdown(options=event_parking_df['Event Category'].unique(), description='Event Category:')
interact(display_event_parking, event_name=event_search_box)
interactive(children=(Dropdown(description='Event Category:', options=('Filming - Student', 'Public Event - Pa…
<function __main__.display_event_parking(event_name)>
The events are displayed using blue colored markers and the parking spots are displayed using green colored markers.
Banner¶
I carried out various data cleaning methods:
- Handled missing values and saved banner pole type and corresponding descritption in a dictionary
- Corrected the skewness of data using Yeo Johnson power transformation
- Standardized the data to follow a Normal distribution
- Scaled the data using MinMax scaling
Nearest Neighbor(NN) model is trained on the Latitude and Longitude (transformed) of banner dataset and later used on the Latitude and Longitude (transformed) columns of the above event_parking_df to find the closest 5 neighbor banner locations for each instance in event_parking_df. The final dataset event_parking_banner_df contains the complete information of all events and the 5 most likely locations they should take place, the 5 closest parking locations for each event and also the 5 closest banner spots for promoting each event.
banner_df.head()
| asset_number | asset_description | banner_pole_type | book_group | model_descr_lupvalue | model_no_lupvalue | lat | lon | location | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | 1110368 | Standard Banner Pole - Lansdowne St: Wellingto... | 6.0 | 62.0 | Banner Pole - Standard Banner | 310101-004 | -37.814268 | 144.977428 | -37.81426836404757, 144.97742756833915 |
| 1 | 1110057 | Banner Pole - Super Banner Pole | 2.0 | 79.0 | Banner Pole - Super Banner Pole | 310101-001 | -37.809428 | 144.966548 | -37.80942811378078, 144.96654780374206 |
| 2 | 1110093 | Banner Pole - Super Banner Pole | 2.0 | 59.0 | Banner Pole - Super Banner Pole | 310101-001 | -37.800985 | 144.957241 | -37.80098530840636, 144.9572409533404 |
| 3 | 1110096 | Banner Pole - Super Banner Pole | 2.0 | 59.0 | Banner Pole - Super Banner Pole | 310101-001 | -37.800974 | 144.957269 | -37.80097426523944, 144.95726931044308 |
| 4 | 1110108 | Banner Pole - Super Banner Pole | 2.0 | 59.0 | Banner Pole - Super Banner Pole | 310101-001 | -37.801019 | 144.957138 | -37.801019397609785, 144.95713847866782 |
banner_df.shape
(859, 9)
banner_df.nunique()
asset_number 859 asset_description 85 banner_pole_type 6 book_group 104 model_descr_lupvalue 5 model_no_lupvalue 5 lat 859 lon 859 location 859 dtype: int64
banner_df.isna().sum()
asset_number 0 asset_description 0 banner_pole_type 3 book_group 3 model_descr_lupvalue 46 model_no_lupvalue 46 lat 0 lon 0 location 0 dtype: int64
banner_df[banner_df['model_no_lupvalue'].isna()]
| asset_number | asset_description | banner_pole_type | book_group | model_descr_lupvalue | model_no_lupvalue | lat | lon | location | |
|---|---|---|---|---|---|---|---|---|---|
| 32 | 1581126 | Standard Banner Pole - William Street between ... | 6.0 | 19.0 | NaN | NaN | -37.822037 | 144.955380 | -37.82203699050504, 144.95537971879477 |
| 44 | 1110333 | Super Banner Pole Brackets - Town Hall Portico | 7.0 | 28.0 | NaN | NaN | -37.815069 | 144.966480 | -37.81506866750379, 144.9664799355281 |
| 54 | 1110842 | Super Banner Pole Brackets - Town Hall Portico | 7.0 | 28.0 | NaN | NaN | -37.815164 | 144.966562 | -37.81516417245761, 144.96656228468797 |
| 77 | 1110698 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812430 | 144.965712 | -37.81242973728763, 144.96571210660514 |
| 84 | 1110154 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812006 | 144.967132 | -37.81200583657629, 144.96713216117402 |
| 87 | 1110596 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811564 | 144.968628 | -37.81156393295752, 144.96862754940852 |
| 89 | 1581125 | Standard Banner Pole - Niagara Lane between Lo... | 6.0 | 19.0 | NaN | NaN | -37.823894 | 144.956534 | -37.823894156038484, 144.95653363055376 |
| 95 | 1110151 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.811897 | 144.967335 | -37.81189696661143, 144.96733529508157 |
| 97 | 1110591 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811391 | 144.969072 | -37.811391273840655, 144.96907199036215 |
| 119 | 1110152 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.811940 | 144.967354 | -37.81193955282661, 144.96735389196235 |
| 128 | 1110690 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812155 | 144.966638 | -37.812154658292805, 144.9666384993683 |
| 159 | 1110590 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811370 | 144.969287 | -37.81137010810671, 144.96928691546657 |
| 204 | 1110694 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812253 | 144.966151 | -37.81225347268652, 144.9661506380329 |
| 294 | 1110599 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811659 | 144.968153 | -37.811658843518266, 144.96815320525138 |
| 306 | 1110153 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.811963 | 144.967114 | -37.81196326405078, 144.96711435917004 |
| 371 | 1110841 | Super Banner Pole Brackets - Town Hall Portico | 7.0 | 28.0 | NaN | NaN | -37.815153 | 144.966601 | -37.81515348968982, 144.96660120052474 |
| 374 | 1110594 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811511 | 144.968798 | -37.81151073446846, 144.96879825753845 |
| 375 | 1110593 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811474 | 144.968781 | -37.81147385452639, 144.9687813209779 |
| 381 | 1110592 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811429 | 144.969089 | -37.811428778396255, 144.96908856916383 |
| 413 | 1110600 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811694 | 144.968168 | -37.811694153083074, 144.96816791276976 |
| 417 | 1110597 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811577 | 144.968442 | -37.81157658946802, 144.9684418224575 |
| 423 | 1110697 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812321 | 144.965924 | -37.81232111685478, 144.96592432424467 |
| 424 | 1110691 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812113 | 144.966617 | -37.81211346416013, 144.96661702487123 |
| 434 | 1110585 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811171 | 144.969809 | -37.81117094432856, 144.9698093210796 |
| 435 | 1110840 | Super Banner Pole Brackets - Town Hall Portico | 7.0 | 28.0 | NaN | NaN | -37.815029 | 144.966495 | -37.81502936579882, 144.96649498632323 |
| 443 | 1110701 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812452 | 144.965470 | -37.812452046902294, 144.96546988402386 |
| 455 | 1110150 | Super Banner Pole Brackets - Town Hall Portico | 7.0 | 28.0 | NaN | NaN | -37.815102 | 144.966494 | -37.81510243225498, 144.96649389006606 |
| 456 | 1110586 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811209 | 144.969825 | -37.81120924380747, 144.96982496971626 |
| 466 | 1581127 | Standard Banner Pole - Swanston Street between... | 6.0 | 52.0 | NaN | NaN | -37.819453 | 144.960037 | -37.819453175171624, 144.96003659242 |
| 527 | 1110695 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812295 | 144.966172 | -37.81229538749672, 144.96617209252855 |
| 533 | 1110601 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811721 | 144.967934 | -37.81172103239292, 144.96793431446085 |
| 561 | 1110588 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811289 | 144.969548 | -37.81128854448696, 144.9695477953768 |
| 581 | 1110696 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812368 | 144.965946 | -37.81236799955352, 144.96594643742455 |
| 594 | 1110458 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812052 | 144.966826 | -37.8120520099572, 144.9668261288828 |
| 596 | 1110589 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811334 | 144.969270 | -37.81133350628567, 144.9692704254312 |
| 634 | 1110598 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811614 | 144.968460 | -37.81161393550036, 144.96845965481927 |
| 678 | 1109884 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812096 | 144.966847 | -37.81209599441943, 144.9668474133409 |
| 719 | 1110692 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812227 | 144.966404 | -37.812227116364156, 144.9664038756235 |
| 729 | 1110131 | Super Banner Pole Brackets - Town Hall Portico | 7.0 | 28.0 | NaN | NaN | -37.815141 | 144.966513 | -37.81514088298724, 144.96651305504707 |
| 745 | 1110693 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812185 | 144.966387 | -37.812184649502385, 144.9663869798265 |
| 758 | 1110595 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811528 | 144.968615 | -37.81152785585906, 144.9686153617244 |
| 815 | 1110700 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812495 | 144.965489 | -37.81249454526843, 144.96548859595458 |
| 821 | 1110602 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811753 | 144.967948 | -37.81175335774896, 144.96794842216102 |
| 822 | 1110839 | Super Banner Pole Brackets - Town Hall Portico | 7.0 | 28.0 | NaN | NaN | -37.815017 | 144.966537 | -37.81501683853794, 144.9665366790145 |
| 823 | 1110699 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 117.0 | NaN | NaN | -37.812389 | 144.965691 | -37.81238863503675, 144.96569074362372 |
| 829 | 1110587 | Catenary Banner - Little Bourke St (Chinatown)... | 8.0 | 18.0 | NaN | NaN | -37.811248 | 144.969532 | -37.811248083171506, 144.96953220609566 |
Checking the 'model_descr_lupvalue' for each 'banner_pole_type'
banner_df['banner_pole_type'].value_counts()
banner_pole_type 6.0 378 2.0 362 4.0 59 8.0 36 5.0 14 7.0 7 Name: count, dtype: int64
print(banner_df.loc[banner_df['banner_pole_type']==6.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==2.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==4.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==8.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==5.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==7.0,'model_descr_lupvalue'].unique())
['Banner Pole - Standard Banner' nan] ['Banner Pole - Super Banner Pole' 'Banner Pole - Spinner' 'Banner Pole - Standard Banner'] ['Banner Pole - Type 1 - Docklands'] [nan] ['Banner Pole - Type 2 - Docklands'] [nan]
Replacing the nan valus for 7.0 and 8.0 banner_pole_type using the first part of the asset_description
banner_df['model_descr_lupvalue']=banner_df.apply(lambda row: row['asset_description'].split(' - ')[0] if row['banner_pole_type']==7.0 else row['model_descr_lupvalue'], axis=1)
banner_df['model_descr_lupvalue']=banner_df.apply(lambda row: row['asset_description'].split(' - ')[0] if row['banner_pole_type']==8.0 else row['model_descr_lupvalue'], axis=1)
6.0 banner_pole_type is always Standard Banner
banner_df['model_descr_lupvalue'].fillna('Banner Pole - Standard Banner',inplace=True)
print(banner_df.loc[banner_df['banner_pole_type']==6.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==2.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==4.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==8.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==5.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==7.0,'model_descr_lupvalue'].unique())
['Banner Pole - Standard Banner'] ['Banner Pole - Super Banner Pole' 'Banner Pole - Spinner' 'Banner Pole - Standard Banner'] ['Banner Pole - Type 1 - Docklands'] ['Catenary Banner'] ['Banner Pole - Type 2 - Docklands'] ['Super Banner Pole Brackets']
Checking banner_pole_type=2.0 with a Standard Banner model_descr_lupvalue which does not match with asset_description
banner_df[(banner_df['banner_pole_type']==2.0) & (banner_df['model_descr_lupvalue']=='Banner Pole - Standard Banner')]
| asset_number | asset_description | banner_pole_type | book_group | model_descr_lupvalue | model_no_lupvalue | lat | lon | location | |
|---|---|---|---|---|---|---|---|---|---|
| 195 | 1109886 | Super Banner Pole - Bourke St: Exhibition St -... | 2.0 | 7.0 | Banner Pole - Standard Banner | 310101-004 | -37.81263 | 144.968421 | -37.812629612297506, 144.9684207947835 |
banner_df.iloc[195,[4,5]]=['Banner Pole - Super Banner Pole','310101-001']
print(banner_df.loc[banner_df['banner_pole_type']==6.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==2.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==4.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==8.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==5.0,'model_descr_lupvalue'].unique())
print(banner_df.loc[banner_df['banner_pole_type']==7.0,'model_descr_lupvalue'].unique())
['Banner Pole - Standard Banner'] ['Banner Pole - Super Banner Pole' 'Banner Pole - Spinner'] ['Banner Pole - Type 1 - Docklands'] ['Catenary Banner'] ['Banner Pole - Type 2 - Docklands'] ['Super Banner Pole Brackets']
Saving the 'banner_pole_type' and description in a dictionary
banner_name_dict={6.0:['Banner Pole - Standard Banner'],2.0:['Banner Pole - Super Banner Pole' 'Banner Pole - Spinner'],4.0:['Banner Pole - Type 1 - Docklands'],5.0:['Banner Pole - Type 2 - Docklands'],7.0:['Super Banner Pole Brackets'],8.0:['Catenary Banner']}
Keeping only the banner_pole_type, lat and lon features
banner_df.drop(['asset_number','asset_description','book_group','model_descr_lupvalue','model_no_lupvalue','location'],axis=1,inplace=True)
banner_df.head()
| banner_pole_type | lat | lon | |
|---|---|---|---|
| 0 | 6.0 | -37.814268 | 144.977428 |
| 1 | 2.0 | -37.809428 | 144.966548 |
| 2 | 2.0 | -37.800985 | 144.957241 |
| 3 | 2.0 | -37.800974 | 144.957269 |
| 4 | 2.0 | -37.801019 | 144.957138 |
banner_df.columns=['Banner Pole Type','Latitude','Longitude']
skewness = banner_df.skew()
# Print the skewness of each variable
print("Skewness of Variables:")
print(skewness)
Skewness of Variables: Banner Pole Type -0.001534 Latitude -0.579134 Longitude -0.415170 dtype: float64
pt = PowerTransformer(method='yeo-johnson')
nlatlon=event_parking_df[['Event Latitude','Event Longitude']]
nlatlon.columns=['Latitude','Longitude']
pt.fit(nlatlon)
nlatlon=pt.transform(nlatlon)
nlatlon=pd.DataFrame(nlatlon,columns=['Latitude Transformed','Longitude Transformed'])
yeojohnson_val_X = pt.transform(banner_df[['Latitude','Longitude']])
banner_df[['Latitude Transformed','Longitude Transformed']]=yeojohnson_val_X
banner_df
| Banner Pole Type | Latitude | Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|---|
| 0 | 6.0 | -37.814268 | 144.977428 | 0.000000e+00 | -7.494005e-16 |
| 1 | 2.0 | -37.809428 | 144.966548 | 2.775558e-17 | -1.387779e-15 |
| 2 | 2.0 | -37.800985 | 144.957241 | 8.326673e-17 | -1.942890e-15 |
| 3 | 2.0 | -37.800974 | 144.957269 | 8.326673e-17 | -1.942890e-15 |
| 4 | 2.0 | -37.801019 | 144.957138 | 8.326673e-17 | -1.942890e-15 |
| ... | ... | ... | ... | ... | ... |
| 854 | 6.0 | -37.806699 | 144.973230 | 5.551115e-17 | -9.714451e-16 |
| 855 | 6.0 | -37.814527 | 144.961874 | 0.000000e+00 | -1.665335e-15 |
| 856 | 2.0 | -37.812790 | 144.942418 | 0.000000e+00 | -2.831069e-15 |
| 857 | 2.0 | -37.806737 | 144.965891 | 5.551115e-17 | -1.415534e-15 |
| 858 | 2.0 | -37.802169 | 144.966799 | 5.551115e-17 | -1.360023e-15 |
859 rows × 5 columns
skewness = banner_df.skew()
# Print the skewness of each variable
print("Skewness of Variables:")
print(skewness)
Skewness of Variables: Banner Pole Type -0.001534 Latitude -0.579134 Longitude -0.415170 Latitude Transformed 0.000000 Longitude Transformed 0.000000 dtype: float64
standard_scaler = StandardScaler()
standard_scaler.fit(nlatlon)
nlatlon[['Latitude Transformed','Longitude Transformed']]=standard_scaler.transform(nlatlon)
scaled=standard_scaler.transform(banner_df[['Latitude Transformed','Longitude Transformed']])
banner_df[['Latitude Transformed','Longitude Transformed']]=scaled
banner_df
| Banner Pole Type | Latitude | Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|---|
| 0 | 6.0 | -37.814268 | 144.977428 | 0.070499 | -0.101434 |
| 1 | 2.0 | -37.809428 | 144.966548 | 0.131480 | -0.190001 |
| 2 | 2.0 | -37.800985 | 144.957241 | 0.253442 | -0.267017 |
| 3 | 2.0 | -37.800974 | 144.957269 | 0.253442 | -0.267017 |
| 4 | 2.0 | -37.801019 | 144.957138 | 0.253442 | -0.267017 |
| ... | ... | ... | ... | ... | ... |
| 854 | 6.0 | -37.806699 | 144.973230 | 0.192461 | -0.132240 |
| 855 | 6.0 | -37.814527 | 144.961874 | 0.070499 | -0.228509 |
| 856 | 2.0 | -37.812790 | 144.942418 | 0.070499 | -0.390241 |
| 857 | 2.0 | -37.806737 | 144.965891 | 0.192461 | -0.193852 |
| 858 | 2.0 | -37.802169 | 144.966799 | 0.192461 | -0.186151 |
859 rows × 5 columns
minmax_scaler=MinMaxScaler()
minmax_scaler.fit(nlatlon)
nlatlon[['Latitude Transformed','Longitude Transformed']]=minmax_scaler.transform(nlatlon)
scaled = minmax_scaler.transform(banner_df[['Latitude Transformed','Longitude Transformed']])
banner_df[['Latitude Transformed','Longitude Transformed']]=scaled
banner_df
| Banner Pole Type | Latitude | Longitude | Latitude Transformed | Longitude Transformed | |
|---|---|---|---|---|---|
| 0 | 6.0 | -37.814268 | 144.977428 | 0.773437 | 0.381430 |
| 1 | 2.0 | -37.809428 | 144.966548 | 0.781250 | 0.371811 |
| 2 | 2.0 | -37.800985 | 144.957241 | 0.796875 | 0.363446 |
| 3 | 2.0 | -37.800974 | 144.957269 | 0.796875 | 0.363446 |
| 4 | 2.0 | -37.801019 | 144.957138 | 0.796875 | 0.363446 |
| ... | ... | ... | ... | ... | ... |
| 854 | 6.0 | -37.806699 | 144.973230 | 0.789062 | 0.378084 |
| 855 | 6.0 | -37.814527 | 144.961874 | 0.773437 | 0.367629 |
| 856 | 2.0 | -37.812790 | 144.942418 | 0.773437 | 0.350063 |
| 857 | 2.0 | -37.806737 | 144.965891 | 0.789062 | 0.371393 |
| 858 | 2.0 | -37.802169 | 144.966799 | 0.789062 | 0.372229 |
859 rows × 5 columns
knn_model_banner = NearestNeighbors(n_neighbors=5, algorithm='auto')
knn_model_banner.fit(banner_df[['Latitude Transformed','Longitude Transformed']])
NearestNeighbors()In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
NearestNeighbors()
distances, indices = knn_model_banner.kneighbors(event_parking_df[['Latitude Transformed','Longitude Transformed']])
geolocator = Nominatim(user_agent="banner_locator",timeout=5)
banner_neighbour_dict={'Event Category':[],'Event Location':[],'Event Latitude':[],'Event Longitude':[],'Parking Location':[],'Parking Latitude':[],'Parking Longitude':[],'Banner Pole Type':[],'Banner Latitude':[],'Banner Longitude':[],'Banner Location':[]}
for i in range(len(event_parking_df)):
neighbour_indices = indices[i]
for j in range(len(neighbour_indices)):
banner_neighbour=banner_df.iloc[neighbour_indices[j]]
banner_lat=banner_neighbour['Latitude']
banner_lon=banner_neighbour['Longitude']
if banner_lat in banner_neighbour_dict['Banner Latitude'] and banner_lon in banner_neighbour_dict['Banner Longitude']:
ind=banner_neighbour_dict['Banner Latitude'].index(banner_lat)
loc=banner_neighbour_dict['Banner Location'][ind]
banner_neighbour_dict['Banner Location'].append(loc)
else:
try:
location = geolocator.reverse((banner_lat, banner_lon), exactly_one=True)
if location:
banner_neighbour_dict['Banner Location'].append(location.address)
except Exception as e:
print(f"Error: {e}")
banner_neighbour_dict['Banner Latitude'].append(banner_lat)
banner_neighbour_dict['Banner Longitude'].append(banner_lon)
banner_neighbour_dict['Banner Pole Type'].append(banner_neighbour['Banner Pole Type'])
banner_neighbour_dict['Event Location'].append(event_parking_df['Event Location'].iloc[i])
banner_neighbour_dict['Event Category'].append(event_parking_df['Event Category'].iloc[i])
banner_neighbour_dict['Event Latitude'].append(event_parking_df['Event Latitude'].iloc[i])
banner_neighbour_dict['Event Longitude'].append(event_parking_df['Event Longitude'].iloc[i])
banner_neighbour_dict['Parking Latitude'].append(event_parking_df['Parking Latitude'].iloc[i])
banner_neighbour_dict['Parking Longitude'].append(event_parking_df['Parking Longitude'].iloc[i])
banner_neighbour_dict['Parking Location'].append(event_parking_df['Parking Location'].iloc[i])
event_parking_banner_df=pd.DataFrame(banner_neighbour_dict)
event_parking_banner_df.head()
| Event Category | Event Location | Event Latitude | Event Longitude | Parking Location | Parking Latitude | Parking Longitude | Banner Pole Type | Banner Latitude | Banner Longitude | Banner Location | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848006 | 144.982512 | 2.0 | -37.854208 | 144.981950 | St Kilda Road, Melbourne, City of Port Phillip... |
| 1 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848006 | 144.982512 | 2.0 | -37.854139 | 144.981938 | St Kilda Road, Melbourne, City of Port Phillip... |
| 2 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848006 | 144.982512 | 2.0 | -37.854083 | 144.981927 | St Kilda Road, Melbourne, City of Port Phillip... |
| 3 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848006 | 144.982512 | 2.0 | -37.854267 | 144.981966 | St Kilda Road, Melbourne, City of Port Phillip... |
| 4 | Filming - Student | Centre Place, Melbourne, Australia | -37.816415 | 144.965438 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848006 | 144.982512 | 2.0 | -37.836319 | 144.976011 | Toorak Road, Melbourne, City of Melbourne, Vic... |
The event_parking_banner_df contains the complete information of all events and the 5 most likely locations they should take place, the 5 closest parking locations for each event and also the 5 closest banner spots for promoting each event.
event_parking_banner_df.drop_duplicates(keep='first', inplace=True)
event_parking_banner_df.reset_index(drop=True,inplace=True)
event_parking_banner_df.shape
(13775, 11)
event_parking_banner_df.sample(10)
| Event Category | Event Location | Event Latitude | Event Longitude | Parking Location | Parking Latitude | Parking Longitude | Banner Pole Type | Banner Latitude | Banner Longitude | Banner Location | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 5598 | Filming - TVC | Bourke St Mall - next to Tourism booth, Melbou... | -37.811426 | 144.964280 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848068 | 144.983019 | 2.0 | -37.854267 | 144.981966 | St Kilda Road, Melbourne, City of Port Phillip... |
| 4652 | Promotion | Piazza Italia , Melbourne, Australia | -37.802376 | 144.965889 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848006 | 144.982512 | 2.0 | -37.854083 | 144.981927 | St Kilda Road, Melbourne, City of Port Phillip... |
| 4522 | Public Event - Non Ticketed | Flagstaff Gardens, Melbourne, Australia | -37.810879 | 144.954607 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848068 | 144.983019 | 2.0 | -37.854083 | 144.981927 | St Kilda Road, Melbourne, City of Port Phillip... |
| 13621 | Filming - TV Series | Queensbridge Square , Melbourne, Australia | -37.821212 | 144.961919 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848068 | 144.983019 | 2.0 | -37.854139 | 144.981938 | St Kilda Road, Melbourne, City of Port Phillip... |
| 5086 | Public Event - Run/Walk | Flinders Street, Melbourne, Australia | -37.818186 | 144.966477 | 45, Moubray Street, Melbourne, City of Melbour... | -37.847998 | 144.982451 | 2.0 | -37.854139 | 144.981938 | St Kilda Road, Melbourne, City of Port Phillip... |
| 13220 | Public Event - Ticketed | Flinders Lane, Melbourne, Australia | -37.816917 | 144.965432 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848068 | 144.983019 | 2.0 | -37.854208 | 144.981950 | St Kilda Road, Melbourne, City of Port Phillip... |
| 13597 | Filming - Photo shoot | Swanston Street, Melbourne, Australia | -37.976771 | 145.066420 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848210 | 144.984184 | 2.0 | -37.854139 | 144.981938 | St Kilda Road, Melbourne, City of Port Phillip... |
| 12323 | Filming - TVC | Queensbridge Square, Melbourne, Australia | -37.821212 | 144.961919 | 45, Moubray Street, Melbourne, City of Melbour... | -37.848068 | 144.983019 | 2.0 | -37.854267 | 144.981966 | St Kilda Road, Melbourne, City of Port Phillip... |
| 11444 | Public Event - Ticketed | Crossley Street, Melbourne, Australia | -37.811760 | 144.971273 | Wesley College St Kilda Road Campus, 567-581, ... | -37.848156 | 144.982835 | 2.0 | -37.836319 | 144.976011 | Toorak Road, Melbourne, City of Melbourne, Vic... |
| 3394 | Public Event - Music | Queensbridge Square, Melbourne, Australia | -37.821212 | 144.961919 | Wesley College St Kilda Road Campus, 567-581, ... | -37.848156 | 144.982835 | 2.0 | -37.836319 | 144.976011 | Toorak Road, Melbourne, City of Melbourne, Vic... |
def display_event_parking_banner(event_name):
filtered_df = event_parking_banner_df[event_parking_banner_df['Event Category'] == event_name]
plotted_coordinates=[]
plotted_name=[]
map_center = [filtered_df['Event Latitude'].mean(), filtered_df['Event Longitude'].mean()]
n = folium.Map(location=map_center, zoom_start=10)
legend_html = """
<div style="position: fixed;
bottom: 50px; left: 50px; width: 150px; height: 90px;
border:2px solid grey; z-index:9999; font-size:14px;
background-color:white; opacity: 0.8;">
<p style="text-align:center; margin: 0;"><strong>Legend</strong></p>
<p style="margin: 0;">Event Location: <span style="color:lightblue">●</span></p>
<p style="margin: 0;">Parking Location: <span style="color:green">●</span></p>
<p style="margin: 0;">Banner Location: <span style="color:orange">●</span></p>
</div>
"""
# Adding legend HTML to the map
n.get_root().html.add_child(folium.Element(legend_html))
title_html = """
<h3 style="text-align: center; margin: 10px 0;">Event, Parking and Banner Locations</h3>
"""
n.get_root().html.add_child(folium.Element(title_html))
# Adding markers for event locations
for idx, row in filtered_df.iterrows():
coordinates = (row['Event Latitude'], row['Event Longitude'])
if coordinates not in plotted_coordinates and row['Event Location'] not in plotted_name:
folium.Marker(coordinates, popup=row['Event Location'], icon=folium.Icon(color='blue')).add_to(n)
plotted_coordinates.append(coordinates)
plotted_name.append(row['Event Location'])
# Adding markers for parking locations
for idx, row in filtered_df.iterrows():
coordinates = (row['Parking Latitude'], row['Parking Longitude'])
if coordinates not in plotted_coordinates:
folium.Marker(coordinates,popup=row['Parking Location'], icon=folium.Icon(color='green')).add_to(n)
plotted_coordinates.append(coordinates)
# Adding markers for banner locations
for idx, row in filtered_df.iterrows():
coordinates = (row['Banner Latitude'], row['Banner Longitude'])
if coordinates not in plotted_coordinates:
folium.Marker(coordinates,popup=row[['Banner Pole Type','Banner Location']], icon=folium.Icon(color='orange')).add_to(n)
plotted_coordinates.append(coordinates)
display(n)
# Creating search box widget
event_search_box = widgets.Dropdown(options=event_parking_banner_df['Event Category'].unique(), description='Event:')
interact(display_event_parking_banner, event_name=event_search_box)
interactive(children=(Dropdown(description='Event:', options=('Filming - Student', 'Public Event - Parade', 'P…
<function __main__.display_event_parking_banner(event_name)>
The events are displayed using blue colored markers, the parking spots are displayed using green colored markers and the banner spots are displayed using orange colored markers.
Using this map, an event planner can select any event and view the map for possible event locations, nearest parking spots and banner locations.
Findings¶
Using the 3 datasets, I created a final dataset called event_parking_banner_df which has the following features: Event Category, Event Location, Event Latitude, Event Longitude, Parking Location, Parking Latitude, Parking Longitude, Banner Pole Type, Banner Latitude, Banner Longitude and Banner Location. These give all the necessary information needed to an event planning who is planning a certain category of event and needs to view top 5 suitable event locations and for each of those locations top 5 nearest parking and banner spots. The KNR used on the second last layer from the FFNN robustly learns neighbors from the extracted train data and outputs 5 top locations given any extracted test data instance. Later, a Nearest Neighbor(NN) model was trained on the parking and banner dataset separately. When given each location outputted by KNR, the NN model outputs top nearest neighboring locations(parking and banner) given each event location. Using the final folium map above, the user can select any event category and view top locations for that event along with nearest parking and banner locations. The user can also inteact with the map by zooming in and out and also read location and descriptions of each map icon.
References¶
Melbourne City Council Economic Development Strategy 2031